diff --git a/Content.Client/Stories/Lib/InvisibilitySystem.cs b/Content.Client/Stories/Lib/InvisibilitySystem.cs deleted file mode 100644 index 4495cdbd48..0000000000 --- a/Content.Client/Stories/Lib/InvisibilitySystem.cs +++ /dev/null @@ -1,34 +0,0 @@ -using Content.Shared.Stories.Lib.Invisibility; -using Robust.Client.GameObjects; - -namespace Content.Client.Stories.Lib.Invisibility; - -public sealed class InvisibilitySystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnShutdown); - } - - private void OnStartup(EntityUid uid, InvisibleComponent invisible, ref ComponentStartup args) - { - if (!TryComp(uid, out var sprite)) - { - Log.Error("Tried to apply invisible on an entity which doesn't have sprite"); - return; - } - - sprite.Visible = false; - } - - private void OnShutdown(EntityUid uid, InvisibleComponent invisibleComponent, ref ComponentShutdown args) - { - if (!TryComp(uid, out var sprite)) - return; - - sprite.Visible = true; - } -} diff --git a/Content.Client/Stories/Shadowling/ShadowlingComponent.cs b/Content.Client/Stories/Shadowling/ShadowlingComponent.cs deleted file mode 100644 index 0f946b9200..0000000000 --- a/Content.Client/Stories/Shadowling/ShadowlingComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.Stories.Shadowling; - -namespace Content.Client.Stories.Shadowling; - -[RegisterComponent] -public sealed partial class ShadowlingComponent : SharedShadowlingComponent -{ - -} diff --git a/Content.Client/Stories/Shadowling/ShadowlingHatchSystem.cs b/Content.Client/Stories/Shadowling/ShadowlingHatchSystem.cs deleted file mode 100644 index e9849d702b..0000000000 --- a/Content.Client/Stories/Shadowling/ShadowlingHatchSystem.cs +++ /dev/null @@ -1,26 +0,0 @@ -using Content.Shared.Stories.Shadowling; -using Robust.Client.Graphics; -using Robust.Client.Player; - -namespace Content.Client.Stories.Shadowling; - -public sealed class ShadowlingHatchSystem : EntitySystem -{ - [Dependency] private readonly IPlayerManager _player = default!; - [Dependency] private readonly IEyeManager _eye = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnHatchDoAfter); - } - - private void OnHatchDoAfter(EntityUid uid, ShadowlingComponent component, ref ShadowlingHatchDoAfterEvent ev) - { - if (_player.LocalEntity == uid) - { - _eye.CurrentEye.DrawFov = false; - } - } -} diff --git a/Content.Client/Stories/Shadowling/ShadowlingIconSystem.cs b/Content.Client/Stories/Shadowling/ShadowlingIconSystem.cs deleted file mode 100644 index bfdd353678..0000000000 --- a/Content.Client/Stories/Shadowling/ShadowlingIconSystem.cs +++ /dev/null @@ -1,42 +0,0 @@ -using Content.Shared.StatusIcon.Components; -using Content.Shared.StatusIcon; -using Robust.Shared.Prototypes; -using Robust.Client.Player; -using Content.Shared.Ghost; - -namespace Content.Client.Stories.Shadowling; -public sealed class ShadowlingIconSystem : SharedStatusIconSystem -{ - [Dependency] private readonly ShadowlingSystem _shadowling = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; - [Dependency] private readonly IPlayerManager _player = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGetStatusIconsEvent); - SubscribeLocalEvent(OnGetStatusIconsEvent); - } - - private void OnGetStatusIconsEvent(EntityUid uid, ShadowlingThrallComponent sharedShadowling, ref GetStatusIconsEvent args) - { - if (_shadowling.IsThrall(uid)) - GetStatusIcon("ShadowlingThrallFaction", ref args); - } - private void OnGetStatusIconsEvent(EntityUid uid, ShadowlingComponent shadowling, ref GetStatusIconsEvent args) - { - if (!_shadowling.IsThrall(uid)) - GetStatusIcon("ShadowlingFaction", ref args); - } - - private void GetStatusIcon(string antagStatusIcon, ref GetStatusIconsEvent args) - { - var ent = _player.LocalSession?.AttachedEntity; - - if (!HasComp(ent) && !HasComp(ent) && !HasComp(ent)) - return; - - args.StatusIcons.Add(_prototype.Index(antagStatusIcon)); - } -} diff --git a/Content.Client/Stories/Shadowling/ShadowlingSystem.cs b/Content.Client/Stories/Shadowling/ShadowlingSystem.cs index 9437260b79..a493b504c2 100644 --- a/Content.Client/Stories/Shadowling/ShadowlingSystem.cs +++ b/Content.Client/Stories/Shadowling/ShadowlingSystem.cs @@ -1,76 +1,45 @@ +using Content.Shared.Humanoid; +using Content.Shared.StatusIcon.Components; +using Content.Shared.Stories.Conversion; using Content.Shared.Stories.Shadowling; +using Robust.Client.GameObjects; using Robust.Client.Graphics; -using Robust.Client.Player; -using Robust.Shared.Player; +using Robust.Shared.Prototypes; namespace Content.Client.Stories.Shadowling; -public sealed class ShadowlingSystem : SharedShadowlingSystem +public sealed partial class ShadowlingSystem : EntitySystem { - [Dependency] private readonly IPlayerManager _player = default!; - [Dependency] private readonly ILightManager _light = default!; - + [Dependency] private readonly IPrototypeManager _prototype = default!; + private readonly ProtoId _unshadedShaderProtoId = "unshaded"; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnPlayerAttached); - SubscribeLocalEvent(OnPlayerDetached); - SubscribeLocalEvent(OnShutdown); - } + SubscribeLocalEvent(OnGetStatusIconsEvent); - private void OnStartup(EntityUid uid, ShadowlingComponent component, ref ComponentStartup ev) - { - if (_player.LocalSession == null) - return; - if (_player.LocalSession.AttachedEntity != uid) - return; - - ToggleDarkVision(component, true); + // TODO: Использовать события ConvertedEvent, RevertedEvent. Сейчас они только на сервере. + SubscribeLocalEvent(OnConverted); + SubscribeLocalEvent(OnReverted); } - - private void OnPlayerAttached(EntityUid uid, ShadowlingComponent component, ref PlayerAttachedEvent ev) + private void OnGetStatusIconsEvent(EntityUid uid, ShadowlingComponent component, ref GetStatusIconsEvent args) { - if (_player.LocalSession == null) - return; - if (_player.LocalSession.AttachedEntity != uid) - return; - if (ev.Entity != uid) - return; - - ToggleDarkVision(component, true); + args.StatusIcons.Add(_prototype.Index(component.StatusIcon)); } - - private void OnPlayerDetached(EntityUid uid, ShadowlingComponent component, ref PlayerDetachedEvent ev) + private void OnConverted(EntityUid uid, ShadowlingThrallComponent component, ComponentInit args) { - if (_player.LocalSession?.AttachedEntity != null) - return; - if (ev.Entity != uid) + if (!HasComp(uid)) return; - ToggleDarkVision(component, false); + var sprite = Comp(uid); + sprite.LayerSetShader(sprite.LayerMapReserveBlank(HumanoidVisualLayers.Eyes), _prototype.Index(_unshadedShaderProtoId).Instance()); } - - private void OnShutdown(EntityUid uid, ShadowlingComponent component, ref ComponentShutdown ev) + private void OnReverted(EntityUid uid, ShadowlingThrallComponent component, ComponentShutdown args) { - if (_player.LocalSession == null) + if (!HasComp(uid)) return; - if (_player.LocalSession.AttachedEntity != uid) - return; - - ToggleDarkVision(component, false); - } - private void ToggleDarkVision(ShadowlingComponent component, bool newState) - { - if (newState) - { - _light.DrawShadows = false; - } - else - { - _light.DrawShadows = true; - } + var sprite = Comp(uid); + sprite.LayerSetShader(sprite.LayerMapReserveBlank(HumanoidVisualLayers.Eyes), (ShaderInstance?) null); } } diff --git a/Content.Client/Stories/Shadowling/ShadowlingThrallComponent.cs b/Content.Client/Stories/Shadowling/ShadowlingThrallComponent.cs deleted file mode 100644 index 8774472982..0000000000 --- a/Content.Client/Stories/Shadowling/ShadowlingThrallComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.Stories.Shadowling; - -namespace Content.Client.Stories.Shadowling; - -[RegisterComponent] -public sealed partial class ShadowlingThrallComponent : SharedShadowlingThrallComponent -{ - -} diff --git a/Content.Client/Stories/ThermalVision/ThermalVisionOverlay.cs b/Content.Client/Stories/ThermalVision/ThermalVisionOverlay.cs new file mode 100644 index 0000000000..b9d282b533 --- /dev/null +++ b/Content.Client/Stories/ThermalVision/ThermalVisionOverlay.cs @@ -0,0 +1,51 @@ +using System.Numerics; +using Content.Shared.Stories.ThermalVision; +using Content.Shared.Mobs.Components; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; + +namespace Content.Client.Stories.ThermalVision; + +public sealed class ThermalVisionOverlay : Overlay +{ + [Dependency] private readonly IEntityManager _entity = default!; + [Dependency] private readonly IEyeManager _eye = default!; + [Dependency] private readonly IPlayerManager _players = default!; + + private readonly TransformSystem _transform; + + public override OverlaySpace Space => OverlaySpace.ScreenSpace; + + public ThermalVisionOverlay() + { + IoCManager.InjectDependencies(this); + + _transform = _entity.System(); + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (!_entity.TryGetComponent(_players.LocalEntity, out ThermalVisionComponent? nightVision) || !nightVision.Enabled) + return; + + var eye = args.Viewport.Eye; + var eyeRot = eye?.Rotation ?? default; + var zoom = Vector2.One / (args.Viewport.Eye?.Zoom ?? Vector2.One); + + var entities = _entity.EntityQueryEnumerator(); + while (entities.MoveNext(out var uid, out _, out var sprite, out var xform)) + { + if (xform.MapID != eye?.Position.MapId) + continue; + + var position = _eye.CoordinatesToScreen(xform.Coordinates).Position; + if (!args.ViewportBounds.Contains((int) position.X, (int) position.Y)) + continue; + + var rotation = _transform.GetWorldRotation(xform); + args.ScreenHandle.DrawEntity(uid, position, Vector2.One * 2 * zoom, rotation + eyeRot, Angle.Zero, null, sprite, xform, _transform); + } + } +} diff --git a/Content.Client/Stories/ThermalVision/ThermalVisionSystem.cs b/Content.Client/Stories/ThermalVision/ThermalVisionSystem.cs new file mode 100644 index 0000000000..e92e366e7e --- /dev/null +++ b/Content.Client/Stories/ThermalVision/ThermalVisionSystem.cs @@ -0,0 +1,63 @@ +using Content.Shared.Stories.ThermalVision; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Player; + +namespace Content.Client.Stories.ThermalVision; + +public sealed class ThermalVisionSystem : SharedThermalVisionSystem +{ + [Dependency] private readonly ILightManager _light = default!; + [Dependency] private readonly IOverlayManager _overlay = default!; + [Dependency] private readonly IPlayerManager _player = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnThermalVisionAttached); + SubscribeLocalEvent(OnThermalVisionDetached); + } + + private void OnThermalVisionAttached(Entity ent, ref LocalPlayerAttachedEvent args) + { + ThermalVisionChanged(ent); + } + + private void OnThermalVisionDetached(Entity ent, ref LocalPlayerDetachedEvent args) + { + Off(); + } + + protected override void ThermalVisionChanged(Entity ent) + { + if (ent != _player.LocalEntity) + return; + + if (ent.Comp.Enabled) + On(); + else Off(); + } + + protected override void ThermalVisionRemoved(Entity ent) + { + if (ent != _player.LocalEntity) + return; + + Off(); + } + + private void Off() + { + _overlay.RemoveOverlay(new ThermalVisionOverlay()); + _light.DrawShadows = true; + _light.DrawLighting = true; + } + + private void On() + { + _overlay.AddOverlay(new ThermalVisionOverlay()); + _light.DrawShadows = false; + _light.DrawLighting = false; + } +} diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs index 28918e960e..d8d8e235f0 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs @@ -10,6 +10,7 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +using Content.Server.Stories.GameTicking.Rules.Components; namespace Content.Server.Administration.Systems; @@ -151,5 +152,19 @@ private void AddAntagVerbs(GetVerbsEvent args) Message = Loc.GetString("admin-verb-make-thief"), }; args.Verbs.Add(thief); + + Verb shadowling = new() + { + Text = Loc.GetString("admin-verb-text-make-shadowling"), + Category = VerbCategory.Antag, + Icon = new SpriteSpecifier.Rsi(new ResPath("Stories/Mobs/Demons/shadowling.rsi"), "shadowling"), + Act = () => + { + _antag.ForceMakeAntag(targetPlayer, "Shadowling"); + }, + Impact = LogImpact.High, + Message = Loc.GetString("admin-verb-make-shadowling"), + }; + args.Verbs.Add(shadowling); } } diff --git a/Content.Server/Roles/RoleSystem.cs b/Content.Server/Roles/RoleSystem.cs index c53fa1cf9e..188d6e7cbc 100644 --- a/Content.Server/Roles/RoleSystem.cs +++ b/Content.Server/Roles/RoleSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Stories.Shadowling; using Content.Shared.Roles; namespace Content.Server.Roles; @@ -18,6 +19,8 @@ public override void Initialize() SubscribeAntagEvents(); SubscribeAntagEvents(); SubscribeAntagEvents(); + SubscribeAntagEvents(); // Stories | Оффы просто гении. Роль антага делается прототипом, но + SubscribeAntagEvents(); // Stories | , чтобы игра считала её антагом, нужно писать сюда код. } public string? MindGetBriefing(EntityUid? mindId) diff --git a/Content.Server/Stories/GameTicking/Rules/Components/ShadowlingRuleComponent.cs b/Content.Server/Stories/GameTicking/Rules/Components/ShadowlingRuleComponent.cs new file mode 100644 index 0000000000..5a12920f88 --- /dev/null +++ b/Content.Server/Stories/GameTicking/Rules/Components/ShadowlingRuleComponent.cs @@ -0,0 +1,38 @@ +using Robust.Shared.Audio; + +namespace Content.Server.Stories.GameTicking.Rules.Components; + +[RegisterComponent, Access(typeof(ShadowlingRuleSystem))] +public sealed partial class ShadowlingRuleComponent : Component +{ + [DataField] + public ShadowlingWinType WinType = ShadowlingWinType.Lost; + + [DataField] + public LocId AscendanceAnnouncement = "shadowling-ascendance-announcement"; + + [DataField] + public Color AscendanceAnnouncementColor = Color.Red; + + [DataField] + public SoundSpecifier? AscendanceGlobalSound = new SoundPathSpecifier("/Audio/Stories/Misc/purple_code.ogg"); + + [DataField] + public TimeSpan RoundEndTime = TimeSpan.FromMinutes(4); +} + +public enum ShadowlingWinType : byte +{ + /// + /// Тенеморфы превознились. + /// + Won, + /// + /// Тенеморфы выжили. + /// + Stalemate, + /// + /// Все тенеморфы мертвы. + /// + Lost +} diff --git a/Content.Server/Stories/GameTicking/Rules/ShadowlingRuleSystem.cs b/Content.Server/Stories/GameTicking/Rules/ShadowlingRuleSystem.cs new file mode 100644 index 0000000000..253318986c --- /dev/null +++ b/Content.Server/Stories/GameTicking/Rules/ShadowlingRuleSystem.cs @@ -0,0 +1,173 @@ +using Content.Server.Administration.Logs; +using Content.Server.Antag; +using Content.Server.EUI; +using Content.Server.Flash; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Mind; +using Content.Server.Popups; +using Content.Server.Revolutionary; +using Content.Server.Revolutionary.Components; +using Content.Server.Roles; +using Content.Server.RoundEnd; +using Content.Server.Shuttles.Systems; +using Content.Server.Station.Systems; +using Content.Shared.Database; +using Content.Shared.GameTicking.Components; +using Content.Shared.Humanoid; +using Content.Shared.IdentityManagement; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; +using Content.Shared.Mindshield.Components; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.NPC.Prototypes; +using Content.Shared.NPC.Systems; +using Content.Shared.Revolutionary.Components; +using Content.Shared.Stunnable; +using Content.Shared.Zombies; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; +using Content.Shared.Cuffs.Components; +using Content.Server.Stories.GameTicking.Rules.Components; +using Content.Shared.Stories.Shadowling; +using Content.Server.Chat.Systems; +using Content.Server.GameTicking.Rules; +using Robust.Server.Audio; +using Robust.Shared.Player; +using Content.Server.GameTicking; +using Robust.Shared.Console; +using Content.Server.Nuke; +using Content.Server.Stories.Conversion; +using Content.Server.Stories.Shadowling; +using Content.Shared.Stories.Conversion; +using Robust.Shared.Random; +using System.Linq; +using Content.Server.Polymorph.Components; + +namespace Content.Server.Stories.GameTicking.Rules; + +public sealed class ShadowlingRuleSystem : GameRuleSystem +{ + [Dependency] private readonly IAdminLogManager _adminLogManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly AntagSelectionSystem _antag = default!; + [Dependency] private readonly EuiManager _euiMan = default!; + [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly RoundEndSystem _roundEnd = default!; + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly NpcFactionSystem _npcFaction = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly RoleSystem _role = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; + [Dependency] private readonly StationSystem _stationSystem = default!; + [Dependency] private readonly NukeSystem _nuke = default!; + [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ConversionSystem _conversion = default!; + [Dependency] private readonly ShadowlingSystem _shadowling = default!; + + [ValidatePrototypeId] + public const string ShadowlingThrallConversion = "ShadowlingThrall"; + + /// + /// Шанс того, что слуга просто расконвертируется, вместо передачи. + /// + public const float ShadowlingThrallProbOfLost = 0.5f; + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnWorldAscendance); + SubscribeLocalEvent(OnMobStateChanged); + } + private void OnMobStateChanged(EntityUid uid, ShadowlingComponent comp, MobStateChangedEvent args) + { + if (args.NewMobState != MobState.Dead) + return; + + var query = QueryActiveRules(); + while (query.MoveNext(out var ruleUid, out _, out var _, out _)) + { + // FIXME: Плохой код. + + HashSet shadowlings = new(); + var shadowlingsQuery = AllEntityQuery(); + while (shadowlingsQuery.MoveNext(out var shadowlingUid, out _, out var mobState)) + if (_mobState.IsAlive(shadowlingUid, mobState)) + shadowlings.Add(shadowlingUid); + + shadowlings.ExceptWith(_antag.GetAliveAntags(ruleUid).ToHashSet()); + + if (shadowlings.Count == 0) + { + foreach (var ent in _conversion.GetEntitiesConvertedBy(uid, ShadowlingThrallConversion)) + { + _conversion.TryRevert(ent, ShadowlingThrallConversion); + } + continue; + } + + var shadowling = _random.Pick(shadowlings); + + foreach (var ent in _conversion.GetEntitiesConvertedBy(uid, ShadowlingThrallConversion)) + { + if (_random.Prob(ShadowlingThrallProbOfLost)) + _conversion.TryRevert(ent, ShadowlingThrallConversion); + else if (_conversion.TryGetConversion(ent, ShadowlingThrallConversion, out var conversion)) + { + conversion.Owner = GetNetEntity(shadowling); + } + } + + _shadowling.RefreshActions(shadowling); + } + } + private void CheckWin() + { + var query = QueryActiveRules(); + while (query.MoveNext(out var ruleUid, out _, out var comp, out _)) + { + if (comp.WinType == ShadowlingWinType.Won) + continue; + + if (!_antag.AnyAliveAntags(ruleUid)) + comp.WinType = ShadowlingWinType.Lost; + else + comp.WinType = ShadowlingWinType.Stalemate; + } + } + private void OnWorldAscendance(ShadowlingWorldAscendanceEvent args) + { + var query = QueryActiveRules(); + while (query.MoveNext(out var uid, out _, out var component, out _)) + { + component.WinType = ShadowlingWinType.Won; + + var announcementString = Loc.GetString(component.AscendanceAnnouncement); + _chat.DispatchGlobalAnnouncement(announcementString, colorOverride: component.AscendanceAnnouncementColor); + _audio.PlayGlobal(component.AscendanceGlobalSound, Filter.Broadcast(), true); + _roundEnd.EndRound(component.RoundEndTime); + } + } + protected override void AppendRoundEndText(EntityUid uid, ShadowlingRuleComponent component, GameRuleComponent gameRule, ref RoundEndTextAppendEvent args) + { + base.AppendRoundEndText(uid, component, gameRule, ref args); + + CheckWin(); + + var winText = Loc.GetString($"shadowling-{component.WinType.ToString().ToLower()}"); + args.AddLine(winText); + + var sessionData = _antag.GetAntagIdentifiers(uid); + args.AddLine(Loc.GetString("shadowling-count", ("initialCount", sessionData.Count))); + foreach (var (mind, data, name) in sessionData) + { + args.AddLine(Loc.GetString("shadowling-list-name-user", + ("name", name), + ("user", data.UserName))); + } + + args.AddLine("\n"); + } +} diff --git a/Content.Server/Stories/Lib/Incorporeal/IncorporealSystem.cs b/Content.Server/Stories/Lib/Incorporeal/IncorporealSystem.cs deleted file mode 100644 index 7f1c2ad453..0000000000 --- a/Content.Server/Stories/Lib/Incorporeal/IncorporealSystem.cs +++ /dev/null @@ -1,98 +0,0 @@ -using System.Linq; -using Content.Server.Popups; -using Content.Shared.Interaction.Events; -using Content.Shared.Movement.Systems; -using Content.Shared.Physics; -using Content.Shared.Stories.Lib.Incorporeal; -using Robust.Server.GameObjects; -using Robust.Shared.Physics; - -namespace Content.Server.Stories.Lib.Incorporeal; - -public sealed class IncorporealSystem : EntitySystem -{ - [Dependency] private readonly StoriesUtilsSystem _utils = default!; - [Dependency] private readonly PhysicsSystem _physics = default!; - [Dependency] private readonly MovementSpeedModifierSystem _movement = default!; - [Dependency] private readonly PopupSystem _popup = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnShutdown); - SubscribeLocalEvent(OnRefreshMovementSpeedModifiersEvent); - SubscribeLocalEvent(OnInteractionAttemptEvent); - } - - private void OnStartup(EntityUid uid, IncorporealComponent component, ref ComponentStartup args) - { - var fixtures = Comp(uid); - var fixture = fixtures.Fixtures.First(); - component.CollisionLayerBefore = fixture.Value.CollisionLayer; - component.CollisionMaskBefore = fixture.Value.CollisionMask; - Dirty(uid, component); - - _physics.SetCollisionLayer(uid, fixture.Key, fixture.Value, (int) CollisionGroup.None, fixtures); - _physics.SetCollisionMask(uid, fixture.Key, fixture.Value, (int) CollisionGroup.None, fixtures); - - _utils.MakeInvisible(uid); - _movement.RefreshMovementSpeedModifiers(uid); - } - - private void OnShutdown(EntityUid uid, IncorporealComponent component, ref ComponentShutdown args) - { - var fixtures = Comp(uid); - var fixture = fixtures.Fixtures.First(); - - _physics.SetCollisionLayer(uid, fixture.Key, fixture.Value, component.CollisionLayerBefore, fixtures); - _physics.SetCollisionMask(uid, fixture.Key, fixture.Value, component.CollisionMaskBefore, fixtures); - - _utils.MakeVisible(uid); - _movement.RefreshMovementSpeedModifiers(uid); - } - - private void OnRefreshMovementSpeedModifiersEvent(EntityUid uid, IncorporealComponent component, - ref RefreshMovementSpeedModifiersEvent args) - { - switch (component.LifeStage) - { - case ComponentLifeStage.Added: - case ComponentLifeStage.Adding: - case ComponentLifeStage.Initialized: - case ComponentLifeStage.Initializing: - case ComponentLifeStage.Starting: - case ComponentLifeStage.Running: - args.ModifySpeed(component.SpeedModifier, component.SpeedModifier); - break; - } - } - - private void OnInteractionAttemptEvent(EntityUid uid, IncorporealComponent shadowling, ref InteractionAttemptEvent args) - { - _popup.PopupEntity("Вы не можете взаимодействовать с вещами без тела!", uid, uid); - args.Cancelled = true; - } - - public void MakeIncorporeal(EntityUid uid) - { - if (IsIncorporeal(uid)) - return; - - EnsureComp(uid); - } - - public void MakeCorporeal(EntityUid uid) - { - if (!IsIncorporeal(uid)) - return; - - RemCompDeferred(uid); - } - - public bool IsIncorporeal(EntityUid uid) - { - return HasComp(uid); - } -} diff --git a/Content.Server/Stories/Lib/StoriesUtilsSystem.cs b/Content.Server/Stories/Lib/StoriesUtilsSystem.cs deleted file mode 100644 index 7cfa93f7b1..0000000000 --- a/Content.Server/Stories/Lib/StoriesUtilsSystem.cs +++ /dev/null @@ -1,24 +0,0 @@ -using Content.Shared.Stories.Lib; -using Content.Shared.Stories.Lib.Invisibility; - -namespace Content.Server.Stories.Lib; - -/// -/// A system that combines common methods from systems made by Space Stories -/// And containing shortcuts for Space Wizards code -/// -public sealed partial class StoriesUtilsSystem : SharedStoriesUtilsSystem -{ - public void MakeInvisible(EntityUid uid) - { - EnsureComp(uid); - } - - public void MakeVisible(EntityUid uid) - { - if (HasComp(uid)) - { - RemCompDeferred(uid); - } - } -} diff --git a/Content.Server/Stories/Lib/TemporalLightOff/TemporalLightOffSystem.cs b/Content.Server/Stories/Lib/TemporalLightOff/TemporalLightOffSystem.cs deleted file mode 100644 index 2973dc66d4..0000000000 --- a/Content.Server/Stories/Lib/TemporalLightOff/TemporalLightOffSystem.cs +++ /dev/null @@ -1,87 +0,0 @@ -using Content.Shared.Stories.Lib.TemporalLightOff; -using Robust.Server.GameObjects; -using Robust.Shared.Timing; - -namespace Content.Server.Stories.Lib.TemporalLightOff; - -public sealed partial class TemporalLightOffSystem : EntitySystem -{ - [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly PointLightSystem _pointLight = default!; - [Dependency] private readonly TemporalLightOffSystem _temporalLightOff = default!; - [Dependency] private readonly EntityLookupSystem _entityLookup = default!; - [Dependency] private readonly TransformSystem _transform = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnShutdown); - } - - private void OnStartup(EntityUid uid, TemporalLightOffComponent component, ref ComponentStartup args) - { - DisableLight(uid, component.LightOffFor); - } - - private void OnShutdown(EntityUid uid, TemporalLightOffComponent component, ref ComponentShutdown args) - { - EnableLight(uid); - } - - public void DisableLight(EntityUid uid, TimeSpan disableFor, PointLightComponent? pointLight = null) - { - if (!Resolve(uid, ref pointLight)) - return; - if (!pointLight.Enabled) - return; - - var curTime = _timing.CurTime; - var tempLightOffComp = EnsureComp(uid); - tempLightOffComp.LightOffFor = disableFor; - tempLightOffComp.EnableLightAt = curTime.Add(disableFor); - - _pointLight.SetEnabled(uid, false, pointLight); - } - - public void EnableLight(EntityUid uid, PointLightComponent? pointLight = null) - { - if (!Resolve(uid, ref pointLight)) - return; - - RemCompDeferred(uid); - _pointLight.SetEnabled(uid, true, pointLight); - } - - public override void Update(float frameTime) - { - var query = EntityQueryEnumerator(); - var curTime = _timing.CurTime; - - while (query.MoveNext(out var uid, out var comp, out var pointLight)) - { - if (comp.EnableLightAt < curTime) - { - EnableLight(uid); - } - else if (pointLight.Enabled) - { - _pointLight.SetEnabled(uid, false, pointLight); - } - } - } - - public void DisableLightsInRange(EntityUid uid, float range, TimeSpan disableFor) - { - var query = _entityLookup.GetEntitiesInRange(_transform.GetMapCoordinates(Transform(uid)), range); - - foreach (var pointLight in query) - { - if (!pointLight.Comp.Enabled) - continue; - - _temporalLightOff.DisableLight(pointLight.Owner, disableFor, pointLight.Comp); - } - } -} diff --git a/Content.Server/Stories/Partners/Systems/AntagSelect/AntagSelectSystem.cs b/Content.Server/Stories/Partners/Systems/AntagSelect/AntagSelectSystem.cs index 360433930b..d43664707c 100644 --- a/Content.Server/Stories/Partners/Systems/AntagSelect/AntagSelectSystem.cs +++ b/Content.Server/Stories/Partners/Systems/AntagSelect/AntagSelectSystem.cs @@ -21,6 +21,8 @@ using Content.Server.Database; using Content.Server.Antag; using Content.Server.Stories.Shadowling; +using Content.Shared.Stories.Shadowling; +using Content.Server.Stories.GameTicking.Rules.Components; namespace Content.Server.Stories.Sponsor.AntagSelect; public sealed class AntagSelectSystem : EntitySystem @@ -42,6 +44,7 @@ public sealed class AntagSelectSystem : EntitySystem [Dependency] private readonly IPartnersManager _db = default!; private const string DefaultRevsRule = "Revolutionary"; private const string DefaultThiefRule = "Thief"; + private const string DefaultShadowlingRule = "Shadowling"; private const string DefaultTraitorRule = "Traitor"; public override void Initialize() { @@ -95,8 +98,7 @@ private void OnRev(MakeHeadRevEvent args) } private void OnShadowling(MakeShadowlingEvent args) { - EnsureComp(args.EntityUid); // FIXME: upstream hardcode - + _antag.ForceMakeAntag(args.Player, DefaultShadowlingRule); args.RoleTaken = true; } private void OnThief(MakeThiefEvent args) diff --git a/Content.Server/Stories/Photosensitivity/PhotosensitivityComponent.cs b/Content.Server/Stories/Photosensitivity/PhotosensitivityComponent.cs new file mode 100644 index 0000000000..a2bff2205f --- /dev/null +++ b/Content.Server/Stories/Photosensitivity/PhotosensitivityComponent.cs @@ -0,0 +1,42 @@ +using Content.Shared.Damage; + +namespace Content.Server.Stories.Photosensitivity; + +[RegisterComponent] +public sealed partial class PhotosensitivityComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite), DataField("enabled")] + public bool Enabled = true; + + [ViewVariables(VVAccess.ReadWrite), DataField("damage")] + public DamageSpecifier Damage = new() + { + DamageDict = new() + { + { "Heat", 1 } + } + }; + + + [ViewVariables(VVAccess.ReadWrite), DataField("damageInSpace")] + public DamageSpecifier DamageInSpace = new() + { + DamageDict = new() + { + { "Heat", 5 } + } + }; + + [DataField("darknessHealing")] + public DamageSpecifier DarknessHealing = new() + { + DamageDict = new() + { + { "Blunt", -5 }, + { "Slash", -5 }, + { "Piercing", -5 }, + { "Heat", -5 }, + { "Shock", -5 } + } + }; +} diff --git a/Content.Server/Stories/Photosensitivity/PhotosensitivitySystem.cs b/Content.Server/Stories/Photosensitivity/PhotosensitivitySystem.cs index b186f31629..a5bb30eedc 100644 --- a/Content.Server/Stories/Photosensitivity/PhotosensitivitySystem.cs +++ b/Content.Server/Stories/Photosensitivity/PhotosensitivitySystem.cs @@ -1,8 +1,11 @@ using System.Numerics; +using Content.Server.Popups; +using Content.Shared.Damage; using Robust.Server.GameObjects; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Utility; +using Content.Shared.Maps; namespace Content.Server.Stories.Photosensitivity; @@ -12,10 +15,67 @@ public sealed partial class PhotosensitivitySystem : EntitySystem [Dependency] private readonly TransformSystem _transform = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly MapSystem _mapSystem = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; + private const float UpdateTimer = 2f; + private float _timer; + public const float MaxIllumination = 10f; + public const float MinIllumination = 0f; + + // FIXME: Shitcode + Hardcode + public override void Update(float frameTime) + { + _timer += frameTime; + + if (_timer < UpdateTimer) + return; + + _timer -= UpdateTimer; + + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var uid, out var comp)) + { + if (!comp.Enabled) + continue; + + var gridUid = Transform(uid).GridUid; + + if (gridUid != null && TryComp(gridUid, out var grid)) + { + var tile = grid.GetTileRef(Transform(uid).Coordinates); + + if (tile.IsSpace(_tileDefManager)) + { + _damageable.TryChangeDamage(uid, comp.DamageInSpace, true, false); + _popup.PopupEntity("Свет выжигает вас!", uid, uid); + continue; + } + } + else + { + _damageable.TryChangeDamage(uid, comp.DamageInSpace, true, false); + _popup.PopupEntity("Свет выжигает вас!", uid, uid); + continue; + } + + var illumination = Math.Min(GetIllumination(uid), 10); + + if (illumination > 1.5) + { + _damageable.TryChangeDamage(uid, comp.Damage * illumination, true, false); + _popup.PopupEntity("Свет выжигает вас!", uid, uid); + } + else if (illumination < 1) + { + _damageable.TryChangeDamage(uid, comp.DarknessHealing, true, false); + } + } + } - // If it will'be used for something else than shadowlings then it should be rewritten - // to calculate tiles lightness every time some light point appears, disappears or moving - // due to performance issues this can cause + // В душе не чаю, что тут написано Lokilife'ом и не желаю разбираться, но + // это единственный щиткод от этого автора, который будет в тенеморфе. public float GetIllumination(EntityUid uid) { var destTrs = Transform(uid); @@ -51,7 +111,7 @@ public float GetIllumination(EntityUid uid) Vector2 srcLocal = sourceTrs.ParentUid == grid.Owner ? sourceTrs.LocalPosition - : Vector2.Transform(source, gridTrs.InvLocalMatrix); + : Vector2.Transform(source, gridTrs.InvLocalMatrix); Vector2 dstLocal = destTrs.ParentUid == grid.Owner ? destTrs.LocalPosition @@ -96,6 +156,12 @@ public float GetIllumination(EntityUid uid) illumination = Math.Max(illumination, lightPoint.Comp.Radius - lightPoint.Comp.Energy * dist); } + if (illumination > MaxIllumination) + illumination = MaxIllumination; + + if (illumination < MinIllumination) + illumination = MinIllumination; + return illumination; } } diff --git a/Content.Server/Stories/Prison/Components/PrisonShuttleComponent.cs b/Content.Server/Stories/Prison/Components/PrisonShuttleComponent.cs index b8c50c705b..93a89425af 100644 --- a/Content.Server/Stories/Prison/Components/PrisonShuttleComponent.cs +++ b/Content.Server/Stories/Prison/Components/PrisonShuttleComponent.cs @@ -1,3 +1,5 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + namespace Content.Server.Stories.Prison; [RegisterComponent] @@ -8,4 +10,7 @@ public sealed partial class PrisonShuttleComponent : Component /// [DataField] public EntityUid? Prison; + + [DataField("nextTransfer", customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan NextTransfer; } diff --git a/Content.Server/Stories/Prison/Components/PrisonerComponent.cs b/Content.Server/Stories/Prison/Components/PrisonerComponent.cs new file mode 100644 index 0000000000..076f7f7b17 --- /dev/null +++ b/Content.Server/Stories/Prison/Components/PrisonerComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Server.Stories.Prison; + +[RegisterComponent] +public sealed partial class PrisonerComponent : Component +{ + [DataField] + public float PacifiedTime = 600f; +} diff --git a/Content.Server/Stories/Prison/PrisonSystem.cs b/Content.Server/Stories/Prison/PrisonSystem.cs index 36b2b64fac..4d18031fc6 100644 --- a/Content.Server/Stories/Prison/PrisonSystem.cs +++ b/Content.Server/Stories/Prison/PrisonSystem.cs @@ -1,8 +1,27 @@ +using System.Diagnostics.CodeAnalysis; using Content.Server.GameTicking; +using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Events; +using Content.Server.Shuttles.Systems; +using Content.Server.Station.Components; using Content.Server.Station.Systems; +using Content.Shared.Shuttles.Components; +using Robust.Shared.Random; using Robust.Server.GameObjects; using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Content.Server.Screens.Components; +using Robust.Shared.Timing; +using Content.Server.DeviceNetwork.Components; +using Content.Shared.DeviceNetwork; +using Content.Server.DeviceNetwork.Systems; +using Content.Shared.Mobs.Components; +using Content.Shared.StatusEffect; +using Content.Shared.CombatMode.Pacification; +using Content.Shared.Mobs.Systems; +using Robust.Server.Player; +using Content.Shared.Mind; +using Content.Server.Mind; namespace Content.Server.Stories.Prison; @@ -13,14 +32,175 @@ public sealed partial class PrisonSystem : EntitySystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly ShuttleSystem _shuttle = default!; + [Dependency] private readonly SharedTransformSystem _xform = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly StatusEffectsSystem _statusEffects = default!; + private const string PacifiedKey = "Pacified"; + /// + /// Процент сбежавших зеков для их полной победы. + /// + private const float EscapedPrisonersPercent = 0.5f; private ISawmill _sawmill = default!; - + public const float ShuttleTransferTime = 120f; public override void Initialize() { _sawmill = Logger.GetSawmill("prison"); SubscribeLocalEvent(OnStationInit); + SubscribeLocalEvent(OnShuttleInit); + SubscribeLocalEvent(OnPrisonerInit); + + SubscribeLocalEvent(OnRoundEndText); + } + private void OnPrisonerInit(EntityUid uid, PrisonerComponent component, ComponentInit args) + { + // Rooooooooooooooooooooundstart пацифизм на время, чтобы не было РДМ побегов за 5 секунд. + _statusEffects.TryAddStatusEffect(uid, PacifiedKey, TimeSpan.FromSeconds(component.PacifiedTime), false); + } + public override void Update(float frameTime) + { + + // Работает для карты-грида (текущая карта тюрьмы), а + // для гридов не знаю. _station.GetLargestGrid() не работает + // с картами-гридами, потому что оффы щиткодеры. + + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + var curTime = _timing.CurTime; + + while (query.MoveNext(out var uid, out var comp, out var shuttle, out var xform)) + { + if (comp.Prison == null || !TryComp(comp.Prison.Value, out var prisonComponent) || prisonComponent.Station == null) + continue; + + var station = prisonComponent.Station.Value; + var prison = comp.Prison.Value; + + + if (comp.NextTransfer > curTime || !TryComp(prison, out var data) || !TryComp(station, out var stationData)) + continue; + + var prisonGrid = EnsurePrisonGrid(); + var stationGrid = _station.GetLargestGrid(stationData); + + if (prisonGrid == null || stationGrid == null) + continue; + + if (Transform(prisonGrid.Value).MapID != xform.MapID) + { + if (TryGetRandomBeacon(Transform(prisonGrid.Value).MapID, out var beaconUid)) + FTLToBeacon(uid, beaconUid.Value); + else _shuttle.TryFTLProximity(uid, prisonGrid.Value); + } + else + { + _shuttle.FTLToDock(uid, shuttle, stationGrid.Value); + } + + comp.NextTransfer += TimeSpan.FromSeconds(ShuttleTransferTime); + } } + private EntityUid? EnsurePrisonGrid() + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var prison, out var data)) + { + foreach (var grid in data.Grids) + { + if (!HasComp(grid)) + return grid; + } + } + return null; + } + private void OnRoundEndText(RoundEndTextAppendEvent args) + { + // FIXME: Hardcoded + + var prisonGrid = EnsurePrisonGrid(); + MapId? prisonMap = null; + HashSet prisoners = new(); + HashSet alivePrisoners = new(); + HashSet escapedPrisoners = new(); + + if (prisonGrid != null) + prisonMap = Transform(prisonGrid.Value).MapID; + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var prisoner, out var mobState, out var xform)) + { + prisoners.Add(uid); + if (_mobState.IsAlive(uid, mobState)) + alivePrisoners.Add(uid); + if (Transform(uid).MapID != prisonMap) + escapedPrisoners.Add(uid); + } + + string winString; + + if (prisoners.Count == 0) + winString = "prison-no-prisoners"; + else if (alivePrisoners.Count == 0) + winString = "prisoner-dead"; + else if (escapedPrisoners.Count > 0 && escapedPrisoners.Count >= prisoners.Count * EscapedPrisonersPercent) + winString = "prisoner-major"; + else if (escapedPrisoners.Count > 0) + winString = "prisoner-minor"; + else if (alivePrisoners.Count == prisoners.Count) + winString = "prison-major"; + else winString = "prison-minor"; + + args.AddLine(Loc.GetString(winString)); + args.AddLine(Loc.GetString($"{winString}-desc")); + args.AddLine(Loc.GetString("prison-escaped")); + foreach (var entityUid in escapedPrisoners) + { + if (!_mind.TryGetMind(entityUid, out _, out var mind) || mind.OriginalOwnerUserId == null) + continue; + + if (!_player.TryGetPlayerData(mind.OriginalOwnerUserId.Value, out var data)) + continue; + // nukeops-list-name-user некорректно. + args.AddLine(Loc.GetString("nukeops-list-name-user", ("name", MetaData(entityUid).EntityName), ("user", data.UserName))); + } + args.AddLine("\n"); + } + public void FTLToBeacon(EntityUid shuttleUid, EntityUid beaconUid, ShuttleComponent? component = null) + { + if (!Resolve(shuttleUid, ref component)) + return; + + var coords = Transform(beaconUid).Coordinates; + + _shuttle.FTLToCoordinates(shuttleUid, component, coords, new Angle(0f)); + } + private void OnShuttleInit(EntityUid uid, PrisonShuttleComponent component, MapInitEvent args) + { + component.NextTransfer = _timing.CurTime + TimeSpan.FromSeconds(ShuttleTransferTime); + EnsureComp(uid); + } + public bool TryGetRandomBeacon(MapId mapId, [NotNullWhen(true)] out EntityUid? uid) + { + var query = AllEntityQuery(); + while (query.MoveNext(out var beaconUid, out var _, out var xform)) + { + if (xform.MapID != mapId) + continue; + + uid = beaconUid; + return true; + } + + uid = null; + return false; + } private void OnStationInit(EntityUid uid, StationPrisonComponent component, MapInitEvent args) { var prototype = _prototypeManager.Index(component.GameMap); diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingAnnihilateSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingAnnihilateSystem.cs deleted file mode 100644 index 1b695da2f0..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingAnnihilateSystem.cs +++ /dev/null @@ -1,28 +0,0 @@ -using Content.Server.Body.Systems; -using Content.Shared.Body.Components; -using Content.Shared.Stories.Shadowling; - -namespace Content.Server.Stories.Shadowling; -public sealed class ShadowlingAnnihilateSystem : EntitySystem -{ - [Dependency] private readonly BodySystem _body = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnAnnihilateEvent); - } - - private void OnAnnihilateEvent(EntityUid uid, ShadowlingComponent component, ShadowlingAnnihilateEvent ev) - { - if (!TryComp(ev.Performer, out var _)) - return; - - if (!TryComp(ev.Target, out var body)) - return; - - ev.Handled = true; - - _body.GibBody(ev.Target, true, body); - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingAscendanceSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingAscendanceSystem.cs deleted file mode 100644 index e6270c7f3d..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingAscendanceSystem.cs +++ /dev/null @@ -1,82 +0,0 @@ -using Content.Server.Chat.Systems; -using Content.Server.Fluids.EntitySystems; -using Content.Server.Polymorph.Systems; -using Content.Server.RoundEnd; -using Content.Server.Shuttles.Systems; -using Content.Server.Stunnable; -using Content.Shared.Chemistry.Components; -using Content.Shared.DoAfter; -using Content.Shared.Standing; -using Content.Shared.Stories.Shadowling; -using Robust.Server.GameObjects; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Physics; -using Robust.Shared.Player; - -namespace Content.Server.Stories.Shadowling; - -public sealed class ShadowlingAscendanceSystem : EntitySystem -{ - [Dependency] private readonly SmokeSystem _smoke = default!; - [Dependency] private readonly StandingStateSystem _standing = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly StunSystem _stun = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly RoundEndSystem _roundEnd = default!; - [Dependency] private readonly PolymorphSystem _polymorph = default!; - [Dependency] private readonly PhysicsSystem _physics = default!; - [Dependency] private readonly ChatSystem _chat = default!; - - public readonly string ShadowlingAscendedPolymorph = "Ascended"; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnAscendance); - SubscribeLocalEvent(OnAscendanceDoAfter); - } - - private void OnAscendance(EntityUid uid, ShadowlingComponent component, ref ShadowlingAscendanceEvent ev) - { - if (ev.Handled) - return; - - ev.Handled = true; - Log.Debug("Point 0"); - - var solution = new Solution(); - solution.AddReagent("ShadowlingSmokeReagent", 100); - - // var smokeEnt = Spawn("Smoke", Transform(uid).Coordinates); - // _smoke.StartSmoke(smokeEnt, solution, 5, 7); - - var newNullableUid = _polymorph.PolymorphEntity(uid, ShadowlingAscendedPolymorph); - - if (newNullableUid is not { } newUid) - return; - - _stun.TryStun(newUid, TimeSpan.FromSeconds(5), true); - _standing.Down(newUid, dropHeldItems: false); - _physics.SetBodyType(newUid, BodyType.Static); - - var doAfter = new DoAfterArgs(EntityManager, newUid, 5, new ShadowlingAscendanceDoAfterEvent(), newUid) - { - RequireCanInteract = false, - }; - _doAfter.TryStartDoAfter(doAfter); - - var announcementString = "Сканерами дальнего действия было зафиксировано превознесение тенеморфа, к вам будет отправлен экстренный эвакуационный шаттл."; - - _chat.DispatchGlobalAnnouncement(announcementString, playSound: true, colorOverride: Color.Red); - _audio.PlayGlobal("/Audio/Stories/Misc/tear_of_veil.ogg", Filter.Broadcast(), true, AudioParams.Default.WithVolume(-2f)); - _roundEnd.RequestRoundEnd(TimeSpan.FromMinutes(3), newUid, false); - } - - private void OnAscendanceDoAfter(EntityUid uid, ShadowlingComponent component, ref ShadowlingAscendanceDoAfterEvent ev) - { - _standing.Stand(uid); - _physics.SetBodyType(uid, BodyType.KinematicController); - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingBlackRecuperationSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingBlackRecuperationSystem.cs deleted file mode 100644 index cbb89b59fd..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingBlackRecuperationSystem.cs +++ /dev/null @@ -1,44 +0,0 @@ -using Content.Server.Popups; -using Content.Shared.Mobs.Systems; -using Content.Shared.Rejuvenate; -using Content.Shared.Stories.Shadowling; - -namespace Content.Server.Stories.Shadowling; -public sealed class ShadowlingBlackRecuperationSystem : EntitySystem -{ - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnBlackRecuperationEvent); - } - - private void OnBlackRecuperationEvent(EntityUid uid, ShadowlingComponent component, ShadowlingBlackRecuperationEvent ev) - { - if (ev.Handled) - return; - - // you can't heal yourself! - if (uid == ev.Target) - return; - - if (!HasComp(ev.Target)) - { - _popup.PopupEntity("Он не является траллом!", uid, uid); - return; - } - - if (!_mobState.IsIncapacitated(ev.Target)) - { - _popup.PopupEntity("Выбранный раб уже живой", uid, uid); - return; - } - - ev.Handled = true; - - _popup.PopupEntity("Ваши раны покрываются тенью и затягиваются...", ev.Target, ev.Target); - RaiseLocalEvent(ev.Target, new RejuvenateEvent()); - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingBlindnessSmokeSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingBlindnessSmokeSystem.cs deleted file mode 100644 index 169993044b..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingBlindnessSmokeSystem.cs +++ /dev/null @@ -1,28 +0,0 @@ -using Content.Server.Fluids.EntitySystems; -using Content.Shared.Stories.Shadowling; -using Content.Shared.Chemistry.Components; - -namespace Content.Server.Stories.Shadowling; - -public sealed class ShadowlingBlindnessSmokeSystem : EntitySystem -{ - [Dependency] private readonly SmokeSystem _smoke = default!; - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnBlindnessSmokeEvent); - } - - private void OnBlindnessSmokeEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingBlindnessSmokeEvent ev) - { - if (!TryComp(uid, out var transform)) - return; - - ev.Handled = true; - var solution = new Solution(); - solution.AddReagent("ShadowlingSmokeReagent", 100); - - var smokeEnt = Spawn("Smoke", transform.Coordinates); - _smoke.StartSmoke(smokeEnt, solution, 30, 7); - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingCollectiveMindSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingCollectiveMindSystem.cs deleted file mode 100644 index 9959fec80d..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingCollectiveMindSystem.cs +++ /dev/null @@ -1,104 +0,0 @@ -using System.Linq; -using Content.Server.Chat.Managers; -using Content.Server.Popups; -using Content.Shared.Chat; -using Content.Shared.Stories.Shadowling; -using Robust.Server.Player; -using Robust.Shared.Prototypes; - -namespace Content.Server.Stories.Shadowling; - -public sealed class ShadowlingCollectiveMindSystem : EntitySystem -{ - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly ShadowlingSystem _shadowling = default!; - [Dependency] private readonly IChatManager _chat = default!; - [Dependency] private readonly IPlayerManager _player = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; - - private const string BlindnessSmokeAction = "ActionShadowlingBlindnessSmoke"; // 3 thralls - private const string DrainThrallsAction = "ActionShadowlingDrainThralls"; // 5 thralls - private const string SonicScreechAction = "ActionShadowlingSonicScreech"; // 7 thralls - private const string BlackRecuperationAction = "ActionShadowlingBlackRecuperation"; // 9 thralls - private const string AscendanceAction = "ActionShadowlingAscendance"; // 15 thralls - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnCollectiveEvent); - } - - private void OnCollectiveEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingCollectiveMindEvent ev) - { - if (ev.Handled) - return; - ev.Handled = true; - if (!_player.TryGetSessionByEntity(uid, out var session)) - return; - - var thralls = _shadowling.GetThralls().ToArray(); - var thrallsCount = thralls.Length; - - foreach (var thrall in thralls) - { - _popup.PopupEntity("Вы чувствуете как нити теней пронизывают вашу душу", uid, thrall); - } - - List newActions = new(); - - if ((thrallsCount >= 3 || component.DebugDisableThrallsCountCheck) && !component.GrantedActions.ContainsKey(BlindnessSmokeAction)) - { - newActions.Add(BlindnessSmokeAction); - } - - // if ((thrallsCount >= 5 || component.DebugDisableThrallsCountCheck) && !component.GrantedActions.ContainsKey(DrainThrallsAction)) - // { - // newActions.Add(DrainThrallsAction); - // } - - if ((thrallsCount >= 7 || component.DebugDisableThrallsCountCheck) && !component.GrantedActions.ContainsKey(SonicScreechAction)) - { - newActions.Add(SonicScreechAction); - } - - if ((thrallsCount >= 9 || component.DebugDisableThrallsCountCheck) && !component.GrantedActions.ContainsKey(BlackRecuperationAction)) - { - newActions.Add(BlackRecuperationAction); - } - - if ((thrallsCount >= 15 || component.DebugDisableThrallsCountCheck) && !component.GrantedActions.ContainsKey(AscendanceAction)) - { - newActions.Add(AscendanceAction); - } - - if (newActions.Count > 0) - { - _chat.ChatMessageToOne( - ChatChannel.Server, - "Были разблокированы новые способности!", - "Были разблокированы новые способности!", - default, - false, - session.Channel - ); - foreach (var action in newActions) - { - if (!_prototype.TryIndex(action, out var actionPrototype)) - continue; - - _shadowling.AddAction(uid, action, component); - - var message = - $"Была разблокирована способность {Loc.GetString(actionPrototype.Name)}. {Loc.GetString(actionPrototype.Description)}"; - _chat.ChatMessageToOne(ChatChannel.Unspecified, message, message, default, false, session.Channel); - } - Dirty(uid, component); - - _popup.PopupEntity($"У вас {thrallsCount} живых порабощённых. Новые способности разблокированы!", uid, uid); - } - else - { - _popup.PopupEntity($"У вас {thrallsCount} живых порабощённых", uid, uid); - } - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingEnthrallSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingEnthrallSystem.cs deleted file mode 100644 index 0b1aaff546..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingEnthrallSystem.cs +++ /dev/null @@ -1,143 +0,0 @@ -using Content.Server.DoAfter; -using Content.Server.Mind; -using Content.Server.Popups; -using Content.Server.Stories.Lib; -using Content.Shared.Body.Components; -using Content.Shared.CCVar; -using Content.Shared.Damage.Systems; -using Content.Shared.DoAfter; -using Content.Shared.Mind; -using Content.Shared.Mind.Components; -using Content.Shared.Mindshield.Components; -using Content.Shared.Stories.Shadowling; -using Robust.Shared.Configuration; - -namespace Content.Server.Stories.Shadowling; -public sealed class ShadowlingEnthrallSystem : EntitySystem -{ - [Dependency] private readonly StaminaSystem _stamina = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly MindSystem _mind = default!; - [Dependency] private readonly DoAfterSystem _doAfter = default!; - [Dependency] private readonly ShadowlingSystem _shadowling = default!; - [Dependency] private readonly IConfigurationManager _config = default!; - [Dependency] private readonly StoriesUtilsSystem _utils = default!; - - private readonly List _enthrallablePrototypes = new() - { - "Arachnid", - "Diona", - "Dwarf", - "Human", - "Moth", - "Reptilian", - "Slime", - "Kidan" - }; - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnEnthrallEvent); - SubscribeLocalEvent(OnHypnosisEvent); - SubscribeLocalEvent(OnEnthrallDoAfterEvent); - } - - private void OnEnthrallEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingEnthrallEvent ev) - { - if (ev.Handled) - return; - - if (_shadowling.IsShadowling(ev.Target) || _shadowling.IsThrall(ev.Target)) - { - _popup.PopupEntity("Вы не можете порабощать своих союзников", uid, uid); - return; - } - - // You cannot enthrall someone with wrong body - if (!TryComp(ev.Target, out var body) || body.Prototype == null || !_enthrallablePrototypes.Contains(body.Prototype.Value.Id)) - return; - // You cannot enthrall someone without mind - var shadowlingEnthrallRequireMindAvailability = _config.GetCVar(CCVars.ShadowlingEnthrallRequireMindAvailability); - if ( - shadowlingEnthrallRequireMindAvailability && !_mind.TryGetMind(ev.Target, out var mindId, out var mind) - ) - { - _popup.PopupEntity("Вы можете порабощать существ только в сознании", uid, uid); - return; - } - - ev.Handled = true; - - if (TryComp(ev.Target, out _)) - { - _popup.PopupEntity("Вы поглощаете чей-то разум... Некий барьер полностью отражает вашу атаку", ev.Performer, ev.Performer); - _popup.PopupEntity("Ваш разум поглощается тенями... Но некий барьер полностью изгоняет их из вашего разума", ev.Target, ev.Target); - _stamina.TryTakeStamina(ev.Performer, 50); - return; - } - - _popup.PopupEntity("Вы поглощаете чей-то разум...", ev.Performer, ev.Performer); - _popup.PopupEntity("Ваш разум поглощается тенями...", ev.Target, ev.Target); - - var doAfter = new DoAfterArgs(EntityManager, ev.Performer, 5, new EnthrallDoAfterEvent(), ev.Performer, ev.Target) - { - BreakOnMove = true, - BlockDuplicate = true, - BreakOnDamage = true, - }; - - _doAfter.TryStartDoAfter(doAfter); - } - - private void OnHypnosisEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingHypnosisEvent ev) - { - ev.Handled = false; - if (TryComp(ev.Target, out _)) - return; - - // You cannot enthrall someone without body - if (!TryComp(ev.Target, out _)) - return; - // You cannot enthrall someone without mind - var shadowlingEnthrallRequireMindAvailability = _config.GetCVar(CCVars.ShadowlingEnthrallRequireMindAvailability); - if ( - shadowlingEnthrallRequireMindAvailability && - !_utils.IsInConsciousness(ev.Target) - ) - { - _popup.PopupEntity("Вы можете порабощать существ только в сознании", uid, uid); - return; - } - - ev.Handled = true; - - if (TryComp(ev.Target, out _)) - { - _popup.PopupEntity("Некий барьер полностью отражает вашу атаку", ev.Performer, ev.Performer); - _popup.PopupEntity("Некий барьер отразил сильнейшую ментальную атаку", ev.Target, ev.Target); - return; - } - - var doAfter = new DoAfterArgs(EntityManager, ev.Performer, 0, new EnthrallDoAfterEvent(), ev.Target) - { - BlockDuplicate = true - }; - - _doAfter.TryStartDoAfter(doAfter); - } - - private void OnEnthrallDoAfterEvent(EntityUid uid, ShadowlingComponent shadowling, ref EnthrallDoAfterEvent ev) - { - if (ev.Target is not { } target) - return; - - if (ev.Cancelled) - return; - - _popup.PopupEntity("Ваш разум поглощён тенями", target, target); - _popup.PopupEntity("Вы стали чуть сильнее", ev.User, ev.User); - _stamina.TakeStaminaDamage(target, 100); - - _shadowling.Enthrall(target, uid); - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingGlareSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingGlareSystem.cs deleted file mode 100644 index 9e34f35170..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingGlareSystem.cs +++ /dev/null @@ -1,29 +0,0 @@ -using Content.Server.Flash; -using Content.Server.Stunnable; -using Content.Shared.Mobs.Components; -using Content.Shared.Stories.Shadowling; - -namespace Content.Server.Stories.Shadowling; - -public sealed class ShadowlingGlareSystem : EntitySystem -{ - [Dependency] private readonly FlashSystem _flash = default!; - [Dependency] private readonly StunSystem _stun = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnGlareEvent); - } - - private void OnGlareEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingGlareEvent ev) - { - if (!HasComp(ev.Target)) - return; - - ev.Handled = true; - - _flash.Flash(ev.Target, uid, null, 15000, 0.8f, false); - _stun.TryStun(ev.Target, TimeSpan.FromSeconds(5), false); - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingHatchSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingHatchSystem.cs deleted file mode 100644 index a566c87944..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingHatchSystem.cs +++ /dev/null @@ -1,86 +0,0 @@ -using Content.Server.Fluids.EntitySystems; -using Content.Server.Polymorph.Systems; -using Content.Server.Stunnable; -using Content.Shared.Chemistry.Components; -using Content.Shared.DoAfter; -using Content.Shared.Stories.Shadowling; -using Content.Shared.Standing; -using Robust.Server.GameObjects; -using Robust.Shared.Physics; - -namespace Content.Server.Stories.Shadowling; - -public sealed class ShadowlingHatchSystem : EntitySystem -{ - [Dependency] private readonly SmokeSystem _smoke = default!; - [Dependency] private readonly StandingStateSystem _standing = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly StunSystem _stun = default!; - [Dependency] private readonly PolymorphSystem _polymorph = default!; - [Dependency] private readonly PhysicsSystem _physics = default!; - [Dependency] private readonly MetaDataSystem _meta = default!; - [Dependency] private readonly ShadowlingSystem _shadowling = default!; - - public readonly string ShadowlingPolymorph = "Shadowling"; - public readonly List DefaultAbilities = new() - { - "ActionShadowlingGlare", - "ActionShadowlingVeil", - "ActionShadowlingShadowWalk", - "ActionShadowlingIcyVeins", - "ActionShadowlingCollectiveMind", - "ActionShadowlingRapidReHatch", - }; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnHatch); - SubscribeLocalEvent(OnHatchDoAfter); - } - - private void OnHatch(EntityUid uid, ShadowlingComponent component, ref ShadowlingHatchEvent ev) - { - if (!TryComp(uid, out var transform)) - return; - - ev.Handled = true; - - var solution = new Solution(); - solution.AddReagent("ShadowlingSmokeReagent", 100); - - var smokeEnt = Spawn("Smoke", transform.Coordinates); - _smoke.StartSmoke(smokeEnt, solution, 15, 7); - var oldMeta = MetaData(uid); - - var newNullableUid = _polymorph.PolymorphEntity(uid, ShadowlingPolymorph); - - if (newNullableUid is not { } newUid) - return; - - _meta.SetEntityName(newUid, oldMeta.EntityName); - - _stun.TryStun(newUid, TimeSpan.FromSeconds(15), true); - _standing.Down(newUid, dropHeldItems: false); - _physics.SetBodyType(newUid, BodyType.Static); - - var doAfter = new DoAfterArgs(EntityManager, newUid, 15, new ShadowlingHatchDoAfterEvent(), newUid) - { - RequireCanInteract = false, - }; - _doAfter.TryStartDoAfter(doAfter); - } - - private void OnHatchDoAfter(EntityUid uid, ShadowlingComponent component, ref ShadowlingHatchDoAfterEvent ev) - { - _standing.Stand(uid); - _physics.SetBodyType(uid, BodyType.KinematicController); - _shadowling.RemoveAction(uid, ShadowlingSystem.ShadowlingHatchAction, component); - - foreach (var action in DefaultAbilities) - { - _shadowling.AddAction(uid, action, component); - } - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingIcyVeinsSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingIcyVeinsSystem.cs deleted file mode 100644 index c7f221e1ce..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingIcyVeinsSystem.cs +++ /dev/null @@ -1,38 +0,0 @@ -using Content.Shared.Body.Components; -using Content.Shared.Chemistry.Components; -using Content.Shared.Chemistry.EntitySystems; -using Content.Shared.Stories.Shadowling; - -namespace Content.Server.Stories.Shadowling; - -public sealed class ShadowlingIcyVeinsSystem : EntitySystem -{ - [Dependency] private readonly ShadowlingSystem _shadowling = default!; - [Dependency] private readonly SharedSolutionContainerSystem _solution = default!; - private const string IceOilPrototype = "IceOil"; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnIcyVeinsEvent); - } - - private void OnIcyVeinsEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingIcyVeinsEvent ev) - { - ev.Handled = true; - var bodies = _shadowling.GetEntitiesAroundShadowling(uid, 7.5f); - var solution = new Solution(); - solution.AddReagent(IceOilPrototype, 4); - - foreach (var entity in bodies) - { - if (_shadowling.IsThrall(entity) || - _shadowling.IsShadowling(entity) || - !_solution.TryGetInjectableSolution(entity, out var entitySolution, out _) - ) - continue; - - _solution.AddSolution(entitySolution.Value, solution); - } - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingLightningStormSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingLightningStormSystem.cs deleted file mode 100644 index a655397d58..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingLightningStormSystem.cs +++ /dev/null @@ -1,47 +0,0 @@ -using Content.Server.Emp; -using Content.Server.Lightning; -using Content.Server.Power.Components; -using Content.Shared.Mobs.Components; -using Content.Shared.Stories.Shadowling; -using Robust.Server.GameObjects; -using Robust.Shared.Random; - -namespace Content.Server.Stories.Shadowling; -public sealed class ShadowlingLightningStormSystem : EntitySystem -{ - [Dependency] private readonly EmpSystem _emp = default!; - [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly LightningSystem _lightning = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly TransformSystem _transform = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnLightningStormEvent); - } - - private void OnLightningStormEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingLightningStormEvent ev) - { - ev.Handled = true; - var validEnts = new HashSet(); - foreach (var ent in _lookup.GetEntitiesInRange(uid, 9)) - { - if (TryComp(ent, out var _)) - continue; - - if (HasComp(ent)) - validEnts.Add(ent); - - if (_random.Prob(0.01f) && HasComp(ent)) - validEnts.Add(ent); - } - - foreach (var ent in validEnts) - { - _lightning.ShootLightning(uid, ent); - } - - _emp.EmpPulse(_transform.GetMapCoordinates(Transform(uid)), 12, 10000, 30); - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingRapidReHatchSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingRapidReHatchSystem.cs deleted file mode 100644 index 78010aab75..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingRapidReHatchSystem.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Content.Shared.Rejuvenate; -using Content.Shared.Stories.Shadowling; - -namespace Content.Server.Stories.Shadowling; - -public sealed class ShadowlingRapidReHatchSystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnRapidReHatchEvent); - } - - private void OnRapidReHatchEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingRapidReHatchEvent ev) - { - ev.Handled = true; - RaiseLocalEvent(uid, new RejuvenateEvent()); - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingShadowWalkSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingShadowWalkSystem.cs deleted file mode 100644 index ba947b177e..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingShadowWalkSystem.cs +++ /dev/null @@ -1,86 +0,0 @@ -using Content.Server.Stories.Lib.Incorporeal; -using Content.Shared.Stories.Shadowling; -using Robust.Shared.Timing; - -namespace Content.Server.Stories.Shadowling; -public sealed class ShadowlingShadowWalkSystem : EntitySystem -{ - [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly IncorporealSystem _incorporeal = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnShadowWalkEvent); - SubscribeLocalEvent(OnPlaneShiftEvent); - } - - private void OnShadowWalkEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingShadowWalkEvent ev) - { - if (ev.Handled) - return; - ev.Handled = true; - - if (!component.InShadowWalk) - BeginShadowWalk(uid, component); - else - EndShadowWalk(uid, component); - } - - private void OnPlaneShiftEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingPlaneShiftEvent ev) - { - if (ev.Handled) - return; - ev.Handled = true; - - if (!component.InShadowWalk) - BeginPlaneShift(uid); - else - EndPlaneShift(uid); - } - - public override void Update(float frameTime) - { - base.Update(frameTime); - - var curTime = _timing.CurTime; - var query = EntityQueryEnumerator(); - - while (query.MoveNext(out var uid, out var comp)) - { - if (comp.InShadowWalk && curTime > comp.ShadowWalkEndsAt) - { - EndShadowWalk(uid, comp); - } - } - } - - private void BeginShadowWalk(EntityUid uid, ShadowlingComponent shadowling) - { - var curTime = _timing.CurTime; - shadowling.ShadowWalkEndsAt = curTime.Add(shadowling.ShadowWalkEndsIn); - shadowling.InShadowWalk = true; - Dirty(uid, shadowling); - - _incorporeal.MakeIncorporeal(uid); - } - - private void EndShadowWalk(EntityUid uid, ShadowlingComponent shadowling) - { - shadowling.InShadowWalk = false; - Dirty(uid, shadowling); - - _incorporeal.MakeCorporeal(uid); - } - - private void BeginPlaneShift(EntityUid uid) - { - _incorporeal.MakeIncorporeal(uid); - } - - private void EndPlaneShift(EntityUid uid) - { - _incorporeal.MakeCorporeal(uid); - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingSonicScreechSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingSonicScreechSystem.cs deleted file mode 100644 index 230f255282..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingSonicScreechSystem.cs +++ /dev/null @@ -1,67 +0,0 @@ -using Content.Server.Construction.Components; -using Content.Server.Emp; -using Content.Server.Popups; -using Content.Shared.Body.Components; -using Content.Shared.Damage; -using Content.Shared.Damage.Components; -using Content.Shared.Damage.Prototypes; -using Content.Shared.Damage.Systems; -using Content.Shared.Silicons.Borgs.Components; -using Content.Shared.Stories.Shadowling; -using Robust.Shared.Prototypes; - -namespace Content.Server.Stories.Shadowling; -public sealed class ShadowlingSonicScreechSystem : EntitySystem -{ - [Dependency] private readonly ShadowlingSystem _shadowling = default!; - [Dependency] private readonly DamageableSystem _damageable = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; - [Dependency] private readonly StaminaSystem _stamina = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly EmpSystem _emp = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnSonicScreechEvent); - } - - private void OnSonicScreechEvent(EntityUid uid, ShadowlingComponent component, ref ShadowlingSonicScreechEvent ev) - { - if (ev.Handled) - return; - ev.Handled = true; - - var constructions = _shadowling.GetEntitiesAroundShadowling(uid, 7.5f); - - foreach (var entity in constructions) - { - var construction = Comp(entity); - - if (construction.Graph != "Window") - continue; - - if (!_prototype.TryIndex("Structural", out var structural)) - continue; - - _damageable.TryChangeDamage(entity, new(structural, 25)); - } - - var bodies = _shadowling.GetEntitiesAroundShadowling(uid, 15); - - foreach (var body in bodies) - { - if (TryComp(body, out _)) - { - _stamina.TakeStaminaDamage(body, 100); - _popup.PopupEntity("Волна визга оглушает вас!", body, body); - continue; - } - if (TryComp(uid, out var borg)) - { - _emp.DoEmpEffects(body, 50_000, 15); - _popup.PopupEntity("Волна визга выводит вашу электронику из строя", body, body); - } - } - } -} diff --git a/Content.Server/Stories/Shadowling/Abilities/ShadowlingVeilSystem.cs b/Content.Server/Stories/Shadowling/Abilities/ShadowlingVeilSystem.cs deleted file mode 100644 index 531d59203d..0000000000 --- a/Content.Server/Stories/Shadowling/Abilities/ShadowlingVeilSystem.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Content.Server.Stories.Lib.TemporalLightOff; -using Content.Shared.Stories.Shadowling; - -namespace Content.Server.Stories.Shadowling; -public sealed class ShadowlingVeilSystem : EntitySystem -{ - [Dependency] private readonly TemporalLightOffSystem _temporalLightOff = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnVeilEvent); - } - - private void OnVeilEvent(EntityUid performer, ShadowlingComponent component, ref ShadowlingVeilEvent ev) - { - ev.Handled = true; - _temporalLightOff.DisableLightsInRange(performer, 10f, TimeSpan.FromMinutes(2)); - } -} diff --git a/Content.Server/Stories/Shadowling/Components/ShadowlingComponent.cs b/Content.Server/Stories/Shadowling/Components/ShadowlingComponent.cs deleted file mode 100644 index 1ec2090dc8..0000000000 --- a/Content.Server/Stories/Shadowling/Components/ShadowlingComponent.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Content.Shared.Damage; -using Content.Shared.Stories.Shadowling; -using Robust.Shared.Audio; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; - -namespace Content.Server.Stories.Shadowling; - -[RegisterComponent] -public sealed partial class ShadowlingComponent : SharedShadowlingComponent -{ - [ViewVariables(VVAccess.ReadOnly), DataField("inShadowWalk")] - public bool InShadowWalk; - - [ViewVariables(VVAccess.ReadOnly), DataField("shadowWalkEndsAt", customTypeSerializer: typeof(TimeOffsetSerializer))] - public TimeSpan ShadowWalkEndsAt = TimeSpan.Zero; - - [ViewVariables(VVAccess.ReadOnly), DataField("shadowWalkEndsIn", customTypeSerializer: typeof(TimeOffsetSerializer))] - public TimeSpan ShadowWalkEndsIn = TimeSpan.FromSeconds(5); - - [ViewVariables(VVAccess.ReadOnly), DataField("grantedActions")] - public Dictionary GrantedActions = new(); - - [DataField("darknessHealing")] - public DamageSpecifier DarknessHealing = new() - { - DamageDict = new() - { - { "Blunt", -5 }, - { "Slash", -5 }, - { "Piercing", -5 }, - { "Heat", -5 }, - { "Shock", -5 } - } - }; - - [DataField("lightnessDamage")] - public DamageSpecifier LightnessDamage = new() - { - DamageDict = new() - { - { "Heat", 1 } - } - }; - - [ViewVariables(VVAccess.ReadOnly), DataField("ascended")] - public bool Ascended = false; - - [ViewVariables(VVAccess.ReadWrite), DataField("performLightDamage")] - public bool PerformLightDamage = false; - - [ViewVariables(VVAccess.ReadWrite), DataField("debugDisableThrallsCountCheck")] - public bool DebugDisableThrallsCountCheck = false; - - [DataField] - public SoundSpecifier ShadowlingStartSound = new SoundPathSpecifier("/Audio/Ambience/Antag/headrev_start.ogg"); -} diff --git a/Content.Server/Stories/Shadowling/Components/ShadowlingRoleComponent.cs b/Content.Server/Stories/Shadowling/Components/ShadowlingRoleComponent.cs index 6da2e986fa..11860aeb5e 100644 --- a/Content.Server/Stories/Shadowling/Components/ShadowlingRoleComponent.cs +++ b/Content.Server/Stories/Shadowling/Components/ShadowlingRoleComponent.cs @@ -2,7 +2,7 @@ namespace Content.Server.Stories.Shadowling; -[RegisterComponent] +[RegisterComponent, ExclusiveAntagonist] public sealed partial class ShadowlingRoleComponent : AntagonistRoleComponent { diff --git a/Content.Server/Stories/Shadowling/Components/ShadowlingThrallComponent.cs b/Content.Server/Stories/Shadowling/Components/ShadowlingThrallComponent.cs deleted file mode 100644 index a3b478f008..0000000000 --- a/Content.Server/Stories/Shadowling/Components/ShadowlingThrallComponent.cs +++ /dev/null @@ -1,8 +0,0 @@ -using Content.Shared.Stories.Shadowling; - -namespace Content.Server.Stories.Shadowling; - -[RegisterComponent] -public sealed partial class ShadowlingThrallComponent : SharedShadowlingThrallComponent -{ -} diff --git a/Content.Server/Stories/Shadowling/Components/ShadowlingThralllRoleComponent.cs b/Content.Server/Stories/Shadowling/Components/ShadowlingThrallRoleComponent.cs similarity index 79% rename from Content.Server/Stories/Shadowling/Components/ShadowlingThralllRoleComponent.cs rename to Content.Server/Stories/Shadowling/Components/ShadowlingThrallRoleComponent.cs index 2a1a1905d8..80202b61c0 100644 --- a/Content.Server/Stories/Shadowling/Components/ShadowlingThralllRoleComponent.cs +++ b/Content.Server/Stories/Shadowling/Components/ShadowlingThrallRoleComponent.cs @@ -2,7 +2,7 @@ namespace Content.Server.Stories.Shadowling; -[RegisterComponent] +[RegisterComponent, ExclusiveAntagonist] public sealed partial class ShadowlingThrallRoleComponent : AntagonistRoleComponent { } diff --git a/Content.Server/Stories/Shadowling/ShadowlingSystem.Actions.cs b/Content.Server/Stories/Shadowling/ShadowlingSystem.Actions.cs new file mode 100644 index 0000000000..85bcf9d111 --- /dev/null +++ b/Content.Server/Stories/Shadowling/ShadowlingSystem.Actions.cs @@ -0,0 +1,332 @@ +using Content.Server.Administration.Logs.Converters; +using Content.Server.Light.Components; +using Content.Server.Lightning.Components; +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Damage.Components; +using Content.Shared.DoAfter; +using Content.Shared.Light.Components; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Polymorph; +using Content.Shared.Rejuvenate; +using Content.Shared.Silicons.Borgs.Components; +using Content.Shared.Stories.Conversion; +using Content.Shared.Stories.Shadowling; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Map; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.Stories.Shadowling; +public sealed partial class ShadowlingSystem +{ + [ValidatePrototypeId] + public const string ShadowlingPolymorph = "Shadowling"; + + [ValidatePrototypeId] + public const string ShadowlingAscendedPolymorph = "Ascended"; + + [ValidatePrototypeId] + public const string SmokePrototype = "Smoke"; + + [ValidatePrototypeId] + public const string ShadowlingSmokeReagent = "ShadowlingSmokeReagent"; + + [ValidatePrototypeId] + public const string ShadowlingThrallConversion = "ShadowlingThrall"; + public void InitializeActions() + { + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnAnnihilateEvent); + SubscribeLocalEvent(OnSonicScreechEvent); + SubscribeLocalEvent(OnLightningStormEvent); + SubscribeLocalEvent(OnVeilEvent); + SubscribeLocalEvent(OnRapidReHatchEvent); + SubscribeLocalEvent(OnBlackRecuperationEvent); + SubscribeLocalEvent(OnCollectiveEvent); + SubscribeLocalEvent(OnGlareEvent); + SubscribeLocalEvent(OnBlindnessSmokeEvent); + + SubscribeLocalEvent(OnHatch); + SubscribeLocalEvent(OnHatchDoAfter); + + SubscribeLocalEvent(OnAscendance); + SubscribeLocalEvent(OnAscendanceDoAfter); + + SubscribeLocalEvent(OnEnthrallEvent); + } + private void OnInit(EntityUid uid, ShadowlingComponent component, ComponentInit args) + { + RefreshActions(uid, component); + } + public float RefreshActions(EntityUid uid, ShadowlingComponent? component = null) + { + if (!Resolve(uid, ref component)) + return 0; + + var thralls = _conversion.GetEntitiesConvertedBy(uid, ShadowlingThrallConversion); + var aliveThrallsAmount = 0; + + foreach (var thrall in thralls) + if (_mobState.IsAlive(thrall)) + aliveThrallsAmount++; + + foreach (var (action, thrallsAmount) in component.Actions) + { + if (aliveThrallsAmount >= thrallsAmount && !component.GrantedActions.ContainsKey(action)) + { + var actionId = _actions.AddAction(uid, action); + if (actionId != null) + component.GrantedActions.Add(action, actionId.Value); + } + else if (aliveThrallsAmount < thrallsAmount && component.GrantedActions.TryGetValue(action, out var actionId)) + { + _actions.RemoveAction(uid, actionId); + component.GrantedActions.Remove(action); + } + } + + return aliveThrallsAmount; + } + public void ShadowSmoke(EntityCoordinates coords, float amount = 100f, float duration = 15f, int spreadAmount = 7) + { + var solution = new Solution(ShadowlingSmokeReagent, amount); + + var smokeEnt = Spawn(SmokePrototype, coords); + _smoke.StartSmoke(smokeEnt, solution, duration, spreadAmount); + } + // Actions + private void OnAnnihilateEvent(EntityUid uid, ShadowlingComponent component, ShadowlingAnnihilateEvent args) + { + if (args.Handled) + return; + + _body.GibBody(args.Target, false, splatModifier: 10); // FIXME: Hardcode + + args.Handled = true; + } + private void OnSonicScreechEvent(EntityUid uid, ShadowlingComponent component, ShadowlingSonicScreechEvent args) + { + if (args.Handled) + return; + + var targets = _entityLookup.GetEntitiesInRange(Transform(uid).Coordinates, 15f); // FIXME: Hardcode + + foreach (var (target, mobState) in targets) + { + if (HasComp(target) || HasComp(target)) + continue; + + if (HasComp(target)) + { + _emp.DoEmpEffects(target, 50_000, 15); // FIXME: Hardcode + _popup.PopupEntity("Волна визга выводит вашу электронику из строя", target, target); // FIXME: Hardcode + } + else + { + _stamina.TakeStaminaDamage(target, 100); // FIXME: Hardcode + _popup.PopupEntity("Волна визга оглушает вас!", target, target); // FIXME: Hardcode + } + } + + args.Handled = true; + } + private void OnLightningStormEvent(EntityUid uid, ShadowlingComponent component, ShadowlingLightningStormEvent args) + { + if (args.Handled) + return; + + HashSet targets = new(); + + foreach (var (ent, comp) in _entityLookup.GetEntitiesInRange(Transform(uid).Coordinates, 10f)) + { + if (HasComp(ent) || HasComp(ent)) + continue; + + if (comp.LightningExplode) // FIXME: Hardcode + continue; + + targets.Add(ent); + } + + if (targets.Count == 0) + return; + + foreach (var target in targets) + { + // Молнии от случайной цели к случайной цели. Хаос. + _lightning.ShootLightning(_random.Pick(targets), target); + } + + _emp.EmpPulse(_xform.GetMapCoordinates(uid), 12, 10000, 30); // FIXME: Hardcode + + args.Handled = true; + } + private void OnVeilEvent(EntityUid uid, ShadowlingComponent component, ShadowlingVeilEvent args) + { + if (args.Handled) + return; + + foreach (var (ent, _) in _entityLookup.GetEntitiesInRange(_xform.GetMapCoordinates(uid), 10f)) // FIXME: Hardcode + { + if (HasComp(ent)) + _poweredLight.TryDestroyBulb(ent); + else if (TryComp(ent, out var comp)) + _handheldLight.TurnOff((ent, comp)); + } + + args.Handled = true; + } + private void OnRapidReHatchEvent(EntityUid uid, ShadowlingComponent component, ShadowlingRapidReHatchEvent args) + { + if (args.Handled) + return; + + // FIXME: Убирает КД на actions. Это нам не подходит. + RaiseLocalEvent(uid, new RejuvenateEvent()); + + args.Handled = true; + } + private void OnBlackRecuperationEvent(EntityUid uid, ShadowlingComponent component, ShadowlingBlackRecuperationEvent args) + { + if (args.Handled) + return; + + if (!HasComp(args.Target)) + { + _popup.PopupCursor("Он не является траллом!", uid); // FIXME: Hardcode + return; + } + else if (HasComp(args.Target)) + { + _popup.PopupCursor("Вы не можете вылечить его!", uid); // FIXME: Hardcode + return; + } + else if (_mobState.IsAlive(args.Target)) + { + _popup.PopupCursor("Выбранный раб уже живой.", uid); // FIXME: Hardcode + return; + } + + _popup.PopupEntity("Ваши раны покрываются тенью и затягиваются...", args.Target, args.Target); // FIXME: Hardcode + RaiseLocalEvent(args.Target, new RejuvenateEvent()); + + args.Handled = true; + } + private void OnCollectiveEvent(EntityUid uid, ShadowlingComponent component, ShadowlingCollectiveMindEvent args) + { + if (args.Handled) + return; + + _popup.PopupEntity($"У вас {RefreshActions(uid, component)} живых порабощённых", uid, uid); // FIXME: Hardcode + + args.Handled = true; + } + private void OnGlareEvent(EntityUid uid, ShadowlingComponent component, ShadowlingGlareEvent args) + { + if (args.Handled) + return; + + _flash.Flash(args.Target, uid, null, 15000, 0.8f, false); // FIXME: Hardcode + _stun.TryStun(args.Target, TimeSpan.FromSeconds(5), false); // FIXME: Hardcode + + args.Handled = true; + } + private void OnBlindnessSmokeEvent(EntityUid uid, ShadowlingComponent component, ShadowlingBlindnessSmokeEvent args) + { + if (args.Handled) + return; + ShadowSmoke(Transform(uid).Coordinates, 100, 30, 7); // FIXME: Hardcode + args.Handled = true; + } + + // Hatch + private void OnHatch(EntityUid uid, ShadowlingComponent component, ShadowlingHatchEvent args) + { + if (args.Handled) + return; + + var shadowlingUid = _polymorph.PolymorphEntity(uid, ShadowlingPolymorph); + + if (shadowlingUid == null) + return; + + ShadowSmoke(Transform(shadowlingUid.Value).Coordinates, 100, 15, 7); // FIXME: Hardcode + + _stun.TryParalyze(shadowlingUid.Value, TimeSpan.FromSeconds(15), true); // FIXME: Hardcode + + var doAfterArgs = new DoAfterArgs(EntityManager, shadowlingUid.Value, TimeSpan.FromSeconds(15f), new ShadowlingHatchDoAfterEvent(), shadowlingUid) // FIXME: Hardcode + { + RequireCanInteract = false, + }; + + _doAfter.TryStartDoAfter(doAfterArgs); + args.Handled = true; + } + private void OnHatchDoAfter(EntityUid uid, ShadowlingComponent component, ShadowlingHatchDoAfterEvent args) + { + if (args.Cancelled || args.Handled) + return; + // А зачем падал? + _standing.Stand(uid); + args.Handled = true; + } + // Ascendance + private void OnAscendance(EntityUid uid, ShadowlingComponent component, ShadowlingAscendanceEvent args) + { + if (args.Handled) + return; + + ShadowSmoke(Transform(uid).Coordinates, 100f, 5f, 7); // FIXME: Hardcode + _stun.TryParalyze(uid, TimeSpan.FromSeconds(5f), true); // FIXME: Hardcode + + var doAfter = new DoAfterArgs(EntityManager, uid, TimeSpan.FromSeconds(5f), new ShadowlingAscendanceDoAfterEvent(), uid) // FIXME: Hardcode + { + RequireCanInteract = false, + }; + + _doAfter.TryStartDoAfter(doAfter); + + args.Handled = true; + } + private void OnAscendanceDoAfter(EntityUid uid, ShadowlingComponent component, ShadowlingAscendanceDoAfterEvent args) + { + if (args.Cancelled || args.Handled) + return; + // А зачем падал? + _standing.Stand(uid); + var ascendance = _polymorph.PolymorphEntity(uid, ShadowlingAscendedPolymorph); + + if (ascendance == null) + return; + + RaiseLocalEvent(new ShadowlingWorldAscendanceEvent() + { + EntityUid = ascendance.Value, + }); + + args.Handled = true; + } + // Enthrall + private void OnEnthrallEvent(EntityUid uid, ShadowlingComponent component, ShadowlingEnthrallEvent args) + { + if (args.Handled) + return; + + if (_conversion.TryConvert(args.Target, ShadowlingThrallConversion, args.Performer)) + { + _popup.PopupEntity("Вы поглотили чей-то разум...", args.Performer, args.Performer); // FIXME: Hardcode + _popup.PopupEntity("Ваш разум поглощен тенями...", args.Target, args.Target); // FIXME: Hardcode + } + else + { + _popup.PopupCursor("Не удалось обратить это!", args.Performer); // FIXME: Hardcode + _stamina.TryTakeStamina(args.Performer, 50f); // FIXME: Hardcode + } + + args.Handled = true; + } +} diff --git a/Content.Server/Stories/Shadowling/ShadowlingSystem.MindShield.cs b/Content.Server/Stories/Shadowling/ShadowlingSystem.MindShield.cs new file mode 100644 index 0000000000..7a95ea7625 --- /dev/null +++ b/Content.Server/Stories/Shadowling/ShadowlingSystem.MindShield.cs @@ -0,0 +1,17 @@ +using Content.Shared.Mindshield.Components; +using Content.Shared.Stories.Mindshield; +using Content.Shared.Stories.Shadowling; + +namespace Content.Server.Stories.Shadowling; +public sealed partial class ShadowlingSystem +{ + public void InitializeMindShield() + { + SubscribeLocalEvent(OnMindShieldImplanted); + } + private void OnMindShieldImplanted(EntityUid uid, ShadowlingComponent component, MindShieldImplantedEvent args) + { + RemCompDeferred(uid); + _popup.PopupEntity(Loc.GetString("shadowling-break-mindshield"), uid); + } +} diff --git a/Content.Server/Stories/Shadowling/ShadowlingSystem.Radio.cs b/Content.Server/Stories/Shadowling/ShadowlingSystem.Radio.cs deleted file mode 100644 index 417da8490a..0000000000 --- a/Content.Server/Stories/Shadowling/ShadowlingSystem.Radio.cs +++ /dev/null @@ -1,65 +0,0 @@ -using Content.Server.Chat.Systems; -using Content.Server.Radio; -using Content.Server.Radio.EntitySystems; -using Content.Shared.Radio; -using Robust.Shared.Network; -using Robust.Shared.Player; -using Robust.Shared.Prototypes; - -namespace Content.Server.Stories.Shadowling; - -public sealed partial class ShadowlingSystem -{ - [Dependency] private readonly INetManager _netMan = default!; - [Dependency] private readonly RadioSystem _radio = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; - private const string ShadowlingMindRadioPrototype = "ShadowlingMind"; - - public void InitializeRadio() - { - SubscribeLocalEvent(OnIntrinsicReceive); - SubscribeLocalEvent(OnIntrinsicReceive); - SubscribeLocalEvent(OnIntrinsicSpeak); - SubscribeLocalEvent(OnIntrinsicSpeak); - } - - private void OnIntrinsicSpeak(EntityUid uid, ShadowlingComponent component, EntitySpokeEvent args) - { - HandleIntrinsicSpeak(uid, args); - } - - private void OnIntrinsicSpeak(EntityUid uid, ShadowlingThrallComponent component, EntitySpokeEvent args) - { - HandleIntrinsicSpeak(uid, args); - } - - private void HandleIntrinsicSpeak(EntityUid uid, EntitySpokeEvent args) - { - if (!_prototype.TryIndex(ShadowlingMindRadioPrototype, out _)) - { - Log.Error("Cannot find ShadowlingMind radio prototype, specified prototype: {0};", ShadowlingMindRadioPrototype); - return; - } - - if (args.Channel != null && args.Channel.ID == ShadowlingMindRadioPrototype) - { - _radio.SendRadioMessage(uid, args.Message, args.Channel, uid); - args.Channel = null; // prevent duplicate messages from other listeners. - } - } - - private void OnIntrinsicReceive(EntityUid uid, ShadowlingComponent component, ref RadioReceiveEvent args) - { - HandleIntrinsicReceive(uid, ref args); - } - private void OnIntrinsicReceive(EntityUid uid, ShadowlingThrallComponent component, ref RadioReceiveEvent args) - { - HandleIntrinsicReceive(uid, ref args); - } - - private void HandleIntrinsicReceive(EntityUid uid, ref RadioReceiveEvent args) - { - if (TryComp(uid, out ActorComponent? actor)) - _netMan.ServerSendMessage(args.ChatMsg, actor.PlayerSession.Channel); - } -} diff --git a/Content.Server/Stories/Shadowling/ShadowlingSystem.Thralls.cs b/Content.Server/Stories/Shadowling/ShadowlingSystem.Thralls.cs deleted file mode 100644 index 2c3de4983d..0000000000 --- a/Content.Server/Stories/Shadowling/ShadowlingSystem.Thralls.cs +++ /dev/null @@ -1,84 +0,0 @@ -using Content.Server.Popups; -using Content.Server.Radio.Components; -using Content.Server.Stories.Lib; -using Content.Server.Stunnable; -using Content.Shared.IdentityManagement; -using Content.Shared.Mindshield.Components; -using Content.Shared.NPC.Prototypes; -using Content.Shared.NPC.Systems; -using Content.Shared.Mobs; -using Content.Shared.Mobs.Components; -using Content.Shared.Roles; -using Content.Shared.Stories.Mindshield; - -namespace Content.Server.Stories.Shadowling; -public sealed partial class ShadowlingSystem -{ - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly StunSystem _stun = default!; - [Dependency] private readonly StoriesUtilsSystem _utils = default!; - [Dependency] private readonly NpcFactionSystem _npcFaction = default!; - - [ValidatePrototypeId] - public const string ShadowlingNpcFaction = "Shadowling"; - - public void InitializeThralls() - { - SubscribeLocalEvent(OnMindShieldImplanted); - SubscribeLocalEvent(OnMindShieldImplanted); - } - - /// - /// Make someone a thrall, set up all needed components (shadowling component, shadowling mind radio) - /// - public void Enthrall(EntityUid target, EntityUid master) - { - _npcFaction.AddFaction(target, ShadowlingNpcFaction); - var slave = EnsureComp(target); - Dirty(target, slave); - var radio = EnsureComp(target); - radio.Channels.Add(ShadowlingMindRadioPrototype); - EnsureComp(target); - - var args = new AfterEnthralledEvent(target, master); - RaiseLocalEvent(target, ref args); - } - - public void Unthrall(EntityUid target) - { - RemCompDeferred(target); - RemCompDeferred(target); - var radio = Comp(target); - radio.Channels.Remove(ShadowlingMindRadioPrototype); - } - - private void OnMindShieldImplanted(EntityUid uid, ShadowlingComponent comp, MindShieldImplantedEvent ev) - { - RemCompDeferred(uid); - _popup.PopupEntity(Loc.GetString("shadowling-break-mindshield"), uid); - } - private void OnMindShieldImplanted(EntityUid uid, ShadowlingThrallComponent comp, MindShieldImplantedEvent ev) - { - var stunTime = TimeSpan.FromSeconds(4); - var name = Identity.Entity(uid, EntityManager); - - Unthrall(uid); - - _stun.TryParalyze(uid, stunTime, true); - _popup.PopupEntity(Loc.GetString("thrall-break-control", ("name", name)), uid); - } - - public IEnumerable GetThralls() - { - var entities = EntityQueryEnumerator(); - - while (entities.MoveNext(out var uid, out var mobState)) - { - if (mobState.CurrentState == MobState.Alive && IsThrall(uid)) - yield return uid; - } - } -} - -[ByRefEvent] -public record struct AfterEnthralledEvent(EntityUid Target, EntityUid Master); diff --git a/Content.Server/Stories/Shadowling/ShadowlingSystem.cs b/Content.Server/Stories/Shadowling/ShadowlingSystem.cs index 2c2ec3c19b..13d1ddb6c1 100644 --- a/Content.Server/Stories/Shadowling/ShadowlingSystem.cs +++ b/Content.Server/Stories/Shadowling/ShadowlingSystem.cs @@ -1,175 +1,111 @@ using Content.Server.Actions; +using Content.Server.Body.Systems; +using Content.Server.Chat.Systems; +using Content.Server.DoAfter; +using Content.Server.Emp; +using Content.Server.Flash; +using Content.Server.Fluids.EntitySystems; +using Content.Server.Light.EntitySystems; +using Content.Server.Lightning; +using Content.Server.Polymorph.Systems; +using Content.Server.Popups; +using Content.Server.RoundEnd; +using Content.Server.Stories.Conversion; using Content.Server.Stories.Photosensitivity; -using Content.Shared.Actions; +using Content.Server.Stunnable; using Content.Shared.Damage; +using Content.Shared.Damage.Systems; +using Content.Shared.Mobs.Systems; using Content.Shared.Stories.Shadowling; using Content.Shared.Weapons.Ranged.Events; -using Robust.Shared.Utility; +using Robust.Server.Audio; +using Robust.Server.GameObjects; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Content.Shared.Standing; +using Content.Server.Chemistry.Containers.EntitySystems; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Humanoid; +using Content.Shared.Stories.Conversion; +using Content.Shared.Mobs; namespace Content.Server.Stories.Shadowling; -public sealed partial class ShadowlingSystem : SharedShadowlingSystem +public sealed partial class ShadowlingSystem : EntitySystem { + [Dependency] private readonly SmokeSystem _smoke = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; + [Dependency] private readonly HandheldLightSystem _handheldLight = default!; + [Dependency] private readonly DoAfterSystem _doAfter = default!; + [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly RoundEndSystem _roundEnd = default!; + [Dependency] private readonly PolymorphSystem _polymorph = default!; + [Dependency] private readonly PhysicsSystem _physics = default!; + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly LightningSystem _lightning = default!; + [Dependency] private readonly PoweredLightSystem _poweredLight = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly StaminaSystem _stamina = default!; + [Dependency] private readonly EmpSystem _emp = default!; [Dependency] private readonly EntityLookupSystem _entityLookup = default!; [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly PhotosensitivitySystem _photosensitivity = default!; [Dependency] private readonly DamageableSystem _damageable = default!; - - private const float UpdateTimer = 2f; - private float _timer; - - public readonly List AscendedAbilities = new() - { - "ActionShadowlingHypnosis", - "ActionShadowlingGlare", - "ActionShadowlingVeil", - // "ActionShadowlingPlaneShift", - "ActionShadowlingShadowWalk", - "ActionShadowlingIcyVeins", - "ActionShadowlingCollectiveMind", - "ActionShadowlingRapidReHatch", - "ActionShadowlingBlindnessSmoke", - // "ActionShadowlingDrainThralls", - "ActionShadowlingSonicScreech", - "ActionShadowlingBlackRecuperation", - "ActionShadowlingLightningStorm", - "ActionShadowlingAnnihilate", - }; - + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly BodySystem _body = default!; + [Dependency] private readonly ConversionSystem _conversion = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly TransformSystem _xform = default!; + [Dependency] private readonly FlashSystem _flash = default!; + [Dependency] private readonly StunSystem _stun = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solution = default!; public override void Initialize() { base.Initialize(); - InitializeBase(); - InitializeRadio(); - InitializeThralls(); - } + InitializeMindShield(); + InitializeActions(); - private void InitializeBase() - { - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnShotAttempted); + SubscribeLocalEvent(OnThrallConverted); + SubscribeLocalEvent(OnThrallReverted); } - - public const string ShadowlingEnthrallAction = "ActionShadowlingEnthrall"; - public const string ShadowlingHatchAction = "ActionShadowlingHatch"; - - private void OnStartup(EntityUid uid, ShadowlingComponent component, ComponentStartup args) - { - if (!component.Ascended) - { - AddAction(uid, ShadowlingEnthrallAction, component); - AddAction(uid, ShadowlingHatchAction, component); - } - else - { - foreach (var action in AscendedAbilities) - { - AddAction(uid, action, component); - } - } - - EnsureComp(uid); - } - - /// - /// Internal method for abilities providing - /// - public void AddAction(EntityUid uid, string actionId, ShadowlingComponent? shadowling = null) + private void OnShotAttempted(EntityUid uid, ShadowlingComponent comp, ref ShotAttemptedEvent args) { - if (!Resolve(uid, ref shadowling)) - return; - - if (!TryComp(uid, out var action)) - return; - - DebugTools.Assert(!shadowling.GrantedActions.ContainsKey(actionId)); - - EntityUid? actionEntity = null; - _actions.AddAction(uid, ref actionEntity, actionId, uid, action); - - if (actionEntity == null) - return; - - shadowling.GrantedActions.Add(actionId, actionEntity.Value); + _popup.PopupEntity(Loc.GetString("gun-disabled"), uid, uid); + args.Cancel(); } - - /// - /// Internal method for abilities providing - /// - public void RemoveAction(EntityUid uid, string actionId, ShadowlingComponent? shadowling = null) + private void OnThrallConverted(EntityUid uid, ShadowlingThrallComponent comp, ConvertedEvent args) { - if (!Resolve(uid, ref shadowling)) - return; - - if (!TryComp(uid, out var action)) + if (args.Handled) return; - DebugTools.Assert(shadowling.GrantedActions.ContainsKey(actionId)); - - var actionEntity = shadowling.GrantedActions[actionId]; - _actions.RemoveAction(uid, actionEntity, action); - shadowling.GrantedActions.Remove(actionId); - } - - private void OnShutdown(EntityUid uid, ShadowlingComponent component, ComponentShutdown args) - { - // TODO: change metabolizm back to normal - } - - public List GetEntitiesAroundShadowling(EntityUid uid, float radius, bool filterThralls = true) where TFilter : IComponent - { - List result = new(); - - if (!TryComp(uid, out var transform)) - return result; - - foreach (var entity in _entityLookup.GetEntitiesInRange(transform.Coordinates, radius)) + if (TryComp(uid, out var appearance)) { - if (!TryComp(entity, out _)) - continue; - if (filterThralls && TryComp(entity, out _)) - continue; - - result.Add(entity); + comp.OldEyeColor = appearance.EyeColor; + appearance.EyeColor = comp.EyeColor; + Dirty(uid, appearance); } - return result; - } + if (args.Data.Owner != null) + RefreshActions(GetEntity(args.Data.Owner.Value)); - private void OnShotAttempted(EntityUid uid, ShadowlingComponent comp, ref ShotAttemptedEvent args) - { - _popup.PopupEntity(Loc.GetString("gun-disabled"), uid, uid); - args.Cancel(); + args.Handled = true; } - - public override void Update(float frameTime) + private void OnThrallReverted(EntityUid uid, ShadowlingThrallComponent comp, RevertedEvent args) { - _timer += frameTime; - - if (_timer < UpdateTimer) + if (args.Handled) return; - _timer -= UpdateTimer; - - var shadowlings = EntityQueryEnumerator(); - - while (shadowlings.MoveNext(out var uid, out var shadowling)) + if (TryComp(uid, out var appearance)) { - if (!shadowling.PerformLightDamage) - continue; - - var illumination = Math.Min(_photosensitivity.GetIllumination(uid), 10); + appearance.EyeColor = comp.OldEyeColor; + Dirty(uid, appearance); + } - if (illumination > 1.5) - { - _damageable.TryChangeDamage(uid, shadowling.LightnessDamage * illumination, true, false); - _popup.PopupEntity("Свет выжигает вас!", uid, uid); - } + if (args.Data.Owner != null) + RefreshActions(GetEntity(args.Data.Owner.Value)); - if (illumination < 1) - { - _damageable.TryChangeDamage(uid, shadowling.DarknessHealing, true, false); - } - } + args.Handled = true; } } diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 1dcda3e020..082d9c8033 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -2181,12 +2181,6 @@ public static readonly CVarDef public static readonly CVarDef GatewayGeneratorEnabled = CVarDef.Create("gateway.generator_enabled", true); - /// - /// If it's enabled then shadowling will not be able to enthrall someone without mind - /// - public static readonly CVarDef ShadowlingEnthrallRequireMindAvailability = - CVarDef.Create("shadowling.enthrall_require_mind_availability", true, CVar.SERVERONLY); // Stories-Shadowlings - // Clippy! public static readonly CVarDef TippyEntity = CVarDef.Create("tippy.entity", "Tippy", CVar.SERVER | CVar.REPLICATED); diff --git a/Content.Shared/Stories/Conversion/ConversionSystem.cs b/Content.Shared/Stories/Conversion/ConversionSystem.cs index 45207e6be8..774e117483 100644 --- a/Content.Shared/Stories/Conversion/ConversionSystem.cs +++ b/Content.Shared/Stories/Conversion/ConversionSystem.cs @@ -42,6 +42,7 @@ public bool CanConvert(EntityUid target, ProtoId prototype, return false; var ev = new ConvertAttemptEvent(target, performer, proto); + RaiseLocalEvent(target, (object) ev); return !ev.Cancelled; } @@ -56,6 +57,7 @@ public bool CanRevert(EntityUid target, ProtoId prototype, var proto = _prototype.Index(prototype); var ev = new RevertAttemptEvent(target, performer, proto); + RaiseLocalEvent(target, (object) ev); return !ev.Cancelled; } diff --git a/Content.Shared/Stories/InjectReagents/InjectReagentsSystem.cs b/Content.Shared/Stories/InjectReagents/InjectReagentsSystem.cs index f45e89cdc2..a83ac5ddb5 100644 --- a/Content.Shared/Stories/InjectReagents/InjectReagentsSystem.cs +++ b/Content.Shared/Stories/InjectReagents/InjectReagentsSystem.cs @@ -1,15 +1,20 @@ using Content.Shared.Chemistry.Components; using Content.Shared.Actions; using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Whitelist; +using Content.Shared.Chemistry.Components.SolutionManager; namespace Content.Shared.SpaceStories.InjectReagents; public sealed partial class InjectReagentsSystem : EntitySystem { [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; + [Dependency] private readonly EntityLookupSystem _entityLookup = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; public override void Initialize() { SubscribeLocalEvent(OnInjectReagentsEvent); SubscribeLocalEvent(OnIjectReagentsToTargetEvent); + SubscribeLocalEvent(OnInjectReagentsInRangeEvent); } private void OnInjectReagentsEvent(InjectReagentsEvent args) { @@ -23,12 +28,38 @@ private void OnIjectReagentsToTargetEvent(InjectReagentsToTargetEvent args) _solutions.TryAddSolution(solution.Value, args.Solution); args.Handled = true; } + private void OnInjectReagentsInRangeEvent(InjectReagentsInRangeEvent args) + { + if (args.Handled) + return; + + var entitis = _entityLookup.GetEntitiesInRange(Transform(args.Performer).Coordinates, args.Range); + foreach (var (entity, component) in entitis) + { + + if (entity == args.Performer && !args.InjectToPerformer) + continue; + + if (_whitelist.IsWhitelistFail(args.Whitelist, entity)) + continue; + + if (_whitelist.IsBlacklistPass(args.Blacklist, entity)) + continue; + + if (!_solutions.TryGetSolution((entity, component), args.SolutionTarget, out var solution)) + continue; + + _solutions.TryAddSolution(solution.Value, args.Solution); + } + + args.Handled = true; + } } public sealed partial class InjectReagentsEvent : InstantActionEvent { [ViewVariables(VVAccess.ReadWrite)] [DataField("solution")] - public Solution Solution { get; set; } + public Solution Solution { get; set; } = new(); [ViewVariables(VVAccess.ReadWrite)] [DataField("solutionTarget")] @@ -38,9 +69,29 @@ public sealed partial class InjectReagentsToTargetEvent : EntityTargetActionEven { [ViewVariables(VVAccess.ReadWrite)] [DataField("solution")] - public Solution Solution { get; set; } + public Solution Solution { get; set; } = new(); [ViewVariables(VVAccess.ReadWrite)] [DataField("solutionTarget")] public string SolutionTarget { get; set; } = "chemicals"; } +public sealed partial class InjectReagentsInRangeEvent : InstantActionEvent +{ + [DataField] + public bool InjectToPerformer { get; set; } = false; + + [DataField] + public float Range { get; set; } = 7.5f; + + [DataField] + public EntityWhitelist? Whitelist { get; set; } + + [DataField] + public EntityWhitelist? Blacklist { get; set; } + + [DataField] + public Solution Solution { get; set; } = new(); + + [DataField] + public string SolutionTarget { get; set; } = "chemicals"; +} diff --git a/Content.Shared/Stories/Lib/Incorporeal/IncorporealComponent.cs b/Content.Shared/Stories/Lib/Incorporeal/IncorporealComponent.cs deleted file mode 100644 index 9aff16b94b..0000000000 --- a/Content.Shared/Stories/Lib/Incorporeal/IncorporealComponent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.Stories.Lib.Incorporeal; - -/// -/// Component which indicates is entity incorporeal -/// -[RegisterComponent, NetworkedComponent] -public sealed partial class IncorporealComponent : Component -{ - [DataField("speedModifier"), ViewVariables(VVAccess.ReadWrite)] - public float SpeedModifier = 3f; - - [DataField("collisionMaskBefore"), ViewVariables(VVAccess.ReadOnly)] - public int CollisionMaskBefore; - - [DataField("collisionLayerBefore"), ViewVariables(VVAccess.ReadOnly)] - public int CollisionLayerBefore; -} diff --git a/Content.Shared/Stories/Lib/Invisibility/InvisibleComponent.cs b/Content.Shared/Stories/Lib/Invisibility/InvisibleComponent.cs deleted file mode 100644 index 6c00786f79..0000000000 --- a/Content.Shared/Stories/Lib/Invisibility/InvisibleComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.Stories.Lib.Invisibility; - -/// -/// Component which indicates that user is invisible -/// -[RegisterComponent, NetworkedComponent] -public sealed partial class InvisibleComponent : Component -{ -} diff --git a/Content.Shared/Stories/Lib/SharedStoriesUtilsSystem.cs b/Content.Shared/Stories/Lib/SharedStoriesUtilsSystem.cs deleted file mode 100644 index c1d99b1f0d..0000000000 --- a/Content.Shared/Stories/Lib/SharedStoriesUtilsSystem.cs +++ /dev/null @@ -1,30 +0,0 @@ -using Content.Shared.Mind; -using Content.Shared.Mind.Components; -using Content.Shared.Mobs; -using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; -using Content.Shared.Rejuvenate; -using Content.Shared.Stories.Lib.Incorporeal; -using Content.Shared.Stories.Lib.Invisibility; -using Robust.Shared.Player; - -namespace Content.Shared.Stories.Lib; - -/// -/// A system that combines common methods from systems made by Space Stories -/// And containing shortcuts for Space Wizards code -/// -public abstract partial class SharedStoriesUtilsSystem : EntitySystem -{ - [Dependency] protected readonly IEntityManager _entity = default!; - [Dependency] protected readonly MobStateSystem _mobState = default!; - - public bool IsInConsciousness(EntityUid uid) - { - // TODO: When unconscious status will appear add check for it here - if (!TryComp(uid, out var actor)) - return false; - - return actor.PlayerSession == null; - } -} diff --git a/Content.Shared/Stories/Lib/TemporalLightOff/TemporalLightOffComponent.cs b/Content.Shared/Stories/Lib/TemporalLightOff/TemporalLightOffComponent.cs deleted file mode 100644 index 92b05d371e..0000000000 --- a/Content.Shared/Stories/Lib/TemporalLightOff/TemporalLightOffComponent.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.Stories.Lib.TemporalLightOff; - -[RegisterComponent, NetworkedComponent] -public sealed partial class TemporalLightOffComponent : Component -{ - [DataField, ViewVariables] - public TimeSpan LightOffFor = TimeSpan.FromMinutes(2); - - [DataField, ViewVariables] - public TimeSpan EnableLightAt = TimeSpan.Zero; -} diff --git a/Content.Shared/Stories/Mindshield/Systems/SharedMindShieldSystem.cs b/Content.Shared/Stories/Mindshield/MindShieldSystem.cs similarity index 70% rename from Content.Shared/Stories/Mindshield/Systems/SharedMindShieldSystem.cs rename to Content.Shared/Stories/Mindshield/MindShieldSystem.cs index 65188640c9..214b4118f7 100644 --- a/Content.Shared/Stories/Mindshield/Systems/SharedMindShieldSystem.cs +++ b/Content.Shared/Stories/Mindshield/MindShieldSystem.cs @@ -2,16 +2,16 @@ namespace Content.Shared.Stories.Mindshield; -public sealed class SharedMindShieldSystem : EntitySystem +public sealed partial class MindShieldSystem : EntitySystem { [Dependency] private readonly IEntityManager _entityManager = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(MindShieldImplanted); + SubscribeLocalEvent(MindShieldImplanted); } - private void MindShieldImplanted(EntityUid uid, MindShieldComponent comp, MapInitEvent init) + private void MindShieldImplanted(EntityUid uid, MindShieldComponent comp, ComponentInit init) { var ev = new MindShieldImplantedEvent(uid, comp); _entityManager.EventBus.RaiseLocalEvent(uid, ref ev, true); @@ -19,4 +19,4 @@ private void MindShieldImplanted(EntityUid uid, MindShieldComponent comp, MapIni } [ByRefEvent] -public readonly record struct MindShieldImplantedEvent(EntityUid Uid, MindShieldComponent MindShield); +public readonly record struct MindShieldImplantedEvent(EntityUid EntityUid, MindShieldComponent Component); diff --git a/Content.Shared/Stories/Shadowling/ShadowlingAbilitiesEvents.cs b/Content.Shared/Stories/Shadowling/ShadowlingAbilitiesEvents.cs deleted file mode 100644 index 583864035a..0000000000 --- a/Content.Shared/Stories/Shadowling/ShadowlingAbilitiesEvents.cs +++ /dev/null @@ -1,91 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.DoAfter; -using Robust.Shared.Serialization; - -namespace Content.Shared.Stories.Shadowling -{ - // - // Actions - // - public sealed partial class ShadowlingHatchEvent : InstantActionEvent - { - } - - public sealed partial class ShadowlingEnthrallEvent : EntityTargetActionEvent - { - } - - public sealed partial class ShadowlingHypnosisEvent : EntityTargetActionEvent - { - } - - public sealed partial class ShadowlingGlareEvent : EntityTargetActionEvent - { - } - - public sealed partial class ShadowlingVeilEvent : InstantActionEvent - { - } - - public sealed partial class ShadowlingShadowWalkEvent : InstantActionEvent - { - } - - public sealed partial class ShadowlingIcyVeinsEvent : InstantActionEvent - { - } - - public sealed partial class ShadowlingCollectiveMindEvent : InstantActionEvent - { - } - - public sealed partial class ShadowlingRapidReHatchEvent : InstantActionEvent - { - } - - public sealed partial class ShadowlingSonicScreechEvent : InstantActionEvent - { - } - - public sealed partial class ShadowlingBlindnessSmokeEvent : InstantActionEvent - { - } - - public sealed partial class ShadowlingBlackRecuperationEvent : EntityTargetActionEvent - { - } - - public sealed partial class ShadowlingAnnihilateEvent : EntityTargetActionEvent - { - } - - public sealed partial class ShadowlingLightningStormEvent : InstantActionEvent - { - } - - public sealed partial class ShadowlingPlaneShiftEvent : InstantActionEvent - { - } - - public sealed partial class ShadowlingAscendanceEvent : InstantActionEvent - { - } - - // - // Do Afters - // - [Serializable, NetSerializable] - public sealed partial class ShadowlingHatchDoAfterEvent : SimpleDoAfterEvent - { - } - - [Serializable, NetSerializable] - public sealed partial class ShadowlingAscendanceDoAfterEvent : SimpleDoAfterEvent - { - } - - [Serializable, NetSerializable] - public sealed partial class EnthrallDoAfterEvent : SimpleDoAfterEvent - { - } -} diff --git a/Content.Shared/Stories/Shadowling/ShadowlingComponent.cs b/Content.Shared/Stories/Shadowling/ShadowlingComponent.cs index 1795594e7c..9dea64091b 100644 --- a/Content.Shared/Stories/Shadowling/ShadowlingComponent.cs +++ b/Content.Shared/Stories/Shadowling/ShadowlingComponent.cs @@ -1,7 +1,98 @@ using Robust.Shared.GameStates; +using Content.Shared.Damage; +using Robust.Shared.Audio; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Content.Shared.Actions; +using Robust.Shared.Serialization; +using Content.Shared.DoAfter; +using Content.Shared.StatusIcon; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; namespace Content.Shared.Stories.Shadowling; -[NetworkedComponent] -public abstract partial class SharedShadowlingComponent : Component + +[RegisterComponent, NetworkedComponent] +public sealed partial class ShadowlingComponent : Component +{ + [DataField] + public ProtoId StatusIcon = "ShadowlingFaction"; + + [DataField] + public Dictionary Actions = new(); + + [DataField] + public Dictionary GrantedActions = new(); +} + +// +// Actions +// +public sealed partial class ShadowlingHatchEvent : InstantActionEvent +{ +} + +public sealed partial class ShadowlingEnthrallEvent : EntityTargetActionEvent +{ +} + +public sealed partial class ShadowlingGlareEvent : EntityTargetActionEvent +{ +} + +public sealed partial class ShadowlingVeilEvent : InstantActionEvent +{ +} + +public sealed partial class ShadowlingCollectiveMindEvent : InstantActionEvent +{ +} + +public sealed partial class ShadowlingRapidReHatchEvent : InstantActionEvent +{ +} + +public sealed partial class ShadowlingSonicScreechEvent : InstantActionEvent +{ +} + +public sealed partial class ShadowlingBlindnessSmokeEvent : InstantActionEvent +{ +} + +public sealed partial class ShadowlingBlackRecuperationEvent : EntityTargetActionEvent +{ +} + +public sealed partial class ShadowlingAnnihilateEvent : EntityTargetActionEvent +{ +} + +public sealed partial class ShadowlingLightningStormEvent : InstantActionEvent +{ +} + +public sealed partial class ShadowlingAscendanceEvent : InstantActionEvent +{ +} + +// +// Do Afters +// +[Serializable, NetSerializable] +public sealed partial class ShadowlingHatchDoAfterEvent : SimpleDoAfterEvent +{ +} + +[Serializable, NetSerializable] +public sealed partial class ShadowlingAscendanceDoAfterEvent : SimpleDoAfterEvent +{ +} + +// +// Gamerule +// + +public sealed partial class ShadowlingWorldAscendanceEvent : EntityEventArgs { + public EntityUid EntityUid; } diff --git a/Content.Shared/Stories/Shadowling/ShadowlingThrallComponent.cs b/Content.Shared/Stories/Shadowling/ShadowlingThrallComponent.cs new file mode 100644 index 0000000000..5fc7bf7f56 --- /dev/null +++ b/Content.Shared/Stories/Shadowling/ShadowlingThrallComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Stories.Shadowling; + +[RegisterComponent, NetworkedComponent] +public sealed partial class ShadowlingThrallComponent : Component +{ + [DataField] + public Color OldEyeColor = Color.Black; + + [DataField] + public Color EyeColor = Color.Red; +} diff --git a/Content.Shared/Stories/Shadowling/SharedShadowlingSystem.cs b/Content.Shared/Stories/Shadowling/SharedShadowlingSystem.cs deleted file mode 100644 index 0eb081f30c..0000000000 --- a/Content.Shared/Stories/Shadowling/SharedShadowlingSystem.cs +++ /dev/null @@ -1,15 +0,0 @@ -namespace Content.Shared.Stories.Shadowling; -public abstract class SharedShadowlingSystem : EntitySystem - where TThrallComponent : SharedShadowlingThrallComponent - where TShadowlingComponent : SharedShadowlingComponent -{ - public bool IsThrall(EntityUid uid) - { - return HasComp(uid); - } - - public bool IsShadowling(EntityUid uid) - { - return HasComp(uid); - } -} diff --git a/Content.Shared/Stories/Shadowling/SharedShadowlingThrallComponent.cs b/Content.Shared/Stories/Shadowling/SharedShadowlingThrallComponent.cs deleted file mode 100644 index 8ce2eed22e..0000000000 --- a/Content.Shared/Stories/Shadowling/SharedShadowlingThrallComponent.cs +++ /dev/null @@ -1,8 +0,0 @@ -using Content.Shared.Actions; -using Robust.Shared.GameStates; - -namespace Content.Shared.Stories.Shadowling; -[NetworkedComponent] -public abstract partial class SharedShadowlingThrallComponent : Component -{ -} diff --git a/Content.Shared/Stories/ThermalVision/SharedThermalVisionSystem.cs b/Content.Shared/Stories/ThermalVision/SharedThermalVisionSystem.cs new file mode 100644 index 0000000000..dd3620af6d --- /dev/null +++ b/Content.Shared/Stories/ThermalVision/SharedThermalVisionSystem.cs @@ -0,0 +1,35 @@ +namespace Content.Shared.Stories.ThermalVision; + +public abstract class SharedThermalVisionSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnThermalVisionMapInit); + SubscribeLocalEvent(OnThermalVisionRemove); + + SubscribeLocalEvent(OnThermalVisionAfterHandle); + } + + private void OnThermalVisionAfterHandle(Entity ent, ref AfterAutoHandleStateEvent args) + { + ThermalVisionChanged(ent); + } + + private void OnThermalVisionMapInit(Entity ent, ref MapInitEvent args) + { + ThermalVisionChanged(ent); + } + + private void OnThermalVisionRemove(Entity ent, ref ComponentRemove args) + { + ThermalVisionRemoved(ent); + } + + protected virtual void ThermalVisionChanged(Entity ent) + { + } + + protected virtual void ThermalVisionRemoved(Entity ent) + { + } +} diff --git a/Content.Shared/Stories/ThermalVision/ThermalVisionComponent.cs b/Content.Shared/Stories/ThermalVision/ThermalVisionComponent.cs new file mode 100644 index 0000000000..c3c3972944 --- /dev/null +++ b/Content.Shared/Stories/ThermalVision/ThermalVisionComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Stories.ThermalVision; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +public sealed partial class ThermalVisionComponent : Component +{ + [DataField, AutoNetworkedField] + public bool Enabled = true; +} diff --git a/Resources/Audio/Ambience/Antag/ling_alert.ogg b/Resources/Audio/Ambience/Antag/ling_alert.ogg new file mode 100644 index 0000000000..1132ccca29 Binary files /dev/null and b/Resources/Audio/Ambience/Antag/ling_alert.ogg differ diff --git a/Resources/Audio/Stories/Misc/attributions.yml b/Resources/Audio/Stories/Misc/attributions.yml index a62af5923e..e432b0e3e6 100644 --- a/Resources/Audio/Stories/Misc/attributions.yml +++ b/Resources/Audio/Stories/Misc/attributions.yml @@ -2,3 +2,8 @@ license: "CC-BY-3.0" copyright: "Created by Bolgarich" source: "https://www.youtube.com/@bolgarich1181" + +- files: ["purple_code.ogg"] + license: "CC-BY-4.0" + copyright: "bobik-music" + source: "https://www.youtube.com/watch?v=vFO7bhv54W0" diff --git a/Resources/Audio/Stories/Misc/purple_code.ogg b/Resources/Audio/Stories/Misc/purple_code.ogg new file mode 100644 index 0000000000..0f51b099bb Binary files /dev/null and b/Resources/Audio/Stories/Misc/purple_code.ogg differ diff --git a/Resources/Locale/ru-RU/corvax/paper/doc-printer.ftl b/Resources/Locale/ru-RU/corvax/paper/doc-printer.ftl index 4fcabb64ec..95d3ae1d6f 100644 --- a/Resources/Locale/ru-RU/corvax/paper/doc-printer.ftl +++ b/Resources/Locale/ru-RU/corvax/paper/doc-printer.ftl @@ -1,1253 +1,744 @@ doc-text-printer-report-station = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ-ЦК[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОТЧЁТ О СИТУАЦИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Цель: - Статус выполнения цели: - Код уровня угрозы: - Причина установления кода: - Активные угрозы: - Потери среди экипажа: - Текущая ситуация: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-report-on-elimination-of-violations = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОТЧЁТ ОБ УСТРАНЕНИИ НАРУШЕНИЙ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), отчитываюсь об устранении нарушений в работе, выявленных (ФИО), в должности (полное наименование должности). - Предъявленные нарушения: - - Причина нарушений: - - Проведённые мероприятия по устранению нарушений: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ОТЧЁТ О СИТУАЦИИ [/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Цель:[/bold][italic][ЦЕЛЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Статус выполнения цели:[/bold][italic][СТАТУС][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Код уровня угрозы:[/bold][italic][КОД][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина установления кода:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Активные угрозы:[/bold][italic][УГРОЗЫ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Потери среди экипажа:[/bold][italic][ПОТЕРИ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Текущая ситуация:[/bold][italic][СИТУАЦИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-report-department = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОТЧЁТ О РАБОТЕ ОТДЕЛА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Количество сотрудников в отделе: - Количество стажёров: - Неактивные сотрудники отдела: - ФИО, должность, причина - Степень готовности цели: - Общее состояние отдела: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ОТЧЁТ О РАБОТЕ ОТДЕЛА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Количество сотрудников в отделе:[/bold][italic][СОТРУДНИКИ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Количество стажёров:[/bold][italic][СТАЖЁРЫ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Неактивные сотрудники отдела:[/bold][italic][СОТРУДНИКИ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Степень готовности цели:[/bold][italic][ГОТОВНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Общее состояние отдела:[/bold][italic][СОСТОЯНИЕ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-report-employee-performance = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОТЧЁТ О РАБОТЕ СОТРУДНИКА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименования должности), в ходе исполнения своих обязанностей выполнил положенный объём работ. Прошу принять результат работ Главой отдела (наименование отдела). - Произведённые работы: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-report-on-the-chapters-meeting = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОТЧЁТ О СОБРАНИИ ГЛАВ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Причина созыва Собрания Глав: - Формулировка поставленного перед Главами вопроса: - Количество голосов «За»: - Проголосовавшие «За»: - - Количество голосов «Против»: - Проголосовавшие «Против»: - - Количество воздержавшихся от голосования: - Воздержавшиеся от голосования: - - Решение Собрания Глав: - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ОТЧЁТ О РАБОТЕ СОТРУДНИКА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Произведённые работы:[/bold][italic][РАБОТЫ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Принято главой:[/bold][italic][ОТДЕЛА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-internal-affairs-agents-report = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ЮР-КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОТЧЁТ О ВНУТРЕННЕМ РАСЛЕДОВАНИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности Агента Внутренних Дел, в ходе внутренней проверки, запрошенной (ФИО), в должности (полное наименование должности) по причине (причина проверки) выявил следующие нарушения: - - Также хочу сообщить о следующем: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ОТЧЁТ О ВНУТРЕННЕМ РАССЛЕДОВАНИИ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + { "[" }bold]Запросивший проверку:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + { "[" }bold]Должность запросившего:[/bold][italic][ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + { "[" }bold]Причина проверки:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + { "[" }bold]Выявленные нарушения:[/bold][italic][НАРУШЕНИЕ][/italic] doc-text-printer-condition-report = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ИНЖ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОТЧЁТ О ТЕХНИЧЕСКОМ СОСТОЯНИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Была произведена проверка (название системы или объекта), результаты проверки были проанализированы, был проведён анализ причин возникновения нестабильной работы объекта. - Причина поломки объекта: - - Выявленные повреждения объекта: - - Произведённый ремонт объекта: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-Report-study-object = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОТЧЁТ ОБ ИЗУЧЕНИИ ОБЪЕКТА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Для проведения экспертизы было представлено (кто или какой отдел передал объект) приспособление с неизученными свойствами. В ходе экспертизы объект был изучен, были установлены свойства объекта и его видовая принадлежность. - Внешнее описание объекта: - - Выявленные свойства объекта: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ОТЧЁТ О ТЕХНИЧЕСКОМ СОСТОЯНИИ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Проверенный объект:[/bold][italic][ОБЪЕКТ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Выявленные повреждения объекта:[/bold][italic][ПОВРЕЖДЕНИЯ][/italic] + + { "[" }bold]Результат ремонта объекта:[/bold][italic][РЕЗУЛЬТАТ][/italic] +doc-text-printer-report-study-object = + { "[" }head = 3] ОТЧЁТ ОБ ИЗУЧЕНИИ ОБЪЕКТА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Внешнее описание объекта:[/bold][italic][ОПИСАНИЕ][/italic] + + { "[" }bold]Выявленные свойства объекта:[/bold][italic][СВОЙСТВА][/italic] doc-text-printer-experiment-report = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 НИО[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОТЧЁТ ОБ ЭКСПЕРИМЕНТЕ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Внешнее описание объекта эксперимента: + { "[" }head = 3] ЭКСПЕРИМЕНТ №[НОМЕР][/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Внешнее описание объекта эксперимента:[/bold][italic][ОПИСАНИЕ][/italic] - Экспериментатор(-ы): + { "[" }bold]Описание эксперимента:[/bold][italic][ОПИСАНИЕ][/italic] - Эксперимент №... - Описание эксперимента: + { "[" }bold]Ожидаемый результат:[/bold][italic][ОЖИДАНИЕ][/italic] - Ожидаемый результат: + { "[" }bold]Используемое оборудование:[/bold][italic][ОБОРУДОВАНИЕ][/italic] - Используемое оборудование: - - Фактический результат: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }bold]Фактический результат:[/bold][italic][РЕАЛЬНОСТЬ][/italic] doc-text-printer-disposal-report = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 СНБ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОТЧЁТ ОБ УТИЛИЗАЦИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Отделом Снабжения была произведена утилизация объектов при (метод утилизации). В ходе утилизации были обнаружены ценные предметы и вещи, ценные предметы были переданы в соответствующие отделы для их использования. - Перечень найденных вещей: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ОТЧЁТ ОБ УТИЛИЗАЦИИ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Способ утилизации:[/bold][italic][СПОСОБ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Перечень найденных вещей:[/bold][italic][ПЕРЕЧЕНЬ][/italic] doc-text-printer-application-appointment-interim = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАЯВЛЕНИЕ О НАЗНАЧЕНИИ НА ВРИО - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу согласовать моё назначение на должность временно исполняющего обязанности Главы (полное наименование отдела)/Капитана. - При вступлении в должность обязуюсь следовать Стандартным Рабочим Процедурам и до появления Главы (полное наименование отдела)/Капитана с Центрального Командования обеспечивать порядок и управление отделом, обеспечивать сохранность вверяемых мне особо ценных предметов и снаряжения. - - По прибытии Главы отдела/Капитана с Центрального Командования обязуюсь сдать повышенный доступ, особо ценные предметы и снаряжение. - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАЯВЛЕНИЕ О НАЗНАЧЕНИИ НА ВРИО[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Занимаемая должность:[/bold][italic][ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }italic]При вступлении в должность обязуюсь следовать Стандартным Рабочим Процедурам и до появления сотрудника, занимающего данную должность, с Центрального Командования обеспечивать порядок и управление отделом, обеспечивать сохранность вверяемых мне особо ценных предметов и снаряжения.[/italic] + + { "[" }bold]Подпись:[/bold][ПОДПИСЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-application-employment = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАЯВЛЕНИЕ О ТРУДОУСТРОЙСТВЕ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в текущей должности (полное наименование должности), прошу назначить меня сотрудником (название отдела трудоустройства) в должности (полное наименование должности). - Обязуюсь следовать Стандартным Рабочим Процедурам отдела. Обязуюсь сдать рабочее снаряжение и экипировку отдела при переводе. - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАЯВЛЕНИЕ О ТРУДОУСТРОЙСТВЕ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Занимаемая должность:[/bold][italic][ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-letter-resignation = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАЯВЛЕНИЕ ОБ УВОЛЬНЕНИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в текущей должности (полное наименование должности), хочу уволится с отдела (название отдела) по причине (причина). - Обязуюсь заплатить штраф, установленный условиями расторжения срочного/бессрочного контракта, на станции Центрального Командования. - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАЯВЛЕНИЕ ОБ УВОЛЬНЕНИИ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА] [/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-application-access = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАЯВЛЕНИЕ НА ПОЛУЧЕНИЕ ДОСТУПА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу предоставить мне следующие доступы: - - Причина получения повышенного доступа: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАЯВЛЕНИЕ НА ПОЛУЧЕНИЕ ДОСТУПА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Запрашиваемый доступ-а:[/bold][italic][ДОСТУП][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-application-equipment = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАЯВЛЕНИЕ НА ПОЛУЧЕНИЕ СНАРЯЖЕНИЯ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное название должности), прошу выдать мне следующее снаряжение отдела (наименование отдела)/личное снаряжение: - - Причина получения снаряжения: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-appeal = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОБРАЩЕНИЕ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу рассмотреть (ФИО), в должности (полное наименование должности) моё обращение. - Содержание обращения: - - Причины его написания: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАЯВЛЕНИЕ НА ПОЛУЧЕНИЕ СНАРЯЖЕНИЯ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Перечень снаряжение:[/bold][italic][ПЕРЕЧЕНЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-evacuation-shuttle-request = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ-ЦК[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС ЭВАКУАЦИОННОГО ШАТТЛА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Уважаемое Центральное Командование! Я, (ФИО), в должности (полное наименование должности), прошу запустить протоколы эвакуации и прислать эвакуационный шаттл, приняв решение об окончании смены. - Причина окончания смены: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАПРОС ЭВАКУАЦИОННОГО ШАТТЛА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }italic]Уважаемое Центральное Командование! Мы запрашиваем запустить протоколы эвакуации и прислать эвакуационный шаттл, приняв решение об окончании смены.[/italic] + + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА][/italic] doc-text-printer-shuttle-registration-request = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ-ЦК[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС РЕГИСТРАЦИИ ШАТТЛА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу провести регистрацию шаттла в системе NanoTrasen для идентификации. - Размеры шаттла: - - Класс шаттла: - - Ответственный за постройку: - - Запрашиваемое наименование: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАПРОС РЕГИСТРАЦИИ ШАТТЛА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Название шаттла:[/bold][italic] [НАЗВАНИЕ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Класс шаттла:[/bold][italic] [КЛАСС][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-request-call-members-central-committee-dso = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ-ЦК[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС НА ВЫЗОВ ЧЛЕНОВ ЦК, ДСО - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу рассмотреть возможность вызова на станцию: - - Причина вызова: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-request-to-establish-threat-level = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ-ЦК[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС УСТАНОВЛЕНИЯ УРОВНЯ УГРОЗЫ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу рассмотреть возможность установления на станции уровня угрозы: - - Причина установления кода: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАПРОС НА ВЫЗОВ СОТРУДНИКОВ + { "[" }bold] ЦЕНТКОМА ИЛИ ДСО[/head][/bold] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Вызываемый сотрудник:[/bold][italic] [ДЕПАРТАМЕНТ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина вызова:[/bold][italic] [ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-request-change-salary = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ-ЦК[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС НА ИЗМЕНЕНИЕ ЗАРАБОТНОЙ ПЛАТЫ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу рассмотреть возможность повышения/понижения заработной платы на (сумма или количество процентов) сотруднику (ФИО) в должности (полное название должности)/отделу (наименование отдела)/текущей смене. - Причина повышения/понижения заработной платы: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАПРОС НА ИЗМЕНЕНИЕ ОКЛАДА [/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Субъект изменения:[/bold][italic] [ИМЯИЛИОТДЕЛ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Размер изменения:[/bold][italic] [РАЗМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина изменения:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-request-for-non-listed-employment = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ-ЦК[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС ВНЕПЕРЕЧНЕВОГО ТРУДОУСТРОЙСТВА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу рассмотреть возможность принятия в рабочий штат текущей смены (ФИО) на внеперечневую должность. - Полное наименование должности: - - Ответственный за работника глава или сотрудник: - - Выполняемые работы в должности (СРП): - - Предоставляемые доступы работнику: - - Причина трудоустройства: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАПРОС ВНЕПЕРЕЧНОГО ТРУДОУСТРОЙСТВА [/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Сотрудник:[/bold][italic] [ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Название должности:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Ответственный глава:[/bold][italic] [ГЛАВА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Стандартные рабочие процедуры:[/bold][italic][СРП][/italic] + + { "[" }bold]Доступы и радиочастоты:[/bold][italic][ДОСТУПЫ][/italic] + + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА][/italic] doc-text-printer-request-for-promotion = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ-ЦК[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС ПОВЫШЕНИЯ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу рассмотреть возможность повышения (ФИО), в должности (полное наименование должности), согласно иерархии командования. Сотрудник получил необходимую для данной работы квалификацию. - Запрашиваемая должность: - - Ответственный за работника глава или сотрудник: - - Причина повышения: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-request-documents = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ЮР-КОД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС ПРЕДОСТАВЛЕНИЯ ДОКУМЕНТОВ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности Агента Внутренних Дел, прошу предоставить для проверки соответствия Корпоративному Закону копию/оригинал документов: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАПРОС ПОВЫШЕНИЯ [/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Сотрудник:[/bold][italic] [ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Повышение до:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА][/italic] doc-text-printer-request-euthanasia = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-МЕД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС НА ПРОВЕДЕНИЕ ЭВТАНАЗИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу содействие медицинского отдела в проведении эвтаназии в качестве врачебного лечения по причине (указать причину запроса). С последствиями данного решения ознакомлен, медицинским персоналом была установлена рациональность и гуманность данного решения. Претензий к к медицинскому отделу при соблюдении ими протоколов эвтаназии не имею. - По окончании процедуры прошу утилизировать тело путём (способ утилизации) при наличии на это возможности. - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАПРОС ЭВТАНАЗИИ [/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }italic]Я прошу содействие медицинского отдела в проведении эвтаназии в качестве врачебного лечения. С последствиями данного решения ознакомлен, медицинским персоналом была установлена рациональность и гуманность данного решения. Претензий к к медицинскому отделу при соблюдении ими протоколов эвтаназии не имею.[/italic] + + { "[" }bold]Причина:[/bold][italic] [ПРИЧИНА][/italic] + + { "[" }bold]Способ утилизации тела:[/bold][italic] [СПОСОБ][/italic] doc-text-printer-request-construction-work = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОД-ИНЖ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС НА ПРОВЕДЕНИЕ СТРОИТЕЛЬНЫХ РАБОТ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу провести строительные работы в (название отдела или объекта) по причине (причина запроса). - Перечень строительных работ: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-request-modernization = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОД-НИО[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАПРОС НА ПРОВЕДЕНИЕ МОДЕРНИЗАЦИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу модернизировать приборы в (название отдела или объекта) по причине (причина запроса). - Перечень модернизации: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-complaint-violation-labor-rules = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-ЮР[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЖАЛОБА НА НАРУШЕНИЕ ТРУДОВОГО ПОРЯДКА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), считаю, что в ходе работы отдела (наименование отдела) были допущены следующие нарушения: - - Прошу провести внутреннюю проверку по данным фактам нарушений. - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАПРОС ПРОВЕДЕНИЯ СТРОИТЕЛЬНЫХ + { "[" }bold] РАБОТ ИЛИ МОДЕРНИЗАЦИИ [/bold][/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Отдел:[/bold][italic] [ОТДЕЛ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Проводимые работы:[/bold][italic] [РАБОТЫ][/italic] + + { "[" }bold]Причина:[/bold][italic] [ПРИЧИНА][/italic] doc-text-printer-complaint-offense = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-СБ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЖАЛОБА НА ПРАВОНАРУШЕНИЕ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), считаю, что (ФИО), в должности (полное наименование должности), нарушил Корпоративный Закон, потому что (причина). - Произошедшее с моей точки зрения: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЖАЛОБА НА ПРАВОНАРУШЕНИЕ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Жалоба на:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность обвиняемого:[/bold][italic][ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина жалобы:[/bold][italic] [ПРИЧИНА] [/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-permission-equipment = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - РАЗРЕШЕНИЕ НА ИСПОЛЬЗОВАНИЕ СНАРЯЖЕНИЯ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности главы отдела (полное наименование отдела), разрешаю использовать (ФИО) в должности (полное наименование должности) следующее рабочее снаряжение отдела: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-permission-to-travel-in-case-of-threat= - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - РАЗРЕШЕНИЕ НА ПЕРЕДВИЖЕНИЕ ПРИ УГРОЗЕ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), разрешаю сотруднику (ФИО) в должности (полное наименование должности) передвижение по станции с целью выполнения им рабочих обязанностей. - Уровни кодов угроз, при которых даётся данное разрешение: - - Разрешённые части станции для местонахождения сотрудника (можно указать всю станцию): - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] РАЗРЕШЕНИЕ НА ИСПОЛЬЗОВАНИЕ + { "[" }bold] СНАРЯЖЕНИЯ И ВООРУЖЕНИЯ[/bold][/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Выдающий:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность выдающего:[/bold][italic][ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Выдаваемое снаряжение:[/bold][italic][СНАРЯЖЕНИЕИЛИОРУЖИЕ][ТИППАТРОНЕСЛИОРУЖИЕ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-search-permission = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 СБ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - РАЗРЕШЕНИЕ НА ОБЫСК - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), разрешаю произвести обыск (ФИО)/(полное наименование отдела), в должности (полное наименование должности). - Причина обыска: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-permission-to-carry-weapons = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 СБ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - РАЗРЕШЕНИЕ НА НОШЕНИЕ ОРУЖИЯ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), разрешаю ношение оружия (ФИО), в должности (полное наименование должности), до тех пор, пока оно используется по назначению. В случае нарушения разрешение аннулируется, оружие изымается Службой Безопасности. - Оружие и тип патронов к нему: - - Способ получения оружия и патронов к нему: - - Причина выдачи разрешения: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] РАЗРЕШЕНИЕ НА ОБЫСК [/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Субъект обыска:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-prescription-drug-authorization = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 МЕД-ПД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - РАЗРЕШЕНИЕ НА РЕЦЕПТУРНЫЙ ПРЕПАРАТ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), разрешаю хранение и использование рецептурного препарата или наркотического препарата "(полное наименование вещества)" пациенту (ФИО), в должности (полное наименование должности). - Поставленный диагноз: - - Причина выдачи препарата: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] РАЗРЕШЕНИЕ НА РЕЦЕПТУРНЫЙ ПРЕПАРАТ [/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Препарат:[/bold][italic][ПРЕПАРАТ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-permission-dispose-body = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 МЕД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - РАЗРЕШЕНИЕ НА УТИЛИЗАЦИЮ ТЕЛА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), разрешаю утилизировать тело (ФИО), в должности (полное наименование должности) в связи с невозможностью его реанимации и клонирования. - Способ утилизации: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] РАЗРЕШЕНИЕ НА УТИЛИЗАЦИЮ ТЕЛА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Утилизируемый:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-construction-permit = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ИНЖ-КОД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - РАЗРЕШЕНИЕ НА СТРОИТЕЛЬСТВО - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), разрешаю произвести (ФИО), в должности (полное наименование должности), перепланировку части станции (указание места перепланировки) по причине (причина перепланировки). - Согласованный объём перепланировки: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-permission-to-extend-marriage = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-СРВ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - РАЗРЕШЕНИЕ НА РАСШИРЕНИЕ БРАКА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), даю своё разрешение на расширение брака, заключённого между: - (ФИО), в должности (полное наименование должности) - ⠀... - (ФИО), в должности (полное наименование должности) - ⠀Для вступления в данный брак новых супругов: - (ФИО), в должности (полное наименование должности) - ⠀... - (ФИО), в должности (полное наименование должности) - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] РАЗРЕШЕНИЕ НА СТРОИТЕЛЬСТВО[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Место:[/bold][italic][МЕСТО][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Цель перестройки:[/bold][italic][Цель][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-order-dismissal = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ПРИКАЗ ОБ УВОЛЬНЕНИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), приказываю уволить сотрудника (ФИО) отдела (наименование отдела) в должности (полное наименование должности увольняемого) по причине: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ПРИКАЗ ОБ УВОЛЬНЕНИИ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Увольняемый:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность увольняемого:[/bold][italic][ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА] [/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-order-deprivation-access = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ПРИКАЗ О ЛИШЕНИИ ДОСТУПА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), приказываю лишить сотрудника (ФИО) в должности (полное наименование должности) следующего доступа(-ов): - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ПРИКАЗ ОБ ЛИШЕНИИ ДОСТУПА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Имя субъекта:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность субъекта:[/bold][italic][ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА] [/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-order-encouragement = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ПРИКАЗ О ПООЩРЕНИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности) награждаю (ФИО) в должности (полное наименование должности награждаемого) медалью/грамотой/памятной вещью/премией в размере (размер премии) за следующие заслуги: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ПРИКАЗ О ПООЩРЕНИИ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Поощряемый:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА] [/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-order-parole-prisoner = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 СБ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ПРИКАЗ ОБ УДО ЗАКЛЮЧЕННОГО - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), разрешаю освободить заключённого под стражу (ФИО) в бриг/пермабриг. После выдачи условно-досрочного заключения заключённому под стражу будет выдана гражданская профессия с обязательной работой до конца смены. - Выдаваемая профессия: - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ПРИКАЗ ОБ УДО ЗАКЛЮЧЕННОГО[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Освобождаемый:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Выдаваемая должность:[/bold][italic][ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА] [/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-order-recognizing-rentience-creature = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 НИО[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ПРИКАЗ О ПРИЗНАНИИ РАЗУМНОСТИ СУЩЕСТВА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - В ходе тестирования существа были выявлены признаки высшей мозговой деятельности и разумности данного существа, его способность мыслить, обучаться, понимание морали, наличие здравого смысла в поступках. Таким образом я, (ФИО), в должности (полное наименование должности), исходя из принципов равенства прав всех разумных существ, установленного ОПРС, признаю данное существо разумным. - Внешний вид существа: - - Устанавливаемое полное имя существа: - - Существо принято/не принято в качестве пассажира станции до окончания смены. - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ПРИКАЗ О ПРИЗНАНИИ РАЗУМНОСТИ + { "[" }bold] СУЩЕСТВА[/bold][/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Установленное ФИО:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Внешний вид:[/bold][italic][ОПИСАНИЕ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Признание пассажиром станции: [ [ДАНЕТ] ][/bold] doc-text-printer-order-medical-intervention = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОД-МЕД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - РАСПОРЯЖЕНИЕ О МЕДИЦИНСКОМ ВМЕШАТЕЛЬСТВЕ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), распоряжаюсь провести медицинское вмешательство с целью (описание цели медицинского вмешательства), в отношении (ФИО) в должности (полное наименование должности). - Основание для проведения операции: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] РАСПОРЯЖЕНИЕ О МЕДИЦИНСКОМ + { "[" }bold] ВМЕШАТЕЛЬСТВЕ[/bold][/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Пациент:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Операция:[/bold][italic][ЦЕЛЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА] [/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-product-manufacturing-order = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОД-КОД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАКАЗ НА ПРОИЗВОДСТВО ПРОДУКТА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу произвести продукцию отделом (наименование отдела). - Перечень необходимых продуктов: - - Причина заказа: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАКАЗ НА ПРОИЗВОДСТВО ПРОДУКТА [/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Задействованный отдел:[/bold][italic] [ОТДЕЛ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Перечень необходимых продуктов:[/bold][italic] [ПЕРЕЧЕНЬ][/italic] + + { "[" }bold]Причина заказа:[/bold][italic] [ПРИЧИНА][/italic] + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-order-purchase-resources-equipment = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОД-СНБ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАКАЗ НА ЗАКУПКУ РЕСУРСОВ, СНАРЯЖЕНИЯ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Перечень товаров для заказа: - - Место доставки товара: - - Причина: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАКАЗ НА ЗАКУПКУ [/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Место доставки:[/bold][italic][МЕСТО][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Перечень товара для заказа:[/bold][italic][ПЕРЕЧЕНЬ][/italic] + + { "[" }bold]Причина заказа:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-ordering-special-equipment = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ-ЦК[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАКАЗ СПЕЦИАЛЬНОГО СНАРЯЖЕНИЯ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), прошу предоставить специальное снаряжение станции от Центрального Командования. - Перечень запрашиваемого снаряжения: - - Причина запроса: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-order-purchase-weapons = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 СБ-СНБ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАКАЗ НА ЗАКУПКУ ВООРУЖЕНИЯ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), произвожу заказ боевого оружия и (или) боевых приспособлений через отдел Снабжения. - Причина заказа: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАКАЗ СПЕЦИАЛЬНОГО СНАРЯЖЕНИЯ [/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Перечень товара для заказа:[/bold][italic][ПЕРЕЧЕНЬ][/italic] + + { "[" }bold]Причина заказа:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-certificate = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ-ПД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ГРАМОТА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - (ФИО), в должности (полное наименование должности) награждается грамотой за следующие заслуги: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ГРАМОТА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Имя и фамилия награждаемого:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность:[/bold][italic][ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic][ПРИЧИНА][/italic] doc-text-printer-certificate-advanced-training = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - СВИДЕТЕЛЬСТВО О ПОВЫШЕНИИ КВАЛИФИКАЦИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности главы отдела (полное наименование отдела), свидетельствую, что сотрудник (ФИО) в должности (должность сотрудника), успешно завершил образовательный курс "(название курса)" и был аттестован. - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] СВИДЕТЕЛЬСТВО О ПОВЫШЕНИИ[/head] + { "[" }head = 3] КВАЛИФИКАЦИИ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Аттестуемый-ая:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность аттестуемого-мой:[/bold][italic][ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Специализация:[/bold][italic][НАЗВАНИЕ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-certificate-offense = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-СБ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - СВИДЕТЕЛЬСТВО О ПРАВОНАРУШЕНИИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), свидетельствую о правонарушениях/самолично признаюсь в совершении правонарушений, предусмотренных статьями: - (перечисление статей) - По данному инциденту могу пояснить следующее. - Место преступления: - Мотивы совершения преступления: - Против кого было совершено преступление: - Характер и размер вреда, причинённого преступлением: - Пособники в преступлении: - Полная хронология событий: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] СВИДЕТЕЛЬСТВО О ПРАВОНАРУШЕНИИ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Свидетельствую против:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Нарушенные статьи:[/bold][italic][СТАТЬИ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Место преступления:[/bold][italic][МЕСТО][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Мотивы совершения преступления:[/bold][italic][МОТИВЫ][/italic] + + { "[" }bold]Пострадавшие:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + + { "[" }bold]Характер и размер вреда, причиненного преступлением:[/bold][italic][ОПИСАНИЕ][/italic] + + { "[" }bold]Пособник-и в преступлении:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + + { "[" }bold]Действия пособника:[/bold][italic][ОПИСАНИЕ][/bold] + + { "[" }bold]Полная хронология событий:[/bold][italic][ХРОНОЛОГИЯ][/italic] doc-text-printer-death-certificate = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 МЕД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - СВИДЕТЕЛЬСТВО О СМЕРТИ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - ФИО умершего: - Должность умершего: - Раса: - Пол: - Причина смерти: - Возможность проведения реанимации или клонирования: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] СВИДЕТЕЛЬСТВО О СМЕРТИ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]ФИО умершего:[/bold][italic][ФАМИЛИЯ][ИМЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Раса:[/bold][italic][РАСА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Пол:[/bold][italic][ПОЛ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина смерти:[/bold][italic][ПРИЧИНА][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Возможность проведения реанимации или клонирования:[/bold][italic][ОТВЕТ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-marriage-certificate = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 СРВ-ПД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - СВИДЕТЕЛЬСТВО О ЗАКЛЮЧЕНИИ БРАКА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), заключаю брак между: - ⠀(ФИО), в должности (полное наименование должности) - ⠀... - ⠀(ФИО), в должности (полное наименование должности) - После заключения брака брачующимся были присвоены следующие полные имена: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] СВИДЕТЕЛЬСТВО О ЗАКЛЮЧЕНИЕ БРАКА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Заключается брак между:[/bold] + { "[" }italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold]‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]И[/bold] + { "[" }italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold]‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-divorce-certificate = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 СРВ-ПД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - СВИДЕТЕЛЬСТВО О РАСТОРЖЕНИИ БРАКА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), расторгаю брак между: - (ФИО), в должности (полное наименование должности) - ⠀... - (ФИО), в должности (полное наименование должности) - После расторжения брака бывшим супругам были присвоены следующие полные имена: - - Разделение имущества было произведено следующим образом: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] СВИДЕТЕЛЬСТВО О РАСТОРЖЕНИИ БРАКА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Расторгаемый брак между:[/bold] + { "[" }italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold]‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]И[/bold] + { "[" }italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold]‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Причина:[/bold][italic] [ПРИЧИНА] [/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bolditalic]Разделение имущества будет произведено следующим образом: [/bolditalic] [italic] [ОПИСАНИЕ] [/italic] doc-text-printer-closing-indictment = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 СБ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ОБВИНИТЕЛЬНОЕ ЗАКЛЮЧЕНИЕ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), разрешаю произвести арест (ФИО), в должности (полное наименование должности) в связи с подозрением в совершении данным лицом следующих правонарушений: - - В ходе предварительного следствия были обнаружены доказательства, указывающие на совершение правонарушения данным лицом. - Прямые доказательства: - - Косвенные доказательства: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ОБВИНИТЕЛЬНОЕ ЗАКЛЮЧЕНИЕ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Подозреваемый:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }italic]В ходе предварительного следствия были обнаружены доказательства, указывающие на совершение правонарушения данным лицом.[/italic] + + { "[" }bold]Прямые доказательства:[/bold][italic][ДОКАЗАТЕЛЬСТВА][/italic] + + { "[" }bold]Косвенные доказательства:[/bold][italic][ДОКАЗАТЕЛЬСТВА][/italic] doc-text-printer-sentence = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 СБ[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ПРИГОВОР - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное название должности), выношу приговор согласно данным мне полномочиям в отношении (ФИО), в должности (полное название должности). - Данное лицо нарушило следующие статьи Корпоративного Закона: - (перечисление статей) - С учётом всех смягчающих и отягчающих обстоятельств, правовое наказание данного лица представлено в виде: - (суммарный срок, пожизненно заключение, либо приговор к казни) - Административное наказание: - (понижение в должности, увольнение) - Срок заключения под стражу отсчитывается с: (время начала заключения) - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ПРИГОВОР[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Нарушитель:[/bold][italic][ИМЯ][ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Нарушения:[/bold][italic][НАРУШЕНИЯ][/italic] + + { "[" }bold]Наказание:[/bold][italic][НАКАЗАНИЕ][СРОК][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-judgment = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ЮР[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - СУДЕБНОЕ РЕШЕНИЕ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), выношу решение по судебному разбирательству в отношении (ФИО), в должности (полное наименование должности). - Предъявляемые правонарушения: + { "[" }head = 3] СУДЕБНОЕ РЕШЕНИЕ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Предъявленные нарушения:[/bold][italic][НАРУШЕНИЯ][/italic] - Решение приговора Службы Безопасности: + { "[" }bold]Назначенное время и проведенный срок:[/bold][italic][СРОК]-[СРОК][/italic] - Проведённое до судебного разбирательства время ареста: + { "[" }bold]Судное решение:[/bold][italic][НАРУШЕНИЯ][/italic] - Данное лицо нарушило следующие статьи Корпоративного Закона: - (перечисление статей) - С учётом всех смягчающих и отягчающих обстоятельств, правовое наказание данного лица представлено в виде: - (суммарный срок, пожизненно заключение, либо приговор к казни) - Административное наказание: - (понижение в должности, увольнение) - Срок заключения под стражу отсчитывается с: - (время начала заключения) - Моё решение обосновано (тем, что): - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }bold]Наказание:[/bold][italic][НАКАЗАНИЕ][СРОК][/italic] doc-text-printer-statement-health = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 МЕД-ПД[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - ЗАКЛЮЧЕНИЕ О СОСТОЯНИИ ЗДОРОВЬЯ - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Пациент (ФИО), в должности (полное наименование должности), был направлен на медицинское обследование в связи с (причина прохождения обследования). Был произведён полный осмотр пациента, проведены необходимые исследования и анализы. - Состав врачебной комиссии: - (ФИО врача, полное наименование должности или специализации) - Состояние пациента при поступлении: - - Поставленный диагноз: - - Психологическое состояние пациента: - - Оказанное лечение в ходе госпитализации: - - ============================================= - ⠀[italic]Место для печатей[/italic] -doc-text-printer-decision-to-start-trial = - ⠀[color=#1b487e]███░███░░░░██░░░░[/color] - ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ЮР[/bold] - ⠀[color=#1b487e]░░░░██░░░████░███[/color] - ============================================= - РЕШЕНИЕ О НАЧАЛЕ СУДЕБНОГО ПРОЦЕССА - ============================================= - Время от начала смены и дата: - Составитель документа: - Должность составителя: - - Я, (ФИО), в должности (полное наименование должности), сообщаю о начале судебного разбирательства по делу (ФИО) в связи со сложностью и неоднозначностью дела. - Предъявляемые правонарушения: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }head = 3] ЗАКЛЮЧЕНИЕ О СОСТОТЯНИИ ЗДОРОВЬЯ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Составитель документа:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Должность составителя:[/bold][italic] [ДОЛЖНОСТЬ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Пациент:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Диагноз:[/bold][italic] [ДИАГНОЗ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Оказанное лечение:[/bold][italic] [ЛЕЧЕНИЕ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] doc-text-printer-error-loading-form-header = - ⠀[color=#B50F1D] ███░██████░███[/color] - ⠀[color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] - ⠀[color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] - ⠀[color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Station XX-000 СИН[/bold] - ⠀[color=#B50F1D] ███░██████░███[/color] - ============================================= - НАИМЕНОВАНИЕ ДОКУМЕНТА - ============================================= - Время от начала смены и дата: - Позывной Агента: - - Полное содержание документа со всей необходимой информацией и описанием - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }color = #F0F0F0] [head = 3] НАИМЕНОВАНИЕ ДОКУМЕНТА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Позывной агента:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }italic]Содержание[/italic] doc-text-printer-notice-of-liquidation = - ⠀[color=#B50F1D] ███░██████░███[/color] - ⠀[color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] - ⠀[color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] - ⠀[color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Station XX-000 СИН-ПД[/bold] - ⠀[color=#B50F1D] ███░██████░███[/color] - ============================================= - УВЕДОМЛЕНИЕ О ЛИКВИДАЦИИ - ============================================= - Время от начала смены и дата: - Позывной агента: - - Уважаемый (ФИО), в должности (полное наименование должности)! Руководством Синдиката принято решение о вашей немедленной ликвидации в ходе данной смены. Просим заранее подготовить завещание и направить его Медицинскому отделу станции. Уничтожение вашего тела будет произведено силами Синдиката. - Причина ликвидации: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }color = #F0F0F0] [head = 3] УВЕДОМЛЕНИЕ О ЛИКВИДАЦИИ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Позывной агента:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Цель ликвидации:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }italic]Руководством Синдиката принято решение о вашей немедленной ликвидации в ходе данной смены. Просим заранее подготовить завещание и направить его Медицинскому отделу станции. Уничтожение вашего тела будет произведено силами Синдиката.[/italic] + + { "[" }bold]Причина ликвидации:[/bold][italic] [ПРИЧИНА][/italic] doc-text-printer-business-deal = - ⠀[color=#B50F1D] ███░██████░███[/color] - ⠀[color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] - ⠀[color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] - ⠀[color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Station XX-000 СИН-КОМ[/bold] - ⠀[color=#B50F1D] ███░██████░███[/color] - ============================================= - ДЕЛОВАЯ СДЕЛКА - ============================================= - Время от начала смены и дата: - Позывной агента: - - Синдикат любезно предлагает заключить сделку между станцией и агентом (позывной агента). Со стороны станции необходимо: + { "[" }color = #F0F0F0] [head = 3] ДЕЛОВАЯ СДЕЛКА[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Позывной агента:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }italic]Синдикат любезно предлагает заключить сделку между своим агентом и станцией.[/italic] - Причина выполнения условий сделки: + { "[" }bold]Со стороны станции необходимо:[/bold][italic] [УСЛОВИЯ][/italic] - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }bold]Со стороны агента обещано:[/bold][italic] [ОБЕЩАНИЕ][/italic] doc-text-printer-note-beginning-military-actions = - ⠀[color=#B50F1D] ███░██████░███[/color] - ⠀[color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] - ⠀[color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] - ⠀[color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Station XX-000 СИН[/bold] - ⠀[color=#B50F1D] ███░██████░███[/color] - ============================================= - НОТА О НАЧАЛЕ ВОЕННЫХ ДЕЙСТВИЙ - ============================================= - Время от начала смены и дата: - Позывной агента: - - Неуважаемые корпоративные крысы NanoTrasen! Синдикат официально объявляет о начале военных действий с вами, а также о начале операции по вашему истреблению. - Причина предъявления ноты: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }color = #F0F0F0] [head = 3] НОТА О НАЧАЛЕ ВОЕННЫХ ДЕЙСТВИЙ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Позывной агента:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }italic]Неуважаемые корпоративные крысы NanoTrasen! Синдикат официально объявляет о начале военных действий с вами, а также о начале операции по вашему истреблению.[/italic] + + { "[" }bold]Причина предъявления ноты:[/bold][italic] [ПРИЧИНА][/italic] doc-text-printer-report-accomplishment-goals = - ⠀[color=#B50F1D] ███░██████░███[/color] - ⠀[color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] - ⠀[color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] - ⠀[color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Station XX-000 ПД-СИН[/bold] - ⠀[color=#B50F1D] ███░██████░███[/color] - ============================================= - ОТЧЁТ О ВЫПОЛНЕНИИ ЦЕЛЕЙ - ============================================= - Время от начала смены и дата: - Позывной агента: - - Я, (позывной агента), успешно выполнил поставленные передо мной руководством Синдиката цели. Прошу принять отчёт о выполнении. - Отчёт: - - ============================================= - ⠀[italic]Место для печатей[/italic] + { "[" }color = #F0F0F0] [head = 3] ОТЧЁТ О ВЫПОЛНЕНИИ ЦЕЛЕЙ[/head] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Станция:[/bold][italic] [СТАНЦИЯ]-[КОД]-[НОМЕР][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }bold]Позывной агента:[/bold][italic] [ИМЯ] [ФАМИЛИЯ][/italic] + { "[" }bold] ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾[/bold] + { "[" }italic]Я успешно выполнил поставленные передо мной руководством Синдиката цели. Прошу принять отчёт о выполнении.[/italic] + + { "[" }bold]Отчёт:[/bold][italic] [ОТЧЕТ][/italic] diff --git a/Resources/Locale/ru-RU/materials/materials.ftl b/Resources/Locale/ru-RU/materials/materials.ftl index 8d555bc5c1..377e369a75 100644 --- a/Resources/Locale/ru-RU/materials/materials.ftl +++ b/Resources/Locale/ru-RU/materials/materials.ftl @@ -25,6 +25,7 @@ materials-bones = кости materials-coal = уголь materials-diamond = алмазы materials-gunpowder = чёрный порох +materials-inks = чернила # Ores materials-raw-iron = руда железа materials-raw-quartz = руда кварца diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/crates/service.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/crates/service.ftl new file mode 100644 index 0000000000..79ba6723c2 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/crates/service.ftl @@ -0,0 +1,2 @@ +ent-CrateServicePrinter = коробка с принтером + .desc = Принтер для всяких бюрократических штучек diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/paper/document.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/paper/document.ftl new file mode 100644 index 0000000000..61549c7600 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/paper/document.ftl @@ -0,0 +1,106 @@ +ent-PrintedDocument = { ent-PrintedPaper } + .desc = Аккуратно распечатанный бумажный документ. +ent-PrintedSyndieDocument = { ent-PrintedSyndiePaper } + .desc = Злобно распечатанный бумажный документ. +ent-PrintedDocumentReportStation = Отчет о ситуации + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentReporDepartment = Отчет о работе отдела + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentReportEmployeePerformance = Отчет о работе сотрудника + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentInternalAffairsAgentsReport = Отчет о внутреннем расследовании + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentConditionReport = Отчет о техническом состоянии + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentReportStudyObject = Отчео о исследовании объекта + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentExperimentReport = Отчет об эксперименте + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentDisposalReport = Отчет об утилизации + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentApplicationAppointmentInterim = Заявление о назначении на ВрИО + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentApplicationEmployment = Заявление на трудоустройство + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentLetterResignation = Заявление об увольнении + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentApplicationAccess = Заявление на получение доступа + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentApplicationEquipment = Заявление на получение снаряжения + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentEvacuationShuttleRequest = Запрос эвакуационного шаттла + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentShuttleRegistrationRequest = Запрос на регистрацию шаттла + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentRequestCallMembersCentralCommitteeDSO = Запрос вызова сотрудников Центкома или ДСО + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentRequestChangeSalary = Запрос изменения оклада + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentRequestForNonlistedEmployment = Запрос внеперечного трудоустройства + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentRequestForPromotion = Запрос повышения + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentRequestEuthanasia = Запрос на эвтаназию + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentRequestConstructionWork = Запрос технических работ + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentComplaintOffense = Жалоба на правонарушение + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentPermissionEquipment = Разрешение на ношение снаряжения или вооружения + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentSearchPermission = Ордер на обыск + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentPrescriptionDrugAuthorization = Разрешение на рецептурный рецепт + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentPermissionDisposeBody = Разрешение на утилизацию тела + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentConstructionPermit = Разрешение на строительство + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentOrderDismissal = Приказ увольнения + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentOrderDeprivationAccess = Приказ о лишении доступа + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentOrderEncouragement = Приказ о поощрении + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentOrderParolePrisoner = Приказ об УДО заключенного + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentOrderRecognizingSentienceCreature = Приказ о признании разумности существа + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentOrderMedicalIntervention = Приказ о вмедицинском вмешательстве + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentProductManufacturingOrder = Заказ на производство продукта + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentOrderPurchaseResourcesEquipment = Заказ на закупку + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentOrderingSpecialEquipment = Заказ специального снаряжения + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentCertificate = Грамота + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentCertificateAdvancedTraining = Свидетельство о повышении квалификации + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentCertificateOffense = Свидетельство о правонарушении + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentDeathCertificate = Свидетельство о смерти + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentMarriageCertificate = Свидетельство о заключении брака + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentDivorceCertificate = Свидетельство о расторжении брака + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentClosingIndictment = Обвинительное заключение + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentSentence = Приговор + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentJudgment = Судебное решение + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentStatementHealth = Медицинское заключение + .desc = { ent-PrintedDocument.desc } +ent-PrintedDocumentErrorLoadingFormHeader = ОШИБКА ЗАГРУЗКИ ЗАГОЛОВКА + .desc = { ent-PrintedSyndieDocument.desc } +ent-PrintedDocumentNoticeOfLiquidation = УВЕДОМЛЕНИЕ О ЛИКВИДАЦИИ + .desc = { ent-PrintedSyndieDocument.desc } +ent-PrintedDocumentBusinessDeal = ДЕЛОВАЯ СДЕЛКА + .desc = { ent-PrintedSyndieDocument.desc } +ent-PrintedDocumentNoteBeginningMilitaryActions = НОТА О НАЧАЛЕ ВОЕННЫХ ДЕЙСТВИЙ + .desc = { ent-PrintedSyndieDocument.desc } +ent-PrintedDocumentReportAccomplishmentGoals = ОТЧЕТ О ВЫПОЛНЕНИИ ЦЕЛЕЙ + .desc = { ent-PrintedSyndieDocument.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/paper/printer.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/paper/printer.ftl new file mode 100644 index 0000000000..bbce2773cb --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/catalog/fills/paper/printer.ftl @@ -0,0 +1,4 @@ +ent-BoxPrinter = коробка с принтером + .desc = Картонная коробка со всем для бумажного принтера. +ent-BoxSyndiePrinter = синди коробка с принтером + .desc = Картонная коробка с перенастроенным злодейским принтером. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/mobs/player/shadowling.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/mobs/player/shadowling.ftl index 4ea649b944..22f291657a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/mobs/player/shadowling.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/mobs/player/shadowling.ftl @@ -1,2 +1,2 @@ -ent-MobShadowling = Урист МакШэдоулинг +ent-MobShadowling = Тенеморф .desc = { ent-BaseMobShadowling.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/mobs/species/shadowling.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/mobs/species/shadowling.ftl index a3f1893571..a2dccbd0db 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/mobs/species/shadowling.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/mobs/species/shadowling.ftl @@ -1,4 +1,4 @@ -ent-BaseMobShadowling = Урист МакШэдоулинг +ent-BaseMobShadowling = Тенеморф .desc = { ent-BaseMobSpeciesOrganic.desc } ent-MobShadowlingDummy = Урист МакШэдоулинг .desc = Кукла Шедоулинга, предназначенная для настройки персонажа. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/circuitboards/machine/production.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/circuitboards/machine/production.ftl new file mode 100644 index 0000000000..14387d030c --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/devices/circuitboards/machine/production.ftl @@ -0,0 +1,2 @@ +ent-PrinterDocMachineCircuitboard = бумажный принтер (машинная плата) + .desc = Печатна плата для бумажного принтера diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/materials/sheets/other.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/materials/sheets/other.ftl new file mode 100644 index 0000000000..b30645ecc0 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/materials/sheets/other.ftl @@ -0,0 +1,12 @@ +ent-SheetPrinter = { ent-Paper } + .suffix = Полный + .desc = { ent-Paper.desc } +ent-SheetPrinter1 = { ent-SheetPrinter } + .suffix = Один + .desc = { ent-SheetPrinter.desc } +ent-InkPrinter = чернила + .suffix = Полный + .desc = { ent-SheetOtherBase.desc } +ent-InkPrinter1 = { ent-InkPrinter } + .suffix = Один + .desc = { ent-InkPrinter.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/flatpacks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/flatpacks.ftl new file mode 100644 index 0000000000..f96c572cfc --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/flatpacks.ftl @@ -0,0 +1,4 @@ +ent-PrinterDocFlatpack = упакованный бумажный принтер + .desc = Упаковка, используемая для установки бумажного принтера. +ent-PrinterDocSyndieFlatpack = упакованный бумажный синди принтер + .desc = Упаковка, используемая для установки бумажного принтера. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/paper.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/paper.ftl new file mode 100644 index 0000000000..b492f02b88 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/objects/misc/paper.ftl @@ -0,0 +1,6 @@ +ent-PenFuture = ручка будущего + .desc = Время бюрократии давно прошло +ent-PrintedPaper = распечатаная бумага + .desc = Кусок распечатанной бумаги. +ent-PrintedSyndiePaper = злая печатная бумага + .desc = Кусок злой распечатанной бумаги. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/structures/machines/printer.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/structures/machines/printer.ftl new file mode 100644 index 0000000000..10b48ae58a --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/stories/entities/structures/machines/printer.ftl @@ -0,0 +1,4 @@ +ent-PrinterDoc = бумажный принтер + .desc = Бюрократический идеал. Хранит в своей базе данных документы и позволяет их печатать, пока у вас есть бумага и чернила. +ent-PrinterDocSyndie = бумажный синди принтер + .desc = { ent-PrinterDoc.desc } diff --git a/Resources/Locale/ru-RU/stories/game-ticking/game-presets/preset-shadowling.ftl b/Resources/Locale/ru-RU/stories/game-ticking/game-presets/preset-shadowling.ftl index 2f2ad099ed..6d93bf43dc 100644 --- a/Resources/Locale/ru-RU/stories/game-ticking/game-presets/preset-shadowling.ftl +++ b/Resources/Locale/ru-RU/stories/game-ticking/game-presets/preset-shadowling.ftl @@ -1,10 +1,19 @@ -## Shadowling +shadowling-ascendance-announcement = Сканерами дальнего действия было зафиксировано превознесение тенеморфа. Спасибо, что выбрали NanoTrasen! + +shadowling-list-name-user = - [color=DarkRed]{ $name }[/color] ([color=gray]{ $user }[/color]) +shadowling-count = { $initialCount -> + [one] Тенеморф был один: + *[other] Тенеморфов было { $initialCount }: + } + +shadowling-won = [color=crimson]Тенеморфы поработили станцию и превознеслись.[/color] +shadowling-lost = [color=green]Станция уничтожила всех тенеморфов.[/color] +shadowling-stalemate = [color=yellow]Тенеморфы выжили. Ничья.[/color] -roles-antag-shadowling-name = Тенеморф -roles-antag-shadowling-objective = Захвати команду, превознесись и стань сродни Богу. shadowling-role-greeting = Вы - тенеморф. Вы должны поработить станцию, превознестись и стать богом для этой несчастной станции. Вы можете подчинять волю членов экипажа при помощи своих способностей, но помните, что щит разума может заблокировать вашу атаку. + shadowling-briefing = Используйте способность "Поработить" для подчинения членов экипажа и способность @@ -13,10 +22,6 @@ shadowling-briefing = получить возможность превознестись. shadowling-break-mindshield = Щит разума был уничтожен! -## Thrall - -roles-antag-thrall-name = Трелл -roles-antag-thrall-objective = Ваша задача - защищать и выполнять приказы тенеморфа. thrall-break-control = { $name } { $gender -> [male] вспомнил, кому он верен @@ -24,21 +29,11 @@ thrall-break-control = [epicene] вспомнили, кому они верни *[neuter] вспомнило, кому оно верно } на самом деле! + +thrall-role-goodbye = + Вы больше не тралл. + Вы не помните все то, чтобы было с вами, когда вы были им. thrall-role-greeting = - Вы - Трелл. + Вы - Тралл. Вы должны подчиняться тенеморфу и помочь ему в его цели превознестись. thrall-briefing = Помогите тенеморфу поработить станцию и превознестись. - -## General - -shadowling-title = Тенеморфы -shadowling-description = На станции обитают тенеморфы -shadowling-not-enough-ready-players = Недостаточно игроков готовы к игре! { $readyPlayersCount } игроков из необходимых { $minimumPlayers } готовы. Нельзя запустить пресет Тенеморфы. -shadowling-no-one-ready = Нет готовых игроков! Нельзя запустить пресет Тенеморфы. -shadowling-no-shadowlings = Нет кандидатов на роль тенеморфа. Нельзя запустить пресет Тенеморфы. -shadowling-won = Тенеморфы поработили станцию и превознеслись. -shadowling-name-user = { $title } (${ username }) был тенеморфом. -shadowling-name = { $title } был тенеморфом. -shadowling-lost = Станция уничтожила всех тенеморфов. -shadowling-count = Было { $initialCount } тенеморфов -shadowling-stalemate = Тенеморфы выжили. Ничья. diff --git a/Resources/Locale/ru-RU/stories/prison.ftl b/Resources/Locale/ru-RU/stories/prison.ftl new file mode 100644 index 0000000000..0fe401d643 --- /dev/null +++ b/Resources/Locale/ru-RU/stories/prison.ftl @@ -0,0 +1,21 @@ +prison-title = Тюрьма + +prison-escaped = Сбежали: + +prisoner-major = [color=crimson]Крупная победа заключенных![/color] +prisoner-major-desc = Более половины заключенных сбежали с тюрьмы. + +prisoner-minor = [color=crimson]Малая победа заключенных![/color] +prisoner-minor-desc = Хотя бы один заключенный сбежал. + +prisoner-dead = [color=yellow]Все заключенные умерли![/color] +prisoner-dead-desc = Неужели вы убили каждого?! + +prison-no-prisoners = [color=yellow]Заключенных не нашлось![/color] +prison-no-prisoners-desc = Вы же не расчленили каждого?! + +prison-minor = [color=green]Малая победа тюрьмы![/color] +prison-minor-desc = Заключенные не смогли сбежать, но некоторые умерли. + +prison-major = [color=green]Победа тюрьмы![/color] +prison-major-desc = Тюрьма сохранила всех заключенных. Невозможно. diff --git a/Resources/Maps/Stories/prison.yml b/Resources/Maps/Stories/prison.yml index aa8f150fe7..5d3aef977c 100644 --- a/Resources/Maps/Stories/prison.yml +++ b/Resources/Maps/Stories/prison.yml @@ -14,15 +14,18 @@ tilemap: 14: FloorDarkDiagonal 15: FloorDarkMini 16: FloorDarkMono + 28: FloorDarkPlastic 12: FloorDirt 13: FloorGrayConcrete 1: FloorGrayConcreteMono 7: FloorGrayConcreteSmooth 5: FloorLaundry 3: FloorMetalDiamond + 30: FloorOldConcreteMono 9: FloorOldConcreteSmooth 27: FloorShuttleBlue 26: FloorShuttleOrange + 29: FloorSteelCheckerLight 6: FloorTechMaint 18: FloorWhite 19: FloorWhiteHerringbone @@ -54,11 +57,11 @@ entities: chunks: -1,0: ind: -1,0 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAACAAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAFgAAAAAAfQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfQAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAFgAAAAAAfQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAACAAAAAAAGQAAAAAAGQAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 0,0: ind: 0,0 @@ -70,11 +73,11 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAA version: 6 1,0: ind: 1,0 @@ -150,11 +153,11 @@ entities: version: 6 -1,-4: ind: -1,-4 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 1,-4: ind: 1,-4 @@ -166,67 +169,67 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: BAAAAAAABQAAAAAABAAAAAAABQAAAAAABAAAAAAAGQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABQAAAAAABAAAAAAABQAAAAAABAAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABAAAAAAABQAAAAAABAAAAAAABQAAAAAABQAAAAAAAgAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABAAAAAAABQAAAAAABAAAAAAABQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAGQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAABQAAAAAAAgAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAhAAAAAAAhAAAAAAAGAAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAhAAAAAAAhAAAAAAAGAAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: FQAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAGQAAAAAAGQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAGQAAAAAAGQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAAABAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAFwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAFwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAFwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAFwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAABwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAADAAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAABAAAAAAABAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAgAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAgAAAAAABwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACQAAAAAADAAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACQAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACQAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACQAAAAAABwAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACQAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACQAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACQAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAFwAAAAAAFwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: DQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAACwAAAAAAAgAAAAAADQAAAAAAAQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAAAgAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAADQAAAAAAAQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAAAgAAAAAADQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAADQAAAAAAAQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAACwAAAAAAAgAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAAAgAAAAAADQAAAAAAAQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAADQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAAAgAAAAAADQAAAAAAAQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAAgAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAADQAAAAAAAQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAADQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: DQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAACwAAAAAAAgAAAAAAGAAAAAAAhAAAAAAAhAAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAAAgAAAAAAhAAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAGAAAAAAAhAAAAAAAhAAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAACwAAAAAAAgAAAAAAhAAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAAAgAAAAAAGAAAAAAAhAAAAAAAhAAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAAgAAAAAAhAAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAAgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAAGQAAAAAA version: 6 -1,-7: ind: -1,-7 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAhAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAgAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAgAAAAAACwAAAAAACwAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADQAAAAAADQAAAAAA version: 6 0,-7: ind: 0,-7 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAAAQAAAAAADQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAABwAAAAAABwAAAAAAAgAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAACwAAAAAADAAAAAAAAgAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAAgAAAAAADQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAhAAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADQAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAGAAAAAAAhAAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAABwAAAAAABwAAAAAAAgAAAAAAhAAAAAAAhAAAAAAADQAAAAAADQAAAAAAAgAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAACwAAAAAACwAAAAAADAAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAABwAAAAAAAQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAA version: 6 1,-6: ind: 1,-6 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAADQAAAAAADQAAAAAADQAAAAAAhAAAAAAAGAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAADQAAAAAABwAAAAAAAQAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAGAAAAAAAGAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAADQAAAAAABwAAAAAAAQAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAADQAAAAAABwAAAAAAAQAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAAhAAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAADQAAAAAABwAAAAAAAQAAAAAABwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAA version: 6 1,-7: ind: 1,-7 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAADQAAAAAADQAAAAAAhAAAAAAAhAAAAAAAGAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAADQAAAAAABwAAAAAAAQAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 -2,-6: ind: -2,-6 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAABwAAAAAABwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAGQAAAAAABwAAAAAABwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAGQAAAAAABwAAAAAABwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAGQAAAAAABwAAAAAABwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: hAAAAAAAGQAAAAAAGQAAAAAAHAAAAAAAEAAAAAAAEAAAAAAAHAAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHAAAAAAAEAAAAAAAEAAAAAAAHAAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHAAAAAAAEAAAAAAAEAAAAAAAHAAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHAAAAAAAEAAAAAAAEAAAAAAAHAAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAGQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAGQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAGQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -2,-7: ind: -2,-7 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAGQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAGQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAGQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGQAAAAAAhAAAAAAAhAAAAAAA version: 6 -2,-8: ind: -2,-8 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAA version: 6 -1,-8: ind: -1,-8 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 0,-8: ind: 0,-8 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAA version: 6 1,-8: ind: 1,-8 - tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA version: 6 -2,-9: ind: -2,-9 @@ -242,15 +245,15 @@ entities: version: 6 1,-9: ind: 1,-9 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAFQAAAAAAFQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -3,-7: ind: -3,-7 @@ -266,19 +269,19 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA version: 6 -3,0: ind: -3,0 @@ -292,6 +295,26 @@ entities: ind: -3,2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + 2,-9: + ind: 2,-9 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + version: 6 + 2,-8: + ind: 2,-8 + tiles: GQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + version: 6 + 2,-7: + ind: 2,-7 + tiles: hAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + version: 6 + 2,-6: + ind: 2,-6 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAA + version: 6 + 2,-5: + ind: 2,-5 + tiles: GQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: SpreaderGrid - type: GridPathfinding - type: Gravity @@ -311,30 +334,28 @@ entities: 15: -7.964841,-0.11746305 227: 2.3871064,23.735905 228: 3.8513994,27.151365 - 950: 10,-79 - 958: 19,-97 - 966: -13,-102 - 971: -24,-98 - 974: -20,-75 - 978: -12,-72 - 981: -18,-67 - 989: -17,-61 - 1127: 17,-61 - 1130: -6,-111 - 1137: 4,-110 - 1145: 15,-110 - 1146: -32,-90 - 1151: -34,-76 - 1153: -29,-77 - 1155: -22,-77 - 1161: -11,-37 - 1165: -12,-46 - 1170: -37,-114 - 1172: -34,-105 - 1180: -13,-112 - 1181: -26,-127 - 1186: -35,-125 - 1187: -30,-123 + 946: -13,-102 + 950: -20,-75 + 954: -12,-72 + 957: -18,-67 + 965: -17,-61 + 1103: 17,-61 + 1106: -6,-111 + 1113: 4,-110 + 1120: 15,-110 + 1121: -32,-90 + 1126: -34,-76 + 1128: -29,-77 + 1130: -22,-77 + 1133: -11,-37 + 1137: -12,-46 + 1142: -37,-114 + 1144: -34,-105 + 1149: -13,-112 + 1150: -26,-127 + 1155: -35,-125 + 1156: -30,-123 + 1401: -18.208618,-29.048918 - node: color: '#FFFFFFFF' id: Basalt2 @@ -343,32 +364,29 @@ entities: 11: -13.042966,-4.148713 12: -11.355466,-3.258088 13: -14.527341,1.8044119 - 980: -15,-68 - 1138: 7,-110 - 1156: -19,-79 - 1159: -25,-92 - 1174: -29,-99 + 956: -15,-68 + 1114: 7,-110 + 1131: -19,-79 - node: color: '#FFFFFFFF' id: Basalt3 decals: - 951: 7,-80 - 953: 17,-80 - 959: 18,-100 - 963: -3,-106 - 973: -21,-78 - 979: -11,-70 - 987: -13,-58 - 1126: 16,-58 - 1139: 8,-108 - 1144: 19,-110 - 1147: -36,-89 - 1154: -25,-77 - 1160: -7,-34 - 1162: -11,-40 - 1169: -33,-120 - 1182: -28,-125 - 1188: -31,-119 + 939: 7,-80 + 943: -3,-106 + 949: -21,-78 + 955: -11,-70 + 963: -13,-58 + 1102: 16,-58 + 1115: 8,-108 + 1119: 19,-110 + 1122: -36,-89 + 1129: -25,-77 + 1132: -7,-34 + 1134: -11,-40 + 1141: -33,-120 + 1151: -28,-125 + 1157: -31,-119 + 1399: -19.849243,-29.189543 - node: color: '#FFFFFFFF' id: Basalt4 @@ -377,9 +395,8 @@ entities: 220: -6.638397,22.521593 221: 0.50222766,25.120186 222: 0.75222766,28.50957 - 970: -25,-96 - 986: -9,-58 - 1131: -8,-112 + 962: -9,-58 + 1107: -8,-112 - node: color: '#FFFFFFFF' id: Basalt5 @@ -388,27 +405,23 @@ entities: 8: -12.996091,1.1481619 9: -14.542966,-0.039338052 16: -7.761716,-1.5237131 - 952: 4,-79 - 954: 18,-85 - 960: 17,-101 - 964: -5,-106 - 967: -14,-98 - 972: -20,-90 - 976: -16,-72 - 982: -10,-67 - 988: -16,-58 - 1128: 18,-58 - 1133: -12,-109 - 1140: 11,-107 - 1141: 17,-111 - 1148: -36,-86 - 1157: -21,-93 - 1166: -12,-51 - 1171: -34,-111 - 1173: -33,-103 - 1178: -19,-111 - 1183: -36,-126 - 1190: -31,-114 + 940: 4,-79 + 944: -5,-106 + 947: -14,-98 + 952: -16,-72 + 958: -10,-67 + 964: -16,-58 + 1104: 18,-58 + 1109: -12,-109 + 1116: 17,-111 + 1123: -36,-86 + 1138: -12,-51 + 1143: -34,-111 + 1145: -33,-103 + 1147: -19,-111 + 1152: -36,-126 + 1159: -31,-114 + 1400: -18.927368,-29.892668 - node: color: '#FFFFFFFF' id: Basalt6 @@ -416,17 +429,15 @@ entities: 223: -6.388397,28.650194 224: -7.497772,24.16582 225: -8.154022,25.556444 - 955: 17,-88 - 961: 16,-106 - 968: -17,-96 - 975: -18,-74 - 1129: 14,-60 - 1132: -11,-110 - 1149: -37,-85 - 1158: -24,-93 - 1167: -14,-56 - 1179: -16,-112 - 1184: -38,-126 + 941: 16,-106 + 948: -17,-96 + 951: -18,-74 + 1105: 14,-60 + 1108: -11,-110 + 1124: -37,-85 + 1139: -14,-56 + 1148: -16,-112 + 1153: -38,-126 - node: color: '#FFFFFFFF' id: Basalt7 @@ -434,35 +445,31 @@ entities: 4: -12.167966,-1.7893381 5: -12.589841,-2.961213 6: -13.480466,-1.1643381 - 956: 18,-91 - 984: -11,-61 - 1136: 0,-112 - 1142: 9,-111 - 1163: -10,-42 - 1168: -4,-31 - 1175: -28,-97 + 960: -11,-61 + 1112: 0,-112 + 1117: 9,-111 + 1135: -10,-42 + 1140: -4,-31 - node: color: '#FFFFFFFF' id: Basalt8 decals: 226: -5.029022,27.618944 - 957: 17,-93 - 962: 0,-107 - 965: -13,-105 - 969: -20,-96 - 977: -14,-72 - 983: -11,-65 - 985: -12,-59 - 1134: -12,-107 - 1135: 2,-111 - 1143: 12,-112 - 1150: -37,-82 - 1152: -36,-78 - 1164: -11,-46 - 1176: -27,-94 - 1177: -21,-110 - 1185: -38,-125 - 1189: -30,-116 + 942: 0,-107 + 945: -13,-105 + 953: -14,-72 + 959: -11,-65 + 961: -12,-59 + 1110: -12,-107 + 1111: 2,-111 + 1118: 12,-112 + 1125: -37,-82 + 1127: -36,-78 + 1136: -11,-46 + 1146: -21,-110 + 1154: -38,-125 + 1158: -30,-116 + 1402: -18.958618,-28.564543 - node: color: '#FFFFFFFF' id: Basalt9 @@ -506,50 +513,96 @@ entities: color: '#52B4E996' id: BrickCornerOverlayNE decals: - 1032: 19,-64 + 1008: 19,-64 - node: color: '#52B4E996' id: BrickCornerOverlayNW decals: - 1045: 13,-64 + 1021: 13,-64 - node: color: '#52B4E996' id: BrickCornerOverlaySE decals: - 1047: 19,-66 + 1023: 19,-66 - node: color: '#52B4E996' id: BrickCornerOverlaySW decals: - 1046: 13,-66 + 1022: 13,-66 - node: color: '#52B4E996' id: BrickLineOverlayE decals: - 1039: 19,-65 + 1015: 19,-65 - node: color: '#52B4E996' id: BrickLineOverlayN decals: - 1040: 14,-64 - 1041: 15,-64 - 1042: 16,-64 - 1043: 17,-64 - 1044: 18,-64 + 1016: 14,-64 + 1017: 15,-64 + 1018: 16,-64 + 1019: 17,-64 + 1020: 18,-64 - node: color: '#52B4E996' id: BrickLineOverlayS decals: - 1034: 14,-66 - 1035: 15,-66 - 1036: 16,-66 - 1037: 17,-66 - 1038: 18,-66 + 1010: 14,-66 + 1011: 15,-66 + 1012: 16,-66 + 1013: 17,-66 + 1014: 18,-66 - node: color: '#52B4E996' id: BrickLineOverlayW decals: - 1033: 13,-65 + 1009: 13,-65 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerNe + decals: + 1869: -26,-99 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerNw + decals: + 1866: -29,-99 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerSe + decals: + 1867: -26,-103 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerSw + decals: + 1868: -29,-103 + - node: + color: '#9FED5896' + id: BrickTileSteelLineE + decals: + 1870: -26,-100 + 1871: -26,-101 + 1872: -26,-102 + - node: + color: '#9FED5896' + id: BrickTileSteelLineN + decals: + 1878: -28,-99 + 1879: -27,-99 + - node: + color: '#9FED5896' + id: BrickTileSteelLineS + decals: + 1875: -28,-103 + 1876: -27,-103 + - node: + color: '#9FED5896' + id: BrickTileSteelLineW + decals: + 1873: -29,-100 + 1874: -29,-102 + 1877: -29,-101 - node: color: '#FFFFFFFF' id: Delivery @@ -564,65 +617,1612 @@ entities: color: '#792C00FF' id: Dirt decals: - 822: -17,-89 - 823: -18,-89 - 824: -18,-90 - 825: -16,-90 - 826: -16,-91 - 827: -17,-91 - 828: -18,-91 - 829: -18,-92 - 830: -16,-92 - 831: -16,-92 - 832: -16,-93 - 833: -17,-93 - 834: -17,-92 - 835: -18,-93 - 836: -17,-90 - 837: -16,-89 - 838: -16,-88 - 839: -17,-88 - 840: -18,-88 - 841: -17,-87 - 842: -17,-87 - 843: -18,-87 - 844: -18,-86 - 845: -18,-86 - 846: -17,-86 - 847: -16,-86 - 848: -16,-86 - 849: -17,-86 - 850: -18,-86 - 851: -18,-86 - 852: -16,-87 - 853: -16,-87 - 854: -15,-87 - 855: -15,-86 - 856: -15,-87 - 857: -15,-88 - 858: -15,-89 - 859: -15,-90 - 860: -15,-91 - 861: -15,-92 - 862: -15,-93 - 863: -16,-93 - 864: -18,-92 - 865: -18,-92 - 866: -18,-90 - 867: -18,-90 - 868: -17,-89 - 869: -18,-91 - 870: -18,-89 - 871: -17,-88 - 872: -18,-89 - 873: -18,-86 - 874: -18,-87 - 875: -17,-86 - 876: -18,-88 - 877: -16,-86 - 878: -18,-92 - 879: -17,-93 - 880: -18,-92 + 811: -17,-89 + 812: -18,-89 + 813: -18,-90 + 814: -16,-90 + 815: -16,-91 + 816: -17,-91 + 817: -18,-91 + 818: -18,-92 + 819: -16,-92 + 820: -16,-92 + 821: -16,-93 + 822: -17,-93 + 823: -17,-92 + 824: -18,-93 + 825: -17,-90 + 826: -16,-89 + 827: -16,-88 + 828: -17,-88 + 829: -18,-88 + 830: -17,-87 + 831: -17,-87 + 832: -18,-87 + 833: -18,-86 + 834: -18,-86 + 835: -17,-86 + 836: -16,-86 + 837: -16,-86 + 838: -17,-86 + 839: -18,-86 + 840: -18,-86 + 841: -16,-87 + 842: -16,-87 + 843: -15,-87 + 844: -15,-86 + 845: -15,-87 + 846: -15,-88 + 847: -15,-89 + 848: -15,-90 + 849: -15,-91 + 850: -15,-92 + 851: -15,-93 + 852: -16,-93 + 853: -18,-92 + 854: -18,-92 + 855: -18,-90 + 856: -18,-90 + 857: -17,-89 + 858: -18,-91 + 859: -18,-89 + 860: -17,-88 + 861: -18,-89 + 862: -18,-86 + 863: -18,-87 + 864: -17,-86 + 865: -18,-88 + 866: -16,-86 + 867: -18,-92 + 868: -17,-93 + 869: -18,-92 + - node: + color: '#A05212FF' + id: Dirt + decals: + 1765: -17,-94 + 1766: -16,-94 + 1767: -18,-95 + 1768: -18,-94 + 1769: -17,-95 + 1770: -16,-94 + 1771: -17,-96 + 1772: -18,-98 + 1773: -18,-96 + 1774: -17,-97 + 1775: -18,-97 + 1776: -18,-97 + 1777: -18,-97 + 1778: -18,-97 + 1779: -17,-99 + 1780: -16,-97 + 1781: -16,-98 + 1782: -16,-99 + 1783: -16,-101 + 1784: -16,-102 + 1785: -16,-102 + 1786: -16,-102 + 1787: -17,-103 + 1788: -18,-103 + 1789: -18,-101 + 1790: -18,-100 + 1791: -18,-99 + 1792: -17,-101 + 1793: -17,-102 + 1794: -18,-102 + 1795: -18,-102 + 1796: -17,-103 + 1797: -16,-103 + 1798: -16,-100 + 1799: -17,-100 + 1800: -17,-98 + 1801: -17,-102 + 1802: -18,-103 + 1803: -16,-103 + 1804: -18,-101 + 1805: -18,-100 + 1806: -17,-101 + 1807: -15,-103 + 1808: -15,-102 + 1809: -15,-101 + 1810: -16,-100 + 1811: -17,-100 + 1812: -16,-101 + 1813: -15,-100 + 1814: -14,-102 + 1815: -14,-103 + 1816: -16,-99 + 1817: -17,-99 + 1818: -17,-98 + 1819: -18,-98 + 1820: -18,-99 + 1821: -18,-96 + 1822: -18,-95 + 1823: -18,-94 + 1824: -18,-93 + 1905: 31,-99 + 1906: 30,-99 + 1907: 30,-99 + 1908: 31,-99 + 1909: 30,-99 + 1910: 28,-99 + 1911: 28,-99 + 1912: 28,-101 + 1913: 28,-102 + 1914: 28,-104 + 1915: 28,-104 + 1916: 28,-102 + 1917: 28,-101 + 1918: 28,-100 + 1919: 29,-99 + 1920: 30,-99 + 1921: 29,-99 + 1922: 29,-99 + 1923: 28,-100 + 1924: 30,-99 + 1925: 31,-99 + 1926: 31,-100 + 1927: 31,-101 + 1928: 32,-101 + 1929: 32,-101 + 1930: 31,-100 + 1931: 32,-101 + 1932: 33,-101 + 1933: 34,-101 + 1934: 35,-101 + 1935: 35,-101 + 1936: 33,-101 + 1937: 33,-101 + 1938: 33,-102 + 1939: 34,-103 + 1940: 35,-103 + 1941: 35,-103 + 1942: 34,-103 + 1943: 33,-102 + 1944: 33,-99 + 1945: 33,-98 + 1946: 33,-97 + 1947: 31,-97 + 1948: 31,-95 + 1949: 31,-95 + 1950: 31,-96 + 1951: 32,-97 + 1952: 34,-97 + 1953: 35,-97 + 1954: 36,-96 + 1955: 36,-95 + 1956: 33,-95 + 1957: 33,-95 + 1958: 36,-95 + 1959: 36,-94 + 1960: 35,-93 + 1961: 35,-93 + 1962: 32,-93 + 1963: 31,-93 + 1964: 30,-93 + 1965: 29,-93 + 1966: 29,-93 + 1967: 29,-94 + 1968: 29,-94 + 1969: 29,-95 + 1970: 29,-95 + 1971: 29,-96 + 1972: 28,-96 + 1973: 28,-97 + 1974: 27,-97 + 1975: 28,-97 + 1976: 29,-97 + 1977: 27,-97 + 1978: 27,-96 + 1979: 27,-95 + 1980: 27,-93 + 1981: 27,-92 + 1982: 27,-90 + 1983: 27,-89 + 1984: 27,-90 + 1985: 27,-92 + 1986: 27,-92 + 1987: 28,-90 + 1988: 28,-90 + 1989: 30,-89 + 1990: 32,-89 + 1991: 31,-89 + 1992: 29,-89 + 1993: 28,-89 + 1994: 27,-89 + 1995: 27,-89 + 1996: 31,-91 + 1997: 32,-91 + 1998: 33,-91 + 1999: 35,-91 + 2000: 36,-91 + 2001: 37,-91 + 2002: 33,-91 + 2003: 31,-91 + 2004: 30,-91 + 2005: 31,-92 + 2006: 33,-93 + 2007: 34,-93 + 2008: 34,-93 + 2009: 35,-89 + 2010: 33,-89 + 2011: 34,-89 + 2012: 34,-89 + 2013: 36,-90 + 2014: 37,-89 + 2015: 40,-89 + 2016: 41,-89 + 2017: 41,-90 + 2018: 41,-91 + 2019: 41,-93 + 2020: 41,-93 + 2021: 39,-93 + 2022: 38,-93 + 2023: 38,-92 + 2024: 38,-93 + 2025: 39,-94 + 2026: 39,-95 + 2027: 40,-95 + 2028: 39,-95 + 2029: 39,-95 + 2030: 40,-96 + 2031: 41,-96 + 2032: 41,-97 + 2033: 41,-97 + 2034: 40,-97 + 2035: 38,-97 + 2036: 38,-98 + 2037: 38,-100 + 2038: 36,-99 + 2039: 35,-99 + 2040: 37,-100 + 2041: 38,-101 + 2042: 38,-102 + 2043: 40,-101 + 2044: 41,-100 + 2045: 42,-104 + 2046: 40,-104 + 2047: 40,-104 + 2048: 40,-103 + 2049: 40,-102 + 2050: 42,-101 + 2051: 42,-101 + 2052: 42,-103 + 2053: 42,-104 + 2054: 41,-104 + 2055: 39,-103 + 2056: 38,-102 + 2057: 38,-100 + 2058: 38,-98 + 2059: 40,-98 + 2060: 42,-98 + 2061: 39,-98 + 2062: 37,-99 + 2063: 34,-100 + 2064: 32,-99 + 2065: 33,-101 + 2066: 33,-100 + 2067: 33,-102 + 2068: 33,-103 + 2069: 33,-103 + 2070: 31,-101 + 2071: 32,-100 + 2072: 33,-97 + 2073: 34,-97 + 2074: 36,-95 + 2075: 36,-95 + 2076: 38,-95 + 2077: 39,-95 + 2078: 38,-95 + 2079: 38,-94 + 2080: 38,-94 + 2081: 40,-93 + 2082: 41,-93 + 2083: 41,-92 + 2084: 41,-91 + 2085: 39,-89 + 2086: 38,-89 + 2087: 38,-89 + 2088: 38,-89 + 2089: 36,-90 + 2090: 35,-90 + 2091: 34,-90 + 2092: 34,-90 + 2093: 34,-90 + 2094: 34,-90 + 2095: 34,-91 + 2096: 34,-91 + 2097: 28,-105 + 2098: 28,-105 + 2099: 28,-105 + 2100: 28,-105 + 2101: 28,-106 + 2102: 28,-106 + 2103: 28,-106 + 2104: 29,-106 + 2105: 30,-106 + 2106: 31,-106 + 2107: 30,-106 + 2108: 28,-106 + 2109: 27,-106 + 2110: 27,-106 + 2111: 26,-106 + 2112: 26,-106 + 2113: 25,-106 + 2114: 24,-106 + 2115: 23,-106 + 2116: 10,-107 + 2117: 10,-107 + 2118: 9,-109 + 2119: 9,-109 + 2120: 9,-108 + 2121: 10,-108 + 2122: 11,-108 + 2123: 11,-108 + 2124: 11,-109 + 2125: 11,-109 + 2126: 11,-109 + 2127: 11,-108 + 2128: 11,-108 + 2129: 11,-107 + 2130: 11,-107 + 2131: 12,-107 + 2132: 12,-107 + 2133: 12,-107 + 2134: 12,-106 + 2135: 13,-106 + 2136: 13,-105 + 2137: 13,-105 + 2138: 13,-105 + 2139: 12,-106 + 2140: 11,-106 + 2141: 11,-106 + 2142: 10,-106 + 2143: 10,-105 + 2144: 9,-105 + 2145: 8,-105 + 2146: 8,-105 + 2147: 8,-107 + 2148: 9,-107 + 2149: 10,-108 + 2150: 8,-106 + 2151: 8,-105 + 2152: 9,-106 + 2153: 10,-106 + 2154: 12,-105 + 2155: 11,-105 + 2156: 8,-109 + 2157: 8,-108 + 2158: 8,-108 + 2159: 12,-108 + 2160: 12,-108 + 2161: 13,-109 + 2162: 13,-107 + 2163: 14,-108 + 2164: 14,-108 + 2165: 14,-109 + 2166: 15,-109 + 2167: 15,-108 + 2168: 12,-109 + 2169: 11,-108 + 2170: 11,-108 + 2171: 11,-109 + 2172: 11,-108 + 2173: 11,-108 + 2174: 11,-108 + 2175: 12,-108 + 2176: 12,-107 + 2177: 12,-107 + 2178: 12,-106 + 2179: 12,-106 + 2180: 10,-108 + 2181: 9,-107 + 2182: 9,-106 + 2183: 9,-105 + 2184: 11,-105 + 2185: 12,-105 + 2186: 11,-110 + 2187: 11,-110 + 2188: 10,-111 + 2189: 9,-111 + 2190: 9,-111 + 2191: 11,-111 + 2192: 13,-111 + 2193: 14,-111 + 2194: 15,-111 + 2195: 12,-111 + 2196: 11,-111 + 2197: 11,-110 + 2198: 11,-109 + 2199: 11,-109 + 2200: 11,-110 + 2201: 11,-111 + 2202: 10,-111 + 2203: 9,-111 + 2204: 11,-111 + 2205: 13,-111 + 2206: 14,-111 + 2207: 29,-112 + 2208: 30,-112 + 2209: 30,-112 + 2210: 30,-112 + 2211: 30,-111 + 2212: 30,-110 + 2213: 29,-110 + 2214: 29,-109 + 2215: 28,-109 + 2216: 28,-109 + 2217: 28,-110 + 2218: 28,-111 + 2219: 29,-112 + 2220: 27,-112 + 2221: 27,-112 + 2222: 26,-112 + 2223: 25,-112 + 2224: 25,-112 + 2225: 24,-111 + 2226: 23,-109 + 2227: 22,-110 + 2228: 22,-111 + 2229: 22,-112 + 2230: 21,-113 + 2231: 21,-113 + 2232: 19,-113 + 2233: 19,-113 + 2234: 18,-113 + 2235: 17,-113 + 2236: 19,-113 + 2237: 21,-113 + 2238: 21,-113 + 2239: 22,-112 + 2240: 22,-110 + 2241: 21,-109 + 2242: 20,-110 + 2243: 20,-111 + 2244: 20,-110 + 2245: 21,-109 + 2246: 23,-109 + 2247: 24,-109 + 2248: 26,-109 + 2249: 25,-111 + 2250: 25,-111 + 2251: 26,-112 + 2252: 28,-110 + 2253: 27,-110 + 2254: 28,-109 + 2255: 28,-110 + 2256: 28,-112 + 2257: 29,-112 + 2258: 30,-112 + 2259: 32,-112 + 2260: 31,-113 + 2261: 32,-113 + 2262: 33,-113 + 2263: 33,-113 + 2264: 34,-113 + 2265: 34,-113 + 2266: 33,-112 + 2267: 33,-112 + 2268: 33,-112 + 2269: 32,-111 + 2270: 32,-110 + 2271: 31,-110 + 2272: 31,-110 + 2273: 31,-111 + 2274: 31,-112 + 2275: 31,-112 + 2276: 32,-112 + 2277: 33,-111 + 2278: 33,-110 + 2279: 32,-109 + 2280: 31,-109 + 2281: 31,-108 + 2282: 32,-108 + 2283: 34,-108 + 2284: 33,-108 + 2285: 34,-109 + 2286: 33,-109 + 2287: 34,-110 + 2288: 35,-110 + 2289: 35,-109 + 2290: 34,-108 + 2291: 34,-111 + 2292: 34,-112 + 2293: 35,-111 + 2294: 35,-112 + 2295: 35,-113 + 2296: 36,-113 + 2297: 37,-113 + 2298: 37,-112 + 2299: 36,-112 + 2300: 36,-111 + 2357: 44,-115 + 2358: 44,-115 + 2359: 43,-115 + 2360: 43,-115 + 2361: 43,-115 + 2362: 44,-115 + 2363: 44,-115 + 2364: 44,-115 + 2365: 43,-115 + 2366: 44,-115 + 2367: 44,-115 + 2368: 43,-115 + 2369: 43,-115 + 2370: 43,-115 + 2371: 41,-115 + 2372: 42,-115 + 2373: 42,-115 + 2374: 43,-115 + 2375: 41,-115 + 2376: 40,-115 + 2377: 40,-115 + 2378: 39,-115 + 2379: 38,-115 + 2380: 37,-115 + 2381: 36,-115 + 2382: 36,-115 + 2383: 34,-115 + 2384: 33,-115 + 2385: 32,-115 + 2386: 32,-115 + 2387: 34,-115 + 2388: 37,-115 + 2389: 39,-115 + 2390: 41,-115 + 2391: 42,-115 + 2392: 44,-118 + 2393: 44,-118 + 2394: 44,-118 + 2395: 44,-118 + 2396: 44,-118 + 2397: 43,-118 + 2398: 43,-118 + 2399: 43,-118 + 2400: 41,-118 + 2401: 41,-118 + 2402: 39,-118 + 2403: 38,-118 + 2404: 37,-118 + 2405: 36,-118 + 2406: 35,-118 + 2407: 33,-118 + 2408: 32,-118 + 2409: 33,-118 + 2410: 34,-118 + 2411: 36,-118 + 2412: 37,-118 + 2413: 39,-118 + 2414: 40,-118 + 2415: 41,-118 + 2416: 42,-118 + 2417: 42,-118 + 2418: 36,-115 + 2419: 35,-115 + 2420: 34,-115 + 2421: 33,-115 + 2422: 33,-115 + 2423: 31,-115 + 2424: 30,-115 + 2425: 29,-115 + 2426: 28,-115 + 2427: 27,-115 + 2428: 34,-118 + 2429: 32,-118 + 2430: 31,-118 + 2431: 30,-115 + 2432: 33,-115 + 2433: 34,-115 + 2434: 35,-115 + 2435: 38,-115 + 2436: 35,-115 + 2437: 38,-118 + 2438: 36,-118 + 2439: 35,-118 + 2440: 35,-118 + 2441: 35,-118 + 2442: 32,-118 + 2443: 31,-118 + 2444: 31,-118 + 2445: 30,-118 + 2446: 28,-118 + 2447: 28,-118 + 2448: 26,-118 + 2449: 24,-115 + 2450: 26,-115 + 2451: 26,-115 + 2452: 25,-115 + 2453: 25,-115 + 2454: 29,-115 + 2455: 30,-115 + 2456: 31,-118 + 2457: 29,-118 + 2458: 29,-118 + 2459: 27,-118 + 2460: 27,-118 + 2461: 28,-115 + 2462: 28,-115 + 2463: 44,-121 + 2464: 44,-121 + 2465: 44,-121 + 2466: 44,-121 + 2467: 44,-121 + 2468: 44,-121 + 2469: 43,-121 + 2470: 43,-121 + 2471: 43,-121 + 2472: 42,-121 + 2473: 41,-121 + 2474: 41,-121 + 2475: 41,-121 + 2476: 41,-121 + 2477: 42,-121 + 2478: 41,-121 + 2479: 40,-121 + 2480: 39,-121 + 2481: 38,-121 + 2482: 38,-121 + 2483: 37,-121 + 2484: 36,-121 + 2485: 35,-121 + 2486: 34,-121 + 2487: 32,-121 + 2488: 31,-121 + 2489: 30,-121 + 2490: 32,-121 + 2491: 34,-121 + 2492: 35,-121 + 2493: 37,-121 + 2494: 39,-121 + 2495: 41,-121 + 2496: 41,-121 + 2497: 41,-121 + 2498: 38,-121 + 2499: 36,-121 + 2500: 34,-121 + 2501: 33,-121 + 2502: 32,-121 + 2503: 34,-80 + 2504: 34,-79 + 2505: 34,-79 + 2506: 34,-80 + 2507: 34,-79 + 2508: 36,-79 + 2509: 36,-79 + 2510: 36,-80 + 2511: 35,-79 + 2512: 35,-79 + 2513: 38,-79 + 2514: 38,-79 + 2515: 39,-79 + 2516: 38,-79 + 2517: 40,-79 + 2518: 39,-79 + 2519: 40,-79 + 2520: 41,-79 + 2521: 42,-79 + 2522: 44,-79 + 2523: 44,-79 + 2524: 44,-80 + 2525: 43,-80 + 2526: 44,-80 + 2527: 44,-80 + 2528: 44,-82 + 2529: 44,-83 + 2530: 44,-83 + 2531: 44,-84 + 2532: 44,-86 + 2533: 44,-85 + 2534: 44,-85 + 2535: 44,-85 + 2536: 44,-88 + 2537: 44,-89 + 2538: 44,-90 + 2539: 44,-91 + 2540: 44,-92 + 2541: 44,-93 + 2542: 44,-94 + 2543: 44,-95 + 2544: 44,-96 + 2545: 44,-95 + 2546: 44,-93 + 2547: 44,-91 + 2548: 44,-89 + 2549: 44,-87 + 2550: 44,-84 + 2551: 44,-84 + 2552: 44,-86 + 2553: 44,-88 + 2554: 44,-91 + 2555: 44,-93 + 2556: 44,-95 + 2557: 44,-97 + 2558: 44,-99 + 2559: 44,-101 + 2560: 44,-104 + 2561: 44,-105 + 2562: 44,-105 + 2563: 44,-104 + 2564: 44,-101 + 2565: 44,-97 + 2566: 44,-95 + 2567: 44,-94 + 2568: 44,-93 + 2569: 44,-91 + 2570: 44,-90 + 2571: 44,-90 + 2572: 44,-92 + 2573: 44,-95 + 2574: 44,-97 + 2575: 44,-99 + 2576: 44,-101 + 2577: 44,-104 + 2578: 44,-105 + 2579: 44,-105 + 2580: 44,-105 + 2581: 44,-106 + 2582: 44,-103 + 2583: 44,-103 + 2584: 44,-102 + 2585: 44,-101 + 2586: 44,-101 + 2587: 44,-100 + 2588: 44,-98 + 2589: 44,-96 + 2590: 44,-95 + 2591: 44,-106 + 2592: 44,-106 + 2593: 43,-106 + 2594: 43,-106 + 2595: 42,-106 + 2596: 42,-106 + 2597: 40,-106 + 2598: 38,-106 + 2599: 35,-106 + 2600: 32,-106 + 2601: 30,-106 + 2602: 29,-106 + 2603: 33,-106 + 2604: 35,-106 + 2605: 36,-106 + 2606: 38,-106 + 2607: 40,-106 + 2608: 41,-106 + 2609: 40,-106 + 2610: 37,-106 + 2611: 35,-106 + 2612: 33,-106 + 2613: 31,-106 + 2614: 29,-106 + 2615: 26,-106 + 2616: 24,-106 + 2617: 22,-106 + 2618: 20,-106 + 2619: 19,-106 + 2620: 19,-105 + 2621: 19,-105 + 2622: 17,-106 + 2623: 17,-106 + 2624: 15,-106 + 2625: 15,-105 + 2626: 15,-105 + 2627: 16,-106 + 2628: 18,-106 + 2629: 18,-106 + 2630: 17,-107 + 2631: 17,-109 + 2632: 17,-110 + 2633: 17,-113 + 2634: 17,-114 + 2635: 17,-112 + 2636: 17,-111 + 2637: 17,-111 + 2638: 16,-111 + 2639: 18,-113 + 2640: 20,-113 + 2641: 21,-113 + 2642: 22,-113 + 2643: 20,-113 + 2644: 20,-113 + 2645: 20,-109 + 2646: 20,-109 + 2647: 22,-109 + 2648: 22,-110 + 2649: 26,-109 + 2650: 25,-109 + 2651: 25,-109 + 2652: 25,-110 + 2653: 26,-110 + 2654: 27,-109 + 2655: 27,-110 + 2656: 27,-111 + 2657: 28,-110 + 2658: 29,-111 + 2659: 27,-110 + 2660: 34,-118 + 2661: 33,-118 + 2662: 31,-118 + 2663: 30,-118 + 2664: 28,-118 + 2665: 26,-118 + 2666: 25,-118 + 2667: 24,-118 + 2668: 22,-118 + 2669: 20,-118 + 2670: 19,-118 + 2671: 19,-118 + 2672: 20,-118 + 2673: 22,-118 + 2674: 23,-118 + 2675: 24,-118 + 2676: 24,-115 + 2677: 21,-115 + 2678: 19,-115 + 2679: 18,-115 + 2680: 19,-115 + 2681: 21,-115 + 2682: 23,-115 + 2683: 23,-115 + 2684: 21,-115 + 2685: 20,-115 + 2686: 23,-115 + 2687: 22,-115 + 2688: 18,-121 + 2689: 18,-121 + 2690: 20,-121 + 2691: 21,-121 + 2692: 22,-121 + 2693: 25,-121 + 2694: 26,-121 + 2695: 28,-121 + 2696: 28,-121 + 2697: 28,-121 + 2698: 26,-121 + 2699: 24,-121 + 2700: 23,-121 + 2701: 23,-121 + 2702: 20,-121 + 2703: 19,-121 + 2704: 29,-121 + 2705: 33,-121 + 2706: 33,-121 + 2707: 32,-121 + 2708: 30,-121 + 2709: 30,-121 + 2710: 31,-121 + 2711: 16,-113 + 2712: 17,-114 + 2713: 17,-114 + 2714: 16,-114 + 2715: 16,-114 + 2716: 16,-115 + 2717: 17,-115 + 2718: 18,-115 + 2719: 16,-115 + 2720: 16,-115 + 2721: 15,-115 + 2722: 15,-116 + 2723: 17,-116 + 2724: 17,-116 + 2725: 15,-116 + 2726: 13,-116 + 2727: 13,-116 + 2728: 12,-116 + 2729: 15,-116 + 2730: 16,-116 + 2731: 14,-116 + 2732: 14,-116 + 2733: 15,-115 + 2734: 16,-115 + 2735: 15,-117 + 2736: 13,-117 + 2737: 12,-117 + 2738: 13,-117 + 2739: 17,-117 + 2740: 17,-117 + 2741: 18,-118 + 2742: 17,-119 + 2743: 16,-119 + 2744: 15,-118 + 2745: 13,-118 + 2746: 12,-118 + 2747: 11,-119 + 2748: 15,-119 + 2749: 16,-120 + 2750: 16,-120 + 2751: 17,-121 + 2752: 16,-121 + 2753: 17,-122 + 2754: 17,-122 + 2755: 17,-120 + 2756: 17,-120 + 2757: 16,-119 + 2758: 16,-117 + 2759: 16,-116 + 2760: 15,-117 + 2761: 14,-117 + 2762: 14,-118 + 2763: 13,-119 + 2764: 11,-118 + 2765: 10,-117 + 2766: 10,-117 + 2767: 10,-117 + 2768: 12,-118 + 2769: 12,-119 + 2770: 12,-118 + 2771: 12,-117 + 2772: 11,-116 + 2773: 11,-116 + 2774: 18,-118 + 2775: 18,-117 + 2776: 17,-118 + 2777: 16,-118 + 2778: 16,-118 + 2779: 14,-118 + 2780: 12,-118 + 2781: 10,-118 + 2782: 10,-119 + 2783: 10,-119 + 2784: 9,-118 + 2785: 9,-117 + 2786: 9,-116 + 2787: 10,-116 + 2788: 9,-117 + 2789: 9,-118 + 2790: 9,-119 + 2791: 12,-117 + 2792: 11,-117 + 2793: 11,-117 + 2794: 11,-118 + 2795: 14,-118 + 2796: 16,-119 + 2797: 16,-118 + 2798: 15,-118 + 2799: 21,-118 + 2800: 22,-118 + 2801: 24,-118 + 2802: 21,-115 + 2803: 16,-115 + 2804: 16,-115 + 2805: 17,-115 + 2806: 3,-122 + 2807: 3,-124 + 2808: 3,-126 + 2809: 3,-126 + 2810: 2,-126 + 2811: 2,-126 + 2812: 2,-126 + 2813: 1,-125 + 2814: 1,-125 + 2815: 1,-125 + 2816: 0,-125 + 2817: 0,-125 + 2818: -1,-124 + 2819: -1,-124 + 2820: -1,-125 + 2821: -1,-125 + 2822: 0,-126 + 2823: 1,-126 + 2824: 2,-126 + 2825: 1,-125 + 2826: 1,-123 + 2827: 0,-123 + 2828: 0,-123 + 2829: 1,-124 + 2830: 2,-124 + 2831: 2,-123 + 2832: 2,-123 + 2833: 1,-121 + 2834: 1,-121 + 2835: 1,-122 + 2836: 3,-120 + 2837: 4,-119 + 2838: 6,-118 + 2839: 7,-117 + 2840: 7,-117 + 2841: 5,-118 + 2842: 4,-118 + 2843: 2,-120 + 2844: 2,-120 + 2845: 1,-121 + 2846: 2,-122 + 2847: 5,-118 + 2848: 5,-118 + 2849: 2,-120 + 2850: 2,-121 + 2851: 2,-121 + 2852: 3,-121 + 2853: 1,-123 + 2854: 1,-122 + 2855: 6,-119 + 2856: 6,-119 + 2857: 5,-121 + 2858: 5,-122 + 2859: 4,-123 + 2860: 4,-122 + 2861: 4,-122 + 2862: 4,-121 + 2863: 3,-123 + 2864: 4,-124 + 2865: 4,-124 + 2866: 5,-124 + 2867: 4,-125 + 2868: 3,-125 + 2869: 2,-126 + 2870: 7,-123 + 2871: 7,-121 + 2872: 8,-120 + 2873: 6,-121 + 2874: 6,-120 + 2875: 5,-120 + 2876: 4,-120 + 2877: 5,-119 + 2878: 5,-118 + 2879: 5,-117 + 2880: 6,-116 + 2881: 4,-118 + 2882: 3,-119 + 2883: 4,-119 + 2884: 8,-119 + 2885: 8,-118 + 2886: 6,-120 + 2887: 6,-121 + 2888: 6,-121 + 2889: 4,-123 + 2890: 3,-124 + 2891: 2,-124 + 2892: 4,-121 + 2893: 5,-119 + 2894: 2,-125 + 2895: 2,-125 + 2896: 2,-125 + 2897: 1,-126 + 2898: 0,-124 + 2899: 0,-124 + 2900: -26,-122 + 2901: -25,-122 + 2902: -25,-122 + 2903: -27,-122 + 2904: -27,-122 + 2905: -28,-122 + 2906: -28,-122 + 2907: -27,-123 + 2908: -27,-124 + 2909: -24,-124 + 2910: -24,-124 + 2911: -26,-124 + 2912: -25,-123 + 2913: -24,-123 + 2914: -23,-123 + 2915: -22,-122 + 2916: -22,-123 + 2917: -20,-122 + 2918: -20,-123 + 2919: -18,-122 + 2920: -18,-122 + 2921: -19,-124 + 2922: -19,-123 + 2923: -17,-122 + 2924: -18,-123 + 2925: -17,-123 + 2926: -15,-123 + 2927: -16,-124 + 2928: -13,-123 + 2929: -13,-123 + 2930: -13,-122 + 2931: -16,-123 + 2932: -16,-122 + 2933: -17,-124 + 2934: -14,-123 + 2935: -12,-122 + 2936: -13,-124 + 2937: -10,-122 + 2938: -11,-123 + 2939: -10,-124 + 2940: -10,-123 + 2941: -9,-123 + 2942: -7,-122 + 2943: -7,-123 + 2944: -7,-123 + 2945: -7,-124 + 2946: -9,-124 + 2947: -9,-123 + 2948: -8,-122 + 2949: -9,-123 + 2950: -11,-124 + 2951: -13,-124 + 2952: -15,-124 + 2953: -19,-124 + 2954: -23,-124 + 2955: -24,-124 + 2956: -41,-125 + 2957: -3,-122 + 2958: -4,-123 + 2959: -4,-123 + 2960: -5,-123 + 2961: -5,-122 + 2962: -5,-123 + 2963: -4,-124 + 2964: -2,-123 + 2965: -2,-123 + 2966: -2,-123 + 2967: -3,-123 + 2968: -4,-123 + 2969: -4,-124 + 2970: -4,-123 + 2971: -3,-122 + 2972: -16,-121 + 2973: -16,-120 + 2974: -16,-119 + 2975: -16,-118 + 2976: -16,-118 + 2977: -16,-116 + 2978: -16,-116 + 2979: -16,-118 + 2980: -16,-118 + 2981: -17,-116 + 2982: -17,-115 + 2983: -17,-114 + 2984: -16,-114 + 2985: -17,-113 + 2986: -16,-114 + 2987: -17,-115 + 2988: -16,-114 + 2989: -16,-115 + 2990: -16,-115 + 2991: -16,-114 + 2992: -15,-114 + 2993: -15,-115 + 2994: -16,-115 + 2995: -16,-114 + 2996: -16,-114 + 2997: -17,-114 + 2998: -15,-113 + 2999: -15,-113 + 3000: -16,-113 + 3001: -16,-113 + 3002: -16,-113 + 3003: -17,-114 + 3004: -16,-114 + 3005: -16,-114 + 3006: -15,-114 + 3007: -16,-114 + 3008: -16,-114 + 3009: -16,-114 + 3010: -16,-114 + 3011: -16,-114 + 3012: -16,-114 + 3013: -16,-114 + 3014: -16,-114 + 3015: -16,-114 + 3016: -16,-114 + 3017: -16,-114 + 3018: -16,-114 + 3019: -16,-115 + 3020: -15,-115 + 3021: -15,-115 + 3022: -15,-115 + 3023: -15,-114 + 3024: -15,-114 + 3025: -15,-114 + 3026: -15,-113 + 3027: -15,-113 + 3028: -16,-113 + 3029: -16,-113 + 3030: -16,-113 + 3031: -17,-113 + 3032: -17,-114 + 3033: -17,-114 + 3034: -17,-115 + 3035: -16,-115 + 3036: -16,-115 + 3037: -17,-114 + 3038: -17,-113 + 3039: -17,-113 + 3040: -16,-115 + 3041: -16,-116 + 3042: -16,-117 + 3043: -16,-117 + 3044: -16,-118 + 3045: -16,-118 + 3046: -16,-119 + 3047: -16,-119 + 3048: -16,-120 + 3049: -16,-121 + 3050: -16,-121 + 3051: -16,-120 + 3052: -16,-119 + 3053: -16,-117 + 3054: -16,-116 + 3055: -16,-116 + 3056: -21,-114 + 3057: -21,-114 + 3058: -21,-114 + 3059: -21,-114 + 3060: -21,-114 + 3061: -20,-114 + 3062: -20,-114 + 3063: -20,-113 + 3064: -22,-113 + 3065: -21,-114 + 3066: -21,-114 + 3067: -20,-115 + 3068: -20,-115 + 3069: -21,-115 + 3070: -21,-114 + 3071: -22,-113 + 3072: -21,-113 + 3073: -22,-114 + 3074: -22,-114 + 3075: -21,-115 + 3076: -21,-115 + 3077: -21,-113 + 3078: -21,-113 + 3079: -21,-114 + 3080: -21,-114 + 3081: -21,-114 + 3082: -21,-115 + 3083: -21,-115 + 3084: -21,-116 + 3085: -21,-116 + 3086: -21,-116 + 3087: -21,-116 + 3088: -21,-116 + 3089: -21,-117 + 3090: -21,-117 + 3091: -21,-117 + 3092: -21,-118 + 3093: -21,-118 + 3094: -21,-118 + 3095: -21,-119 + 3096: -21,-119 + 3097: -21,-120 + 3098: -21,-121 + 3099: -21,-122 + 3100: -21,-122 + 3101: -21,-123 + 3102: -21,-122 + 3103: -21,-121 + 3104: -21,-121 + 3105: -21,-120 + 3106: -21,-119 + 3107: -21,-118 + 3108: -21,-117 + 3109: -21,-115 + 3110: -21,-115 + 3111: -21,-114 + 3112: -22,-114 + 3113: -22,-114 + 3114: -22,-115 + 3115: -22,-115 + 3116: -22,-115 + 3117: -22,-114 + 3118: -21,-113 + 3119: -20,-113 + 3120: -20,-113 + 3121: -20,-114 + 3122: -20,-115 + 3123: -21,-115 + 3124: -21,-114 + 3260: -38,-13 + 3261: -38,-11 + 3262: -39,-12 + 3263: -39,-12 + 3264: -38,-12 + 3265: -39,-13 + 3266: -39,-14 + 3267: -39,-14 + 3268: -39,-12 + 3269: -38,-12 + 3270: -38,-13 + 3271: -38,-14 + 3272: -38,-15 + 3273: -37,-14 + 3274: -37,-13 + 3275: -37,-14 + 3276: -36,-14 + 3277: -36,-15 + 3278: -35,-15 + 3279: -35,-15 + 3280: -36,-14 + 3281: -37,-14 + 3282: -38,-13 + 3283: -39,-12 + 3284: -39,-11 + 3285: -39,-11 + 3286: -39,-13 + 3287: -39,-13 + 3288: -38,-14 + 3289: -38,-14 + 3290: -38,-14 + 3291: -38,-14 + 3292: -38,-14 + 3293: -38,-16 + 3294: -38,-17 + 3295: -38,-18 + 3296: -38,-15 + 3297: -38,-15 + 3298: -38,-16 + 3299: -38,-16 + 3300: -38,-17 + 3301: -38,-19 + 3302: -38,-19 + 3303: -38,-20 + 3304: -38,-20 + 3305: -38,-21 + 3306: -38,-22 + 3307: -38,-23 + 3308: -38,-24 + 3309: -38,-22 + 3310: -38,-21 + 3311: -38,-18 + 3312: -38,-17 + 3313: -38,-19 + 3314: -38,-21 + 3315: -38,-23 + 3316: -38,-25 + 3317: -38,-27 + 3318: -38,-30 + 3319: -38,-32 + 3320: -38,-34 + 3321: -38,-36 + 3322: -38,-36 + 3323: -38,-35 + 3324: -38,-33 + 3325: -38,-31 + 3326: -38,-29 + 3327: -38,-27 + 3328: -38,-25 + 3329: -38,-23 + 3330: -38,-22 + 3331: -38,-24 + 3332: -38,-28 + 3333: -38,-33 + 3334: -38,-35 + 3335: -38,-37 + 3336: -38,-39 + 3337: -38,-41 + 3338: -38,-43 + 3339: -38,-44 + 3340: -38,-46 + 3341: -38,-48 + 3342: -38,-50 + 3343: -38,-52 + 3344: -38,-53 + 3345: -38,-55 + 3346: -38,-57 + 3347: -38,-58 + 3348: -38,-60 + 3349: -38,-62 + 3350: -38,-63 + 3351: -38,-62 + 3352: -38,-61 + 3353: -38,-60 + 3354: -38,-58 + 3355: -38,-55 + 3356: -38,-54 + 3357: -38,-52 + 3358: -38,-49 + 3359: -38,-47 + 3360: -38,-45 + 3361: -38,-43 + 3362: -38,-41 + 3363: -38,-39 + 3364: -38,-37 + 3365: -38,-35 + 3366: -38,-33 + 3367: -38,-30 + 3368: -38,-28 + 3369: -38,-26 + 3370: -38,-24 + 3371: -38,-21 + 3372: -38,-19 + 3373: -38,-17 + 3374: -38,-16 + 3375: -38,-18 + 3376: -38,-20 + 3377: -38,-22 + 3378: -38,-24 + 3379: -38,-26 + 3380: -38,-28 + 3381: -38,-30 + 3382: -38,-32 + 3383: -38,-34 + 3384: -38,-36 + 3385: -38,-39 + 3386: -38,-41 + 3387: -38,-43 + 3388: -38,-45 + 3389: -38,-50 + 3390: -38,-52 + 3391: -38,-54 + 3392: -38,-56 + 3393: -38,-58 + 3394: -38,-61 + 3395: -38,-63 + 3396: -38,-65 + 3397: -38,-68 + 3398: -38,-70 + 3399: -38,-72 + 3400: -38,-75 + 3401: -38,-76 + 3402: -38,-79 + 3403: -38,-81 + 3404: -38,-83 + 3405: -38,-85 + 3406: -38,-87 + 3407: -38,-86 + 3408: -38,-86 + 3409: -38,-84 + 3410: -38,-83 + 3411: -38,-82 + 3412: -38,-80 + 3413: -38,-78 + 3414: -38,-77 + 3415: -38,-75 + 3416: -38,-73 + 3417: -38,-71 + 3418: -38,-69 + 3419: -38,-68 + 3420: -38,-66 + 3421: -38,-64 + 3422: -38,-64 + 3423: -38,-64 + 3424: -38,-64 + 3425: -38,-50 + 3426: -38,-49 + 3427: -38,-45 + 3428: -38,-42 + 3429: -38,-40 + 3430: -38,-39 + 3431: -38,-40 + 3432: -38,-36 + 3433: -38,-35 + 3434: -38,-38 + 3435: -38,-39 + 3436: -38,-42 + 3437: -38,-43 + 3438: -38,-45 + 3439: -38,-48 + 3440: -38,-50 + 3441: -38,-52 + 3442: -38,-54 + 3443: -38,-56 + 3444: -38,-59 + 3445: -38,-61 + 3446: -38,-63 + 3447: -38,-64 + 3448: -38,-66 + 3449: -38,-69 + 3450: -38,-71 + 3451: -38,-73 + 3452: -38,-76 + 3453: -38,-78 + 3454: -38,-80 + 3455: -38,-82 + 3456: -38,-85 + 3457: -36,-87 + 3458: -35,-87 + 3459: -37,-87 + 3460: -37,-87 + 3461: -36,-87 + 3462: -33,-87 + 3463: -31,-87 + 3464: -31,-87 + 3465: -33,-87 + 3466: -32,-87 + 3467: -32,-88 + 3468: -32,-89 + 3469: -32,-91 + 3470: -32,-92 + 3471: -32,-94 + 3472: -32,-93 + 3473: -32,-90 + 3474: -32,-90 + 3475: -32,-90 + 3476: -32,-91 + 3477: -32,-91 + 3478: -32,-92 + 3479: -32,-93 + 3480: -32,-96 + 3481: -32,-98 + 3482: -32,-100 + 3483: -32,-103 + 3484: -31,-102 + 3485: -32,-102 + 3486: -32,-102 + 3487: -32,-102 + 3488: -32,-100 + 3489: -32,-98 + 3490: -32,-96 + 3491: -32,-94 + 3492: -32,-93 + 3493: -32,-96 + 3494: -32,-99 + 3495: -32,-101 + 3496: -32,-103 + 3497: -32,-106 + 3498: -31,-106 + 3499: -31,-106 + 3500: -31,-106 + 3501: -29,-106 + 3502: -27,-106 + 3503: -25,-106 + 3504: -23,-106 + 3505: -21,-105 + 3506: -22,-105 + 3507: -22,-105 + 3508: -22,-106 + 3509: -25,-106 + 3510: -27,-106 + 3511: -30,-106 + 3512: -32,-106 + 3513: -31,-104 + 3514: -31,-104 + 3515: -28,-106 + 3516: -25,-106 + 3517: -22,-106 + 3518: -19,-106 + 3519: -16,-106 + 3520: -16,-106 + 3521: -17,-106 + 3522: -17,-105 + 3523: -17,-106 + 3524: -14,-106 + 3525: -12,-106 + 3526: -10,-106 + 3527: -8,-106 + 3528: -8,-105 + 3529: -10,-106 + 3530: -12,-106 + 3531: -12,-105 + 3532: -12,-105 + 3533: -16,-106 + 3534: -18,-105 + 3535: -17,-106 + 3536: -11,-106 + 3537: -9,-106 + 3538: -7,-107 + 3539: -8,-108 + 3540: -8,-107 + 3541: -8,-109 + 3542: -8,-111 + 3543: -8,-111 + 3544: -5,-111 + 3545: -5,-111 + 3546: -4,-111 + 3547: -2,-111 + 3548: 1,-111 + 3549: 4,-111 + 3550: 4,-111 + 3551: 4,-111 + 3552: 2,-111 + 3553: -3,-111 + 3554: -5,-111 + 3555: -8,-111 + 3556: -8,-109 + 3557: -8,-107 + 3558: -7,-110 + 3559: -5,-111 + 3560: -1,-111 + 3561: 2,-111 + 3562: 5,-111 + 3563: 7,-111 + 3564: 7,-111 + 3565: 6,-110 + 3566: 6,-108 + 3567: 6,-107 + 3568: 6,-105 + 3569: 6,-105 + 3570: 6,-106 + 3571: 6,-108 + 3572: 6,-110 + 3573: 6,-112 + 3574: 8,-112 + 3575: 8,-111 + 3576: 6,-111 + 3577: 6,-111 + 3578: 3,-111 - node: color: '#FFFFFFFF' id: Dirt @@ -999,245 +2599,392 @@ entities: 658: 12,-82 659: 12,-82 660: 12,-82 - 1071: 14,-58 - 1072: 14,-58 - 1073: 15,-57 - 1074: 15,-57 - 1075: 14,-60 - 1076: 14,-60 - 1077: 14,-60 - 1078: 16,-60 - 1079: 16,-58 - 1080: 16,-59 - 1081: 16,-60 - 1082: 15,-59 - 1083: 15,-58 - 1084: 15,-59 - 1085: 15,-60 - 1086: 16,-60 - 1087: 17,-60 - 1088: 17,-61 - 1089: 16,-61 - 1090: 16,-61 - 1091: 18,-61 - 1092: 18,-60 - 1093: 19,-61 - 1094: 19,-61 - 1095: 19,-60 - 1096: 19,-59 - 1097: 19,-59 - 1098: 19,-59 - 1099: 18,-59 - 1100: 18,-58 - 1101: 18,-58 - 1102: 17,-58 - 1103: 17,-59 - 1104: 17,-59 - 1105: 15,-61 - 1106: 15,-61 - 1107: 16,-59 - 1108: 16,-58 - 1109: 16,-57 - 1191: -36,-116 - 1192: -36,-116 - 1193: -36,-116 - 1194: -36,-117 - 1195: -35,-115 + 1047: 14,-58 + 1048: 14,-58 + 1049: 15,-57 + 1050: 15,-57 + 1051: 14,-60 + 1052: 14,-60 + 1053: 14,-60 + 1054: 16,-60 + 1055: 16,-58 + 1056: 16,-59 + 1057: 16,-60 + 1058: 15,-59 + 1059: 15,-58 + 1060: 15,-59 + 1061: 15,-60 + 1062: 16,-60 + 1063: 17,-60 + 1064: 17,-61 + 1065: 16,-61 + 1066: 16,-61 + 1067: 18,-61 + 1068: 18,-60 + 1069: 19,-61 + 1070: 19,-61 + 1071: 19,-60 + 1072: 19,-59 + 1073: 19,-59 + 1074: 19,-59 + 1075: 18,-59 + 1076: 18,-58 + 1077: 18,-58 + 1078: 17,-58 + 1079: 17,-59 + 1080: 17,-59 + 1081: 15,-61 + 1082: 15,-61 + 1083: 16,-59 + 1084: 16,-58 + 1085: 16,-57 + 1160: -36,-116 + 1161: -36,-116 + 1162: -36,-116 + 1163: -36,-117 + 1164: -35,-115 + 1165: -35,-114 + 1166: -35,-115 + 1167: -35,-116 + 1168: -35,-116 + 1169: -35,-116 + 1170: -35,-116 + 1171: -35,-117 + 1172: -34,-118 + 1173: -34,-118 + 1174: -34,-117 + 1175: -33,-117 + 1176: -33,-117 + 1177: -33,-117 + 1178: -33,-118 + 1179: -33,-118 + 1180: -32,-117 + 1181: -32,-115 + 1182: -32,-114 + 1183: -32,-114 + 1184: -32,-115 + 1185: -32,-113 + 1186: -32,-113 + 1187: -32,-112 + 1188: -33,-112 + 1189: -33,-112 + 1190: -34,-112 + 1191: -33,-113 + 1192: -34,-113 + 1193: -34,-113 + 1194: -35,-113 + 1195: -35,-113 1196: -35,-114 - 1197: -35,-115 - 1198: -35,-116 - 1199: -35,-116 - 1200: -35,-116 - 1201: -35,-116 - 1202: -35,-117 - 1203: -34,-118 - 1204: -34,-118 - 1205: -34,-117 - 1206: -33,-117 - 1207: -33,-117 - 1208: -33,-117 - 1209: -33,-118 - 1210: -33,-118 - 1211: -32,-117 - 1212: -32,-115 - 1213: -32,-114 - 1214: -32,-114 - 1215: -32,-115 - 1216: -32,-113 - 1217: -32,-113 - 1218: -32,-112 - 1219: -33,-112 - 1220: -33,-112 - 1221: -34,-112 - 1222: -33,-113 - 1223: -34,-113 - 1224: -34,-113 - 1225: -35,-113 - 1226: -35,-113 - 1227: -35,-114 - 1228: -35,-114 - 1229: -36,-115 - 1230: -36,-115 - 1231: -36,-116 - 1232: -36,-114 - 1233: -36,-113 - 1234: -37,-115 - 1235: -37,-116 - 1236: -37,-117 - 1237: -37,-117 - 1238: -37,-114 - 1239: -37,-114 - 1240: -38,-115 - 1241: -38,-116 - 1242: -38,-117 - 1243: -38,-117 - 1244: -38,-116 - 1245: -38,-115 - 1246: -39,-116 - 1247: -39,-116 - 1248: -39,-117 - 1249: -40,-116 - 1250: -39,-115 - 1251: -38,-114 - 1252: -37,-113 - 1253: -38,-114 - 1254: -38,-113 - 1255: -38,-113 - 1256: -39,-114 - 1257: -39,-115 - 1258: -37,-113 - 1259: -36,-111 - 1260: -38,-112 - 1261: -38,-111 - 1262: -38,-111 - 1263: -39,-113 - 1264: -39,-114 - 1265: -37,-112 - 1266: -36,-111 - 1267: -35,-110 - 1268: -36,-111 - 1269: -36,-111 - 1270: -36,-110 - 1271: -37,-111 - 1272: -35,-112 - 1273: -35,-111 - 1274: -36,-112 - 1275: -33,-111 - 1276: -31,-109 - 1277: -34,-110 - 1278: -34,-110 - 1279: -33,-109 - 1280: -34,-109 - 1281: -35,-109 - 1282: -32,-109 - 1283: -33,-111 - 1284: -31,-110 - 1285: -33,-110 - 1286: -33,-110 - 1287: -34,-111 - 1288: -31,-110 - 1289: -31,-110 - 1290: -32,-110 - 1291: -31,-111 - 1292: -31,-111 - 1293: -30,-111 - 1294: -31,-112 - 1295: -31,-112 - 1296: -29,-111 - 1297: -29,-111 - 1298: -30,-112 - 1299: -30,-112 - 1300: -31,-113 - 1301: -28,-113 - 1302: -28,-113 - 1303: -30,-114 - 1304: -30,-113 - 1305: -32,-114 - 1306: -31,-114 - 1307: -31,-115 - 1308: -29,-115 - 1309: -30,-115 - 1310: -31,-116 - 1311: -31,-116 - 1312: -31,-117 - 1313: -32,-116 - 1314: -29,-117 - 1315: -30,-117 - 1316: -29,-116 - 1317: -30,-117 - 1318: -29,-116 - 1319: -31,-118 - 1320: -31,-119 - 1321: -32,-120 - 1322: -32,-121 - 1323: -32,-121 - 1324: -31,-121 - 1325: -31,-121 - 1326: -31,-120 - 1327: -33,-119 - 1328: -32,-119 - 1329: -33,-121 - 1330: -33,-121 - 1331: -34,-121 - 1332: -35,-121 - 1333: -35,-121 - 1334: -35,-120 - 1335: -35,-119 - 1336: -30,-116 - 1337: -30,-118 - 1338: -32,-118 - 1339: -34,-120 - 1340: -33,-120 - 1341: -34,-119 - 1342: -36,-120 - 1343: -36,-119 - 1344: -36,-118 - 1345: -35,-118 - 1346: -37,-119 - 1347: -37,-118 - 1348: -38,-118 - 1349: -32,-111 - 1350: -34,-122 - 1351: -31,-122 - 1352: -30,-122 - 1353: -32,-122 - 1354: -30,-123 - 1355: -31,-123 - 1356: -30,-124 - 1357: -30,-109 - 1358: -30,-110 - 1359: -29,-110 - 1360: -28,-111 - 1361: -27,-112 - 1362: -26,-112 - 1363: -28,-112 - 1364: -27,-111 - 1365: -26,-111 - 1366: -25,-111 - 1367: -34,-107 - 1368: -34,-108 - 1369: -35,-109 - 1370: -33,-108 - 1371: -33,-107 - 1372: -33,-106 - 1373: -36,-115 - 1374: -36,-114 - 1375: -35,-113 - 1376: -34,-112 - 1377: -33,-112 - 1378: -32,-112 - 1379: -31,-114 - 1380: -31,-115 - 1381: -31,-116 - 1382: -32,-118 - 1383: -33,-118 - 1384: -34,-118 - 1385: -35,-118 - 1386: -35,-118 - 1387: -37,-117 - 1388: -37,-116 - 1389: -37,-115 - 1390: -36,-114 + 1197: -35,-114 + 1198: -36,-115 + 1199: -36,-115 + 1200: -36,-116 + 1201: -36,-114 + 1202: -36,-113 + 1203: -37,-115 + 1204: -37,-116 + 1205: -37,-117 + 1206: -37,-117 + 1207: -37,-114 + 1208: -37,-114 + 1209: -38,-115 + 1210: -38,-116 + 1211: -38,-117 + 1212: -38,-117 + 1213: -38,-116 + 1214: -38,-115 + 1215: -39,-116 + 1216: -39,-116 + 1217: -39,-117 + 1218: -40,-116 + 1219: -39,-115 + 1220: -38,-114 + 1221: -37,-113 + 1222: -38,-114 + 1223: -38,-113 + 1224: -38,-113 + 1225: -39,-114 + 1226: -39,-115 + 1227: -37,-113 + 1228: -36,-111 + 1229: -38,-112 + 1230: -38,-111 + 1231: -38,-111 + 1232: -39,-113 + 1233: -39,-114 + 1234: -37,-112 + 1235: -36,-111 + 1236: -35,-110 + 1237: -36,-111 + 1238: -36,-111 + 1239: -36,-110 + 1240: -37,-111 + 1241: -35,-112 + 1242: -35,-111 + 1243: -36,-112 + 1244: -33,-111 + 1245: -31,-109 + 1246: -34,-110 + 1247: -34,-110 + 1248: -33,-109 + 1249: -34,-109 + 1250: -35,-109 + 1251: -32,-109 + 1252: -33,-111 + 1253: -31,-110 + 1254: -33,-110 + 1255: -33,-110 + 1256: -34,-111 + 1257: -31,-110 + 1258: -31,-110 + 1259: -32,-110 + 1260: -31,-111 + 1261: -31,-111 + 1262: -30,-111 + 1263: -31,-112 + 1264: -31,-112 + 1265: -29,-111 + 1266: -29,-111 + 1267: -30,-112 + 1268: -30,-112 + 1269: -31,-113 + 1270: -28,-113 + 1271: -28,-113 + 1272: -30,-114 + 1273: -30,-113 + 1274: -32,-114 + 1275: -31,-114 + 1276: -31,-115 + 1277: -29,-115 + 1278: -30,-115 + 1279: -31,-116 + 1280: -31,-116 + 1281: -31,-117 + 1282: -32,-116 + 1283: -29,-117 + 1284: -30,-117 + 1285: -29,-116 + 1286: -30,-117 + 1287: -29,-116 + 1288: -31,-118 + 1289: -31,-119 + 1290: -32,-120 + 1291: -32,-121 + 1292: -32,-121 + 1293: -31,-121 + 1294: -31,-121 + 1295: -31,-120 + 1296: -33,-119 + 1297: -32,-119 + 1298: -33,-121 + 1299: -33,-121 + 1300: -34,-121 + 1301: -35,-121 + 1302: -35,-121 + 1303: -35,-120 + 1304: -35,-119 + 1305: -30,-116 + 1306: -30,-118 + 1307: -32,-118 + 1308: -34,-120 + 1309: -33,-120 + 1310: -34,-119 + 1311: -36,-120 + 1312: -36,-119 + 1313: -36,-118 + 1314: -35,-118 + 1315: -37,-119 + 1316: -37,-118 + 1317: -38,-118 + 1318: -32,-111 + 1319: -34,-122 + 1320: -31,-122 + 1321: -30,-122 + 1322: -32,-122 + 1323: -30,-123 + 1324: -31,-123 + 1325: -30,-124 + 1326: -30,-109 + 1327: -30,-110 + 1328: -29,-110 + 1329: -28,-111 + 1330: -27,-112 + 1331: -26,-112 + 1332: -28,-112 + 1333: -27,-111 + 1334: -26,-111 + 1335: -25,-111 + 1336: -34,-107 + 1337: -34,-108 + 1338: -35,-109 + 1339: -33,-108 + 1340: -33,-107 + 1341: -33,-106 + 1342: -36,-115 + 1343: -36,-114 + 1344: -35,-113 + 1345: -34,-112 + 1346: -33,-112 + 1347: -32,-112 + 1348: -31,-114 + 1349: -31,-115 + 1350: -31,-116 + 1351: -32,-118 + 1352: -33,-118 + 1353: -34,-118 + 1354: -35,-118 + 1355: -35,-118 + 1356: -37,-117 + 1357: -37,-116 + 1358: -37,-115 + 1359: -36,-114 + 1667: 13,-80 + 1668: 13,-79 + 1669: 13,-79 + 1670: 14,-77 + 1671: 14,-78 + 1672: 15,-78 + 1673: 14,-79 + 1674: 14,-79 + 1675: 14,-80 + 1676: 15,-80 + 1677: 15,-79 + 1678: 15,-78 + 1679: 14,-77 + 1680: 13,-77 + 1681: 13,-77 + 1682: 14,-78 + 1683: 14,-79 + 1684: 14,-81 + 1685: 14,-83 + 1686: 14,-82 + 1687: 11,-80 + 1688: 9,-80 + 1689: 9,-79 + 1690: 9,-78 + 1691: 10,-79 + 1692: 10,-77 + 1693: 11,-78 + 1694: 11,-78 + 1695: 10,-78 + 1696: 9,-77 + 1697: 9,-77 + 1698: 9,-79 + 1699: 10,-78 + 1700: 11,-77 + 1701: 11,-78 + 1702: 10,-79 + 1703: 10,-80 + 1704: 10,-80 + 1705: 10,-81 + 1706: 10,-81 + 1707: 9,-82 + 1708: 11,-82 + 2301: 43,-112 + 2302: 41,-112 + 2303: 41,-111 + 2304: 41,-110 + 2305: 40,-111 + 2306: 41,-113 + 2307: 42,-113 + 2308: 42,-112 + 2309: 42,-112 + 2310: 41,-111 + 2311: 41,-112 + 2312: 40,-112 + 2313: 40,-111 + 2314: 41,-110 + 2315: 41,-109 + 2316: 42,-109 + 2317: 42,-111 + 2318: 42,-111 + 2319: 42,-111 + 2320: 43,-110 + 2321: 43,-110 + 2322: 43,-111 + 2323: 44,-111 + 2324: 43,-112 + 2325: 43,-112 + 2326: 43,-113 + 2327: 43,-113 + 2328: 42,-111 + 2329: 42,-110 + 2330: 43,-109 + 2331: 40,-110 + 3125: -11,-115 + 3126: -11,-116 + 3127: -11,-115 + 3128: -10,-116 + 3129: -10,-115 + 3130: -9,-114 + 3131: -9,-115 + 3132: -10,-116 + 3133: -10,-117 + 3134: -9,-115 + 3135: -9,-115 + 3136: -9,-117 + 3137: -8,-117 + 3138: -8,-116 + 3139: -7,-115 + 3140: -8,-117 + 3141: -8,-118 + 3142: -8,-118 + 3143: -9,-117 + 3144: -9,-116 + 3145: -8,-115 + 3146: -9,-114 + 3147: -9,-114 + 3148: -8,-116 + 3149: -6,-117 + 3150: -6,-118 + 3151: -4,-119 + 3152: -4,-119 + 3153: -3,-119 + 3154: -3,-119 + 3155: -2,-118 + 3156: -2,-117 + 3157: -3,-117 + 3158: -4,-118 + 3159: -3,-118 + 3160: -3,-118 + 3161: -6,-119 + 3162: -5,-118 + 3163: -5,-118 + 3164: -5,-119 + 3165: -7,-118 + 3166: -7,-117 + 3167: -7,-116 + 3168: -9,-117 + 3169: -9,-118 + 3170: -7,-117 + 3171: -6,-116 + 3172: -6,-114 + 3173: -5,-114 + 3174: -5,-116 + 3175: -6,-114 + 3176: -4,-115 + 3177: -3,-116 + 3178: -4,-116 + 3179: -3,-117 + 3180: -4,-115 + 3181: -6,-115 + 3182: -6,-115 + 3183: -4,-115 + 3184: -4,-117 + 3185: -5,-117 + 3186: -5,-115 + - node: + color: '#A05212FF' + id: DirtHeavy + decals: + 1825: -11,-103 + 1826: -11,-103 + 1827: -12,-102 + 1828: -12,-101 + 1829: -13,-103 + 1830: -12,-103 + 1831: -12,-103 + 1832: -12,-101 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -1388,139 +3135,401 @@ entities: 719: 9,-97 720: 9,-99 721: 11,-101 - 722: 12,-103 - 723: 10,-103 - 724: 9,-103 - 725: 11,-102 - 726: 7,-83 + 722: 10,-103 + 723: 9,-103 + 724: 11,-102 + 725: 7,-83 + 726: 5,-83 727: 5,-83 - 728: 5,-83 - 729: 3,-84 - 730: 4,-82 - 731: 2,-83 - 732: 3,-82 + 728: 3,-84 + 729: 4,-82 + 730: 2,-83 + 731: 3,-82 + 732: 0,-83 733: 0,-83 - 734: 0,-83 - 735: -2,-83 - 736: -2,-82 - 737: -4,-83 - 738: -4,-82 - 739: -5,-83 - 740: -6,-83 - 741: -6,-82 - 742: -8,-83 - 743: -7,-84 - 744: -5,-84 + 734: -2,-83 + 735: -2,-82 + 736: -4,-83 + 737: -4,-82 + 738: -5,-83 + 739: -6,-83 + 740: -6,-82 + 741: -8,-83 + 742: -7,-84 + 743: -5,-84 + 744: -4,-83 745: -4,-83 - 746: -4,-83 - 747: 1,-83 - 748: -1,-84 - 749: 0,-84 - 750: 3,-84 - 751: 3,-83 - 752: 3,-82 - 753: 6,-82 - 754: 8,-82 - 755: 10,-83 - 756: 10,-84 - 757: 10,-86 - 758: 10,-88 - 759: 9,-91 - 760: 10,-93 - 761: 10,-96 - 762: 9,-99 - 763: 10,-102 - 764: 13,-103 - 765: 13,-102 - 766: 15,-102 - 767: 13,-104 - 768: 14,-102 - 769: 14,-102 - 881: -18,-89 - 882: -17,-89 - 883: -17,-89 - 884: -14,-92 - 885: -15,-93 - 886: -14,-92 - 887: -15,-91 - 888: -15,-90 - 889: -15,-90 - 890: -15,-89 - 891: -14,-88 - 892: -14,-87 - 893: -14,-86 - 894: -12,-86 - 895: -12,-86 - 896: -12,-88 - 897: -13,-88 - 898: -11,-88 - 899: -12,-89 - 900: -13,-91 - 901: -12,-91 - 902: -11,-91 - 903: -12,-92 - 904: -12,-92 - 905: -12,-92 - 906: -12,-93 - 907: -13,-93 - 908: -11,-93 - 909: -11,-93 - 910: -12,-91 - 911: -12,-90 - 912: -11,-89 - 913: -12,-87 - 914: -13,-87 - 915: -11,-87 - 916: -11,-88 - 917: -12,-89 - 918: -13,-88 - 919: -13,-86 - 920: -15,-84 - 921: -14,-84 - 922: -15,-83 - 923: -15,-83 - 924: -17,-83 - 925: -18,-83 - 926: -17,-83 - 927: -18,-83 - 928: -18,-83 - 929: -17,-82 - 930: -18,-82 - 931: -18,-84 - 932: -16,-84 - 933: -14,-84 - 934: -13,-82 - 935: -12,-82 - 936: -11,-84 - 937: -10,-83 - 938: -10,-83 - 939: -11,-83 - 940: -12,-84 - 941: -13,-84 - 942: -13,-83 - 943: -15,-83 - 944: -15,-84 - 945: -17,-82 - 946: -17,-82 - 947: -18,-82 - 948: -18,-83 - 949: -19,-83 - 1110: 15,-59 - 1111: 15,-59 - 1112: 16,-59 - 1113: 16,-59 - 1114: 16,-61 - 1115: 17,-61 - 1116: 17,-60 - 1117: 18,-58 - 1118: 19,-61 - 1119: 19,-60 - 1120: 18,-60 - 1121: 18,-58 - 1122: 16,-58 - 1123: 16,-60 - 1124: 18,-59 - 1125: 16,-57 + 746: 1,-83 + 747: -1,-84 + 748: 0,-84 + 749: 3,-84 + 750: 3,-83 + 751: 3,-82 + 752: 6,-82 + 753: 8,-82 + 754: 10,-83 + 755: 10,-84 + 756: 10,-86 + 757: 10,-88 + 758: 9,-91 + 759: 10,-93 + 760: 10,-96 + 761: 9,-99 + 762: 10,-102 + 763: 15,-102 + 764: 13,-104 + 870: -18,-89 + 871: -17,-89 + 872: -17,-89 + 873: -14,-92 + 874: -15,-93 + 875: -14,-92 + 876: -15,-91 + 877: -15,-90 + 878: -15,-90 + 879: -15,-89 + 880: -14,-88 + 881: -14,-87 + 882: -14,-86 + 883: -12,-86 + 884: -12,-86 + 885: -12,-88 + 886: -13,-88 + 887: -11,-88 + 888: -12,-89 + 889: -13,-91 + 890: -12,-91 + 891: -11,-91 + 892: -12,-92 + 893: -12,-92 + 894: -12,-92 + 895: -12,-93 + 896: -13,-93 + 897: -11,-93 + 898: -11,-93 + 899: -12,-91 + 900: -12,-90 + 901: -11,-89 + 902: -12,-87 + 903: -13,-87 + 904: -11,-87 + 905: -11,-88 + 906: -12,-89 + 907: -13,-88 + 908: -13,-86 + 909: -15,-84 + 910: -14,-84 + 911: -15,-83 + 912: -15,-83 + 913: -17,-83 + 914: -18,-83 + 915: -17,-83 + 916: -18,-83 + 917: -18,-83 + 918: -17,-82 + 919: -18,-82 + 920: -18,-84 + 921: -16,-84 + 922: -14,-84 + 923: -13,-82 + 924: -12,-82 + 925: -11,-84 + 926: -10,-83 + 927: -10,-83 + 928: -11,-83 + 929: -12,-84 + 930: -13,-84 + 931: -13,-83 + 932: -15,-83 + 933: -15,-84 + 934: -17,-82 + 935: -17,-82 + 936: -18,-82 + 937: -18,-83 + 938: -19,-83 + 1086: 15,-59 + 1087: 15,-59 + 1088: 16,-59 + 1089: 16,-59 + 1090: 16,-61 + 1091: 17,-61 + 1092: 17,-60 + 1093: 18,-58 + 1094: 19,-61 + 1095: 19,-60 + 1096: 18,-60 + 1097: 18,-58 + 1098: 16,-58 + 1099: 16,-60 + 1100: 18,-59 + 1101: 16,-57 + 1403: 17,-93 + 1404: 19,-91 + 1405: 20,-88 + 1406: 20,-87 + 1407: 19,-88 + 1408: 21,-93 + 1409: 19,-96 + 1420: 17,-99 + 1421: 19,-99 + 1422: 22,-97 + 1423: 23,-99 + 1424: 24,-101 + 1425: 25,-97 + 1426: 24,-94 + 1427: 23,-92 + 1460: 15,-83 + 1461: 15,-84 + 1462: 15,-84 + 1463: 16,-85 + 1464: 16,-85 + 1465: 15,-85 + 1466: 16,-86 + 1467: 16,-86 + 1468: 16,-87 + 1469: 19,-87 + 1470: 21,-84 + 1471: 21,-83 + 1472: 19,-84 + 1473: 19,-85 + 1474: 23,-84 + 1475: 24,-82 + 1476: 25,-82 + 1477: 25,-84 + 1478: 25,-84 + 1479: 25,-87 + 1480: 25,-89 + 1481: 25,-91 + 1482: 25,-94 + 1483: 25,-97 + 1484: 25,-101 + 1485: 25,-101 + 1486: 24,-102 + 1487: 21,-102 + 1533: 12,-102 + 1534: 13,-103 + 1535: 14,-102 + 1536: 14,-102 + 1537: 14,-103 + 1538: 13,-103 + 1539: 13,-103 + 1540: 12,-102 + 1541: 13,-103 + 1542: 23,-87 + 1543: 24,-87 + 1544: 23,-86 + 1545: 22,-87 + 1546: 22,-88 + 1547: 23,-91 + 1548: 22,-92 + 1549: 22,-91 + 1550: 26,-90 + 1551: 24,-90 + 1552: 25,-90 + 1553: 25,-90 + 1554: 23,-96 + 1555: 23,-96 + 1556: 23,-95 + 1557: 22,-95 + 1558: 22,-96 + 1559: 22,-94 + 1560: 24,-95 + 1561: 24,-94 + 1562: 22,-99 + 1563: 22,-98 + 1564: 23,-98 + 1565: 33,-87 + 1566: 32,-87 + 1567: 32,-86 + 1575: 28,-86 + 1576: 28,-86 + 1577: 27,-86 + 1578: 27,-86 + 1579: 27,-87 + 1580: 28,-87 + 1581: 27,-87 + 1582: 29,-87 + 1583: 29,-87 + 1584: 37,-87 + 1585: 37,-86 + 1586: 37,-86 + 1587: 38,-87 + 1588: 38,-87 + 1589: 39,-87 + 1590: 40,-87 + 1591: 40,-86 + 1595: 30,-84 + 1596: 30,-83 + 1597: 31,-83 + 1598: 31,-84 + 1599: 31,-84 + 1600: 32,-82 + 1601: 34,-82 + 1602: 33,-83 + 1603: 34,-84 + 1604: 36,-83 + 1620: 30,-82 + 1621: 32,-82 + 1622: 33,-83 + 1623: 37,-83 + 1624: 38,-82 + 1625: 38,-84 + 1626: 41,-84 + 1627: 34,-87 + 1628: 34,-86 + 1629: 32,-87 + 1630: 33,-87 + 1631: 33,-86 + 1632: 31,-86 + 1633: 31,-86 + 1634: 32,-86 + 1635: 34,-87 + 1636: 34,-87 + 1637: 27,-82 + 1638: 27,-83 + 1639: 27,-83 + 1640: 26,-82 + 1641: 26,-82 + 1642: 26,-83 + 1643: 26,-84 + 1644: 24,-83 + 1645: 23,-83 + 1646: 23,-83 + 1647: 14,-80 + 1648: 13,-80 + 1649: 13,-79 + 1650: 14,-78 + 1651: 14,-77 + 1652: 15,-78 + 1848: -15,-96 + 1849: -14,-95 + 1850: -14,-94 + 1851: -14,-94 + 1852: -15,-94 + 1853: -15,-95 + 1854: -14,-98 + 1855: -14,-99 + 1856: -14,-100 + 1857: -14,-101 + 1858: -14,-101 + 1859: -14,-97 + 1860: -14,-94 + 1861: -14,-91 + 1862: -14,-89 + 1863: -15,-86 + 1864: -14,-86 + 1865: -35,-100 + 2332: 42,-110 + 2333: 41,-112 + 2334: 40,-111 + 3187: -8,-116 + 3188: -8,-117 + 3189: -9,-117 + 3190: -9,-116 + 3191: -8,-115 + 3192: -9,-115 + 3193: -10,-116 + 3194: -9,-116 + 3195: -6,-117 + 3196: -5,-115 + 3197: -5,-114 + 3198: -7,-116 + 3199: -5,-117 + 3200: -5,-118 + 3201: -4,-118 + 3202: -3,-117 + 3203: -2,-118 + 3204: -4,-118 + 3205: -4,-119 + 3206: -6,-118 + 3207: -9,-117 + 3208: -11,-116 + 3209: -11,-115 + 3210: -9,-114 + 3211: -9,-114 + 3212: -9,-114 + 3213: 11,-124 + 3214: 10,-125 + 3215: 10,-124 + 3216: 10,-123 + 3217: 11,-124 + 3218: 10,-125 + 3219: 10,-125 + 3220: 9,-124 + 3221: 9,-123 + 3222: 9,-122 + 3223: 8,-122 + 3224: 8,-122 + 3225: 8,-122 + 3226: 10,-122 + 3227: 11,-122 + 3228: 12,-122 + 3229: 12,-123 + 3230: 12,-124 + 3231: 12,-125 + 3232: 11,-125 + 3233: 11,-125 + 3234: 11,-124 + 3235: 11,-123 + 3236: 11,-123 + 3237: 11,-123 + 3238: 11,-124 + 3239: 11,-125 + 3240: -10,-108 + 3241: -10,-108 + 3242: -11,-110 + 3243: -11,-110 + 3244: -11,-109 + 3245: -10,-109 + 3246: -12,-111 + 3247: -12,-111 + 3248: -11,-111 + 3249: -10,-110 + 3250: -10,-109 + 3251: -10,-107 + 3252: -10,-106 + 3253: -10,-106 + 3254: -39,-12 + 3255: -38,-11 + 3256: -38,-11 + 3257: -39,-12 + 3258: -38,-13 + 3259: -36,-14 + - node: + color: '#A05212FF' + id: DirtHeavyMonotile + decals: + 1833: -12,-100 + 1834: -12,-100 + 1835: -12,-100 + 1836: -10,-100 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1410: 20,-91 + 1411: 21,-94 + 1412: 21,-98 + 1413: 21,-100 + 1414: 22,-101 + 1415: 21,-102 + 1416: 22,-102 + 1417: 19,-102 + 1418: 17,-101 + 1419: 18,-99 + 1592: 38,-86 + 1593: 39,-86 + 1594: 39,-86 + 1616: 31,-84 + 1617: 32,-83 + 1618: 33,-83 + 1619: 33,-84 + 2335: 42,-111 + 2336: 42,-113 + 2337: 41,-112 + 2338: 41,-111 + 2339: 41,-110 + 2340: 43,-109 - node: color: '#FFFFFFFF' id: DirtLight @@ -1538,45 +3547,144 @@ entities: 102: -4,16 103: -3,16 104: -3,16 - 1391: -34,-118 - 1392: -34,-118 - 1393: -33,-119 - 1394: -33,-120 - 1395: -32,-118 - 1396: -32,-118 - 1397: -32,-115 - 1398: -32,-114 - 1399: -32,-113 - 1400: -32,-112 - 1401: -36,-113 - 1402: -36,-114 - 1403: -37,-115 - 1404: -37,-116 - 1405: -37,-117 - 1406: -36,-118 - 1407: -34,-119 - 1408: -33,-119 - 1409: -32,-119 - 1410: -31,-118 - 1411: -30,-115 - 1412: -31,-113 - 1413: -32,-112 - 1414: -34,-111 - 1415: -33,-112 - 1416: -34,-109 - 1417: -33,-107 - 1418: -33,-107 - 1419: -30,-112 - 1420: -29,-110 - 1421: -29,-110 - 1422: -29,-112 - 1423: -32,-121 - 1424: -32,-121 - 1425: -32,-121 - 1426: -31,-121 - 1427: -31,-122 - 1428: -30,-122 - 1429: -29,-123 + 1360: -34,-118 + 1361: -34,-118 + 1362: -33,-119 + 1363: -33,-120 + 1364: -32,-118 + 1365: -32,-118 + 1366: -32,-115 + 1367: -32,-114 + 1368: -32,-113 + 1369: -32,-112 + 1370: -36,-113 + 1371: -36,-114 + 1372: -37,-115 + 1373: -37,-116 + 1374: -37,-117 + 1375: -36,-118 + 1376: -34,-119 + 1377: -33,-119 + 1378: -32,-119 + 1379: -31,-118 + 1380: -30,-115 + 1381: -31,-113 + 1382: -32,-112 + 1383: -34,-111 + 1384: -33,-112 + 1385: -34,-109 + 1386: -33,-107 + 1387: -33,-107 + 1388: -30,-112 + 1389: -29,-110 + 1390: -29,-110 + 1391: -29,-112 + 1392: -32,-121 + 1393: -32,-121 + 1394: -32,-121 + 1395: -31,-121 + 1396: -31,-122 + 1397: -30,-122 + 1398: -29,-123 + 1451: 15,-82 + 1452: 15,-83 + 1453: 17,-85 + 1454: 17,-82 + 1455: 18,-82 + 1456: 19,-82 + 1457: 17,-83 + 1458: 17,-85 + 1459: 17,-86 + 1488: 17,-100 + 1489: 18,-101 + 1490: 16,-102 + 1491: 17,-102 + 1492: 15,-100 + 1493: 15,-100 + 1494: 14,-101 + 1495: 13,-101 + 1496: 11,-102 + 1497: 10,-102 + 1498: 11,-100 + 1499: 15,-99 + 1500: 16,-99 + 1501: 15,-98 + 1502: 16,-96 + 1503: 18,-97 + 1504: 18,-99 + 1505: 17,-101 + 1506: 18,-101 + 1507: 20,-100 + 1508: 18,-94 + 1509: 18,-93 + 1510: 21,-93 + 1511: 17,-95 + 1512: 17,-96 + 1513: 17,-95 + 1514: 16,-93 + 1515: 13,-93 + 1516: 13,-91 + 1517: 10,-91 + 1518: 9,-90 + 1519: 10,-90 + 1520: 11,-89 + 1521: 16,-86 + 1522: 18,-85 + 1523: 19,-84 + 1524: 20,-84 + 1525: 24,-87 + 1526: 24,-90 + 1527: 24,-94 + 1528: 24,-100 + 1529: 22,-100 + 1530: 21,-99 + 1531: 19,-99 + 1532: 19,-100 + 1568: 33,-86 + 1569: 35,-87 + 1570: 35,-87 + 1571: 35,-86 + 1572: 29,-87 + 1573: 29,-86 + 1574: 30,-86 + 1653: 14,-78 + 1654: 13,-78 + 1655: 13,-77 + 1656: 14,-77 + 1657: 15,-80 + 1658: 15,-80 + 1659: 14,-81 + 2341: 42,-110 + 2342: 42,-112 + 2343: 43,-112 + 2344: 42,-113 + 2345: 44,-111 + 2346: 44,-111 + 2347: 43,-111 + 2348: 43,-111 + 2349: 43,-110 + 2350: 43,-109 + 2351: 42,-109 + 2352: 42,-109 + 2353: 41,-109 + 2354: 42,-111 + 2355: 42,-112 + 2356: 43,-113 + - node: + color: '#A05212FF' + id: DirtMedium + decals: + 1837: -12,-99 + 1838: -12,-99 + 1839: -12,-98 + 1840: -11,-98 + 1841: -11,-97 + 1842: -11,-96 + 1843: -12,-95 + 1844: -12,-95 + 1845: -12,-96 + 1846: -13,-95 + 1847: -13,-94 - node: color: '#FFFFFFFF' id: DirtMedium @@ -1616,13 +3724,54 @@ entities: 137: 2,16 138: 2,16 139: 2,18 + 1428: 20,-86 + 1429: 22,-86 + 1430: 18,-88 + 1431: 15,-90 + 1432: 15,-92 + 1433: 16,-93 + 1434: 16,-91 + 1435: 16,-89 + 1436: 17,-89 + 1437: 18,-90 + 1438: 19,-89 + 1439: 24,-88 + 1440: 24,-86 + 1441: 24,-86 + 1442: 24,-91 + 1443: 23,-91 + 1444: 15,-82 + 1445: 18,-83 + 1446: 23,-82 + 1447: 23,-82 + 1448: 19,-83 + 1449: 18,-83 + 1450: 18,-85 + 1605: 35,-83 + 1606: 37,-83 + 1607: 38,-82 + 1608: 37,-84 + 1609: 37,-84 + 1610: 39,-83 + 1611: 40,-83 + 1612: 41,-82 + 1613: 41,-83 + 1614: 41,-84 + 1615: 39,-84 + 1660: 13,-80 + 1661: 13,-79 + 1662: 13,-78 + 1663: 13,-77 + 1664: 15,-77 + 1665: 15,-79 + 1666: 14,-79 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 1029: 14,-67 - 1030: 15,-67 - 1031: 12,-75 + 1005: 14,-67 + 1006: 15,-67 + 1007: 12,-75 - node: color: '#FFFFFFFF' id: Grassb1 @@ -1689,53 +3838,114 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 1013: 13,-68 - 1014: 14,-68 - 1015: 15,-68 - 1016: 16,-68 - 1017: 15,-68 - 1018: 17,-68 - 1019: 17,-68 - 1020: 17,-68 - 1021: 18,-68 - 1022: 18,-68 - 1023: 19,-68 - 1024: 19,-68 + 989: 13,-68 + 990: 14,-68 + 991: 15,-68 + 992: 16,-68 + 993: 15,-68 + 994: 17,-68 + 995: 17,-68 + 996: 17,-68 + 997: 18,-68 + 998: 18,-68 + 999: 19,-68 + 1000: 19,-68 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 1004: 19,-75 - 1006: 18,-75 - 1007: 17,-75 - 1008: 16,-75 - 1009: 15,-75 - 1010: 14,-75 - 1011: 13,-75 + 980: 19,-75 + 982: 18,-75 + 983: 17,-75 + 984: 16,-75 + 985: 15,-75 + 986: 14,-75 + 987: 13,-75 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 990: 13,-68 - 991: 13,-69 - 992: 13,-70 - 993: 13,-71 - 994: 13,-72 - 995: 13,-74 - 996: 13,-73 - 1012: 13,-75 + 966: 13,-68 + 967: 13,-69 + 968: 13,-70 + 969: 13,-71 + 970: 13,-72 + 971: 13,-74 + 972: 13,-73 + 988: 13,-75 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 997: 19,-68 - 998: 19,-69 - 999: 19,-70 - 1000: 19,-71 - 1001: 19,-72 - 1002: 19,-73 - 1003: 19,-74 - 1005: 19,-75 + 973: 19,-68 + 974: 19,-69 + 975: 19,-70 + 976: 19,-71 + 977: 19,-72 + 978: 19,-73 + 979: 19,-74 + 981: 19,-75 + - node: + color: '#9FED5896' + id: MiniTileOverlay + decals: + 1880: -29,-98 + 1881: -28,-98 + 1882: -27,-98 + 1883: -26,-98 + 1884: -29,-92 + 1885: -28,-92 + 1886: -27,-92 + 1887: -26,-92 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNe + decals: + 1904: -26,-93 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNw + decals: + 1888: -29,-93 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSe + decals: + 1903: -26,-97 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSw + decals: + 1902: -29,-97 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineE + decals: + 1899: -26,-94 + 1900: -26,-95 + 1901: -26,-96 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineN + decals: + 1889: -28,-93 + 1890: -27,-93 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineS + decals: + 1891: -28,-97 + 1892: -27,-97 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineW + decals: + 1893: -29,-96 + 1894: -29,-96 + 1895: -29,-96 + 1896: -29,-95 + 1897: -29,-95 + 1898: -29,-94 - node: color: '#FFFFFFFF' id: Remains @@ -1818,93 +4028,169 @@ entities: decals: 213: -9.350954,22.437605 312: 3.9117045,-97.48892 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1709: -7,-58 + 1711: -7,-67 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 1026: 18,-74 + 1002: 18,-74 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1713: -4,-72 + 1716: -4,-63 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1028: 14,-69 + 1004: 14,-69 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1710: -7,-63 + 1712: -7,-72 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1027: 18,-69 + 1003: 18,-69 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1714: -4,-67 + 1715: -4,-58 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1025: 14,-74 + 1001: 14,-74 - node: color: '#52B4E996' id: WarnEndGreyscaleE decals: - 1065: 5,-75 + 1041: 5,-75 - node: color: '#52B4E996' id: WarnEndGreyscaleW decals: - 1064: 2,-75 + 1040: 2,-75 - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnFull + color: '#334E6DC8' + id: WarnFullGreyscale decals: - 772: 13,-102 - 773: 13,-103 - 774: 14,-102 - 775: 14,-103 + 1732: -3,-60 + 1733: -3,-61 + 1734: -3,-69 + 1735: -3,-70 + 1750: -6,-68 + 1751: -6,-69 + 1752: -6,-71 + 1753: -6,-70 + 1754: -5,-70 + 1755: -5,-69 + 1756: -5,-68 + 1757: -6,-59 + 1758: -6,-60 + 1759: -5,-61 + 1760: -5,-60 + 1761: -5,-59 + 1762: -5,-62 + 1763: -6,-62 + 1764: -6,-61 - node: color: '#52B4E996' id: WarnFullGreyscale decals: - 1048: 7,-75 - 1049: 8,-75 - 1050: 9,-75 - 1051: 10,-75 - 1052: 11,-75 - 1053: 6,-75 - 1056: 2,-74 - 1057: 3,-74 - 1058: 4,-74 - 1059: 5,-74 - 1060: 5,-76 - 1061: 4,-76 - 1062: 3,-76 - 1063: 2,-76 - 1070: 1,-75 + 1024: 7,-75 + 1025: 8,-75 + 1026: 9,-75 + 1027: 10,-75 + 1028: 11,-75 + 1029: 6,-75 + 1032: 2,-74 + 1033: 3,-74 + 1034: 4,-74 + 1035: 5,-74 + 1036: 5,-76 + 1037: 4,-76 + 1038: 3,-76 + 1039: 2,-76 + 1046: 1,-75 - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnLineE + color: '#334E6DC8' + id: WarnLineGreyscaleE decals: - 770: 12,-102 - 771: 12,-103 + 1726: -4,-62 + 1727: -4,-61 + 1728: -4,-60 + 1729: -4,-59 + 1738: -4,-69 + 1739: -4,-68 + 1740: -4,-70 + 1741: -4,-71 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 1054: 5,-75 + 1030: 5,-75 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleN + decals: + 1717: -6,-58 + 1718: -5,-58 + 1748: -5,-67 + 1749: -6,-67 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 1068: 3,-75 - 1069: 4,-75 + 1044: 3,-75 + 1045: 4,-75 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleS + decals: + 1724: -6,-63 + 1725: -5,-63 + 1742: -6,-72 + 1743: -5,-72 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 1066: 3,-75 - 1067: 4,-75 + 1042: 3,-75 + 1043: 4,-75 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleW + decals: + 1719: -7,-59 + 1720: -7,-61 + 1721: -7,-62 + 1722: -7,-60 + 1723: -7,-60 + 1730: -2,-61 + 1731: -2,-60 + 1736: -2,-69 + 1737: -2,-70 + 1744: -7,-71 + 1745: -7,-69 + 1746: -7,-70 + 1747: -7,-68 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 1055: 2,-75 + 1031: 2,-75 - node: color: '#FFFFFFFF' id: WarnLineN @@ -1930,661 +4216,148 @@ entities: color: '#4D0000FF' id: splatter decals: - 776: -2.4885616,-107.123215 - 777: -2.8791866,-107.26384 - 778: -2.6760616,-107.529465 - 779: 1.5270634,-105.904465 - 780: 0.96456337,-105.966965 - 781: 1.1051884,-106.404465 - 782: -2.1291866,-105.51384 - 783: -1.0979366,-105.404465 - 784: -0.59793663,-105.404465 - 785: -0.05106163,-105.404465 - 786: 0.13643837,-105.404465 - 787: -1.1135616,-105.435715 - 788: -2.1291866,-105.435715 - 789: -2.1448116,-105.435715 - 790: -2.2854366,-105.341965 - 791: -1.8323116,-105.185715 - 792: -0.14481163,-105.17009 - 793: 0.26143837,-105.123215 - 794: 0.29268837,-105.123215 - 795: -0.17606163,-105.17009 - 796: -1.4104366,-105.185715 - 797: -1.4885616,-105.26384 - 798: -1.7698116,-105.529465 - 799: -2.1135616,-105.435715 - 800: -2.2541866,-105.23259 - 801: -2.3323116,-105.17009 - 802: -1.3010616,-105.154465 - 803: -0.48856163,-105.123215 - 804: 0.13643837,-105.029465 - 805: 0.46456337,-105.04509 - 806: -0.33231163,-105.01384 - 807: -1.4416866,-104.998215 - 808: -2.0198116,-105.060715 - 809: -2.3323116,-105.185715 - 810: -1.0198116,-106.623215 - 811: -0.98856163,-106.76384 - 812: -1.2541866,-106.998215 - 813: -0.87918663,-106.529465 - 814: -0.69168663,-106.26384 - 815: -0.94168663,-106.466965 - 816: -0.80106163,-108.13884 - 817: -3.5979366,-105.54509 - 818: 2.1989384,-105.29509 + 765: -2.4885616,-107.123215 + 766: -2.8791866,-107.26384 + 767: -2.6760616,-107.529465 + 768: 1.5270634,-105.904465 + 769: 0.96456337,-105.966965 + 770: 1.1051884,-106.404465 + 771: -2.1291866,-105.51384 + 772: -1.0979366,-105.404465 + 773: -0.59793663,-105.404465 + 774: -0.05106163,-105.404465 + 775: 0.13643837,-105.404465 + 776: -1.1135616,-105.435715 + 777: -2.1291866,-105.435715 + 778: -2.1448116,-105.435715 + 779: -2.2854366,-105.341965 + 780: -1.8323116,-105.185715 + 781: -0.14481163,-105.17009 + 782: 0.26143837,-105.123215 + 783: 0.29268837,-105.123215 + 784: -0.17606163,-105.17009 + 785: -1.4104366,-105.185715 + 786: -1.4885616,-105.26384 + 787: -1.7698116,-105.529465 + 788: -2.1135616,-105.435715 + 789: -2.2541866,-105.23259 + 790: -2.3323116,-105.17009 + 791: -1.3010616,-105.154465 + 792: -0.48856163,-105.123215 + 793: 0.13643837,-105.029465 + 794: 0.46456337,-105.04509 + 795: -0.33231163,-105.01384 + 796: -1.4416866,-104.998215 + 797: -2.0198116,-105.060715 + 798: -2.3323116,-105.185715 + 799: -1.0198116,-106.623215 + 800: -0.98856163,-106.76384 + 801: -1.2541866,-106.998215 + 802: -0.87918663,-106.529465 + 803: -0.69168663,-106.26384 + 804: -0.94168663,-106.466965 + 805: -0.80106163,-108.13884 + 806: -3.5979366,-105.54509 + 807: 2.1989384,-105.29509 - node: color: '#502C00FF' id: splatter decals: - 819: -16.936966,-90.19061 + 808: -16.936966,-90.19061 - node: color: '#792C00FF' id: splatter decals: - 820: -16.843216,-90.09686 - 821: -16.98384,-90.22186 + 809: -16.843216,-90.09686 + 810: -16.98384,-90.22186 - type: LoadedMap + - type: MapAtmosphere + space: False + mixture: + volume: 2500 + immutable: True + temperature: 293.15 + moles: + - 21.82478 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: GravityShake + shakeTimes: 10 + - type: FTLDestination + beaconsOnly: True + whitelist: + tags: + - Prison + - uid: 8217 + components: + - type: MetaData + name: NT Escape Pod + - type: Transform + pos: -4.6404715,-116.071205 + parent: 1 + - type: ProtectedGrid + - type: EscapePod + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGwAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: BecomesStation + id: Empty + - type: OccluderTree + - type: Shuttle + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] - type: GridAtmosphere version: 2 data: tiles: - -4,0: - 0: 36607 - -4,-1: - 0: 61132 - -3,0: - 0: 13119 - -3,-1: - 0: 14131 - -2,0: - 0: 11 - -2,-1: - 0: 57088 - -2,4: - 0: 65516 - -2,3: - 0: 32768 - -1,0: - 0: 52463 - -1,3: - 0: 65420 -1,-1: - 0: 65516 - -1,4: - 0: 65535 - -1,1: - 0: 52428 - -1,2: - 0: 52428 + 0: 52224 0,0: - 0: 4415 - 0,1: - 0: 4369 - 0,2: - 0: 4369 - 0,3: - 0: 62209 - -4,-2: - 0: 32768 - -3,-2: - 0: 4096 - -1,-4: - 0: 52428 - -1,-3: - 0: 52428 - -1,-2: - 0: 52428 - -1,-5: - 0: 52428 - 0,-4: - 0: 4369 - 0,-3: - 0: 4369 - 0,-2: - 0: 4369 - 0,-1: - 0: 65329 - 0,4: - 0: 65535 - 1,0: - 0: 15 - 1,-1: - 0: 65280 - 2,0: - 0: 205 - 2,-1: - 0: 64960 - 3,0: - 0: 255 - 3,-1: - 0: 65520 - 4,0: - 0: 51 - 0,-5: - 0: 4369 - 4,-1: - 0: 13104 - 0,5: - 0: 65535 - -1,5: - 0: 65535 - 0,6: - 0: 65535 - -1,6: - 0: 65535 - 0,7: - 0: 65535 - -1,7: - 0: 65535 - 0,8: - 0: 9 - 1,4: - 0: 63280 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 1,8: - 0: 2 - 2,4: - 0: 4096 - 2,5: - 0: 65521 - 2,6: - 0: 65535 - 2,7: - 0: 4991 - 3,5: - 0: 13056 - 3,6: - 0: 275 - -1,8: - 0: 11 - -4,5: - 0: 61128 - -4,6: - 0: 35022 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 3311 - -3,4: - 0: 51200 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -2,8: - 0: 12 - 0,-8: - 0: 4369 - 0,-9: - 0: 4355 - -1,-8: - 0: 56796 - 0,-7: - 0: 4369 - -1,-7: - 0: 52428 - 0,-6: - 0: 4369 - -1,-6: - 0: 52428 - 0,-12: - 0: 65535 - -1,-12: - 0: 65535 - 0,-11: - 0: 4095 - -1,-11: - 0: 4095 - 0,-10: - 0: 32767 - -1,-10: - 0: 65535 - -1,-9: - 0: 52366 - 1,-12: 0: 1 - 1,-11: - 0: 256 - 1,-10: - 0: 17 - -4,-13: - 0: 32768 - -3,-12: - 0: 25395 - -3,-11: - 0: 32462 - -3,-10: - 0: 59251 - -3,-13: - 0: 30327 - -3,-9: - 0: 128 - -2,-9: - 0: 63280 - -2,-12: - 0: 34956 - -2,-11: - 0: 3208 - -2,-10: - 0: 2252 - -2,-8: - 0: 2190 - -1,-13: - 0: 36317 - -4,-16: - 0: 4104 - -5,-16: - 0: 52800 - -4,-15: - 0: 60817 - -5,-15: - 0: 140 - -4,-14: - 0: 35020 - -3,-16: - 0: 30583 - -3,-15: - 0: 32631 - -3,-14: - 0: 12562 - -3,-17: - 0: 30583 - -2,-16: - 0: 3822 - -2,-15: - 0: 3822 - -2,-14: - 0: 61166 - -2,-13: - 0: 3822 - -1,-16: - 0: 53245 - -1,-15: - 0: 36861 - -1,-14: - 0: 64989 - -1,-17: - 0: 53245 - 0,-16: - 0: 65535 - 0,-15: - 0: 4095 - 0,-14: - 0: 64989 - 0,-13: - 0: 3549 - 0,-17: - 0: 65535 - 1,-16: - 0: 64315 - 1,-15: - 0: 3071 - 1,-14: - 0: 13107 - 1,-13: - 0: 819 - 1,-17: - 0: 64315 - 2,-16: - 0: 30471 - 2,-15: - 0: 1911 - 2,-17: - 0: 30471 - 3,-16: - 0: 32782 - 3,-17: - 0: 61134 - 3,-15: - 0: 34956 - 4,-16: - 0: 45071 - 4,-15: - 0: 6143 - 4,-17: - 0: 65519 - 5,-16: - 0: 14 - 5,-17: - 0: 19456 - -4,-20: - 0: 65535 - -5,-20: - 0: 47784 - -4,-19: - 0: 62976 - -5,-19: - 0: 61043 - -4,-18: - 0: 143 - -5,-18: - 0: 32776 - -4,-17: - 0: 2615 - -5,-17: - 0: 2252 - -4,-21: - 0: 28671 - -3,-20: - 0: 7645 - -3,-18: - 0: 30579 - -2,-20: - 0: 4095 - -2,-19: - 0: 3822 - -2,-18: - 0: 3822 - -2,-17: - 0: 3822 - -2,-21: - 0: 20479 - -1,-19: - 0: 52733 - -1,-18: - 0: 53245 - -1,-20: - 0: 52462 - -1,-21: - 0: 53247 - 0,-20: - 0: 6587 - 0,-19: - 0: 7677 - 0,-18: - 0: 65535 - 0,-21: - 0: 8191 - 1,-20: - 0: 36863 - 1,-19: - 0: 1011 - 1,-18: - 0: 65531 - 2,-20: - 0: 8179 - 2,-19: - 0: 240 - 2,-18: - 0: 30583 - 3,-20: - 0: 12240 - 3,-19: - 0: 61168 - 3,-18: - 0: 61166 - 4,-20: - 0: 822 - 4,-19: - 0: 65520 - 4,-18: - 0: 65535 - 4,-21: - 0: 60615 - -8,-20: - 0: 61627 - -8,-21: - 0: 47551 - -9,-20: - 0: 61917 - -8,-19: - 0: 47 - -9,-19: - 0: 47 - -7,-20: - 0: 61695 - -7,-19: - 0: 207 - -7,-21: - 0: 65535 - -6,-20: - 0: 61695 - -6,-19: - 0: 15 - -6,-21: - 0: 65535 - -4,-24: - 0: 61539 - -5,-24: - 0: 53279 - -4,-23: - 0: 65535 - -5,-23: - 0: 52685 - -4,-22: - 0: 28671 - -5,-22: - 0: 3276 - -5,-21: - 0: 3838 - -4,-25: - 0: 27880 - -3,-24: - 0: 47240 - -3,-23: - 0: 48059 - -3,-22: - 0: 3003 - -3,-21: - 0: 2039 - -3,-25: - 0: 34952 - -2,-24: - 0: 65535 - -2,-23: - 0: 65535 - -2,-22: - 0: 4095 - -2,-25: - 0: 65535 - -1,-24: - 0: 65535 - -1,-23: - 0: 65535 - -1,-22: - 0: 53247 - -1,-25: - 0: 65535 - 0,-24: - 0: 65535 - 0,-23: - 0: 65535 - 0,-22: - 0: 8191 - 0,-25: - 0: 65535 - 1,-24: - 0: 65535 - 1,-23: - 0: 65535 - 1,-22: - 0: 4095 - 1,-21: - 0: 2039 - 1,-25: - 0: 65535 - 2,-21: - 0: 2039 - 2,-24: - 0: 26342 - 2,-23: - 0: 26342 - 2,-22: - 0: 26342 - 2,-25: - 0: 28270 - 3,-24: - 0: 1911 - 3,-23: - 0: 1911 - 3,-22: - 0: 1911 - 3,-21: - 0: 1911 - 4,-23: - 0: 28263 - 4,-22: - 0: 26231 - -4,-28: - 0: 511 - -5,-28: - 0: 12273 - -5,-25: - 0: 61440 - -4,-27: - 0: 49288 - -4,-26: - 0: 35976 - -3,-28: - 0: 16323 - -3,-27: - 0: 4881 - -3,-26: - 0: 39057 - -2,-28: - 0: 3575 - -2,-26: - 0: 65520 - -2,-27: - 0: 34816 - -1,-28: - 0: 15348 - -1,-27: - 0: 65532 - -1,-26: - 0: 65520 - 0,-28: - 0: 2807 - 0,-27: - 0: 65395 - 0,-26: - 0: 65520 - 1,-28: - 0: 61232 - 1,-26: - 0: 65520 - 2,-28: - 0: 12796 - 2,-27: - 0: 52463 - 2,-26: - 0: 28384 - 3,-28: - 0: 3315 - 3,-27: - 0: 8000 - 3,-26: - 0: 1904 - 3,-25: - 0: 1799 - 4,-28: - 0: 12286 - 4,-27: - 0: 26400 - 4,-25: - 0: 61390 - 4,-24: - 0: 28236 - 4,-26: - 0: 59072 - -8,-23: - 0: 16324 - -9,-23: - 0: 64640 - -8,-22: - 0: 65520 - -9,-22: - 0: 56785 - -9,-21: - 0: 53725 - -8,-25: - 0: 52462 - -8,-24: - 0: 8 - -7,-24: - 0: 65163 - -7,-23: - 0: 255 - -7,-22: - 0: 65520 - -7,-25: - 0: 47385 - -6,-24: - 0: 65465 - -6,-23: - 0: 35979 - -6,-22: - 0: 65520 - -6,-25: - 0: 4919 - -8,-28: - 0: 57343 - -8,-29: - 0: 65535 - -9,-28: - 0: 61439 - -8,-27: - 0: 4368 - -9,-27: - 0: 52428 - -8,-26: - 0: 30515 - -9,-26: - 0: 2252 - -7,-28: - 0: 65535 - -7,-29: - 0: 4096 - -6,-28: - 0: 28658 - -6,-26: - 0: 28160 - -9,-32: - 0: 65336 - -8,-32: - 0: 45312 - -8,-31: - 0: 14318 - -8,-30: - 0: 63347 - -9,-31: - 0: 58368 - -9,-30: - 0: 65535 - -9,-29: - 0: 65535 - -7,-32: - 0: 30664 - -7,-31: - 0: 51 - -6,-32: - 0: 17 - -10,-22: - 0: 51336 - -10,-21: - 0: 52364 - -10,-20: - 0: 136 - -10,-29: - 0: 61167 - -10,-28: - 0: 2252 - -10,-32: - 0: 52928 - -10,-31: - 0: 78 - -10,-30: - 0: 60544 + 1: 16 + -1,0: + 0: 12 + 1: 192 + 0,-1: + 0: 4352 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -2601,15 +4374,26 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - - type: GravityShake - shakeTimes: 10 - - type: FTLDestination - beaconsOnly: True - whitelist: - tags: - - Prison + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GridPathfinding - uid: 8566 components: - type: MetaData @@ -2617,6 +4401,10 @@ entities: - type: Transform pos: -0.47689933,26.011124 parent: 1 + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ArrivalsShuttleTimer - type: Tag tags: - Prison @@ -2891,6 +4679,103 @@ entities: - type: RadiationGridResistance - type: SpreaderGrid - type: GridPathfinding + - uid: 10867 + components: + - type: MetaData + name: NT Escape Pod + - type: Transform + pos: 43.091255,-110.29465 + parent: 1 + - type: ProtectedGrid + - type: EscapePod + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGwAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: BecomesStation + id: Empty + - type: OccluderTree + - type: Shuttle + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + -1,-1: + 0: 52224 + 0,0: + 0: 1 + 1: 16 + -1,0: + 0: 12 + 1: 192 + 0,-1: + 0: 4352 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GridPathfinding - proto: AirAlarm entities: - uid: 1946 @@ -2916,123 +4801,65 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-51.5 parent: 1 - - uid: 7623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-67.5 - parent: 1 - uid: 8568 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 8566 - - uid: 8895 - components: - - type: Transform - pos: -24.5,-77.5 - parent: 1 -- proto: AirCanister +- proto: AirlockGlassShuttle entities: - - uid: 209 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 8566 - - uid: 600 - components: - - type: Transform - pos: 10.5,1.5 - parent: 1 - - uid: 601 - components: - - type: Transform - pos: 11.5,1.5 - parent: 1 - - uid: 602 - components: - - type: Transform - pos: 12.5,1.5 - parent: 1 - - uid: 603 - components: - - type: Transform - pos: 13.5,1.5 - parent: 1 - - uid: 604 - components: - - type: Transform - pos: 14.5,1.5 - parent: 1 - - uid: 605 - components: - - type: Transform - pos: 15.5,1.5 - parent: 1 - - uid: 606 - components: - - type: Transform - pos: 16.5,1.5 - parent: 1 - - uid: 607 - components: - - type: Transform - pos: 17.5,1.5 - parent: 1 - - uid: 3760 + - uid: 8218 components: - type: Transform - pos: -6.5,-49.5 - parent: 1 - - uid: 3761 + pos: -0.5,-1.5 + parent: 8217 + - uid: 10147 components: - type: Transform - pos: -5.5,-49.5 - parent: 1 - - uid: 3762 + pos: -0.5,-1.5 + parent: 10146 + - uid: 10868 components: - type: Transform - pos: -4.5,-49.5 - parent: 1 - - uid: 3763 + pos: -0.5,-1.5 + parent: 10867 +- proto: AirlockHatch + entities: + - uid: 1548 components: - type: Transform - pos: -3.5,-49.5 + rot: 1.5707963267948966 rad + pos: -9.5,-106.5 parent: 1 - - uid: 3764 + - uid: 3061 components: - type: Transform - pos: -6.5,-55.5 + pos: -0.5,-34.5 parent: 1 - - uid: 3765 + - uid: 6311 components: - type: Transform - pos: -5.5,-55.5 + rot: 1.5707963267948966 rad + pos: -5.5,-122.5 parent: 1 - - uid: 3766 + - uid: 8171 components: - type: Transform - pos: -4.5,-55.5 + rot: 1.5707963267948966 rad + pos: -1.5,-122.5 parent: 1 - - uid: 3767 + - uid: 8172 components: - type: Transform - pos: -3.5,-55.5 + rot: 1.5707963267948966 rad + pos: 8.5,-121.5 parent: 1 -- proto: AirlockGlassShuttle - entities: - - uid: 10147 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 10146 -- proto: AirlockHatch - entities: - - uid: 3061 + - uid: 12116 components: - type: Transform - pos: -0.5,-34.5 + rot: 3.141592653589793 rad + pos: 28.5,-104.5 parent: 1 - proto: AltarFangs entities: @@ -3130,6 +4957,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-46.5 parent: 1 + - uid: 5357 + components: + - type: Transform + pos: -15.5,-112.5 + parent: 1 + - uid: 8338 + components: + - type: Transform + pos: -20.5,-112.5 + parent: 1 - proto: AlwaysPoweredLightSodium entities: - uid: 3134 @@ -3155,133 +4992,117 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-91.5 parent: 1 - - uid: 5548 - components: - - type: Transform - pos: -12.5,-85.5 - parent: 1 - - uid: 5549 + - uid: 6097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-77.5 + rot: 3.141592653589793 rad + pos: 11.5,-119.5 parent: 1 - - uid: 5550 + - uid: 6281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-79.5 + pos: -11.5,-121.5 parent: 1 - - uid: 5551 + - uid: 6744 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-87.5 - parent: 1 - - uid: 5553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-92.5 + pos: -0.5,-123.5 parent: 1 - - uid: 5554 + - uid: 6746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-92.5 + rot: 1.5707963267948966 rad + pos: -0.5,-121.5 parent: 1 - - uid: 5564 + - uid: 7666 components: - type: Transform - pos: -15.5,-85.5 + pos: -17.5,-121.5 parent: 1 - - uid: 5565 + - uid: 7670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-87.5 + pos: -23.5,-121.5 parent: 1 - - uid: 5566 + - uid: 7671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-89.5 + rot: 3.141592653589793 rad + pos: -17.5,-123.5 parent: 1 - - uid: 5567 + - uid: 7675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-89.5 + pos: -3.5,-121.5 parent: 1 - - uid: 5653 + - uid: 7676 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-83.5 + pos: -3.5,-123.5 parent: 1 - - uid: 5655 + - uid: 7880 components: - type: Transform - pos: -11.5,-81.5 + pos: 11.5,-114.5 parent: 1 - - uid: 5749 + - uid: 7957 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-83.5 + pos: -11.5,-123.5 parent: 1 - - uid: 5765 +- proto: AmmoTechFab + entities: + - uid: 8574 components: - type: Transform - pos: -15.5,-76.5 + pos: 10.5,-61.5 parent: 1 - - uid: 5766 +- proto: APCBasic + entities: + - uid: 246 components: - type: Transform - pos: -16.5,-81.5 - parent: 1 - - uid: 5767 + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 8566 + - uid: 286 components: - type: Transform - pos: -13.5,-76.5 + rot: 1.5707963267948966 rad + pos: 13.5,-84.5 parent: 1 - - uid: 6476 + - uid: 548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-83.5 + rot: 1.5707963267948966 rad + pos: -29.5,-91.5 parent: 1 - - uid: 6477 + - uid: 592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-83.5 + pos: -20.5,-84.5 parent: 1 - - uid: 6478 + - uid: 735 components: - type: Transform - pos: -4.5,-81.5 + rot: 1.5707963267948966 rad + pos: 8.5,-102.5 parent: 1 - - uid: 6480 + - uid: 1175 components: - type: Transform - pos: 3.5,-81.5 + rot: -1.5707963267948966 rad + pos: 21.5,-84.5 parent: 1 -- proto: AmmoTechFab - entities: - - uid: 8574 + - uid: 1202 components: - type: Transform - pos: 10.5,-61.5 + rot: -1.5707963267948966 rad + pos: 26.5,-102.5 parent: 1 -- proto: APCBasic - entities: - - uid: 246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 8566 - uid: 1947 components: - type: Transform @@ -3328,23 +5149,23 @@ entities: - type: Transform pos: -2.5,-84.5 parent: 1 - - uid: 4841 + - uid: 4769 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-68.5 + pos: -2.5,-66.5 parent: 1 - - uid: 4842 + - uid: 4771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-66.5 + rot: 1.5707963267948966 rad + pos: -2.5,-62.5 parent: 1 - - uid: 4843 + - uid: 4842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-60.5 + rot: 3.141592653589793 rad + pos: 9.5,-66.5 parent: 1 - uid: 5029 components: @@ -3384,12 +5205,17 @@ entities: - type: Transform pos: -8.5,-76.5 parent: 1 - - uid: 5569 + - uid: 5550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-81.5 + pos: 10.5,-75.5 parent: 1 + - uid: 8219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 8217 - uid: 8586 components: - type: Transform @@ -3408,29 +5234,40 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-69.5 parent: 1 - - uid: 8896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-87.5 - parent: 1 - - uid: 8947 - components: - - type: Transform - pos: -30.5,-81.5 - parent: 1 - uid: 10148 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 10146 + - uid: 10869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 10867 - uid: 11464 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-64.5 parent: 1 + - uid: 11755 + components: + - type: Transform + pos: 30.5,-80.5 + parent: 1 + - uid: 12837 + components: + - type: Transform + pos: 20.5,-75.5 + parent: 1 + - uid: 12838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-78.5 + parent: 1 - proto: AtmosDeviceFanTiny entities: - uid: 1924 @@ -3438,6 +5275,11 @@ entities: - type: Transform pos: -0.5,13.5 parent: 1 + - uid: 8220 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 8217 - uid: 8631 components: - type: Transform @@ -3448,41 +5290,32 @@ entities: - type: Transform pos: -0.5,-1.5 parent: 10146 -- proto: Autolathe - entities: - - uid: 3022 + - uid: 10907 components: - type: Transform - pos: -17.5,-85.5 - parent: 1 -- proto: Barricade + pos: -0.5,-1.5 + parent: 10867 +- proto: Autolathe entities: - - uid: 181 - components: - - type: Transform - pos: -4.5,0.5 - parent: 1 - - uid: 182 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 1 - - uid: 183 + - uid: 4813 components: - type: Transform - pos: -8.5,0.5 + pos: -12.5,-101.5 parent: 1 - - uid: 184 + - uid: 8867 components: - type: Transform - pos: -9.5,-1.5 + pos: -16.5,-86.5 parent: 1 - - uid: 197 +- proto: BackgammonBoard + entities: + - uid: 11657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 + pos: 17.694275,-99.339195 parent: 1 +- proto: Barricade + entities: - uid: 2392 components: - type: Transform @@ -3503,26 +5336,6 @@ entities: parent: 1 - proto: BarricadeBlock entities: - - uid: 190 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 1 - - uid: 191 - components: - - type: Transform - pos: -5.5,0.5 - parent: 1 - - uid: 192 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 1 - - uid: 193 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 1 - uid: 261 components: - type: Transform @@ -3543,82 +5356,26 @@ entities: parent: 1 - proto: BarricadeDirectional entities: - - uid: 194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - - uid: 195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 1 - - uid: 196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - - uid: 198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,0.5 - parent: 1 - - uid: 199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - - uid: 200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1 - - uid: 201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 1 - - uid: 202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 1 - uid: 2439 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-64.5 parent: 1 -- proto: Bed +- proto: BasaltTwo entities: - - uid: 3909 - components: - - type: Transform - pos: -6.5,-57.5 - parent: 1 - - uid: 3910 - components: - - type: Transform - pos: -6.5,-61.5 - parent: 1 - - uid: 3911 + - uid: 7855 components: - type: Transform - pos: -6.5,-65.5 + pos: -20.5,-27.5 parent: 1 - - uid: 3920 + - uid: 7872 components: - type: Transform - pos: -6.5,-69.5 + pos: -20.5,-27.5 parent: 1 +- proto: Bed + entities: - uid: 4004 components: - type: Transform @@ -3670,28 +5427,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-65.5 parent: 1 -- proto: BedsheetWhite - entities: - - uid: 3926 - components: - - type: Transform - pos: -6.5,-57.5 - parent: 1 - - uid: 3927 - components: - - type: Transform - pos: -6.5,-61.5 - parent: 1 - - uid: 3928 - components: - - type: Transform - pos: -6.5,-65.5 - parent: 1 - - uid: 3929 - components: - - type: Transform - pos: -6.5,-69.5 - parent: 1 - proto: BlastDoorExterior1 entities: - uid: 3045 @@ -3711,18 +5446,6 @@ entities: parent: 1 - proto: BlastDoorOpen entities: - - uid: 2172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-99.5 - parent: 1 - - uid: 2502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-97.5 - parent: 1 - uid: 3984 components: - type: Transform @@ -3756,6 +5479,36 @@ entities: - type: Transform pos: -1.5,-77.5 parent: 1 + - uid: 11682 + components: + - type: Transform + pos: 13.5,-83.5 + parent: 1 + - uid: 11683 + components: + - type: Transform + pos: 13.5,-82.5 + parent: 1 + - uid: 11684 + components: + - type: Transform + pos: 13.5,-81.5 + parent: 1 + - uid: 11685 + components: + - type: Transform + pos: 21.5,-83.5 + parent: 1 + - uid: 11686 + components: + - type: Transform + pos: 21.5,-82.5 + parent: 1 + - uid: 11687 + components: + - type: Transform + pos: 21.5,-81.5 + parent: 1 - proto: Bonfire entities: - uid: 4534 @@ -3777,44673 +5530,53401 @@ entities: rot: 1.5707963267948966 rad pos: -2.2073116,-106.85759 parent: 1 -- proto: BoxBeaker +- proto: BoxCardboard entities: - - uid: 2424 + - uid: 7552 components: - type: Transform - pos: 18.70064,-63.44542 + pos: -12.502141,-91.49512 parent: 1 -- proto: BoxLightbulb - entities: - - uid: 6489 + - uid: 7553 components: - type: Transform - pos: 13.270524,-102.59381 + pos: -12.549016,-91.12012 parent: 1 -- proto: Bucket - entities: - - uid: 5639 + - uid: 7554 components: - type: Transform - pos: -11.655769,-92.39358 + pos: -12.533391,-90.71387 parent: 1 -- proto: ButtonFrameCaution - entities: - - uid: 744 + - uid: 7555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-100.5 + pos: -12.470891,-90.26074 parent: 1 - - uid: 2501 + - uid: 7556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-98.5 + pos: -12.533391,-89.87012 parent: 1 -- proto: ButtonFrameCautionSecurity - entities: - - uid: 3095 + - uid: 7562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-44.5 + pos: -12.533391,-89.47949 parent: 1 -- proto: CableApcExtension - entities: - - uid: 206 + - uid: 8853 components: - type: Transform - pos: -1.5,0.5 - parent: 8566 - - uid: 212 + pos: -12.300467,-91.24767 + parent: 1 + - uid: 8854 components: - type: Transform - pos: -2.5,0.5 - parent: 8566 - - uid: 216 + pos: -12.753592,-90.79455 + parent: 1 + - uid: 8855 components: - type: Transform - pos: -0.5,0.5 - parent: 8566 - - uid: 218 + pos: -12.284842,-90.4508 + parent: 1 + - uid: 8856 components: - type: Transform - pos: -0.5,2.5 - parent: 8566 - - uid: 220 + pos: -12.816092,-90.0133 + parent: 1 + - uid: 8857 components: - type: Transform - pos: -1.5,-1.5 - parent: 8566 - - uid: 266 + pos: -12.347342,-89.65392 + parent: 1 + - uid: 8858 components: - type: Transform - pos: -0.5,-39.5 + pos: -12.284842,-89.96642 parent: 1 - - uid: 267 + - uid: 8859 components: - type: Transform - pos: -0.5,-38.5 + pos: -12.816092,-90.3258 parent: 1 - - uid: 268 + - uid: 8860 components: - type: Transform - pos: -0.5,-37.5 + pos: -12.269217,-90.8258 parent: 1 - - uid: 269 + - uid: 8861 components: - type: Transform - pos: -0.5,-36.5 + pos: -12.706717,-91.23205 parent: 1 - - uid: 270 + - uid: 8862 components: - type: Transform - pos: -0.5,-35.5 + pos: -12.737967,-89.52892 parent: 1 - - uid: 288 +- proto: BoxLightMixed + entities: + - uid: 12673 components: - type: Transform - pos: -0.5,-40.5 + pos: 25.302444,-102.54712 parent: 1 - - uid: 1951 +- proto: Bucket + entities: + - uid: 10215 components: - type: Transform - pos: 0.5,12.5 + pos: 25.51822,-78.376305 parent: 1 - - uid: 1952 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 3095 components: - type: Transform - pos: 0.5,11.5 + rot: -1.5707963267948966 rad + pos: 4.5,-44.5 parent: 1 - - uid: 1953 + - uid: 3839 components: - type: Transform - pos: 0.5,10.5 + rot: 3.141592653589793 rad + pos: 1.5,-72.5 parent: 1 - - uid: 1954 +- proto: ButtonFrameGrey + entities: + - uid: 7496 components: - type: Transform - pos: 0.5,9.5 + rot: -1.5707963267948966 rad + pos: 21.5,-100.5 parent: 1 - - uid: 1955 + - uid: 7964 components: - type: Transform - pos: 0.5,8.5 + rot: -1.5707963267948966 rad + pos: 21.5,-92.5 parent: 1 - - uid: 1956 + - uid: 7965 components: - type: Transform - pos: 0.5,7.5 + rot: 1.5707963267948966 rad + pos: 13.5,-92.5 parent: 1 - - uid: 1957 + - uid: 7966 components: - type: Transform - pos: 1.5,7.5 + rot: 1.5707963267948966 rad + pos: 13.5,-96.5 parent: 1 - - uid: 1958 + - uid: 7968 components: - type: Transform - pos: 18.5,-0.5 + rot: -1.5707963267948966 rad + pos: 21.5,-88.5 parent: 1 - - uid: 1959 + - uid: 7969 components: - type: Transform - pos: 17.5,-0.5 + rot: 1.5707963267948966 rad + pos: 13.5,-88.5 parent: 1 - - uid: 1960 + - uid: 7973 components: - type: Transform - pos: 16.5,-0.5 + rot: -1.5707963267948966 rad + pos: 21.5,-96.5 parent: 1 - - uid: 1961 + - uid: 7981 components: - type: Transform - pos: 15.5,-0.5 + rot: 1.5707963267948966 rad + pos: 13.5,-100.5 parent: 1 - - uid: 1962 +- proto: CableApcExtension + entities: + - uid: 206 components: - type: Transform - pos: 14.5,-0.5 - parent: 1 - - uid: 1963 + pos: -1.5,0.5 + parent: 8566 + - uid: 212 components: - type: Transform - pos: 13.5,-0.5 - parent: 1 - - uid: 1964 + pos: -2.5,0.5 + parent: 8566 + - uid: 216 components: - type: Transform - pos: 12.5,-0.5 - parent: 1 - - uid: 1965 + pos: -0.5,0.5 + parent: 8566 + - uid: 218 components: - type: Transform - pos: 11.5,-0.5 - parent: 1 - - uid: 1966 + pos: -0.5,2.5 + parent: 8566 + - uid: 220 components: - type: Transform - pos: 10.5,-0.5 - parent: 1 - - uid: 1976 + pos: -1.5,-1.5 + parent: 8566 + - uid: 251 components: - type: Transform - pos: 1.5,-6.5 + pos: -25.5,-102.5 parent: 1 - - uid: 1979 + - uid: 266 components: - type: Transform - pos: 0.5,-6.5 + pos: -0.5,-39.5 parent: 1 - - uid: 1980 + - uid: 267 components: - type: Transform - pos: 0.5,-7.5 + pos: -0.5,-38.5 parent: 1 - - uid: 1981 + - uid: 268 components: - type: Transform - pos: 0.5,-8.5 + pos: -0.5,-37.5 parent: 1 - - uid: 1982 + - uid: 269 components: - type: Transform - pos: 0.5,-9.5 + pos: -0.5,-36.5 parent: 1 - - uid: 1983 + - uid: 270 components: - type: Transform - pos: 0.5,-10.5 + pos: -0.5,-35.5 parent: 1 - - uid: 1984 + - uid: 288 components: - type: Transform - pos: 0.5,-5.5 + pos: -0.5,-40.5 parent: 1 - - uid: 1985 + - uid: 299 components: - type: Transform - pos: 0.5,-4.5 + pos: 24.5,-79.5 parent: 1 - - uid: 1986 + - uid: 411 components: - type: Transform - pos: 0.5,-3.5 + pos: 23.5,-78.5 parent: 1 - - uid: 1987 + - uid: 541 components: - type: Transform - pos: 0.5,-2.5 + pos: -16.5,-101.5 parent: 1 - - uid: 1988 + - uid: 542 components: - type: Transform - pos: 9.5,-0.5 + pos: -11.5,-94.5 parent: 1 - - uid: 1989 + - uid: 547 components: - type: Transform - pos: 8.5,-0.5 + pos: -22.5,-86.5 parent: 1 - - uid: 1990 + - uid: 593 components: - type: Transform - pos: 8.5,-1.5 + pos: -20.5,-89.5 parent: 1 - - uid: 1991 + - uid: 594 components: - type: Transform - pos: 7.5,-1.5 + pos: -20.5,-90.5 parent: 1 - - uid: 1992 + - uid: 595 components: - type: Transform - pos: 6.5,-1.5 + pos: -20.5,-91.5 parent: 1 - - uid: 1993 + - uid: 596 components: - type: Transform - pos: 5.5,-1.5 + pos: -20.5,-100.5 parent: 1 - - uid: 1994 + - uid: 603 components: - type: Transform - pos: 4.5,-1.5 + pos: -20.5,-92.5 parent: 1 - - uid: 1995 + - uid: 605 components: - type: Transform - pos: 3.5,-1.5 + pos: -20.5,-93.5 parent: 1 - - uid: 1996 + - uid: 606 components: - type: Transform - pos: 2.5,-1.5 + pos: -20.5,-94.5 parent: 1 - - uid: 1999 + - uid: 607 components: - type: Transform - pos: 0.5,6.5 + pos: -20.5,-85.5 parent: 1 - - uid: 2000 + - uid: 608 components: - type: Transform - pos: 0.5,5.5 + pos: -20.5,-101.5 parent: 1 - - uid: 2001 + - uid: 609 components: - type: Transform - pos: 0.5,4.5 + pos: -20.5,-102.5 parent: 1 - - uid: 2002 + - uid: 610 components: - type: Transform - pos: 0.5,3.5 + pos: -20.5,-96.5 parent: 1 - - uid: 2003 + - uid: 611 components: - type: Transform - pos: 0.5,2.5 + pos: -20.5,-97.5 parent: 1 - - uid: 2004 + - uid: 612 components: - type: Transform - pos: 0.5,1.5 + pos: -20.5,-98.5 parent: 1 - - uid: 2008 + - uid: 613 components: - type: Transform - pos: -6.5,1.5 + pos: -20.5,-99.5 parent: 1 - - uid: 2009 + - uid: 614 components: - type: Transform - pos: -6.5,0.5 + pos: -21.5,-86.5 parent: 1 - - uid: 2010 + - uid: 615 components: - type: Transform - pos: -5.5,0.5 + pos: -22.5,-87.5 parent: 1 - - uid: 2011 + - uid: 616 components: - type: Transform - pos: -4.5,0.5 + pos: -25.5,-89.5 parent: 1 - - uid: 2012 + - uid: 617 components: - type: Transform - pos: -3.5,0.5 + pos: -22.5,-98.5 parent: 1 - - uid: 2013 + - uid: 618 components: - type: Transform - pos: -2.5,0.5 + pos: -22.5,-99.5 parent: 1 - - uid: 2014 + - uid: 619 components: - type: Transform - pos: -7.5,0.5 + pos: -28.5,-91.5 parent: 1 - - uid: 2015 + - uid: 620 components: - type: Transform - pos: -8.5,0.5 + pos: -22.5,-100.5 parent: 1 - - uid: 2016 + - uid: 621 components: - type: Transform - pos: -9.5,0.5 + pos: -22.5,-90.5 parent: 1 - - uid: 2394 + - uid: 622 components: - type: Transform - pos: -0.5,-99.5 + pos: -27.5,-91.5 parent: 1 - - uid: 2396 + - uid: 646 components: - type: Transform - pos: -0.5,-86.5 + pos: -22.5,-101.5 parent: 1 - - uid: 2397 + - uid: 647 components: - type: Transform - pos: -0.5,-93.5 + pos: -22.5,-94.5 parent: 1 - - uid: 2398 + - uid: 648 components: - type: Transform - pos: -0.5,-88.5 + pos: -25.5,-91.5 parent: 1 - - uid: 2399 + - uid: 649 components: - type: Transform - pos: -0.5,-90.5 + pos: -25.5,-88.5 parent: 1 - - uid: 2542 + - uid: 650 components: - type: Transform - pos: 10.5,-82.5 + pos: -22.5,-97.5 parent: 1 - - uid: 3028 + - uid: 651 components: - type: Transform - pos: 13.5,-82.5 + pos: -25.5,-90.5 parent: 1 - - uid: 3148 + - uid: 652 components: - type: Transform - pos: -0.5,-85.5 + pos: -29.5,-91.5 parent: 1 - - uid: 3158 + - uid: 653 components: - type: Transform - pos: -0.5,-91.5 + pos: -22.5,-96.5 parent: 1 - - uid: 3159 + - uid: 654 components: - type: Transform - pos: -0.5,-92.5 + pos: -22.5,-91.5 parent: 1 - - uid: 3162 + - uid: 655 components: - type: Transform - pos: -0.5,-89.5 + pos: -22.5,-92.5 parent: 1 - - uid: 3163 + - uid: 656 components: - type: Transform - pos: -0.5,-87.5 + pos: -22.5,-93.5 parent: 1 - - uid: 3165 + - uid: 657 components: - type: Transform - pos: -0.5,-97.5 + pos: -26.5,-91.5 parent: 1 - - uid: 3177 + - uid: 658 components: - type: Transform - pos: -15.5,-85.5 + pos: -22.5,-102.5 parent: 1 - - uid: 3673 + - uid: 659 components: - type: Transform - pos: -4.5,-41.5 + pos: -22.5,-95.5 parent: 1 - - uid: 3674 + - uid: 660 components: - type: Transform - pos: -3.5,-41.5 + pos: -16.5,-100.5 parent: 1 - - uid: 3675 + - uid: 666 components: - type: Transform - pos: -2.5,-41.5 + pos: -22.5,-88.5 parent: 1 - - uid: 3676 + - uid: 715 components: - type: Transform - pos: -1.5,-41.5 + pos: -25.5,-99.5 parent: 1 - - uid: 3677 + - uid: 720 components: - type: Transform - pos: -0.5,-41.5 + pos: -27.5,-89.5 parent: 1 - - uid: 3678 + - uid: 721 components: - type: Transform - pos: 0.5,-41.5 + pos: -27.5,-90.5 parent: 1 - - uid: 3679 + - uid: 820 components: - type: Transform - pos: 1.5,-41.5 + pos: -27.5,-88.5 parent: 1 - - uid: 3680 + - uid: 823 components: - type: Transform - pos: 2.5,-41.5 + pos: -27.5,-96.5 parent: 1 - - uid: 3681 + - uid: 836 components: - type: Transform - pos: 3.5,-41.5 + pos: 24.5,-80.5 parent: 1 - - uid: 3682 + - uid: 849 components: - type: Transform - pos: -0.5,-42.5 + pos: 24.5,-78.5 parent: 1 - - uid: 3683 + - uid: 851 components: - type: Transform - pos: -0.5,-43.5 + pos: -11.5,-92.5 parent: 1 - - uid: 3684 + - uid: 852 components: - type: Transform - pos: -0.5,-44.5 + pos: -11.5,-93.5 parent: 1 - - uid: 3685 + - uid: 857 components: - type: Transform - pos: -0.5,-45.5 + pos: -16.5,-94.5 parent: 1 - - uid: 3686 + - uid: 893 components: - type: Transform - pos: -0.5,-46.5 + pos: 24.5,-77.5 parent: 1 - - uid: 3687 + - uid: 990 components: - type: Transform - pos: -0.5,-47.5 + pos: -16.5,-95.5 parent: 1 - - uid: 3688 + - uid: 1003 components: - type: Transform - pos: -0.5,-47.5 + pos: -19.5,-82.5 parent: 1 - - uid: 3689 + - uid: 1013 components: - type: Transform - pos: 2.5,-44.5 + pos: -22.5,-82.5 parent: 1 - - uid: 3690 + - uid: 1017 components: - type: Transform - pos: 3.5,-44.5 + pos: -23.5,-82.5 parent: 1 - - uid: 3691 + - uid: 1032 components: - type: Transform - pos: -4.5,-44.5 + pos: -20.5,-82.5 parent: 1 - - uid: 3692 + - uid: 1041 components: - type: Transform - pos: -3.5,-44.5 + pos: -21.5,-82.5 parent: 1 - - uid: 3693 + - uid: 1079 components: - type: Transform - pos: -2.5,-44.5 + pos: 24.5,-81.5 parent: 1 - - uid: 3694 + - uid: 1080 components: - type: Transform - pos: -1.5,-44.5 + pos: 25.5,-78.5 parent: 1 - - uid: 3695 + - uid: 1112 components: - type: Transform - pos: -0.5,-44.5 + pos: -20.5,-86.5 parent: 1 - - uid: 3696 + - uid: 1114 components: - type: Transform - pos: 0.5,-44.5 + pos: -20.5,-87.5 parent: 1 - - uid: 3697 + - uid: 1115 components: - type: Transform - pos: 1.5,-44.5 + pos: -20.5,-88.5 parent: 1 - - uid: 3698 + - uid: 1117 components: - type: Transform - pos: 3.5,-44.5 + pos: -20.5,-84.5 parent: 1 - - uid: 3699 + - uid: 1126 components: - type: Transform - pos: 3.5,-47.5 + pos: 18.5,-92.5 parent: 1 - - uid: 3700 + - uid: 1127 components: - type: Transform - pos: 2.5,-47.5 + pos: 18.5,-95.5 parent: 1 - - uid: 3701 + - uid: 1139 components: - type: Transform - pos: 1.5,-47.5 + pos: 18.5,-93.5 parent: 1 - - uid: 3702 + - uid: 1152 components: - type: Transform - pos: 0.5,-47.5 + pos: 25.5,-91.5 parent: 1 - - uid: 3703 + - uid: 1200 components: - type: Transform - pos: -0.5,-47.5 + pos: 24.5,-91.5 parent: 1 - - uid: 3704 + - uid: 1216 components: - type: Transform - pos: -1.5,-47.5 + pos: 9.5,-87.5 parent: 1 - - uid: 3705 + - uid: 1218 components: - type: Transform - pos: -2.5,-47.5 + pos: 7.5,-82.5 parent: 1 - - uid: 3706 + - uid: 1222 components: - type: Transform - pos: -3.5,-47.5 + pos: 10.5,-102.5 parent: 1 - - uid: 3707 + - uid: 1223 components: - type: Transform - pos: -4.5,-47.5 + pos: 13.5,-87.5 parent: 1 - - uid: 3708 + - uid: 1226 components: - type: Transform - pos: -1.5,-48.5 + pos: 16.5,-87.5 parent: 1 - - uid: 3709 + - uid: 1227 components: - type: Transform - pos: 1.5,-50.5 + pos: 23.5,-102.5 parent: 1 - - uid: 3710 + - uid: 1229 components: - type: Transform - pos: 2.5,-50.5 + pos: 11.5,-102.5 parent: 1 - - uid: 3713 + - uid: 1231 components: - type: Transform - pos: 5.5,-50.5 + pos: 26.5,-102.5 parent: 1 - - uid: 3714 + - uid: 1233 components: - type: Transform - pos: 5.5,-51.5 + pos: 12.5,-87.5 parent: 1 - - uid: 3715 + - uid: 1562 components: - type: Transform - pos: 5.5,-52.5 + pos: 13.5,-102.5 parent: 1 - - uid: 3716 + - uid: 1563 components: - type: Transform - pos: 5.5,-53.5 + pos: -25.5,-100.5 parent: 1 - - uid: 3717 + - uid: 1564 components: - type: Transform - pos: 5.5,-54.5 + pos: 14.5,-87.5 parent: 1 - - uid: 3718 + - uid: 1565 components: - type: Transform - pos: 4.5,-54.5 + pos: -11.5,-96.5 parent: 1 - - uid: 3719 + - uid: 1566 components: - type: Transform - pos: 3.5,-54.5 + pos: -27.5,-94.5 parent: 1 - - uid: 3720 + - uid: 1584 components: - type: Transform - pos: 2.5,-54.5 + pos: -27.5,-98.5 parent: 1 - - uid: 3721 + - uid: 1585 components: - type: Transform - pos: 2.5,-53.5 + pos: -25.5,-97.5 parent: 1 - - uid: 3722 + - uid: 1586 components: - type: Transform - pos: 2.5,-52.5 + pos: 24.5,-102.5 parent: 1 - - uid: 3723 + - uid: 1587 components: - type: Transform - pos: 2.5,-51.5 + pos: -25.5,-98.5 parent: 1 - - uid: 3724 + - uid: 1588 components: - type: Transform - pos: 2.5,-49.5 + pos: -25.5,-96.5 parent: 1 - - uid: 3725 + - uid: 1589 components: - type: Transform - pos: 3.5,-49.5 + pos: -25.5,-95.5 parent: 1 - - uid: 3726 + - uid: 1590 components: - type: Transform - pos: 4.5,-49.5 + pos: -13.5,-94.5 parent: 1 - - uid: 3727 + - uid: 1925 components: - type: Transform - pos: 5.5,-49.5 + pos: -13.5,-101.5 parent: 1 - - uid: 3736 + - uid: 1926 components: - type: Transform - pos: -2.5,-50.5 + pos: -13.5,-93.5 parent: 1 - - uid: 3737 + - uid: 1927 components: - type: Transform - pos: -3.5,-50.5 + pos: -13.5,-99.5 parent: 1 - - uid: 3738 + - uid: 1928 components: - type: Transform - pos: -4.5,-50.5 + pos: -11.5,-102.5 parent: 1 - - uid: 3739 + - uid: 1929 components: - type: Transform - pos: -5.5,-50.5 + pos: -11.5,-100.5 parent: 1 - - uid: 3740 + - uid: 1930 components: - type: Transform - pos: -6.5,-50.5 + pos: -13.5,-102.5 parent: 1 - - uid: 3741 + - uid: 1931 components: - type: Transform - pos: -5.5,-51.5 + pos: -11.5,-99.5 parent: 1 - - uid: 3742 + - uid: 1932 components: - type: Transform - pos: -5.5,-52.5 + pos: -13.5,-100.5 parent: 1 - - uid: 3743 + - uid: 1933 components: - type: Transform - pos: -5.5,-53.5 + pos: -11.5,-101.5 parent: 1 - - uid: 3744 + - uid: 1934 components: - type: Transform - pos: -5.5,-54.5 + pos: -13.5,-96.5 parent: 1 - - uid: 3745 + - uid: 1935 components: - type: Transform - pos: -5.5,-55.5 + pos: -27.5,-92.5 parent: 1 - - uid: 3858 + - uid: 1936 components: - type: Transform - pos: -14.5,-85.5 + pos: -13.5,-97.5 parent: 1 - - uid: 4035 + - uid: 1937 components: - type: Transform - pos: -0.5,-94.5 + pos: -27.5,-93.5 parent: 1 - - uid: 4036 + - uid: 1938 components: - type: Transform - pos: -0.5,-95.5 + pos: -16.5,-93.5 parent: 1 - - uid: 4037 + - uid: 1939 components: - type: Transform - pos: -0.5,-96.5 + pos: -16.5,-96.5 parent: 1 - - uid: 4038 + - uid: 1940 components: - type: Transform - pos: -0.5,-98.5 + pos: -27.5,-97.5 parent: 1 - - uid: 4039 + - uid: 1944 components: - type: Transform - pos: -0.5,-100.5 + pos: -16.5,-102.5 parent: 1 - - uid: 4101 + - uid: 1951 components: - type: Transform - pos: -0.5,-101.5 + pos: 0.5,12.5 parent: 1 - - uid: 4135 + - uid: 1952 components: - type: Transform - pos: 0.5,-102.5 + pos: 0.5,11.5 parent: 1 - - uid: 4138 + - uid: 1953 components: - type: Transform - pos: -2.5,-84.5 + pos: 0.5,10.5 parent: 1 - - uid: 4144 + - uid: 1954 components: - type: Transform - pos: -1.5,-85.5 + pos: 0.5,9.5 parent: 1 - - uid: 4145 + - uid: 1955 components: - type: Transform - pos: -1.5,-102.5 + pos: 0.5,8.5 parent: 1 - - uid: 4146 + - uid: 1956 components: - type: Transform - pos: -2.5,-85.5 + pos: 0.5,7.5 parent: 1 - - uid: 4147 + - uid: 1957 components: - type: Transform - pos: 1.5,-102.5 + pos: 1.5,7.5 parent: 1 - - uid: 4170 + - uid: 1958 components: - type: Transform - pos: -2.5,-102.5 + pos: 18.5,-0.5 parent: 1 - - uid: 4179 + - uid: 1959 components: - type: Transform - pos: -0.5,-102.5 + pos: 17.5,-0.5 parent: 1 - - uid: 4883 + - uid: 1960 components: - type: Transform - pos: 9.5,-66.5 + pos: 16.5,-0.5 parent: 1 - - uid: 4884 + - uid: 1961 components: - type: Transform - pos: 9.5,-65.5 + pos: 15.5,-0.5 parent: 1 - - uid: 4885 + - uid: 1962 components: - type: Transform - pos: 9.5,-64.5 + pos: 14.5,-0.5 parent: 1 - - uid: 4886 + - uid: 1963 components: - type: Transform - pos: 8.5,-64.5 + pos: 13.5,-0.5 parent: 1 - - uid: 4887 + - uid: 1964 components: - type: Transform - pos: 7.5,-64.5 + pos: 12.5,-0.5 parent: 1 - - uid: 4888 + - uid: 1965 components: - type: Transform - pos: 6.5,-64.5 + pos: 11.5,-0.5 parent: 1 - - uid: 4889 + - uid: 1966 components: - type: Transform - pos: 5.5,-64.5 + pos: 10.5,-0.5 parent: 1 - - uid: 4890 + - uid: 1976 components: - type: Transform - pos: 4.5,-64.5 + pos: 1.5,-6.5 parent: 1 - - uid: 4891 + - uid: 1979 components: - type: Transform - pos: 3.5,-64.5 + pos: 0.5,-6.5 parent: 1 - - uid: 4892 + - uid: 1980 components: - type: Transform - pos: 2.5,-64.5 + pos: 0.5,-7.5 parent: 1 - - uid: 4893 + - uid: 1981 components: - type: Transform - pos: 4.5,-63.5 + pos: 0.5,-8.5 parent: 1 - - uid: 4894 + - uid: 1982 components: - type: Transform - pos: 4.5,-62.5 + pos: 0.5,-9.5 parent: 1 - - uid: 4895 + - uid: 1983 components: - type: Transform - pos: 4.5,-61.5 + pos: 0.5,-10.5 parent: 1 - - uid: 4896 + - uid: 1984 components: - type: Transform - pos: 4.5,-60.5 + pos: 0.5,-5.5 parent: 1 - - uid: 4897 + - uid: 1985 components: - type: Transform - pos: 4.5,-59.5 + pos: 0.5,-4.5 parent: 1 - - uid: 4898 + - uid: 1986 components: - type: Transform - pos: 4.5,-58.5 + pos: 0.5,-3.5 parent: 1 - - uid: 4899 + - uid: 1987 components: - type: Transform - pos: 4.5,-65.5 + pos: 0.5,-2.5 parent: 1 - - uid: 4900 + - uid: 1988 components: - type: Transform - pos: 4.5,-66.5 + pos: 9.5,-0.5 parent: 1 - - uid: 4901 + - uid: 1989 components: - type: Transform - pos: 4.5,-67.5 + pos: 8.5,-0.5 parent: 1 - - uid: 4902 + - uid: 1990 components: - type: Transform - pos: 4.5,-68.5 + pos: 8.5,-1.5 parent: 1 - - uid: 4903 + - uid: 1991 components: - type: Transform - pos: 4.5,-69.5 + pos: 7.5,-1.5 parent: 1 - - uid: 4904 + - uid: 1992 components: - type: Transform - pos: -2.5,-68.5 + pos: 6.5,-1.5 parent: 1 - - uid: 4905 + - uid: 1993 components: - type: Transform - pos: -1.5,-68.5 + pos: 5.5,-1.5 parent: 1 - - uid: 4906 + - uid: 1994 components: - type: Transform - pos: -1.5,-67.5 + pos: 4.5,-1.5 parent: 1 - - uid: 4907 + - uid: 1995 components: - type: Transform - pos: -1.5,-66.5 + pos: 3.5,-1.5 parent: 1 - - uid: 4908 + - uid: 1996 components: - type: Transform - pos: -1.5,-69.5 + pos: 2.5,-1.5 parent: 1 - - uid: 4909 + - uid: 1999 components: - type: Transform - pos: -1.5,-70.5 + pos: 0.5,6.5 parent: 1 - - uid: 4910 + - uid: 2000 components: - type: Transform - pos: -2.5,-60.5 + pos: 0.5,5.5 parent: 1 - - uid: 4911 + - uid: 2001 components: - type: Transform - pos: -1.5,-60.5 + pos: 0.5,4.5 parent: 1 - - uid: 4912 + - uid: 2002 components: - type: Transform - pos: -1.5,-59.5 + pos: 0.5,3.5 parent: 1 - - uid: 4913 + - uid: 2003 components: - type: Transform - pos: -1.5,-58.5 + pos: 0.5,2.5 parent: 1 - - uid: 4914 + - uid: 2004 components: - type: Transform - pos: -1.5,-61.5 + pos: 0.5,1.5 parent: 1 - - uid: 4915 + - uid: 2008 components: - type: Transform - pos: -1.5,-62.5 + pos: -6.5,1.5 parent: 1 - - uid: 4916 + - uid: 2009 components: - type: Transform - pos: -3.5,-62.5 + pos: -6.5,0.5 parent: 1 - - uid: 4917 + - uid: 2010 components: - type: Transform - pos: -4.5,-62.5 + pos: -5.5,0.5 parent: 1 - - uid: 4918 + - uid: 2011 components: - type: Transform - pos: -5.5,-62.5 + pos: -4.5,0.5 parent: 1 - - uid: 4919 + - uid: 2012 components: - type: Transform - pos: -2.5,-58.5 + pos: -3.5,0.5 parent: 1 - - uid: 4920 + - uid: 2013 components: - type: Transform - pos: -3.5,-58.5 + pos: -2.5,0.5 parent: 1 - - uid: 4921 + - uid: 2014 components: - type: Transform - pos: -4.5,-58.5 + pos: -7.5,0.5 parent: 1 - - uid: 4922 + - uid: 2015 components: - type: Transform - pos: -5.5,-58.5 + pos: -8.5,0.5 parent: 1 - - uid: 4923 + - uid: 2016 components: - type: Transform - pos: -2.5,-66.5 + pos: -9.5,0.5 parent: 1 - - uid: 4924 + - uid: 2227 components: - type: Transform - pos: -3.5,-66.5 + pos: -20.5,-95.5 parent: 1 - - uid: 4925 + - uid: 2394 components: - type: Transform - pos: -4.5,-66.5 + pos: -0.5,-99.5 parent: 1 - - uid: 4926 + - uid: 2396 components: - type: Transform - pos: -5.5,-66.5 + pos: -0.5,-86.5 parent: 1 - - uid: 4927 + - uid: 2397 components: - type: Transform - pos: -2.5,-70.5 + pos: -0.5,-93.5 parent: 1 - - uid: 4928 + - uid: 2398 components: - type: Transform - pos: -3.5,-70.5 + pos: -0.5,-88.5 parent: 1 - - uid: 4929 + - uid: 2399 components: - type: Transform - pos: -4.5,-70.5 + pos: -0.5,-90.5 parent: 1 - - uid: 4930 + - uid: 2501 components: - type: Transform - pos: -5.5,-70.5 + pos: 14.5,-84.5 parent: 1 - - uid: 4931 + - uid: 2502 components: - type: Transform - pos: 3.5,-58.5 + pos: 18.5,-94.5 parent: 1 - - uid: 4932 + - uid: 2542 components: - type: Transform - pos: 2.5,-58.5 + pos: 16.5,-85.5 parent: 1 - - uid: 4933 + - uid: 2561 components: - type: Transform - pos: 2.5,-69.5 + pos: 10.5,-87.5 parent: 1 - - uid: 4934 + - uid: 2562 components: - type: Transform - pos: 3.5,-69.5 + pos: 12.5,-102.5 parent: 1 - - uid: 4935 + - uid: 2563 components: - type: Transform - pos: 2.5,-70.5 + pos: 25.5,-102.5 parent: 1 - - uid: 4936 + - uid: 2564 components: - type: Transform - pos: 2.5,-71.5 + pos: -25.5,-101.5 parent: 1 - - uid: 4937 + - uid: 2566 components: - type: Transform - pos: 1.5,-71.5 + pos: 15.5,-87.5 parent: 1 - - uid: 4938 + - uid: 2570 components: - type: Transform - pos: 2.5,-57.5 + pos: 16.5,-84.5 parent: 1 - - uid: 4939 + - uid: 2573 components: - type: Transform - pos: 1.5,-57.5 + pos: 16.5,-86.5 parent: 1 - - uid: 4941 + - uid: 2574 components: - type: Transform - pos: 0.5,-57.5 + pos: 11.5,-87.5 parent: 1 - - uid: 5054 + - uid: 2575 components: - type: Transform - pos: 6.5,-74.5 + pos: 15.5,-84.5 parent: 1 - - uid: 5055 + - uid: 2576 components: - type: Transform - pos: 5.5,-74.5 + pos: 8.5,-102.5 parent: 1 - - uid: 5056 + - uid: 2577 components: - type: Transform - pos: 4.5,-74.5 + pos: 21.5,-102.5 parent: 1 - - uid: 5057 + - uid: 2578 components: - type: Transform - pos: 3.5,-74.5 + pos: 9.5,-102.5 parent: 1 - - uid: 5058 + - uid: 2579 components: - type: Transform - pos: 2.5,-74.5 + pos: 22.5,-102.5 parent: 1 - - uid: 5059 + - uid: 2580 components: - type: Transform - pos: 1.5,-74.5 + pos: 13.5,-84.5 parent: 1 - - uid: 5060 + - uid: 2581 components: - type: Transform - pos: -2.5,-75.5 + pos: 18.5,-89.5 parent: 1 - - uid: 5061 + - uid: 2582 components: - type: Transform - pos: -1.5,-75.5 + pos: 18.5,-85.5 parent: 1 - - uid: 5062 + - uid: 2583 components: - type: Transform - pos: -1.5,-74.5 + pos: 25.5,-87.5 parent: 1 - - uid: 5063 + - uid: 2584 components: - type: Transform - pos: -2.5,-74.5 + pos: 18.5,-88.5 parent: 1 - - uid: 5064 + - uid: 2585 components: - type: Transform - pos: -3.5,-74.5 + pos: 21.5,-84.5 parent: 1 - - uid: 5065 + - uid: 2586 components: - type: Transform - pos: -4.5,-74.5 + pos: 19.5,-84.5 parent: 1 - - uid: 5066 + - uid: 2587 components: - type: Transform - pos: -5.5,-74.5 + pos: 20.5,-84.5 parent: 1 - - uid: 5067 + - uid: 2588 components: - type: Transform - pos: 0.5,-74.5 + pos: 18.5,-90.5 parent: 1 - - uid: 5068 + - uid: 2589 components: - type: Transform - pos: 0.5,-75.5 + pos: 19.5,-87.5 parent: 1 - - uid: 5069 + - uid: 2590 components: - type: Transform - pos: 0.5,-76.5 + pos: 18.5,-84.5 parent: 1 - - uid: 5070 + - uid: 2591 components: - type: Transform - pos: -1.5,-76.5 + pos: 23.5,-87.5 parent: 1 - - uid: 5071 + - uid: 2599 components: - type: Transform - pos: -1.5,-73.5 + pos: 18.5,-86.5 parent: 1 - - uid: 5072 + - uid: 2600 components: - type: Transform - pos: -1.5,-72.5 + pos: 20.5,-87.5 parent: 1 - - uid: 5073 + - uid: 2601 components: - type: Transform - pos: 0.5,-72.5 + pos: 18.5,-87.5 parent: 1 - - uid: 5074 + - uid: 2602 components: - type: Transform - pos: 0.5,-73.5 + pos: 21.5,-87.5 parent: 1 - - uid: 5460 + - uid: 2603 components: - type: Transform - pos: -16.5,-90.5 + pos: 22.5,-87.5 parent: 1 - - uid: 5487 + - uid: 2604 components: - type: Transform - pos: 10.5,-102.5 + pos: 24.5,-87.5 parent: 1 - - uid: 5489 + - uid: 2609 components: - type: Transform - pos: 10.5,-100.5 + pos: 22.5,-91.5 parent: 1 - - uid: 5491 + - uid: 2610 components: - type: Transform - pos: 10.5,-87.5 + pos: 18.5,-91.5 parent: 1 - - uid: 5500 + - uid: 2611 components: - type: Transform - pos: 10.5,-96.5 + pos: 21.5,-91.5 parent: 1 - - uid: 5502 + - uid: 2612 components: - type: Transform - pos: 10.5,-94.5 + pos: 23.5,-91.5 parent: 1 - - uid: 5505 + - uid: 2613 components: - type: Transform - pos: 10.5,-91.5 + pos: 20.5,-91.5 parent: 1 - - uid: 5506 + - uid: 2614 components: - type: Transform - pos: 10.5,-85.5 + pos: -25.5,-93.5 parent: 1 - - uid: 5526 + - uid: 2615 components: - type: Transform - pos: 10.5,-92.5 + pos: 19.5,-91.5 parent: 1 - - uid: 5535 + - uid: 2860 components: - type: Transform - pos: -8.5,-76.5 + pos: 24.5,-78.5 parent: 1 - - uid: 5537 + - uid: 2953 components: - type: Transform - pos: -6.5,-78.5 + pos: -25.5,-86.5 parent: 1 - - uid: 5538 + - uid: 2977 components: - type: Transform - pos: -8.5,-77.5 + pos: -25.5,-87.5 parent: 1 - - uid: 5539 + - uid: 3022 components: - type: Transform - pos: -8.5,-78.5 + pos: -25.5,-85.5 parent: 1 - - uid: 5540 + - uid: 3148 components: - type: Transform - pos: -7.5,-78.5 + pos: -0.5,-85.5 parent: 1 - - uid: 5542 + - uid: 3158 components: - type: Transform - pos: -8.5,-79.5 + pos: -0.5,-91.5 parent: 1 - - uid: 5543 + - uid: 3159 components: - type: Transform - pos: 10.5,-101.5 + pos: -0.5,-92.5 parent: 1 - - uid: 5544 + - uid: 3162 components: - type: Transform - pos: 10.5,-89.5 + pos: -0.5,-89.5 parent: 1 - - uid: 5545 + - uid: 3163 components: - type: Transform - pos: 9.5,-81.5 + pos: -0.5,-87.5 parent: 1 - - uid: 5546 + - uid: 3165 components: - type: Transform - pos: 10.5,-88.5 + pos: -0.5,-97.5 parent: 1 - - uid: 5557 + - uid: 3177 components: - type: Transform - pos: 10.5,-84.5 + pos: -15.5,-85.5 parent: 1 - - uid: 5558 + - uid: 3581 components: - type: Transform - pos: 10.5,-81.5 + pos: -11.5,-97.5 parent: 1 - - uid: 5559 + - uid: 3582 components: - type: Transform - pos: 7.5,-81.5 + pos: -16.5,-97.5 parent: 1 - - uid: 5560 + - uid: 3583 components: - type: Transform - pos: 10.5,-93.5 + pos: -27.5,-95.5 parent: 1 - - uid: 5575 + - uid: 3584 components: - type: Transform - pos: 10.5,-83.5 + pos: -16.5,-98.5 parent: 1 - - uid: 5576 + - uid: 3585 components: - type: Transform - pos: 8.5,-81.5 + pos: -16.5,-99.5 parent: 1 - - uid: 5579 + - uid: 3586 components: - type: Transform - pos: 13.5,-98.5 + pos: -11.5,-95.5 parent: 1 - - uid: 5580 + - uid: 3587 components: - type: Transform - pos: 11.5,-90.5 + pos: -13.5,-95.5 parent: 1 - - uid: 5581 + - uid: 3673 components: - type: Transform - pos: 13.5,-94.5 + pos: -4.5,-41.5 parent: 1 - - uid: 5582 + - uid: 3674 components: - type: Transform - pos: 10.5,-90.5 + pos: -3.5,-41.5 parent: 1 - - uid: 5583 + - uid: 3675 components: - type: Transform - pos: 12.5,-82.5 + pos: -2.5,-41.5 parent: 1 - - uid: 5584 + - uid: 3676 components: - type: Transform - pos: 12.5,-94.5 + pos: -1.5,-41.5 parent: 1 - - uid: 5592 + - uid: 3677 components: - type: Transform - pos: 10.5,-99.5 + pos: -0.5,-41.5 parent: 1 - - uid: 5597 + - uid: 3678 components: - type: Transform - pos: 10.5,-94.5 + pos: 0.5,-41.5 parent: 1 - - uid: 5598 + - uid: 3679 components: - type: Transform - pos: 13.5,-90.5 + pos: 1.5,-41.5 parent: 1 - - uid: 5604 + - uid: 3680 components: - type: Transform - pos: 10.5,-86.5 + pos: 2.5,-41.5 parent: 1 - - uid: 5608 + - uid: 3681 components: - type: Transform - pos: 12.5,-90.5 + pos: 3.5,-41.5 parent: 1 - - uid: 5609 + - uid: 3682 components: - type: Transform - pos: 11.5,-82.5 + pos: -0.5,-42.5 parent: 1 - - uid: 5610 + - uid: 3683 components: - type: Transform - pos: 11.5,-94.5 + pos: -0.5,-43.5 parent: 1 - - uid: 5626 + - uid: 3684 components: - type: Transform - pos: 10.5,-95.5 + pos: -0.5,-44.5 parent: 1 - - uid: 5643 + - uid: 3685 components: - type: Transform - pos: 11.5,-102.5 + pos: -0.5,-45.5 parent: 1 - - uid: 5644 + - uid: 3686 components: - type: Transform - pos: 12.5,-102.5 + pos: -0.5,-46.5 parent: 1 - - uid: 5645 + - uid: 3687 components: - type: Transform - pos: 13.5,-102.5 + pos: -0.5,-47.5 parent: 1 - - uid: 5646 + - uid: 3688 components: - type: Transform - pos: 14.5,-102.5 + pos: -0.5,-47.5 parent: 1 - - uid: 5662 + - uid: 3689 components: - type: Transform - pos: 11.5,-98.5 + pos: 2.5,-44.5 parent: 1 - - uid: 5663 + - uid: 3690 components: - type: Transform - pos: 10.5,-98.5 + pos: 3.5,-44.5 parent: 1 - - uid: 5665 + - uid: 3691 components: - type: Transform - pos: 10.5,-97.5 + pos: -4.5,-44.5 parent: 1 - - uid: 5756 + - uid: 3692 components: - type: Transform - pos: 12.5,-98.5 + pos: -3.5,-44.5 parent: 1 - - uid: 5853 + - uid: 3693 components: - type: Transform - pos: -16.5,-86.5 + pos: -2.5,-44.5 parent: 1 - - uid: 5865 + - uid: 3694 components: - type: Transform - pos: -16.5,-87.5 + pos: -1.5,-44.5 parent: 1 - - uid: 5874 + - uid: 3695 components: - type: Transform - pos: -16.5,-85.5 + pos: -0.5,-44.5 parent: 1 - - uid: 5875 + - uid: 3696 components: - type: Transform - pos: -16.5,-88.5 + pos: 0.5,-44.5 parent: 1 - - uid: 5876 + - uid: 3697 components: - type: Transform - pos: -16.5,-89.5 + pos: 1.5,-44.5 parent: 1 - - uid: 5956 + - uid: 3698 components: - type: Transform - pos: -16.5,-91.5 + pos: 3.5,-44.5 parent: 1 - - uid: 5966 + - uid: 3699 components: - type: Transform - pos: -16.5,-92.5 + pos: 3.5,-47.5 parent: 1 - - uid: 5967 + - uid: 3700 components: - type: Transform - pos: -11.5,-86.5 + pos: 2.5,-47.5 parent: 1 - - uid: 5986 + - uid: 3701 components: - type: Transform - pos: -11.5,-88.5 + pos: 1.5,-47.5 parent: 1 - - uid: 5987 + - uid: 3702 components: - type: Transform - pos: -11.5,-87.5 + pos: 0.5,-47.5 parent: 1 - - uid: 5990 + - uid: 3703 components: - type: Transform - pos: -11.5,-89.5 + pos: -0.5,-47.5 parent: 1 - - uid: 5991 + - uid: 3704 components: - type: Transform - pos: -11.5,-90.5 + pos: -1.5,-47.5 parent: 1 - - uid: 5994 + - uid: 3705 components: - type: Transform - pos: -5.5,-83.5 + pos: -2.5,-47.5 parent: 1 - - uid: 5995 + - uid: 3706 components: - type: Transform - pos: -2.5,-82.5 + pos: -3.5,-47.5 parent: 1 - - uid: 5996 + - uid: 3707 components: - type: Transform - pos: -9.5,-82.5 + pos: -4.5,-47.5 parent: 1 - - uid: 5998 + - uid: 3708 components: - type: Transform - pos: -5.5,-81.5 + pos: -1.5,-48.5 parent: 1 - - uid: 5999 + - uid: 3709 components: - type: Transform - pos: 5.5,-82.5 + pos: 1.5,-50.5 parent: 1 - - uid: 6000 + - uid: 3710 components: - type: Transform - pos: -6.5,-82.5 + pos: 2.5,-50.5 parent: 1 - - uid: 6001 + - uid: 3713 components: - type: Transform - pos: -17.5,-82.5 + pos: 5.5,-50.5 parent: 1 - - uid: 6002 + - uid: 3714 components: - type: Transform - pos: -18.5,-82.5 + pos: 5.5,-51.5 parent: 1 - - uid: 6003 + - uid: 3715 components: - type: Transform - pos: -2.5,-81.5 + pos: 5.5,-52.5 parent: 1 - - uid: 6004 + - uid: 3716 components: - type: Transform - pos: -8.5,-82.5 + pos: 5.5,-53.5 parent: 1 - - uid: 6005 + - uid: 3717 components: - type: Transform - pos: -10.5,-82.5 + pos: 5.5,-54.5 parent: 1 - - uid: 6006 + - uid: 3718 components: - type: Transform - pos: -14.5,-82.5 + pos: 4.5,-54.5 parent: 1 - - uid: 6008 + - uid: 3719 components: - type: Transform - pos: -13.5,-88.5 + pos: 3.5,-54.5 parent: 1 - - uid: 6009 + - uid: 3720 components: - type: Transform - pos: -13.5,-86.5 + pos: 2.5,-54.5 parent: 1 - - uid: 6010 + - uid: 3721 components: - type: Transform - pos: -11.5,-92.5 + pos: 2.5,-53.5 parent: 1 - - uid: 6011 + - uid: 3722 components: - type: Transform - pos: -11.5,-91.5 + pos: 2.5,-52.5 parent: 1 - - uid: 6014 + - uid: 3723 components: - type: Transform - pos: 3.5,-82.5 + pos: 2.5,-51.5 parent: 1 - - uid: 6015 + - uid: 3724 components: - type: Transform - pos: 1.5,-82.5 + pos: 2.5,-49.5 parent: 1 - - uid: 6016 + - uid: 3725 components: - type: Transform - pos: 0.5,-82.5 + pos: 3.5,-49.5 parent: 1 - - uid: 6017 + - uid: 3726 components: - type: Transform - pos: -0.5,-82.5 + pos: 4.5,-49.5 parent: 1 - - uid: 6018 + - uid: 3727 components: - type: Transform - pos: 6.5,-82.5 + pos: 5.5,-49.5 parent: 1 - - uid: 6019 + - uid: 3736 components: - type: Transform - pos: -16.5,-82.5 + pos: -2.5,-50.5 parent: 1 - - uid: 6020 + - uid: 3737 components: - type: Transform - pos: -4.5,-82.5 + pos: -3.5,-50.5 parent: 1 - - uid: 6021 + - uid: 3738 components: - type: Transform - pos: -3.5,-82.5 + pos: -4.5,-50.5 parent: 1 - - uid: 6022 + - uid: 3739 components: - type: Transform - pos: -11.5,-82.5 + pos: -5.5,-50.5 parent: 1 - - uid: 6023 + - uid: 3740 components: - type: Transform - pos: -2.5,-80.5 + pos: -6.5,-50.5 parent: 1 - - uid: 6024 + - uid: 3741 components: - type: Transform - pos: -15.5,-82.5 + pos: -5.5,-51.5 parent: 1 - - uid: 6025 + - uid: 3742 components: - type: Transform - pos: -13.5,-82.5 + pos: -5.5,-52.5 parent: 1 - - uid: 6026 + - uid: 3743 components: - type: Transform - pos: -12.5,-82.5 + pos: -5.5,-53.5 parent: 1 - - uid: 6027 + - uid: 3744 components: - type: Transform - pos: -12.5,-81.5 + pos: -5.5,-54.5 parent: 1 - - uid: 6028 + - uid: 3745 components: - type: Transform - pos: -13.5,-89.5 + pos: -5.5,-55.5 parent: 1 - - uid: 6029 + - uid: 3746 components: - type: Transform - pos: -13.5,-90.5 + pos: -13.5,-98.5 parent: 1 - - uid: 6030 + - uid: 3770 components: - type: Transform - pos: -13.5,-87.5 + pos: -27.5,-86.5 parent: 1 - - uid: 6032 + - uid: 3771 components: - type: Transform - pos: 4.5,-82.5 + pos: -27.5,-100.5 parent: 1 - - uid: 6033 + - uid: 3772 components: - type: Transform - pos: 2.5,-82.5 + pos: -27.5,-102.5 parent: 1 - - uid: 6034 + - uid: 3773 components: - type: Transform - pos: -1.5,-82.5 + pos: -27.5,-87.5 parent: 1 - - uid: 6035 + - uid: 3774 components: - type: Transform - pos: -2.5,-80.5 + pos: -27.5,-85.5 parent: 1 - - uid: 6036 + - uid: 3775 components: - type: Transform - pos: -5.5,-82.5 + pos: -27.5,-101.5 parent: 1 - - uid: 6037 + - uid: 3776 components: - type: Transform - pos: -12.5,-80.5 + pos: -11.5,-98.5 parent: 1 - - uid: 6038 + - uid: 3792 components: - type: Transform - pos: -13.5,-92.5 + pos: -27.5,-99.5 parent: 1 - - uid: 6039 + - uid: 3793 components: - type: Transform - pos: -13.5,-91.5 + pos: -25.5,-94.5 parent: 1 - - uid: 6198 + - uid: 3843 components: - type: Transform - pos: -5.5,-78.5 + pos: -2.5,-60.5 parent: 1 - - uid: 6199 + - uid: 3849 components: - type: Transform - pos: -5.5,-79.5 + pos: -1.5,-69.5 parent: 1 - - uid: 6200 + - uid: 3855 components: - type: Transform - pos: -4.5,-78.5 + pos: -5.5,-60.5 parent: 1 - - uid: 6201 + - uid: 3856 components: - type: Transform - pos: -5.5,-77.5 + pos: -5.5,-70.5 parent: 1 - - uid: 6202 + - uid: 3857 components: - type: Transform - pos: -9.5,-78.5 + pos: -5.5,-71.5 parent: 1 - - uid: 6285 + - uid: 3858 components: - type: Transform - pos: -13.5,-85.5 + pos: -14.5,-85.5 parent: 1 - - uid: 6293 + - uid: 3860 components: - type: Transform - pos: -12.5,-85.5 + pos: -3.5,-68.5 parent: 1 - - uid: 6298 + - uid: 3861 components: - type: Transform - pos: -11.5,-85.5 + pos: -4.5,-68.5 parent: 1 - - uid: 6301 + - uid: 3862 components: - type: Transform - pos: -11.5,-84.5 + pos: -5.5,-68.5 parent: 1 - - uid: 6536 + - uid: 3882 components: - type: Transform - pos: -0.5,-81.5 + pos: -5.5,-67.5 parent: 1 - - uid: 6538 + - uid: 3883 components: - type: Transform - pos: -0.5,-78.5 + pos: -5.5,-59.5 parent: 1 - - uid: 6558 + - uid: 3884 components: - type: Transform - pos: -0.5,-79.5 + pos: -3.5,-60.5 parent: 1 - - uid: 6559 + - uid: 3885 components: - type: Transform - pos: -0.5,-80.5 + pos: -5.5,-58.5 parent: 1 - - uid: 7651 + - uid: 3886 components: - type: Transform - pos: -12.5,-79.5 + pos: -4.5,-60.5 parent: 1 - - uid: 7652 + - uid: 3887 components: - type: Transform - pos: -12.5,-78.5 + pos: -5.5,-66.5 parent: 1 - - uid: 7653 + - uid: 3889 components: - type: Transform - pos: -12.5,-77.5 + pos: -5.5,-69.5 parent: 1 - - uid: 7654 + - uid: 3890 components: - type: Transform - pos: -12.5,-76.5 + pos: -1.5,-70.5 parent: 1 - - uid: 7655 + - uid: 3891 components: - type: Transform - pos: -13.5,-78.5 + pos: -2.5,-68.5 parent: 1 - - uid: 7656 + - uid: 3892 components: - type: Transform - pos: -14.5,-78.5 + pos: -5.5,-70.5 parent: 1 - - uid: 7657 + - uid: 3900 components: - type: Transform - pos: -15.5,-78.5 + pos: -5.5,-61.5 parent: 1 - - uid: 7658 + - uid: 3921 components: - type: Transform - pos: -16.5,-78.5 + pos: -5.5,-57.5 parent: 1 - - uid: 7659 + - uid: 3923 components: - type: Transform - pos: -13.5,-76.5 + pos: -5.5,-62.5 parent: 1 - - uid: 7660 + - uid: 4035 components: - type: Transform - pos: -14.5,-76.5 + pos: -0.5,-94.5 parent: 1 - - uid: 7661 + - uid: 4036 components: - type: Transform - pos: -15.5,-76.5 + pos: -0.5,-95.5 parent: 1 - - uid: 7662 + - uid: 4037 components: - type: Transform - pos: -16.5,-76.5 + pos: -0.5,-96.5 parent: 1 - - uid: 8547 + - uid: 4038 components: - type: Transform - pos: -2.5,-62.5 + pos: -0.5,-98.5 parent: 1 - - uid: 8611 + - uid: 4039 components: - type: Transform - pos: 11.5,-59.5 + pos: -0.5,-100.5 parent: 1 - - uid: 8612 + - uid: 4101 components: - type: Transform - pos: 10.5,-59.5 + pos: -0.5,-101.5 parent: 1 - - uid: 8613 + - uid: 4120 components: - type: Transform - pos: 9.5,-59.5 + pos: -25.5,-92.5 parent: 1 - - uid: 8614 + - uid: 4135 components: - type: Transform - pos: 8.5,-59.5 + pos: 0.5,-102.5 parent: 1 - - uid: 8615 + - uid: 4138 components: - type: Transform - pos: 7.5,-59.5 + pos: -2.5,-84.5 parent: 1 - - uid: 8616 + - uid: 4144 components: - type: Transform - pos: 8.5,-58.5 + pos: -1.5,-85.5 parent: 1 - - uid: 8617 + - uid: 4145 components: - type: Transform - pos: 8.5,-57.5 + pos: -1.5,-102.5 parent: 1 - - uid: 8618 + - uid: 4146 components: - type: Transform - pos: 9.5,-60.5 + pos: -2.5,-85.5 parent: 1 - - uid: 8619 + - uid: 4147 components: - type: Transform - pos: 9.5,-61.5 + pos: 1.5,-102.5 parent: 1 - - uid: 8620 + - uid: 4170 components: - type: Transform - pos: 11.5,-69.5 + pos: -2.5,-102.5 parent: 1 - - uid: 8621 + - uid: 4179 components: - type: Transform - pos: 10.5,-69.5 + pos: -0.5,-102.5 parent: 1 - - uid: 8622 + - uid: 4650 components: - type: Transform - pos: 9.5,-69.5 + pos: -1.5,-60.5 parent: 1 - - uid: 8623 + - uid: 4768 components: - type: Transform - pos: 8.5,-69.5 + pos: -2.5,-62.5 parent: 1 - - uid: 8624 + - uid: 4772 components: - type: Transform - pos: 7.5,-69.5 + pos: -1.5,-66.5 parent: 1 - - uid: 8625 + - uid: 4774 components: - type: Transform - pos: 8.5,-68.5 + pos: -1.5,-59.5 parent: 1 - - uid: 8626 + - uid: 4775 components: - type: Transform - pos: 8.5,-67.5 + pos: -1.5,-61.5 parent: 1 - - uid: 8627 + - uid: 4776 components: - type: Transform - pos: 9.5,-70.5 + pos: -1.5,-62.5 parent: 1 - - uid: 8628 + - uid: 4778 components: - type: Transform - pos: 9.5,-71.5 + pos: -1.5,-67.5 parent: 1 - - uid: 8632 + - uid: 4883 components: - type: Transform - pos: -0.5,-1.5 - parent: 8566 - - uid: 8633 + pos: 9.5,-66.5 + parent: 1 + - uid: 4884 components: - type: Transform - pos: -0.5,-0.5 - parent: 8566 - - uid: 8636 + pos: 9.5,-65.5 + parent: 1 + - uid: 4885 components: - type: Transform - pos: 0.5,0.5 - parent: 8566 - - uid: 8637 + pos: 9.5,-64.5 + parent: 1 + - uid: 4886 components: - type: Transform - pos: 1.5,0.5 - parent: 8566 - - uid: 8638 + pos: 8.5,-64.5 + parent: 1 + - uid: 4887 components: - type: Transform - pos: 2.5,0.5 - parent: 8566 - - uid: 8639 + pos: 7.5,-64.5 + parent: 1 + - uid: 4888 components: - type: Transform - pos: 0.5,1.5 - parent: 8566 - - uid: 8640 + pos: 6.5,-64.5 + parent: 1 + - uid: 4889 components: - type: Transform - pos: 0.5,2.5 - parent: 8566 - - uid: 8641 + pos: 5.5,-64.5 + parent: 1 + - uid: 4890 components: - type: Transform - pos: 3.5,1.5 - parent: 8566 - - uid: 8642 + pos: 4.5,-64.5 + parent: 1 + - uid: 4891 components: - type: Transform - pos: 3.5,0.5 - parent: 8566 - - uid: 8643 + pos: 3.5,-64.5 + parent: 1 + - uid: 4892 components: - type: Transform - pos: 3.5,-0.5 - parent: 8566 - - uid: 8729 + pos: 2.5,-64.5 + parent: 1 + - uid: 4893 components: - type: Transform - pos: 9.5,-75.5 + pos: 4.5,-63.5 parent: 1 - - uid: 8730 + - uid: 4894 components: - type: Transform - pos: 9.5,-74.5 + pos: 4.5,-62.5 parent: 1 - - uid: 8731 + - uid: 4895 components: - type: Transform - pos: 8.5,-74.5 + pos: 4.5,-61.5 parent: 1 - - uid: 8732 + - uid: 4896 components: - type: Transform - pos: 7.5,-74.5 + pos: 4.5,-60.5 parent: 1 - - uid: 8733 + - uid: 4897 components: - type: Transform - pos: 10.5,-74.5 + pos: 4.5,-59.5 parent: 1 - - uid: 8734 + - uid: 4898 components: - type: Transform - pos: 11.5,-74.5 + pos: 4.5,-58.5 parent: 1 - - uid: 8735 + - uid: 4899 components: - type: Transform - pos: 12.5,-74.5 + pos: 4.5,-65.5 parent: 1 - - uid: 8736 + - uid: 4900 components: - type: Transform - pos: 20.5,-70.5 + pos: 4.5,-66.5 parent: 1 - - uid: 8737 + - uid: 4901 components: - type: Transform - pos: 19.5,-70.5 + pos: 4.5,-67.5 parent: 1 - - uid: 8738 + - uid: 4902 components: - type: Transform - pos: 18.5,-70.5 + pos: 4.5,-68.5 parent: 1 - - uid: 8739 + - uid: 4903 components: - type: Transform - pos: 17.5,-70.5 + pos: 4.5,-69.5 parent: 1 - - uid: 8740 + - uid: 4906 components: - type: Transform - pos: 16.5,-70.5 + pos: -1.5,-58.5 parent: 1 - - uid: 8741 + - uid: 4907 components: - type: Transform - pos: 15.5,-70.5 + pos: -1.5,-68.5 parent: 1 - - uid: 8742 + - uid: 4908 components: - type: Transform - pos: 14.5,-70.5 + pos: -2.5,-66.5 parent: 1 - - uid: 8743 + - uid: 4922 components: - type: Transform - pos: 13.5,-70.5 + pos: -5.5,-63.5 parent: 1 - - uid: 8744 + - uid: 4931 components: - type: Transform - pos: 15.5,-71.5 + pos: 3.5,-58.5 parent: 1 - - uid: 8745 + - uid: 4932 components: - type: Transform - pos: 15.5,-72.5 + pos: 2.5,-58.5 parent: 1 - - uid: 8746 + - uid: 4933 components: - type: Transform - pos: 15.5,-73.5 + pos: 2.5,-69.5 parent: 1 - - uid: 8747 + - uid: 4934 components: - type: Transform - pos: 15.5,-74.5 + pos: 3.5,-69.5 parent: 1 - - uid: 8748 + - uid: 4935 components: - type: Transform - pos: 17.5,-71.5 + pos: 2.5,-70.5 parent: 1 - - uid: 8749 + - uid: 4936 components: - type: Transform - pos: 17.5,-72.5 + pos: 2.5,-71.5 parent: 1 - - uid: 8750 + - uid: 4937 components: - type: Transform - pos: 17.5,-73.5 + pos: 1.5,-71.5 parent: 1 - - uid: 8751 + - uid: 4938 components: - type: Transform - pos: 17.5,-74.5 + pos: 2.5,-57.5 parent: 1 - - uid: 8752 + - uid: 4939 components: - type: Transform - pos: 17.5,-69.5 + pos: 1.5,-57.5 parent: 1 - - uid: 8753 + - uid: 4941 components: - type: Transform - pos: 17.5,-68.5 + pos: 0.5,-57.5 parent: 1 - - uid: 8754 + - uid: 5054 components: - type: Transform - pos: 15.5,-69.5 + pos: 6.5,-74.5 parent: 1 - - uid: 8755 + - uid: 5055 components: - type: Transform - pos: 15.5,-68.5 + pos: 5.5,-74.5 parent: 1 - - uid: 8756 + - uid: 5056 components: - type: Transform - pos: 20.5,-64.5 + pos: 4.5,-74.5 parent: 1 - - uid: 8757 + - uid: 5057 components: - type: Transform - pos: 19.5,-64.5 + pos: 3.5,-74.5 parent: 1 - - uid: 8758 + - uid: 5058 components: - type: Transform - pos: 18.5,-64.5 + pos: 2.5,-74.5 parent: 1 - - uid: 8759 + - uid: 5059 components: - type: Transform - pos: 17.5,-64.5 + pos: 1.5,-74.5 parent: 1 - - uid: 8760 + - uid: 5060 components: - type: Transform - pos: 16.5,-64.5 + pos: -2.5,-75.5 parent: 1 - - uid: 8761 + - uid: 5061 components: - type: Transform - pos: 15.5,-64.5 + pos: -1.5,-75.5 parent: 1 - - uid: 8762 + - uid: 5062 components: - type: Transform - pos: 14.5,-64.5 + pos: -1.5,-74.5 parent: 1 - - uid: 8763 + - uid: 5063 components: - type: Transform - pos: 13.5,-64.5 + pos: -2.5,-74.5 parent: 1 - - uid: 8764 + - uid: 5064 components: - type: Transform - pos: 15.5,-65.5 + pos: -3.5,-74.5 parent: 1 - - uid: 8907 + - uid: 5065 components: - type: Transform - pos: -24.5,-87.5 + pos: -4.5,-74.5 parent: 1 - - uid: 8908 + - uid: 5066 components: - type: Transform - pos: -24.5,-86.5 + pos: -5.5,-74.5 parent: 1 - - uid: 8911 + - uid: 5067 components: - type: Transform - pos: -24.5,-85.5 + pos: 0.5,-74.5 parent: 1 - - uid: 8921 + - uid: 5068 components: - type: Transform - pos: -24.5,-84.5 + pos: 0.5,-75.5 parent: 1 - - uid: 8922 + - uid: 5069 components: - type: Transform - pos: -24.5,-83.5 + pos: 0.5,-76.5 parent: 1 - - uid: 8923 + - uid: 5070 components: - type: Transform - pos: -24.5,-82.5 + pos: -1.5,-76.5 parent: 1 - - uid: 8924 + - uid: 5071 components: - type: Transform - pos: -24.5,-81.5 + pos: -1.5,-73.5 parent: 1 - - uid: 8925 + - uid: 5072 components: - type: Transform - pos: -24.5,-80.5 + pos: -1.5,-72.5 parent: 1 - - uid: 8926 + - uid: 5073 components: - type: Transform - pos: -24.5,-79.5 + pos: 0.5,-72.5 parent: 1 - - uid: 8927 + - uid: 5074 components: - type: Transform - pos: -24.5,-78.5 + pos: 0.5,-73.5 parent: 1 - - uid: 8928 + - uid: 5460 components: - type: Transform - pos: -25.5,-82.5 + pos: -16.5,-90.5 parent: 1 - - uid: 8929 + - uid: 5535 components: - type: Transform - pos: -26.5,-82.5 + pos: -8.5,-76.5 parent: 1 - - uid: 8930 + - uid: 5537 components: - type: Transform - pos: -27.5,-82.5 + pos: -6.5,-78.5 parent: 1 - - uid: 8931 + - uid: 5538 components: - type: Transform - pos: -22.5,-82.5 + pos: -8.5,-77.5 parent: 1 - - uid: 8932 + - uid: 5539 components: - type: Transform - pos: -21.5,-82.5 + pos: -8.5,-78.5 parent: 1 - - uid: 8933 + - uid: 5540 components: - type: Transform - pos: -20.5,-82.5 + pos: -7.5,-78.5 parent: 1 - - uid: 8934 + - uid: 5542 components: - type: Transform - pos: -23.5,-78.5 + pos: -8.5,-79.5 parent: 1 - - uid: 8935 + - uid: 5559 components: - type: Transform - pos: -23.5,-82.5 + pos: 7.5,-81.5 parent: 1 - - uid: 8936 + - uid: 5853 components: - type: Transform - pos: -22.5,-78.5 + pos: -16.5,-86.5 parent: 1 - - uid: 8937 + - uid: 5865 components: - type: Transform - pos: -21.5,-78.5 + pos: -16.5,-87.5 parent: 1 - - uid: 8938 + - uid: 5874 components: - type: Transform - pos: -25.5,-78.5 + pos: -16.5,-85.5 parent: 1 - - uid: 8939 + - uid: 5875 components: - type: Transform - pos: -26.5,-78.5 + pos: -16.5,-88.5 parent: 1 - - uid: 8940 + - uid: 5876 components: - type: Transform - pos: -27.5,-78.5 + pos: -16.5,-89.5 parent: 1 - - uid: 8941 + - uid: 5956 components: - type: Transform - pos: -25.5,-86.5 + pos: -16.5,-91.5 parent: 1 - - uid: 8942 + - uid: 5966 components: - type: Transform - pos: -26.5,-86.5 + pos: -16.5,-92.5 parent: 1 - - uid: 8943 + - uid: 5967 components: - type: Transform - pos: -27.5,-86.5 + pos: -11.5,-86.5 parent: 1 - - uid: 8944 + - uid: 5986 components: - type: Transform - pos: -22.5,-86.5 + pos: -11.5,-88.5 parent: 1 - - uid: 8945 + - uid: 5987 components: - type: Transform - pos: -21.5,-86.5 + pos: -11.5,-87.5 parent: 1 - - uid: 8946 + - uid: 5990 components: - type: Transform - pos: -23.5,-86.5 + pos: -11.5,-89.5 parent: 1 - - uid: 8956 + - uid: 5991 components: - type: Transform - pos: -30.5,-81.5 + pos: -11.5,-90.5 parent: 1 - - uid: 8957 + - uid: 5994 components: - type: Transform - pos: -30.5,-82.5 + pos: -5.5,-83.5 parent: 1 - - uid: 8958 + - uid: 5995 components: - type: Transform - pos: -30.5,-83.5 + pos: -2.5,-82.5 parent: 1 - - uid: 8959 + - uid: 5996 components: - type: Transform - pos: -30.5,-84.5 + pos: -9.5,-82.5 parent: 1 - - uid: 8960 + - uid: 5998 components: - type: Transform - pos: -30.5,-85.5 + pos: -5.5,-81.5 parent: 1 - - uid: 8961 + - uid: 5999 components: - type: Transform - pos: -30.5,-86.5 + pos: 5.5,-82.5 parent: 1 - - uid: 8962 + - uid: 6000 components: - type: Transform - pos: -31.5,-84.5 + pos: -6.5,-82.5 parent: 1 - - uid: 8963 + - uid: 6001 components: - type: Transform - pos: -32.5,-84.5 + pos: -17.5,-82.5 parent: 1 - - uid: 8964 + - uid: 6002 components: - type: Transform - pos: -33.5,-84.5 + pos: -18.5,-82.5 parent: 1 - - uid: 8965 + - uid: 6003 components: - type: Transform - pos: -30.5,-80.5 + pos: -2.5,-81.5 parent: 1 - - uid: 8966 + - uid: 6004 components: - type: Transform - pos: -30.5,-79.5 + pos: -8.5,-82.5 parent: 1 - - uid: 8967 + - uid: 6005 components: - type: Transform - pos: -30.5,-78.5 + pos: -10.5,-82.5 parent: 1 - - uid: 8968 + - uid: 6006 components: - type: Transform - pos: -31.5,-79.5 + pos: -14.5,-82.5 parent: 1 - - uid: 8969 + - uid: 6008 components: - type: Transform - pos: -32.5,-79.5 + pos: -13.5,-88.5 parent: 1 - - uid: 8970 + - uid: 6009 components: - type: Transform - pos: -33.5,-79.5 + pos: -13.5,-86.5 parent: 1 - - uid: 8971 + - uid: 6010 components: - type: Transform - pos: -31.5,-86.5 + pos: -11.5,-92.5 parent: 1 - - uid: 8972 + - uid: 6011 components: - type: Transform - pos: -32.5,-86.5 + pos: -11.5,-91.5 parent: 1 - - uid: 8973 + - uid: 6014 components: - type: Transform - pos: -33.5,-86.5 + pos: 3.5,-82.5 parent: 1 - - uid: 8974 + - uid: 6015 components: - type: Transform - pos: -31.5,-82.5 + pos: 1.5,-82.5 parent: 1 - - uid: 8975 + - uid: 6016 components: - type: Transform - pos: -32.5,-82.5 + pos: 0.5,-82.5 parent: 1 - - uid: 8976 + - uid: 6017 components: - type: Transform - pos: -33.5,-82.5 + pos: -0.5,-82.5 parent: 1 - - uid: 10150 - components: - - type: Transform - pos: -1.5,0.5 - parent: 10146 - - uid: 10151 - components: - - type: Transform - pos: -0.5,0.5 - parent: 10146 - - uid: 10152 + - uid: 6019 components: - type: Transform - pos: -0.5,-0.5 - parent: 10146 - - uid: 11472 + pos: -16.5,-82.5 + parent: 1 + - uid: 6020 components: - type: Transform - pos: 12.5,-64.5 + pos: -4.5,-82.5 parent: 1 -- proto: CableApcStack - entities: - - uid: 5678 + - uid: 6021 components: - type: Transform - pos: -17.512592,-86.751465 + pos: -3.5,-82.5 parent: 1 -- proto: CableHV - entities: - - uid: 73 + - uid: 6022 components: - type: Transform - pos: 2.5,-0.5 + pos: -11.5,-82.5 parent: 1 - - uid: 75 + - uid: 6023 components: - type: Transform - pos: 4.5,-0.5 + pos: -2.5,-80.5 parent: 1 - - uid: 76 + - uid: 6024 components: - type: Transform - pos: 3.5,-0.5 + pos: -15.5,-82.5 parent: 1 - - uid: 78 + - uid: 6025 components: - type: Transform - pos: 9.5,-0.5 + pos: -13.5,-82.5 parent: 1 - - uid: 84 + - uid: 6026 components: - type: Transform - pos: -6.5,-0.5 + pos: -12.5,-82.5 parent: 1 - - uid: 85 + - uid: 6027 components: - type: Transform - pos: -5.5,-0.5 + pos: -12.5,-81.5 parent: 1 - - uid: 86 + - uid: 6028 components: - type: Transform - pos: -4.5,-0.5 + pos: -13.5,-89.5 parent: 1 - - uid: 87 + - uid: 6029 components: - type: Transform - pos: -3.5,-0.5 + pos: -13.5,-90.5 parent: 1 - - uid: 88 + - uid: 6030 components: - type: Transform - pos: -2.5,-0.5 + pos: -13.5,-87.5 parent: 1 - - uid: 89 + - uid: 6032 components: - type: Transform - pos: -1.5,-0.5 + pos: 4.5,-82.5 parent: 1 - - uid: 90 + - uid: 6033 components: - type: Transform - pos: -0.5,-0.5 + pos: 2.5,-82.5 parent: 1 - - uid: 91 + - uid: 6034 components: - type: Transform - pos: 0.5,-0.5 + pos: -1.5,-82.5 parent: 1 - - uid: 92 + - uid: 6035 components: - type: Transform - pos: 1.5,-0.5 + pos: -2.5,-80.5 parent: 1 - - uid: 93 + - uid: 6036 components: - type: Transform - pos: -0.5,-1.5 + pos: -5.5,-82.5 parent: 1 - - uid: 94 + - uid: 6037 components: - type: Transform - pos: -0.5,-2.5 + pos: -12.5,-80.5 parent: 1 - - uid: 95 + - uid: 6038 components: - type: Transform - pos: -0.5,-3.5 + pos: -13.5,-92.5 parent: 1 - - uid: 96 + - uid: 6039 components: - type: Transform - pos: -0.5,-4.5 + pos: -13.5,-91.5 parent: 1 - - uid: 97 + - uid: 6198 components: - type: Transform - pos: -0.5,-5.5 + pos: -5.5,-78.5 parent: 1 - - uid: 98 + - uid: 6199 components: - type: Transform - pos: -0.5,-6.5 + pos: -5.5,-79.5 parent: 1 - - uid: 99 + - uid: 6200 components: - type: Transform - pos: -0.5,0.5 + pos: -4.5,-78.5 parent: 1 - - uid: 100 + - uid: 6201 components: - type: Transform - pos: -0.5,1.5 + pos: -5.5,-77.5 parent: 1 - - uid: 101 + - uid: 6202 components: - type: Transform - pos: -0.5,2.5 + pos: -9.5,-78.5 parent: 1 - - uid: 102 + - uid: 6285 components: - type: Transform - pos: -0.5,3.5 + pos: -13.5,-85.5 parent: 1 - - uid: 103 + - uid: 6293 components: - type: Transform - pos: -0.5,4.5 + pos: -12.5,-85.5 parent: 1 - - uid: 104 + - uid: 6298 components: - type: Transform - pos: -0.5,5.5 + pos: -11.5,-85.5 parent: 1 - - uid: 159 + - uid: 6301 components: - type: Transform - pos: -0.5,6.5 + pos: -11.5,-84.5 parent: 1 - - uid: 160 + - uid: 6536 components: - type: Transform - pos: -0.5,7.5 + pos: -0.5,-81.5 parent: 1 - - uid: 161 + - uid: 6538 components: - type: Transform - pos: -0.5,8.5 + pos: -0.5,-78.5 parent: 1 - - uid: 162 + - uid: 6558 components: - type: Transform - pos: -0.5,9.5 + pos: -0.5,-79.5 parent: 1 - - uid: 163 + - uid: 6559 components: - type: Transform - pos: -0.5,10.5 + pos: -0.5,-80.5 parent: 1 - - uid: 164 + - uid: 7533 components: - type: Transform - pos: -0.5,11.5 + pos: -22.5,-89.5 parent: 1 - - uid: 165 + - uid: 7651 components: - type: Transform - pos: -0.5,12.5 + pos: -12.5,-79.5 parent: 1 - - uid: 166 + - uid: 7652 components: - type: Transform - pos: -0.5,13.5 + pos: -12.5,-78.5 parent: 1 - - uid: 243 + - uid: 7653 components: - type: Transform - pos: -2.5,0.5 - parent: 8566 - - uid: 249 + pos: -12.5,-77.5 + parent: 1 + - uid: 7654 components: - type: Transform - pos: -3.5,0.5 - parent: 8566 - - uid: 257 + pos: -12.5,-76.5 + parent: 1 + - uid: 7655 components: - type: Transform - pos: -3.5,1.5 - parent: 8566 - - uid: 260 + pos: -13.5,-78.5 + parent: 1 + - uid: 7656 components: - type: Transform - pos: -3.5,-0.5 - parent: 8566 - - uid: 425 + pos: -14.5,-78.5 + parent: 1 + - uid: 7657 components: - type: Transform - pos: 8.5,-0.5 + pos: -15.5,-78.5 parent: 1 - - uid: 426 + - uid: 7658 components: - type: Transform - pos: 7.5,-0.5 + pos: -16.5,-78.5 parent: 1 - - uid: 427 + - uid: 7659 components: - type: Transform - pos: 6.5,-0.5 + pos: -13.5,-76.5 parent: 1 - - uid: 428 + - uid: 7660 components: - type: Transform - pos: 5.5,-0.5 + pos: -14.5,-76.5 parent: 1 - - uid: 437 + - uid: 7661 components: - type: Transform - pos: -0.5,-10.5 + pos: -15.5,-76.5 parent: 1 - - uid: 438 + - uid: 7662 components: - type: Transform - pos: -0.5,-9.5 + pos: -16.5,-76.5 parent: 1 - - uid: 439 + - uid: 7854 components: - type: Transform - pos: -0.5,-8.5 + pos: 19.5,-95.5 parent: 1 - - uid: 440 + - uid: 8221 components: - type: Transform - pos: -0.5,-7.5 - parent: 1 - - uid: 629 + pos: -1.5,0.5 + parent: 8217 + - uid: 8222 components: - type: Transform - pos: 16.5,-1.5 - parent: 1 - - uid: 630 + pos: -0.5,0.5 + parent: 8217 + - uid: 8223 components: - type: Transform - pos: 16.5,-2.5 - parent: 1 - - uid: 631 + pos: -0.5,-0.5 + parent: 8217 + - uid: 8611 components: - type: Transform - pos: 17.5,-1.5 + pos: 11.5,-59.5 parent: 1 - - uid: 632 + - uid: 8612 components: - type: Transform - pos: 17.5,-2.5 + pos: 10.5,-59.5 parent: 1 - - uid: 633 + - uid: 8613 components: - type: Transform - pos: 15.5,-2.5 + pos: 9.5,-59.5 parent: 1 - - uid: 634 + - uid: 8614 components: - type: Transform - pos: 15.5,-1.5 + pos: 8.5,-59.5 parent: 1 - - uid: 635 + - uid: 8615 components: - type: Transform - pos: 14.5,-2.5 + pos: 7.5,-59.5 parent: 1 - - uid: 636 + - uid: 8616 components: - type: Transform - pos: 13.5,-2.5 + pos: 8.5,-58.5 parent: 1 - - uid: 637 + - uid: 8617 components: - type: Transform - pos: 12.5,-2.5 + pos: 8.5,-57.5 parent: 1 - - uid: 638 + - uid: 8618 components: - type: Transform - pos: 11.5,-2.5 + pos: 9.5,-60.5 parent: 1 - - uid: 639 + - uid: 8619 components: - type: Transform - pos: 10.5,-2.5 + pos: 9.5,-61.5 parent: 1 - - uid: 641 + - uid: 8620 components: - type: Transform - pos: 10.5,-1.5 + pos: 11.5,-69.5 parent: 1 - - uid: 642 + - uid: 8621 components: - type: Transform - pos: 10.5,-0.5 + pos: 10.5,-69.5 parent: 1 - - uid: 3629 + - uid: 8622 components: - type: Transform - pos: 3.5,-53.5 + pos: 9.5,-69.5 parent: 1 - - uid: 3631 + - uid: 8623 components: - type: Transform - pos: 4.5,-53.5 + pos: 8.5,-69.5 parent: 1 - - uid: 3632 + - uid: 8624 components: - type: Transform - pos: 3.5,-52.5 + pos: 7.5,-69.5 parent: 1 - - uid: 3633 + - uid: 8625 components: - type: Transform - pos: 3.5,-51.5 + pos: 8.5,-68.5 parent: 1 - - uid: 3634 + - uid: 8626 components: - type: Transform - pos: 3.5,-50.5 + pos: 8.5,-67.5 parent: 1 - - uid: 3635 + - uid: 8627 components: - type: Transform - pos: 1.5,-54.5 + pos: 9.5,-70.5 parent: 1 - - uid: 3636 + - uid: 8628 components: - type: Transform - pos: 2.5,-54.5 + pos: 9.5,-71.5 parent: 1 - - uid: 3637 + - uid: 8632 components: - type: Transform - pos: 4.5,-52.5 - parent: 1 - - uid: 3638 + pos: -0.5,-1.5 + parent: 8566 + - uid: 8633 components: - type: Transform - pos: 4.5,-51.5 - parent: 1 - - uid: 3639 + pos: -0.5,-0.5 + parent: 8566 + - uid: 8636 components: - type: Transform - pos: 4.5,-50.5 - parent: 1 - - uid: 3644 + pos: 0.5,0.5 + parent: 8566 + - uid: 8637 components: - type: Transform - pos: 4.5,-54.5 - parent: 1 - - uid: 3645 + pos: 1.5,0.5 + parent: 8566 + - uid: 8638 components: - type: Transform - pos: 3.5,-54.5 - parent: 1 - - uid: 3648 + pos: 2.5,0.5 + parent: 8566 + - uid: 8639 components: - type: Transform - pos: 0.5,-54.5 - parent: 1 - - uid: 3649 + pos: 0.5,1.5 + parent: 8566 + - uid: 8640 components: - type: Transform - pos: -0.5,-54.5 - parent: 1 - - uid: 3650 + pos: 0.5,2.5 + parent: 8566 + - uid: 8641 components: - type: Transform - pos: -1.5,-54.5 - parent: 1 - - uid: 3651 + pos: 3.5,1.5 + parent: 8566 + - uid: 8642 components: - type: Transform - pos: -2.5,-54.5 - parent: 1 - - uid: 3950 + pos: 3.5,0.5 + parent: 8566 + - uid: 8643 components: - type: Transform - pos: 6.5,-60.5 - parent: 1 - - uid: 3975 + pos: 3.5,-0.5 + parent: 8566 + - uid: 8729 components: - type: Transform - pos: 5.5,-60.5 + pos: 9.5,-75.5 parent: 1 - - uid: 4060 + - uid: 8730 components: - type: Transform - pos: -4.5,-78.5 + pos: 9.5,-74.5 parent: 1 - - uid: 4065 + - uid: 8731 components: - type: Transform - pos: -5.5,-77.5 + pos: 8.5,-74.5 parent: 1 - - uid: 4066 + - uid: 8732 components: - type: Transform - pos: -4.5,-77.5 + pos: 7.5,-74.5 parent: 1 - - uid: 4067 + - uid: 8733 components: - type: Transform - pos: -7.5,-77.5 + pos: 10.5,-74.5 parent: 1 - - uid: 4068 + - uid: 8734 components: - type: Transform - pos: -6.5,-77.5 + pos: 11.5,-74.5 parent: 1 - - uid: 4074 + - uid: 8735 components: - type: Transform - pos: -9.5,-77.5 + pos: 12.5,-74.5 parent: 1 - - uid: 4085 + - uid: 8736 components: - type: Transform - pos: -8.5,-77.5 + pos: 20.5,-70.5 parent: 1 - - uid: 4388 + - uid: 8737 components: - type: Transform - pos: 4.5,-58.5 + pos: 19.5,-70.5 parent: 1 - - uid: 4402 + - uid: 8738 components: - type: Transform - pos: 6.5,-58.5 + pos: 18.5,-70.5 parent: 1 - - uid: 4411 + - uid: 8739 components: - type: Transform - pos: 0.5,-58.5 + pos: 17.5,-70.5 parent: 1 - - uid: 4414 + - uid: 8740 components: - type: Transform - pos: 5.5,-58.5 + pos: 16.5,-70.5 parent: 1 - - uid: 4415 + - uid: 8741 components: - type: Transform - pos: 1.5,-58.5 + pos: 15.5,-70.5 parent: 1 - - uid: 4416 + - uid: 8742 components: - type: Transform - pos: 5.5,-59.5 + pos: 14.5,-70.5 parent: 1 - - uid: 4622 + - uid: 8743 components: - type: Transform - pos: 3.5,-58.5 + pos: 13.5,-70.5 parent: 1 - - uid: 4623 + - uid: 8744 components: - type: Transform - pos: 2.5,-58.5 + pos: 15.5,-71.5 parent: 1 - - uid: 5509 + - uid: 8745 components: - type: Transform - pos: -5.5,-79.5 + pos: 15.5,-72.5 parent: 1 - - uid: 5510 + - uid: 8746 components: - type: Transform - pos: -4.5,-81.5 + pos: 15.5,-73.5 parent: 1 - - uid: 5512 + - uid: 8747 components: - type: Transform - pos: -5.5,-81.5 + pos: 15.5,-74.5 parent: 1 - - uid: 5514 + - uid: 8748 components: - type: Transform - pos: -5.5,-80.5 + pos: 17.5,-71.5 parent: 1 - - uid: 5515 + - uid: 8749 components: - type: Transform - pos: -0.5,-78.5 + pos: 17.5,-72.5 parent: 1 - - uid: 5518 + - uid: 8750 components: - type: Transform - pos: -0.5,-80.5 + pos: 17.5,-73.5 parent: 1 - - uid: 5519 + - uid: 8751 components: - type: Transform - pos: -0.5,-79.5 + pos: 17.5,-74.5 parent: 1 - - uid: 5520 + - uid: 8752 components: - type: Transform - pos: -1.5,-81.5 + pos: 17.5,-69.5 parent: 1 - - uid: 5521 + - uid: 8753 components: - type: Transform - pos: -0.5,-81.5 + pos: 17.5,-68.5 parent: 1 - - uid: 5522 + - uid: 8754 components: - type: Transform - pos: -2.5,-81.5 + pos: 15.5,-69.5 parent: 1 - - uid: 5523 + - uid: 8755 components: - type: Transform - pos: -3.5,-81.5 + pos: 15.5,-68.5 parent: 1 - - uid: 5806 + - uid: 8756 components: - type: Transform - pos: -5.5,-78.5 + pos: 20.5,-64.5 parent: 1 - - uid: 5820 + - uid: 8757 components: - type: Transform - pos: -6.5,-78.5 + pos: 19.5,-64.5 parent: 1 - - uid: 5886 + - uid: 8758 components: - type: Transform - pos: -2.5,-77.5 + pos: 18.5,-64.5 parent: 1 - - uid: 5887 + - uid: 8759 components: - type: Transform - pos: -1.5,-77.5 + pos: 17.5,-64.5 parent: 1 - - uid: 5888 + - uid: 8760 components: - type: Transform - pos: -0.5,-77.5 + pos: 16.5,-64.5 parent: 1 - - uid: 5889 + - uid: 8761 components: - type: Transform - pos: 0.5,-77.5 + pos: 15.5,-64.5 parent: 1 - - uid: 5890 + - uid: 8762 components: - type: Transform - pos: 1.5,-77.5 + pos: 14.5,-64.5 parent: 1 - - uid: 5891 + - uid: 8763 components: - type: Transform - pos: -0.5,-76.5 + pos: 13.5,-64.5 parent: 1 - - uid: 5892 + - uid: 8764 components: - type: Transform - pos: -0.5,-75.5 + pos: 15.5,-65.5 parent: 1 - - uid: 5893 + - uid: 10150 components: - type: Transform - pos: -0.5,-74.5 - parent: 1 - - uid: 5894 + pos: -1.5,0.5 + parent: 10146 + - uid: 10151 components: - type: Transform - pos: -0.5,-73.5 - parent: 1 - - uid: 5895 + pos: -0.5,0.5 + parent: 10146 + - uid: 10152 components: - type: Transform - pos: -0.5,-72.5 - parent: 1 - - uid: 5896 + pos: -0.5,-0.5 + parent: 10146 + - uid: 10908 components: - type: Transform - pos: -0.5,-71.5 - parent: 1 - - uid: 5897 + pos: -1.5,0.5 + parent: 10867 + - uid: 10909 components: - type: Transform - pos: -0.5,-70.5 - parent: 1 - - uid: 5898 + pos: -0.5,0.5 + parent: 10867 + - uid: 10910 components: - type: Transform - pos: -0.5,-69.5 - parent: 1 - - uid: 5899 + pos: -0.5,-0.5 + parent: 10867 + - uid: 11472 components: - type: Transform - pos: -0.5,-68.5 + pos: 12.5,-64.5 parent: 1 - - uid: 5900 + - uid: 11473 components: - type: Transform - pos: -0.5,-57.5 + pos: 20.5,-95.5 parent: 1 - - uid: 5901 + - uid: 11474 components: - type: Transform - pos: -0.5,-56.5 + pos: 21.5,-95.5 parent: 1 - - uid: 5902 + - uid: 11475 components: - type: Transform - pos: -0.5,-55.5 + pos: 22.5,-95.5 parent: 1 - - uid: 5903 + - uid: 11476 components: - type: Transform - pos: -0.5,-67.5 + pos: 23.5,-95.5 parent: 1 - - uid: 5904 + - uid: 11477 components: - type: Transform - pos: -0.5,-66.5 + pos: 24.5,-95.5 parent: 1 - - uid: 5905 + - uid: 11478 components: - type: Transform - pos: -0.5,-65.5 + pos: 25.5,-95.5 parent: 1 - - uid: 5906 + - uid: 11479 components: - type: Transform - pos: -0.5,-64.5 + pos: 18.5,-96.5 parent: 1 - - uid: 5907 + - uid: 11480 components: - type: Transform - pos: -0.5,-63.5 + pos: 18.5,-97.5 parent: 1 - - uid: 5908 + - uid: 11481 components: - type: Transform - pos: -0.5,-62.5 + pos: 18.5,-98.5 parent: 1 - - uid: 5909 + - uid: 11482 components: - type: Transform - pos: -0.5,-61.5 + pos: 18.5,-99.5 parent: 1 - - uid: 5910 + - uid: 11483 components: - type: Transform - pos: -0.5,-60.5 + pos: 19.5,-99.5 parent: 1 - - uid: 5911 + - uid: 11484 components: - type: Transform - pos: -0.5,-59.5 + pos: 20.5,-99.5 parent: 1 - - uid: 5912 + - uid: 11485 components: - type: Transform - pos: -0.5,-58.5 + pos: 21.5,-99.5 parent: 1 - - uid: 10153 + - uid: 11486 components: - type: Transform - pos: -1.5,-0.5 - parent: 10146 - - uid: 10154 + pos: 22.5,-99.5 + parent: 1 + - uid: 11487 components: - type: Transform - pos: -0.5,-0.5 - parent: 10146 - - uid: 10155 + pos: 23.5,-99.5 + parent: 1 + - uid: 11488 components: - type: Transform - pos: 0.5,-0.5 - parent: 10146 -- proto: CableMV - entities: - - uid: 105 + pos: 24.5,-99.5 + parent: 1 + - uid: 11489 components: - type: Transform - pos: -0.5,-3.5 + pos: 25.5,-99.5 parent: 1 - - uid: 106 + - uid: 11490 components: - type: Transform - pos: -0.5,-4.5 + pos: 16.5,-88.5 parent: 1 - - uid: 107 + - uid: 11491 components: - type: Transform - pos: -0.5,-5.5 + pos: 16.5,-89.5 parent: 1 - - uid: 108 + - uid: 11492 components: - type: Transform - pos: -0.5,-6.5 + pos: 16.5,-90.5 parent: 1 - - uid: 109 + - uid: 11493 components: - type: Transform - pos: -0.5,5.5 + pos: 16.5,-91.5 parent: 1 - - uid: 110 + - uid: 11494 components: - type: Transform - pos: -0.5,4.5 + pos: 15.5,-91.5 parent: 1 - - uid: 111 + - uid: 11495 components: - type: Transform - pos: -0.5,3.5 + pos: 14.5,-91.5 parent: 1 - - uid: 112 + - uid: 11496 components: - type: Transform - pos: -0.5,2.5 + pos: 13.5,-91.5 parent: 1 - - uid: 113 + - uid: 11497 components: - type: Transform - pos: -0.5,1.5 + pos: 12.5,-91.5 parent: 1 - - uid: 114 + - uid: 11498 components: - type: Transform - pos: -0.5,0.5 + pos: 11.5,-91.5 parent: 1 - - uid: 115 + - uid: 11499 components: - type: Transform - pos: -0.5,-0.5 + pos: 10.5,-91.5 parent: 1 - - uid: 116 + - uid: 11500 components: - type: Transform - pos: -0.5,-1.5 + pos: 9.5,-91.5 parent: 1 - - uid: 117 + - uid: 11501 components: - type: Transform - pos: -0.5,-2.5 + pos: 16.5,-92.5 parent: 1 - - uid: 118 + - uid: 11502 components: - type: Transform - pos: 2.5,-0.5 + pos: 16.5,-93.5 parent: 1 - - uid: 119 + - uid: 11503 components: - type: Transform - pos: 3.5,-0.5 + pos: 16.5,-94.5 parent: 1 - - uid: 120 + - uid: 11504 components: - type: Transform - pos: 4.5,-0.5 + pos: 16.5,-95.5 parent: 1 - - uid: 121 + - uid: 11505 components: - type: Transform - pos: 5.5,-0.5 + pos: 15.5,-95.5 parent: 1 - - uid: 122 + - uid: 11506 components: - type: Transform - pos: -6.5,-0.5 + pos: 14.5,-95.5 parent: 1 - - uid: 123 + - uid: 11507 components: - type: Transform - pos: -5.5,-0.5 + pos: 13.5,-95.5 parent: 1 - - uid: 124 + - uid: 11508 components: - type: Transform - pos: -4.5,-0.5 + pos: 12.5,-95.5 parent: 1 - - uid: 125 + - uid: 11509 components: - type: Transform - pos: -3.5,-0.5 + pos: 11.5,-95.5 parent: 1 - - uid: 126 + - uid: 11510 components: - type: Transform - pos: -2.5,-0.5 + pos: 10.5,-95.5 parent: 1 - - uid: 127 + - uid: 11511 components: - type: Transform - pos: -1.5,-0.5 + pos: 9.5,-95.5 parent: 1 - - uid: 128 + - uid: 11512 components: - type: Transform - pos: -0.5,-0.5 + pos: 16.5,-96.5 parent: 1 - - uid: 129 + - uid: 11513 components: - type: Transform - pos: 0.5,-0.5 + pos: 16.5,-97.5 parent: 1 - - uid: 130 + - uid: 11514 components: - type: Transform - pos: 1.5,-0.5 + pos: 16.5,-98.5 parent: 1 - - uid: 167 + - uid: 11515 components: - type: Transform - pos: -0.5,13.5 + pos: 16.5,-99.5 parent: 1 - - uid: 168 + - uid: 11516 components: - type: Transform - pos: -0.5,12.5 + pos: 15.5,-99.5 parent: 1 - - uid: 169 + - uid: 11517 components: - type: Transform - pos: -0.5,11.5 + pos: 14.5,-99.5 parent: 1 - - uid: 170 + - uid: 11518 components: - type: Transform - pos: -0.5,10.5 + pos: 13.5,-99.5 parent: 1 - - uid: 171 + - uid: 11519 components: - type: Transform - pos: -0.5,9.5 + pos: 12.5,-99.5 parent: 1 - - uid: 172 + - uid: 11520 components: - type: Transform - pos: -0.5,8.5 + pos: 11.5,-99.5 parent: 1 - - uid: 173 + - uid: 11521 components: - type: Transform - pos: -0.5,7.5 + pos: 10.5,-99.5 parent: 1 - - uid: 174 + - uid: 11522 components: - type: Transform - pos: -0.5,6.5 + pos: 9.5,-99.5 parent: 1 - - uid: 207 + - uid: 11523 components: - type: Transform - pos: -3.5,1.5 - parent: 8566 - - uid: 210 + pos: 14.5,-102.5 + parent: 1 + - uid: 11524 components: - type: Transform - pos: -3.5,0.5 - parent: 8566 - - uid: 213 + pos: 15.5,-102.5 + parent: 1 + - uid: 11525 components: - type: Transform - pos: -2.5,0.5 - parent: 8566 - - uid: 222 + pos: 16.5,-102.5 + parent: 1 + - uid: 11526 components: - type: Transform - pos: -1.5,0.5 - parent: 8566 - - uid: 240 + pos: 19.5,-102.5 + parent: 1 + - uid: 11527 components: - type: Transform - pos: -1.5,-0.5 - parent: 8566 - - uid: 245 + pos: 20.5,-102.5 + parent: 1 + - uid: 11528 components: - type: Transform - pos: -1.5,-1.5 - parent: 8566 - - uid: 429 + pos: 18.5,-102.5 + parent: 1 + - uid: 11725 components: - type: Transform - pos: 6.5,-0.5 + pos: 30.5,-85.5 parent: 1 - - uid: 430 + - uid: 11726 components: - type: Transform - pos: 7.5,-0.5 + pos: 30.5,-84.5 parent: 1 - - uid: 431 + - uid: 11753 components: - type: Transform - pos: 8.5,-0.5 + pos: 30.5,-83.5 parent: 1 - - uid: 432 + - uid: 11780 components: - type: Transform - pos: 9.5,-0.5 + pos: 30.5,-86.5 parent: 1 - - uid: 433 + - uid: 11833 components: - type: Transform - pos: -0.5,-7.5 + pos: 29.5,-86.5 parent: 1 - - uid: 434 + - uid: 11858 components: - type: Transform - pos: -0.5,-8.5 + pos: 28.5,-86.5 parent: 1 - - uid: 435 + - uid: 11872 components: - type: Transform - pos: -0.5,-9.5 + pos: 27.5,-86.5 parent: 1 - - uid: 436 + - uid: 11873 components: - type: Transform - pos: -0.5,-10.5 + pos: 35.5,-86.5 parent: 1 - - uid: 643 + - uid: 11874 components: - type: Transform - pos: 10.5,-0.5 + pos: 40.5,-86.5 parent: 1 - - uid: 644 + - uid: 11929 components: - type: Transform - pos: 10.5,-1.5 + pos: 35.5,-85.5 parent: 1 - - uid: 645 + - uid: 11930 components: - type: Transform - pos: 10.5,-2.5 + pos: 39.5,-86.5 parent: 1 - - uid: 1949 + - uid: 11982 components: - type: Transform - pos: 0.5,7.5 + pos: 35.5,-84.5 parent: 1 - - uid: 1950 + - uid: 11983 components: - type: Transform - pos: 1.5,7.5 + pos: 38.5,-86.5 parent: 1 - - uid: 1967 + - uid: 11991 components: - type: Transform - pos: 11.5,-0.5 + pos: 35.5,-83.5 parent: 1 - - uid: 1968 + - uid: 11992 components: - type: Transform - pos: 12.5,-0.5 + pos: 37.5,-86.5 parent: 1 - - uid: 1969 + - uid: 12037 components: - type: Transform - pos: 13.5,-0.5 + pos: 35.5,-82.5 parent: 1 - - uid: 1970 + - uid: 12041 components: - type: Transform - pos: 14.5,-0.5 + pos: 40.5,-83.5 parent: 1 - - uid: 1971 + - uid: 12084 components: - type: Transform - pos: 15.5,-0.5 + pos: 34.5,-82.5 parent: 1 - - uid: 1972 + - uid: 12131 components: - type: Transform - pos: 16.5,-0.5 + pos: 33.5,-82.5 parent: 1 - - uid: 1973 + - uid: 12135 components: - type: Transform - pos: 17.5,-0.5 + pos: 31.5,-82.5 parent: 1 - - uid: 1974 + - uid: 12136 components: - type: Transform - pos: 18.5,-0.5 + pos: 38.5,-82.5 parent: 1 - - uid: 1977 + - uid: 12200 components: - type: Transform - pos: 0.5,-6.5 + pos: 32.5,-82.5 parent: 1 - - uid: 1978 + - uid: 12251 components: - type: Transform - pos: 1.5,-6.5 + pos: 34.5,-86.5 parent: 1 - - uid: 2006 + - uid: 12254 components: - type: Transform - pos: -6.5,1.5 + pos: 33.5,-86.5 parent: 1 - - uid: 2007 + - uid: 12255 components: - type: Transform - pos: -6.5,0.5 + pos: 32.5,-86.5 parent: 1 - - uid: 2537 + - uid: 12256 components: - type: Transform - pos: -11.5,-82.5 + pos: 36.5,-82.5 parent: 1 - - uid: 2544 + - uid: 12293 components: - type: Transform - pos: 7.5,-81.5 + pos: 37.5,-82.5 parent: 1 - - uid: 2548 + - uid: 12305 components: - type: Transform - pos: 5.5,-81.5 + pos: 40.5,-82.5 parent: 1 - - uid: 2983 + - uid: 12306 components: - type: Transform - pos: -0.5,-76.5 + pos: 39.5,-82.5 parent: 1 - - uid: 3020 + - uid: 12307 components: - type: Transform - pos: 3.5,-81.5 + pos: 40.5,-85.5 parent: 1 - - uid: 3023 + - uid: 12308 components: - type: Transform - pos: 6.5,-81.5 + pos: 40.5,-84.5 parent: 1 - - uid: 3025 + - uid: 12613 components: - type: Transform - pos: 4.5,-81.5 + pos: 30.5,-80.5 parent: 1 - - uid: 3201 + - uid: 12614 components: - type: Transform - pos: -11.5,-83.5 + pos: 30.5,-81.5 parent: 1 - - uid: 3652 + - uid: 12615 components: - type: Transform - pos: -2.5,-54.5 + pos: 30.5,-82.5 parent: 1 - - uid: 3653 + - uid: 12616 components: - type: Transform - pos: 1.5,-54.5 + pos: 23.5,-82.5 parent: 1 - - uid: 3656 + - uid: 12617 components: - type: Transform - pos: 1.5,-50.5 + pos: 24.5,-82.5 parent: 1 - - uid: 3657 + - uid: 12618 components: - type: Transform - pos: 2.5,-50.5 + pos: 25.5,-82.5 parent: 1 - - uid: 3658 + - uid: 12619 components: - type: Transform - pos: 2.5,-50.5 + pos: 26.5,-82.5 parent: 1 - - uid: 3659 + - uid: 12620 components: - type: Transform - pos: 2.5,-54.5 + pos: 27.5,-82.5 parent: 1 - - uid: 3660 + - uid: 12621 components: - type: Transform - pos: 2.5,-53.5 + pos: 28.5,-82.5 parent: 1 - - uid: 3661 + - uid: 12622 components: - type: Transform - pos: 2.5,-52.5 + pos: 29.5,-82.5 parent: 1 - - uid: 3662 + - uid: 12623 components: - type: Transform - pos: 2.5,-51.5 + pos: 23.5,-83.5 parent: 1 - - uid: 3663 + - uid: 12624 components: - type: Transform - pos: -3.5,-54.5 + pos: 23.5,-81.5 parent: 1 - - uid: 3664 + - uid: 12641 components: - type: Transform - pos: -3.5,-53.5 + pos: 8.5,-82.5 parent: 1 - - uid: 3665 + - uid: 12642 components: - type: Transform - pos: -3.5,-52.5 + pos: 9.5,-82.5 parent: 1 - - uid: 3666 + - uid: 12643 components: - type: Transform - pos: -3.5,-51.5 + pos: 10.5,-82.5 parent: 1 - - uid: 3667 + - uid: 12644 components: - type: Transform - pos: -3.5,-50.5 + pos: 11.5,-82.5 parent: 1 - - uid: 3668 + - uid: 12645 components: - type: Transform - pos: -2.5,-50.5 + pos: 12.5,-82.5 parent: 1 - - uid: 3669 + - uid: 12646 components: - type: Transform - pos: -1.5,-48.5 + pos: 13.5,-82.5 parent: 1 - - uid: 3670 + - uid: 12647 components: - type: Transform - pos: -1.5,-49.5 + pos: 13.5,-83.5 parent: 1 - - uid: 3671 + - uid: 12865 components: - type: Transform - pos: -1.5,-50.5 + pos: 10.5,-75.5 parent: 1 - - uid: 3672 + - uid: 12866 components: - type: Transform - pos: -1.5,-50.5 + pos: 10.5,-76.5 parent: 1 - - uid: 3859 + - uid: 12867 components: - type: Transform - pos: -11.5,-84.5 + pos: 10.5,-77.5 parent: 1 - - uid: 4140 + - uid: 12868 components: - type: Transform - pos: -0.5,-84.5 + pos: 10.5,-78.5 parent: 1 - - uid: 4143 + - uid: 12869 components: - type: Transform - pos: -0.5,-83.5 + pos: 10.5,-79.5 parent: 1 - - uid: 4151 + - uid: 12870 components: - type: Transform - pos: -0.5,-81.5 + pos: 9.5,-78.5 parent: 1 - - uid: 4153 + - uid: 12871 components: - type: Transform - pos: -2.5,-84.5 + pos: 11.5,-78.5 parent: 1 - - uid: 4154 + - uid: 12872 components: - type: Transform - pos: -1.5,-85.5 + pos: 12.5,-78.5 parent: 1 - - uid: 4160 + - uid: 12873 components: - type: Transform - pos: -2.5,-85.5 + pos: 13.5,-78.5 parent: 1 - - uid: 4166 + - uid: 12874 components: - type: Transform - pos: -0.5,-82.5 + pos: 14.5,-78.5 parent: 1 - - uid: 4171 + - uid: 12875 components: - type: Transform - pos: -0.5,-85.5 + pos: 14.5,-77.5 parent: 1 - - uid: 4844 + - uid: 12876 components: - type: Transform - pos: -2.5,-60.5 + pos: 14.5,-76.5 parent: 1 - - uid: 4845 + - uid: 12877 components: - type: Transform - pos: -1.5,-60.5 + pos: 15.5,-78.5 parent: 1 - - uid: 4846 + - uid: 12878 components: - type: Transform - pos: -1.5,-61.5 + pos: 14.5,-79.5 parent: 1 - - uid: 4847 + - uid: 12900 components: - type: Transform - pos: -1.5,-62.5 + pos: 20.5,-75.5 parent: 1 - - uid: 4848 + - uid: 12901 components: - type: Transform - pos: -1.5,-63.5 + pos: 20.5,-76.5 parent: 1 - - uid: 4849 + - uid: 12902 components: - type: Transform - pos: -1.5,-64.5 + pos: 20.5,-77.5 parent: 1 - - uid: 4850 + - uid: 12903 components: - type: Transform - pos: -1.5,-65.5 + pos: 20.5,-78.5 parent: 1 - - uid: 4851 + - uid: 12904 components: - type: Transform - pos: -1.5,-66.5 + pos: 20.5,-79.5 parent: 1 - - uid: 4852 + - uid: 12905 components: - type: Transform - pos: -1.5,-67.5 + pos: 19.5,-79.5 parent: 1 - - uid: 4853 + - uid: 12906 components: - type: Transform - pos: -1.5,-68.5 + pos: 18.5,-79.5 parent: 1 - - uid: 4854 + - uid: 12907 components: - type: Transform - pos: -2.5,-68.5 + pos: 17.5,-79.5 parent: 1 - - uid: 4855 + - uid: 12908 components: - type: Transform - pos: -1.5,-59.5 + pos: 17.5,-79.5 parent: 1 - - uid: 4856 + - uid: 12909 components: - type: Transform - pos: -1.5,-58.5 + pos: 19.5,-77.5 parent: 1 - - uid: 4857 + - uid: 12910 components: - type: Transform - pos: -1.5,-57.5 + pos: 21.5,-77.5 parent: 1 - - uid: 4858 +- proto: CableApcStack1 + entities: + - uid: 11660 components: - type: Transform - pos: -1.5,-56.5 + pos: 16.7112,-99.830605 parent: 1 - - uid: 4859 +- proto: CableApcStack10 + entities: + - uid: 6296 components: - type: Transform - pos: -1.5,-55.5 + pos: -12.388568,-94.38605 parent: 1 - - uid: 4860 + - uid: 6297 components: - type: Transform - pos: -1.5,-54.5 + pos: -12.372943,-94.6048 parent: 1 - - uid: 4861 +- proto: CableHV + entities: + - uid: 73 components: - type: Transform - pos: 0.5,-54.5 + pos: 2.5,-0.5 parent: 1 - - uid: 4862 + - uid: 75 components: - type: Transform - pos: 0.5,-55.5 + pos: 4.5,-0.5 parent: 1 - - uid: 4863 + - uid: 76 components: - type: Transform - pos: 0.5,-56.5 + pos: 3.5,-0.5 parent: 1 - - uid: 4864 + - uid: 78 components: - type: Transform - pos: 0.5,-57.5 + pos: 9.5,-0.5 parent: 1 - - uid: 4865 + - uid: 84 components: - type: Transform - pos: 0.5,-58.5 + pos: -6.5,-0.5 parent: 1 - - uid: 4866 + - uid: 85 components: - type: Transform - pos: 0.5,-59.5 + pos: -5.5,-0.5 parent: 1 - - uid: 4867 + - uid: 86 components: - type: Transform - pos: 0.5,-60.5 + pos: -4.5,-0.5 parent: 1 - - uid: 4868 + - uid: 87 components: - type: Transform - pos: 0.5,-61.5 + pos: -3.5,-0.5 parent: 1 - - uid: 4869 + - uid: 88 components: - type: Transform - pos: 0.5,-62.5 + pos: -2.5,-0.5 parent: 1 - - uid: 4870 + - uid: 89 components: - type: Transform - pos: 0.5,-63.5 + pos: -1.5,-0.5 parent: 1 - - uid: 4871 + - uid: 90 components: - type: Transform - pos: 0.5,-64.5 + pos: -0.5,-0.5 parent: 1 - - uid: 4872 + - uid: 91 components: - type: Transform - pos: 1.5,-64.5 + pos: 0.5,-0.5 parent: 1 - - uid: 4873 + - uid: 92 components: - type: Transform - pos: 2.5,-64.5 + pos: 1.5,-0.5 parent: 1 - - uid: 4874 + - uid: 93 components: - type: Transform - pos: 3.5,-64.5 + pos: -0.5,-1.5 parent: 1 - - uid: 4875 + - uid: 94 components: - type: Transform - pos: 4.5,-64.5 + pos: -0.5,-2.5 parent: 1 - - uid: 4876 + - uid: 95 components: - type: Transform - pos: 5.5,-64.5 + pos: -0.5,-3.5 parent: 1 - - uid: 4877 + - uid: 96 components: - type: Transform - pos: 6.5,-64.5 + pos: -0.5,-4.5 parent: 1 - - uid: 4878 + - uid: 97 components: - type: Transform - pos: 7.5,-64.5 + pos: -0.5,-5.5 parent: 1 - - uid: 4879 + - uid: 98 components: - type: Transform - pos: 8.5,-64.5 + pos: -0.5,-6.5 parent: 1 - - uid: 4880 + - uid: 99 components: - type: Transform - pos: 9.5,-64.5 + pos: -0.5,0.5 parent: 1 - - uid: 4881 + - uid: 100 components: - type: Transform - pos: 9.5,-65.5 + pos: -0.5,1.5 parent: 1 - - uid: 4882 + - uid: 101 components: - type: Transform - pos: 9.5,-66.5 + pos: -0.5,2.5 parent: 1 - - uid: 5030 + - uid: 102 components: - type: Transform - pos: -1.5,-69.5 + pos: -0.5,3.5 parent: 1 - - uid: 5031 + - uid: 103 components: - type: Transform - pos: -1.5,-70.5 + pos: -0.5,4.5 parent: 1 - - uid: 5032 + - uid: 104 components: - type: Transform - pos: -1.5,-71.5 + pos: -0.5,5.5 parent: 1 - - uid: 5034 + - uid: 159 components: - type: Transform - pos: -1.5,-73.5 + pos: -0.5,6.5 parent: 1 - - uid: 5035 + - uid: 160 components: - type: Transform - pos: -1.5,-74.5 + pos: -0.5,7.5 parent: 1 - - uid: 5036 + - uid: 161 components: - type: Transform - pos: -1.5,-75.5 + pos: -0.5,8.5 parent: 1 - - uid: 5037 + - uid: 162 components: - type: Transform - pos: -2.5,-75.5 + pos: -0.5,9.5 parent: 1 - - uid: 5038 + - uid: 163 components: - type: Transform - pos: 0.5,-65.5 + pos: -0.5,10.5 parent: 1 - - uid: 5039 + - uid: 164 components: - type: Transform - pos: 0.5,-66.5 + pos: -0.5,11.5 parent: 1 - - uid: 5040 + - uid: 165 components: - type: Transform - pos: 0.5,-67.5 + pos: -0.5,12.5 parent: 1 - - uid: 5041 + - uid: 166 components: - type: Transform - pos: 0.5,-68.5 + pos: -0.5,13.5 parent: 1 - - uid: 5042 + - uid: 243 components: - type: Transform - pos: 0.5,-69.5 - parent: 1 - - uid: 5043 + pos: -2.5,0.5 + parent: 8566 + - uid: 249 components: - type: Transform - pos: 0.5,-70.5 - parent: 1 - - uid: 5044 + pos: -3.5,0.5 + parent: 8566 + - uid: 257 components: - type: Transform - pos: 0.5,-71.5 - parent: 1 - - uid: 5046 + pos: -3.5,1.5 + parent: 8566 + - uid: 260 components: - type: Transform - pos: 0.5,-73.5 - parent: 1 - - uid: 5047 + pos: -3.5,-0.5 + parent: 8566 + - uid: 278 components: - type: Transform - pos: 0.5,-74.5 + pos: 17.5,-86.5 parent: 1 - - uid: 5048 + - uid: 283 components: - type: Transform - pos: 1.5,-74.5 + pos: 17.5,-85.5 parent: 1 - - uid: 5049 + - uid: 425 components: - type: Transform - pos: 2.5,-74.5 + pos: 8.5,-0.5 parent: 1 - - uid: 5050 + - uid: 426 components: - type: Transform - pos: 3.5,-74.5 + pos: 7.5,-0.5 parent: 1 - - uid: 5051 + - uid: 427 components: - type: Transform - pos: 4.5,-74.5 + pos: 6.5,-0.5 parent: 1 - - uid: 5052 + - uid: 428 components: - type: Transform - pos: 5.5,-74.5 + pos: 5.5,-0.5 parent: 1 - - uid: 5053 + - uid: 437 components: - type: Transform - pos: 6.5,-74.5 + pos: -0.5,-10.5 parent: 1 - - uid: 5456 + - uid: 438 components: - type: Transform - pos: 7.5,-74.5 + pos: -0.5,-9.5 parent: 1 - - uid: 5457 + - uid: 439 components: - type: Transform - pos: 8.5,-74.5 + pos: -0.5,-8.5 parent: 1 - - uid: 5458 + - uid: 440 components: - type: Transform - pos: 9.5,-74.5 + pos: -0.5,-7.5 parent: 1 - - uid: 5459 + - uid: 629 components: - type: Transform - pos: 9.5,-75.5 + pos: 16.5,-1.5 parent: 1 - - uid: 5533 + - uid: 630 components: - type: Transform - pos: -9.5,-77.5 + pos: 16.5,-2.5 parent: 1 - - uid: 5534 + - uid: 631 components: - type: Transform - pos: -8.5,-77.5 + pos: 17.5,-1.5 parent: 1 - - uid: 5536 + - uid: 632 components: - type: Transform - pos: -8.5,-76.5 + pos: 17.5,-2.5 parent: 1 - - uid: 5552 + - uid: 633 components: - type: Transform - pos: 1.5,-81.5 + pos: 15.5,-2.5 parent: 1 - - uid: 5568 + - uid: 634 components: - type: Transform - pos: 2.5,-81.5 + pos: 15.5,-1.5 parent: 1 - - uid: 5570 + - uid: 635 components: - type: Transform - pos: 0.5,-81.5 + pos: 14.5,-2.5 parent: 1 - - uid: 5577 + - uid: 636 components: - type: Transform - pos: -6.5,-81.5 + pos: 13.5,-2.5 parent: 1 - - uid: 5578 + - uid: 637 components: - type: Transform - pos: -7.5,-81.5 + pos: 12.5,-2.5 parent: 1 - - uid: 5593 + - uid: 638 components: - type: Transform - pos: -8.5,-81.5 + pos: 11.5,-2.5 parent: 1 - - uid: 5594 + - uid: 639 components: - type: Transform - pos: -10.5,-81.5 + pos: 10.5,-2.5 parent: 1 - - uid: 5596 + - uid: 641 components: - type: Transform - pos: -9.5,-81.5 + pos: 10.5,-1.5 parent: 1 - - uid: 5627 + - uid: 642 components: - type: Transform - pos: -12.5,-81.5 + pos: 10.5,-0.5 parent: 1 - - uid: 5628 + - uid: 1130 components: - type: Transform - pos: -11.5,-81.5 + pos: 10.5,-101.5 parent: 1 - - uid: 5629 + - uid: 1133 components: - type: Transform - pos: -12.5,-80.5 + pos: 9.5,-101.5 parent: 1 - - uid: 5810 + - uid: 1194 components: - type: Transform - pos: 10.5,-74.5 + pos: 17.5,-84.5 parent: 1 - - uid: 5811 + - uid: 1205 components: - type: Transform - pos: 11.5,-74.5 + pos: 0.5,-81.5 parent: 1 - - uid: 5913 + - uid: 1210 components: - type: Transform - pos: 1.5,-77.5 + pos: 17.5,-100.5 parent: 1 - - uid: 5914 + - uid: 1213 components: - type: Transform - pos: 0.5,-77.5 + pos: 17.5,-92.5 parent: 1 - - uid: 5915 + - uid: 1214 components: - type: Transform - pos: -0.5,-77.5 + pos: 17.5,-89.5 parent: 1 - - uid: 5916 + - uid: 1217 components: - type: Transform - pos: -0.5,-78.5 + pos: 0.5,-82.5 parent: 1 - - uid: 5917 + - uid: 1247 components: - type: Transform - pos: -0.5,-79.5 + pos: 1.5,-82.5 parent: 1 - - uid: 5922 + - uid: 1438 components: - type: Transform - pos: -2.5,-80.5 + pos: 17.5,-96.5 parent: 1 - - uid: 6203 + - uid: 1439 components: - type: Transform - pos: -8.5,-79.5 + pos: 17.5,-94.5 parent: 1 - - uid: 6210 + - uid: 1451 components: - type: Transform - pos: -8.5,-78.5 + pos: 17.5,-90.5 parent: 1 - - uid: 6226 + - uid: 1452 components: - type: Transform - pos: -6.5,-79.5 + pos: 17.5,-99.5 parent: 1 - - uid: 6234 + - uid: 1460 components: - type: Transform - pos: -7.5,-79.5 + pos: 17.5,-101.5 parent: 1 - - uid: 6242 + - uid: 1461 components: - type: Transform - pos: -5.5,-79.5 + pos: 17.5,-88.5 parent: 1 - - uid: 6250 + - uid: 1472 components: - type: Transform - pos: -5.5,-81.5 + pos: 17.5,-91.5 parent: 1 - - uid: 6251 + - uid: 1477 components: - type: Transform - pos: -5.5,-80.5 + pos: 17.5,-98.5 parent: 1 - - uid: 6258 + - uid: 1478 components: - type: Transform - pos: -3.5,-81.5 + pos: 17.5,-95.5 parent: 1 - - uid: 6260 + - uid: 1604 components: - type: Transform - pos: -4.5,-81.5 + pos: 17.5,-87.5 parent: 1 - - uid: 6268 + - uid: 1622 components: - type: Transform - pos: -1.5,-81.5 + pos: 17.5,-93.5 parent: 1 - - uid: 6276 + - uid: 1668 components: - type: Transform - pos: -2.5,-81.5 + pos: 17.5,-97.5 parent: 1 - - uid: 6284 + - uid: 2395 components: - type: Transform - pos: -0.5,-74.5 + pos: -1.5,-64.5 parent: 1 - - uid: 6292 + - uid: 2417 components: - type: Transform - pos: -0.5,-75.5 + pos: -2.5,-64.5 parent: 1 - - uid: 7474 + - uid: 2595 components: - type: Transform - pos: 12.5,-74.5 + pos: 11.5,-101.5 parent: 1 - - uid: 7476 + - uid: 2608 components: - type: Transform - pos: 13.5,-74.5 + pos: 12.5,-101.5 parent: 1 - - uid: 8589 + - uid: 2616 components: - type: Transform - pos: 10.5,-69.5 + pos: 15.5,-102.5 parent: 1 - - uid: 8590 + - uid: 2617 components: - type: Transform - pos: 11.5,-69.5 + pos: 16.5,-102.5 parent: 1 - - uid: 8591 + - uid: 2619 components: - type: Transform - pos: 1.5,-69.5 + pos: 17.5,-102.5 parent: 1 - - uid: 8592 + - uid: 2620 components: - type: Transform - pos: 2.5,-69.5 + pos: 12.5,-102.5 parent: 1 - - uid: 8593 + - uid: 2625 components: - type: Transform - pos: 3.5,-69.5 + pos: 14.5,-102.5 parent: 1 - - uid: 8594 + - uid: 2626 components: - type: Transform - pos: 4.5,-69.5 + pos: 13.5,-102.5 parent: 1 - - uid: 8595 + - uid: 3629 components: - type: Transform - pos: 5.5,-69.5 + pos: 3.5,-53.5 parent: 1 - - uid: 8596 + - uid: 3631 components: - type: Transform - pos: 6.5,-69.5 + pos: 4.5,-53.5 parent: 1 - - uid: 8597 + - uid: 3632 components: - type: Transform - pos: 7.5,-69.5 + pos: 3.5,-52.5 parent: 1 - - uid: 8598 + - uid: 3633 components: - type: Transform - pos: 8.5,-69.5 + pos: 3.5,-51.5 parent: 1 - - uid: 8599 + - uid: 3634 components: - type: Transform - pos: 9.5,-69.5 + pos: 3.5,-50.5 parent: 1 - - uid: 8600 + - uid: 3635 components: - type: Transform - pos: 2.5,-59.5 + pos: 1.5,-54.5 parent: 1 - - uid: 8601 + - uid: 3636 components: - type: Transform - pos: 1.5,-59.5 + pos: 2.5,-54.5 parent: 1 - - uid: 8602 + - uid: 3637 components: - type: Transform - pos: 11.5,-59.5 + pos: 4.5,-52.5 parent: 1 - - uid: 8603 + - uid: 3638 components: - type: Transform - pos: 10.5,-59.5 + pos: 4.5,-51.5 parent: 1 - - uid: 8604 + - uid: 3639 components: - type: Transform - pos: 9.5,-59.5 + pos: 4.5,-50.5 parent: 1 - - uid: 8605 + - uid: 3644 components: - type: Transform - pos: 8.5,-59.5 + pos: 4.5,-54.5 parent: 1 - - uid: 8606 + - uid: 3645 components: - type: Transform - pos: 7.5,-59.5 + pos: 3.5,-54.5 parent: 1 - - uid: 8607 + - uid: 3648 components: - type: Transform - pos: 6.5,-59.5 + pos: 0.5,-54.5 parent: 1 - - uid: 8608 + - uid: 3649 components: - type: Transform - pos: 5.5,-59.5 + pos: -0.5,-54.5 parent: 1 - - uid: 8609 + - uid: 3650 components: - type: Transform - pos: 4.5,-59.5 + pos: -1.5,-54.5 parent: 1 - - uid: 8610 + - uid: 3651 components: - type: Transform - pos: 3.5,-59.5 + pos: -2.5,-54.5 parent: 1 - - uid: 8711 + - uid: 3899 components: - type: Transform - pos: 14.5,-74.5 + pos: -6.5,-64.5 parent: 1 - - uid: 8712 + - uid: 3937 components: - type: Transform - pos: 15.5,-74.5 + pos: -3.5,-64.5 parent: 1 - - uid: 8713 + - uid: 3950 components: - type: Transform - pos: 16.5,-74.5 + pos: 6.5,-60.5 parent: 1 - - uid: 8714 + - uid: 3975 components: - type: Transform - pos: 17.5,-74.5 + pos: 5.5,-60.5 parent: 1 - - uid: 8715 + - uid: 4060 components: - type: Transform - pos: 18.5,-74.5 + pos: -4.5,-78.5 parent: 1 - - uid: 8716 + - uid: 4065 components: - type: Transform - pos: 19.5,-74.5 + pos: -5.5,-77.5 parent: 1 - - uid: 8717 + - uid: 4066 components: - type: Transform - pos: 19.5,-73.5 + pos: -4.5,-77.5 parent: 1 - - uid: 8718 + - uid: 4067 components: - type: Transform - pos: 19.5,-72.5 + pos: -7.5,-77.5 parent: 1 - - uid: 8719 + - uid: 4068 components: - type: Transform - pos: 19.5,-71.5 + pos: -6.5,-77.5 parent: 1 - - uid: 8720 + - uid: 4074 components: - type: Transform - pos: 19.5,-70.5 + pos: -9.5,-77.5 parent: 1 - - uid: 8721 + - uid: 4085 components: - type: Transform - pos: 19.5,-69.5 + pos: -8.5,-77.5 parent: 1 - - uid: 8722 + - uid: 4388 components: - type: Transform - pos: 19.5,-68.5 + pos: 4.5,-58.5 parent: 1 - - uid: 8723 + - uid: 4402 components: - type: Transform - pos: 19.5,-67.5 + pos: 6.5,-58.5 parent: 1 - - uid: 8724 + - uid: 4411 components: - type: Transform - pos: 19.5,-66.5 + pos: 0.5,-58.5 parent: 1 - - uid: 8725 + - uid: 4414 components: - type: Transform - pos: 19.5,-65.5 + pos: 5.5,-58.5 parent: 1 - - uid: 8726 + - uid: 4415 components: - type: Transform - pos: 19.5,-64.5 + pos: 1.5,-58.5 parent: 1 - - uid: 8728 + - uid: 4416 components: - type: Transform - pos: 20.5,-70.5 + pos: 5.5,-59.5 parent: 1 - - uid: 8898 + - uid: 4477 components: - type: Transform - pos: -12.5,-82.5 + pos: 24.5,-82.5 parent: 1 - - uid: 8899 + - uid: 4523 components: - type: Transform - pos: -13.5,-82.5 + pos: 23.5,-82.5 parent: 1 - - uid: 8900 + - uid: 4597 components: - type: Transform - pos: -14.5,-82.5 + pos: 21.5,-82.5 parent: 1 - - uid: 8901 + - uid: 4622 components: - type: Transform - pos: -15.5,-82.5 + pos: 3.5,-58.5 parent: 1 - - uid: 8902 + - uid: 4623 components: - type: Transform - pos: -16.5,-82.5 + pos: 2.5,-58.5 parent: 1 - - uid: 8903 + - uid: 4770 components: - type: Transform - pos: -17.5,-82.5 + pos: -5.5,-64.5 parent: 1 - - uid: 8904 + - uid: 4773 components: - type: Transform - pos: -18.5,-82.5 + pos: -4.5,-64.5 parent: 1 - - uid: 8905 + - uid: 5509 components: - type: Transform - pos: -19.5,-82.5 + pos: -5.5,-79.5 parent: 1 - - uid: 8906 + - uid: 5510 components: - type: Transform - pos: -24.5,-87.5 + pos: -4.5,-81.5 parent: 1 - - uid: 8909 + - uid: 5512 components: - type: Transform - pos: -24.5,-84.5 + pos: -5.5,-81.5 parent: 1 - - uid: 8910 + - uid: 5514 components: - type: Transform - pos: -24.5,-83.5 + pos: -5.5,-80.5 parent: 1 - - uid: 8912 + - uid: 5515 components: - type: Transform - pos: -23.5,-87.5 + pos: -0.5,-78.5 parent: 1 - - uid: 8913 + - uid: 5518 components: - type: Transform - pos: -23.5,-86.5 + pos: -0.5,-80.5 parent: 1 - - uid: 8914 + - uid: 5519 components: - type: Transform - pos: -23.5,-85.5 + pos: -0.5,-79.5 parent: 1 - - uid: 8915 + - uid: 5520 components: - type: Transform - pos: -23.5,-84.5 + pos: -1.5,-81.5 parent: 1 - - uid: 8916 + - uid: 5521 components: - type: Transform - pos: -23.5,-83.5 + pos: -0.5,-81.5 parent: 1 - - uid: 8917 + - uid: 5522 components: - type: Transform - pos: -23.5,-82.5 + pos: -2.5,-81.5 parent: 1 - - uid: 8918 + - uid: 5523 components: - type: Transform - pos: -22.5,-82.5 + pos: -3.5,-81.5 parent: 1 - - uid: 8919 + - uid: 5553 components: - type: Transform - pos: -21.5,-82.5 + pos: 22.5,-82.5 parent: 1 - - uid: 8920 + - uid: 5565 components: - type: Transform - pos: -20.5,-82.5 + pos: 18.5,-82.5 parent: 1 - - uid: 8948 + - uid: 5569 components: - type: Transform - pos: -24.5,-82.5 + pos: 19.5,-82.5 parent: 1 - - uid: 8949 + - uid: 5576 components: - type: Transform - pos: -25.5,-82.5 + pos: 20.5,-82.5 parent: 1 - - uid: 8950 + - uid: 5806 components: - type: Transform - pos: -26.5,-82.5 + pos: -5.5,-78.5 parent: 1 - - uid: 8951 + - uid: 5820 components: - type: Transform - pos: -27.5,-82.5 + pos: -6.5,-78.5 parent: 1 - - uid: 8952 + - uid: 5886 components: - type: Transform - pos: -28.5,-82.5 + pos: -2.5,-77.5 parent: 1 - - uid: 8953 + - uid: 5887 components: - type: Transform - pos: -29.5,-82.5 + pos: -1.5,-77.5 parent: 1 - - uid: 8954 + - uid: 5888 components: - type: Transform - pos: -30.5,-82.5 + pos: -0.5,-77.5 parent: 1 - - uid: 8955 + - uid: 5889 components: - type: Transform - pos: -30.5,-81.5 + pos: 0.5,-77.5 parent: 1 - - uid: 10156 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 10146 - - uid: 10157 + - uid: 5890 components: - type: Transform - pos: -0.5,-0.5 - parent: 10146 - - uid: 10158 + pos: 1.5,-77.5 + parent: 1 + - uid: 5891 components: - type: Transform - pos: -0.5,0.5 - parent: 10146 - - uid: 10159 + pos: -0.5,-76.5 + parent: 1 + - uid: 5892 components: - type: Transform - pos: -1.5,0.5 - parent: 10146 - - uid: 11465 + pos: -0.5,-75.5 + parent: 1 + - uid: 5893 components: - type: Transform - pos: 18.5,-64.5 + pos: -0.5,-74.5 parent: 1 - - uid: 11466 + - uid: 5894 components: - type: Transform - pos: 17.5,-64.5 + pos: -0.5,-73.5 parent: 1 - - uid: 11467 + - uid: 5895 components: - type: Transform - pos: 16.5,-64.5 + pos: -0.5,-72.5 parent: 1 - - uid: 11468 + - uid: 5896 components: - type: Transform - pos: 15.5,-64.5 + pos: -0.5,-71.5 parent: 1 - - uid: 11469 + - uid: 5897 components: - type: Transform - pos: 14.5,-64.5 + pos: -0.5,-70.5 parent: 1 - - uid: 11470 + - uid: 5898 components: - type: Transform - pos: 13.5,-64.5 + pos: -0.5,-69.5 parent: 1 - - uid: 11471 + - uid: 5899 components: - type: Transform - pos: 12.5,-64.5 + pos: -0.5,-68.5 parent: 1 -- proto: CableTerminal - entities: - - uid: 627 + - uid: 5900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 + pos: -0.5,-57.5 parent: 1 - - uid: 628 + - uid: 5901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-2.5 + pos: -0.5,-56.5 parent: 1 - - uid: 3627 + - uid: 5902 components: - type: Transform - pos: 4.5,-52.5 + pos: -0.5,-55.5 parent: 1 - - uid: 3630 + - uid: 5903 components: - type: Transform - pos: 3.5,-52.5 + pos: -0.5,-67.5 parent: 1 - - uid: 5497 + - uid: 5904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-78.5 + pos: -0.5,-66.5 parent: 1 - - uid: 5507 + - uid: 5905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-78.5 + pos: -0.5,-65.5 parent: 1 - - uid: 5508 + - uid: 5906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-78.5 + pos: -0.5,-64.5 parent: 1 -- proto: Catwalk - entities: - - uid: 2 + - uid: 5907 components: - type: Transform - pos: 8.5,-0.5 + pos: -0.5,-63.5 parent: 1 - - uid: 3 + - uid: 5908 components: - type: Transform - pos: 7.5,-0.5 + pos: -0.5,-62.5 parent: 1 - - uid: 4 + - uid: 5909 components: - type: Transform - pos: 6.5,-0.5 + pos: -0.5,-61.5 parent: 1 - - uid: 5 + - uid: 5910 components: - type: Transform - pos: 5.5,-0.5 + pos: -0.5,-60.5 parent: 1 - - uid: 6 + - uid: 5911 components: - type: Transform - pos: 4.5,-0.5 + pos: -0.5,-59.5 parent: 1 - - uid: 7 + - uid: 5912 components: - type: Transform - pos: 3.5,-0.5 + pos: -0.5,-58.5 parent: 1 - - uid: 8 + - uid: 8224 components: - type: Transform - pos: 2.5,-0.5 - parent: 1 - - uid: 9 + pos: -1.5,-0.5 + parent: 8217 + - uid: 8225 components: - type: Transform - pos: 1.5,-0.5 - parent: 1 - - uid: 10 + pos: -0.5,-0.5 + parent: 8217 + - uid: 8226 components: - type: Transform pos: 0.5,-0.5 - parent: 1 - - uid: 11 + parent: 8217 + - uid: 10153 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 10146 + - uid: 10154 components: - type: Transform pos: -0.5,-0.5 - parent: 1 - - uid: 12 + parent: 10146 + - uid: 10155 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 10146 + - uid: 10930 components: - type: Transform pos: -1.5,-0.5 - parent: 1 - - uid: 13 + parent: 10867 + - uid: 10938 components: - type: Transform - pos: -2.5,-0.5 - parent: 1 - - uid: 14 + pos: -0.5,-0.5 + parent: 10867 + - uid: 10939 components: - type: Transform - pos: -3.5,-0.5 - parent: 1 - - uid: 15 + pos: 0.5,-0.5 + parent: 10867 + - uid: 12648 components: - type: Transform - pos: -4.5,-0.5 + pos: 2.5,-82.5 parent: 1 - - uid: 16 + - uid: 12649 components: - type: Transform - pos: -5.5,-0.5 + pos: 3.5,-82.5 parent: 1 - - uid: 17 + - uid: 12650 components: - type: Transform - pos: -6.5,-0.5 + pos: 4.5,-82.5 parent: 1 - - uid: 18 + - uid: 12651 components: - type: Transform - pos: -7.5,-0.5 + pos: 5.5,-82.5 parent: 1 - - uid: 19 + - uid: 12652 components: - type: Transform - pos: -8.5,-0.5 + pos: 6.5,-82.5 parent: 1 - - uid: 20 + - uid: 12653 components: - type: Transform - pos: -9.5,-0.5 + pos: 7.5,-82.5 parent: 1 - - uid: 21 + - uid: 12654 components: - type: Transform - pos: -0.5,-1.5 + pos: 8.5,-82.5 parent: 1 - - uid: 22 + - uid: 12655 components: - type: Transform - pos: -0.5,-2.5 + pos: 9.5,-82.5 parent: 1 - - uid: 23 + - uid: 12656 components: - type: Transform - pos: -0.5,-3.5 + pos: 10.5,-82.5 parent: 1 - - uid: 24 + - uid: 12657 components: - type: Transform - pos: -0.5,-4.5 + pos: 11.5,-82.5 parent: 1 - - uid: 25 + - uid: 12658 components: - type: Transform - pos: -0.5,-5.5 + pos: 12.5,-82.5 parent: 1 - - uid: 26 + - uid: 12659 components: - type: Transform - pos: -0.5,-6.5 + pos: 13.5,-82.5 parent: 1 - - uid: 27 + - uid: 12660 components: - type: Transform - pos: -0.5,-7.5 + pos: 14.5,-82.5 parent: 1 - - uid: 28 + - uid: 12661 components: - type: Transform - pos: -0.5,0.5 + pos: 15.5,-82.5 parent: 1 - - uid: 29 + - uid: 12662 components: - type: Transform - pos: -0.5,1.5 + pos: 16.5,-82.5 parent: 1 - - uid: 30 + - uid: 12663 components: - type: Transform - pos: -0.5,2.5 + pos: 17.5,-82.5 parent: 1 - - uid: 31 + - uid: 12664 components: - type: Transform - pos: -0.5,3.5 + pos: 17.5,-83.5 parent: 1 - - uid: 32 + - uid: 12843 components: - type: Transform - pos: -0.5,4.5 + pos: 10.5,-81.5 parent: 1 - - uid: 33 + - uid: 12844 components: - type: Transform - pos: -0.5,5.5 + pos: 10.5,-80.5 parent: 1 - - uid: 34 + - uid: 12845 components: - type: Transform - pos: -0.5,6.5 + pos: 10.5,-79.5 parent: 1 - - uid: 80 + - uid: 12846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 + pos: 10.5,-78.5 parent: 1 - - uid: 81 + - uid: 12847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 + pos: 10.5,-77.5 parent: 1 - - uid: 82 + - uid: 12848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,0.5 + pos: 10.5,-76.5 parent: 1 - - uid: 83 + - uid: 12849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 + pos: 9.5,-76.5 parent: 1 - - uid: 152 + - uid: 12912 components: - type: Transform - pos: -0.5,13.5 + pos: 25.5,-82.5 parent: 1 - - uid: 153 + - uid: 12913 components: - type: Transform - pos: -0.5,12.5 + pos: 26.5,-82.5 parent: 1 - - uid: 154 + - uid: 12914 components: - type: Transform - pos: -0.5,11.5 + pos: 27.5,-82.5 parent: 1 - - uid: 155 + - uid: 12915 components: - type: Transform - pos: -0.5,10.5 + pos: 28.5,-82.5 parent: 1 - - uid: 156 + - uid: 12916 components: - type: Transform - pos: -0.5,9.5 + pos: 29.5,-82.5 parent: 1 - - uid: 157 + - uid: 12917 components: - type: Transform - pos: -0.5,8.5 + pos: 30.5,-82.5 parent: 1 - - uid: 158 + - uid: 12918 components: - type: Transform - pos: -0.5,7.5 + pos: 31.5,-82.5 parent: 1 - - uid: 441 + - uid: 12919 components: - type: Transform - pos: -0.5,-8.5 + pos: 31.5,-81.5 parent: 1 - - uid: 442 + - uid: 12920 components: - type: Transform - pos: -0.5,-9.5 + pos: 31.5,-80.5 parent: 1 - - uid: 443 + - uid: 12921 components: - type: Transform - pos: -0.5,-10.5 + pos: 31.5,-79.5 parent: 1 - - uid: 444 + - uid: 12922 components: - type: Transform - pos: 9.5,-0.5 + pos: 31.5,-78.5 parent: 1 - - uid: 2069 +- proto: CableMV + entities: + - uid: 105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-13.5 + pos: -0.5,-3.5 parent: 1 - - uid: 2070 + - uid: 106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-12.5 + pos: -0.5,-4.5 parent: 1 - - uid: 2071 + - uid: 107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-11.5 + pos: -0.5,-5.5 parent: 1 - - uid: 2072 + - uid: 108 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-24.5 + pos: -0.5,-6.5 parent: 1 - - uid: 2073 + - uid: 109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-23.5 + pos: -0.5,5.5 parent: 1 - - uid: 2074 + - uid: 110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-22.5 + pos: -0.5,4.5 parent: 1 - - uid: 2075 + - uid: 111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-21.5 + pos: -0.5,3.5 parent: 1 - - uid: 2076 + - uid: 112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-20.5 + pos: -0.5,2.5 parent: 1 - - uid: 2077 + - uid: 113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-19.5 + pos: -0.5,1.5 parent: 1 - - uid: 2078 + - uid: 114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-18.5 + pos: -0.5,0.5 parent: 1 - - uid: 2079 + - uid: 115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-17.5 + pos: -0.5,-0.5 parent: 1 - - uid: 2080 + - uid: 116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-16.5 + pos: -0.5,-1.5 parent: 1 - - uid: 2082 + - uid: 117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-14.5 + pos: -0.5,-2.5 parent: 1 - - uid: 2083 + - uid: 118 components: - type: Transform - pos: -0.5,-25.5 + pos: 2.5,-0.5 parent: 1 - - uid: 2084 + - uid: 119 components: - type: Transform - pos: -0.5,-26.5 + pos: 3.5,-0.5 parent: 1 - - uid: 2085 + - uid: 120 components: - type: Transform - pos: -0.5,-27.5 + pos: 4.5,-0.5 parent: 1 - - uid: 2086 + - uid: 121 components: - type: Transform - pos: -0.5,-28.5 + pos: 5.5,-0.5 parent: 1 - - uid: 2087 + - uid: 122 components: - type: Transform - pos: -0.5,-29.5 + pos: -6.5,-0.5 parent: 1 - - uid: 2088 + - uid: 123 components: - type: Transform - pos: -0.5,-30.5 + pos: -5.5,-0.5 parent: 1 - - uid: 2089 + - uid: 124 components: - type: Transform - pos: -0.5,-31.5 + pos: -4.5,-0.5 parent: 1 - - uid: 2090 + - uid: 125 components: - type: Transform - pos: -0.5,-32.5 + pos: -3.5,-0.5 parent: 1 - - uid: 2091 + - uid: 126 components: - type: Transform - pos: -0.5,-33.5 + pos: -2.5,-0.5 parent: 1 - - uid: 2092 + - uid: 127 components: - type: Transform - pos: -0.5,-34.5 + pos: -1.5,-0.5 parent: 1 - - uid: 2106 + - uid: 128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-15.5 + pos: -0.5,-0.5 parent: 1 - - uid: 3711 + - uid: 129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-50.5 + pos: 0.5,-0.5 parent: 1 - - uid: 3712 + - uid: 130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-51.5 + pos: 1.5,-0.5 parent: 1 - - uid: 3728 + - uid: 167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-52.5 + pos: -0.5,13.5 parent: 1 - - uid: 3729 + - uid: 168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-53.5 + pos: -0.5,12.5 parent: 1 - - uid: 3730 + - uid: 169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-50.5 + pos: -0.5,11.5 parent: 1 - - uid: 3731 + - uid: 170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-51.5 + pos: -0.5,10.5 parent: 1 - - uid: 3732 + - uid: 171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-52.5 + pos: -0.5,9.5 parent: 1 - - uid: 3733 + - uid: 172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-53.5 + pos: -0.5,8.5 parent: 1 - - uid: 3734 + - uid: 173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-54.5 + pos: -0.5,7.5 parent: 1 - - uid: 3735 + - uid: 174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-54.5 + pos: -0.5,6.5 parent: 1 - - uid: 4086 + - uid: 207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-78.5 - parent: 1 - - uid: 4087 + pos: -3.5,1.5 + parent: 8566 + - uid: 210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-77.5 - parent: 1 - - uid: 4089 + pos: -3.5,0.5 + parent: 8566 + - uid: 213 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-77.5 - parent: 1 - - uid: 4090 + pos: -2.5,0.5 + parent: 8566 + - uid: 222 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-78.5 - parent: 1 - - uid: 4091 + pos: -1.5,0.5 + parent: 8566 + - uid: 240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-78.5 - parent: 1 - - uid: 4092 + pos: -1.5,-0.5 + parent: 8566 + - uid: 245 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-77.5 - parent: 1 -- proto: Chair - entities: - - uid: 2425 + pos: -1.5,-1.5 + parent: 8566 + - uid: 262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-98.5 + pos: 21.5,-89.5 parent: 1 - - uid: 2426 + - uid: 263 components: - type: Transform - pos: -4.5,-99.5 + pos: 15.5,-86.5 parent: 1 - - uid: 2428 + - uid: 265 components: - type: Transform - pos: -3.5,-99.5 + pos: 18.5,-93.5 parent: 1 - - uid: 2431 + - uid: 277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-101.5 + pos: 16.5,-86.5 parent: 1 - - uid: 2480 + - uid: 279 components: - type: Transform - pos: -3.5,-93.5 + pos: 22.5,-102.5 parent: 1 - - uid: 2487 + - uid: 280 components: - type: Transform - pos: 3.5,-93.5 + pos: 18.5,-96.5 parent: 1 - - uid: 2495 + - uid: 281 components: - type: Transform - pos: -4.5,-93.5 + pos: 18.5,-94.5 parent: 1 - - uid: 2497 + - uid: 282 components: - type: Transform - pos: -4.5,-96.5 + pos: 17.5,-94.5 parent: 1 - - uid: 2498 + - uid: 284 components: - type: Transform - pos: -3.5,-96.5 + pos: 20.5,-86.5 parent: 1 - - uid: 2500 + - uid: 285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-98.5 + pos: 13.5,-98.5 parent: 1 - - uid: 2503 + - uid: 287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-95.5 + pos: 19.5,-90.5 parent: 1 - - uid: 2511 + - uid: 292 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-101.5 + pos: 18.5,-95.5 parent: 1 - - uid: 2519 + - uid: 429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-101.5 + pos: 6.5,-0.5 parent: 1 - - uid: 2521 + - uid: 430 components: - type: Transform - pos: 2.5,-99.5 + pos: 7.5,-0.5 parent: 1 - - uid: 2522 + - uid: 431 components: - type: Transform - pos: 3.5,-99.5 + pos: 8.5,-0.5 parent: 1 - - uid: 2527 + - uid: 432 components: - type: Transform - pos: 2.5,-96.5 + pos: 9.5,-0.5 parent: 1 - - uid: 2536 + - uid: 433 components: - type: Transform - pos: 3.5,-96.5 + pos: -0.5,-7.5 parent: 1 - - uid: 2906 + - uid: 434 components: - type: Transform - pos: 2.5,-93.5 + pos: -0.5,-8.5 parent: 1 - - uid: 2907 + - uid: 435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-95.5 + pos: -0.5,-9.5 parent: 1 - - uid: 2910 + - uid: 436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-95.5 + pos: -0.5,-10.5 parent: 1 - - uid: 2980 + - uid: 535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-83.5 + pos: 15.5,-90.5 parent: 1 - - uid: 2982 + - uid: 536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-83.5 + pos: 16.5,-94.5 parent: 1 - - uid: 3135 + - uid: 557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-95.5 + pos: 20.5,-102.5 parent: 1 - - uid: 3136 + - uid: 558 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-101.5 + pos: 19.5,-102.5 parent: 1 - - uid: 4573 + - uid: 597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-74.5 + pos: -19.5,-82.5 parent: 1 - - uid: 4574 + - uid: 598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-74.5 + pos: -20.5,-82.5 parent: 1 - - uid: 5413 + - uid: 599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-74.5 + pos: -21.5,-82.5 parent: 1 - - uid: 6308 + - uid: 600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-81.5 + pos: -21.5,-83.5 parent: 1 - - uid: 6322 + - uid: 601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-81.5 + pos: -21.5,-89.5 parent: 1 - - uid: 7563 + - uid: 604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-85.5 + pos: -21.5,-86.5 parent: 1 - - uid: 8823 + - uid: 643 components: - type: Transform - pos: -26.5,-79.5 + pos: 10.5,-0.5 parent: 1 - - uid: 8828 + - uid: 644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-80.5 + pos: 10.5,-1.5 parent: 1 - - uid: 8829 + - uid: 645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-81.5 + pos: 10.5,-2.5 parent: 1 - - uid: 8830 + - uid: 664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-80.5 + pos: -25.5,-90.5 parent: 1 - - uid: 8832 + - uid: 669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-85.5 + pos: -25.5,-91.5 parent: 1 - - uid: 8833 + - uid: 670 components: - type: Transform - pos: -24.5,-79.5 + pos: -21.5,-87.5 parent: 1 - - uid: 8834 + - uid: 688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-83.5 + pos: -22.5,-89.5 parent: 1 - - uid: 8835 + - uid: 689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-85.5 + pos: -23.5,-89.5 parent: 1 - - uid: 8836 + - uid: 695 components: - type: Transform - pos: -23.5,-79.5 + pos: -21.5,-84.5 parent: 1 - - uid: 8837 + - uid: 696 components: - type: Transform - pos: -22.5,-79.5 + pos: -21.5,-85.5 parent: 1 - - uid: 8839 + - uid: 697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-84.5 + pos: -20.5,-84.5 parent: 1 - - uid: 8840 + - uid: 706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-83.5 + pos: -21.5,-88.5 parent: 1 - - uid: 8841 + - uid: 714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-84.5 + pos: -26.5,-91.5 parent: 1 - - uid: 8848 + - uid: 728 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-85.5 + pos: 17.5,-90.5 parent: 1 - - uid: 8849 + - uid: 744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-85.5 + pos: 15.5,-98.5 parent: 1 - - uid: 8855 + - uid: 746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-81.5 + pos: 19.5,-94.5 parent: 1 - - uid: 8862 + - uid: 749 components: - type: Transform - pos: -25.5,-79.5 + pos: 24.5,-102.5 parent: 1 -- proto: ChairPilotSeat - entities: - - uid: 258 + - uid: 754 components: - type: Transform - pos: 0.5,1.5 - parent: 8566 - - uid: 8656 + pos: 21.5,-85.5 + parent: 1 + - uid: 755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 8566 - - uid: 8657 + pos: 21.5,-90.5 + parent: 1 + - uid: 757 components: - type: Transform - pos: 1.5,1.5 - parent: 8566 - - uid: 8658 + pos: 14.5,-94.5 + parent: 1 + - uid: 758 components: - type: Transform - pos: -0.5,1.5 - parent: 8566 - - uid: 8659 + pos: 21.5,-84.5 + parent: 1 + - uid: 759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 8566 - - uid: 8660 + pos: 14.5,-98.5 + parent: 1 + - uid: 779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 8566 - - uid: 10160 + pos: 23.5,-102.5 + parent: 1 + - uid: 790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 10146 -- proto: ChairWood - entities: - - uid: 4474 + pos: 21.5,-86.5 + parent: 1 + - uid: 794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-59.5 + pos: 18.5,-97.5 parent: 1 - - uid: 5387 + - uid: 795 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-59.5 + pos: 18.5,-99.5 parent: 1 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 3825 + - uid: 799 components: - type: Transform - pos: 0.5,-55.5 + pos: 18.5,-100.5 parent: 1 - - uid: 3826 + - uid: 800 components: - type: Transform - pos: -1.5,-49.5 + pos: 18.5,-101.5 parent: 1 - - uid: 3832 + - uid: 1001 components: - type: Transform - pos: 8.5,0.5 + pos: -27.5,-91.5 parent: 1 - - uid: 3834 + - uid: 1092 components: - type: Transform - pos: -1.5,12.5 + pos: -24.5,-89.5 parent: 1 - - uid: 3835 + - uid: 1128 components: - type: Transform - pos: 0.5,12.5 + pos: 18.5,-90.5 parent: 1 - - uid: 4063 + - uid: 1129 components: - type: Transform - pos: -9.5,-81.5 + pos: 18.5,-91.5 parent: 1 - - uid: 4093 + - uid: 1140 components: - type: Transform - pos: -4.5,-79.5 + pos: 21.5,-102.5 parent: 1 - - uid: 4132 + - uid: 1141 components: - type: Transform - pos: 8.5,-83.5 + pos: 21.5,-98.5 parent: 1 - - uid: 4520 + - uid: 1142 components: - type: Transform - pos: 4.5,-75.5 + pos: 13.5,-85.5 parent: 1 - - uid: 4583 + - uid: 1143 components: - type: Transform - pos: 3.5,-75.5 + pos: 17.5,-98.5 parent: 1 - - uid: 5128 + - uid: 1144 components: - type: Transform - pos: 1.5,-78.5 + pos: 14.5,-90.5 parent: 1 - - uid: 5129 + - uid: 1148 components: - type: Transform - pos: 1.5,-79.5 + pos: 20.5,-94.5 parent: 1 - - uid: 5755 + - uid: 1149 components: - type: Transform - pos: -18.5,-81.5 + pos: 13.5,-94.5 parent: 1 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 3515 + - uid: 1150 components: - type: Transform - pos: 8.5,-81.5 + pos: 13.5,-97.5 parent: 1 - - uid: 3518 + - uid: 1151 components: - type: Transform - pos: -9.5,-83.5 + pos: 8.5,-102.5 parent: 1 - - uid: 3824 + - uid: 1153 components: - type: Transform - pos: -1.5,-55.5 + pos: 21.5,-97.5 parent: 1 - - uid: 3827 + - uid: 1154 components: - type: Transform - pos: 0.5,-49.5 + pos: 20.5,-84.5 parent: 1 - - uid: 3833 + - uid: 1155 components: - type: Transform - pos: 8.5,-1.5 + pos: 20.5,-98.5 parent: 1 - - uid: 4570 + - uid: 1156 components: - type: Transform - pos: 3.5,-73.5 + pos: 25.5,-102.5 parent: 1 - - uid: 4585 + - uid: 1174 components: - type: Transform - pos: 4.5,-73.5 + pos: 26.5,-102.5 parent: 1 - - uid: 5126 + - uid: 1176 components: - type: Transform - pos: -2.5,-78.5 + pos: 15.5,-94.5 parent: 1 - - uid: 5127 + - uid: 1178 components: - type: Transform - pos: -2.5,-79.5 + pos: 13.5,-93.5 parent: 1 - - uid: 5754 + - uid: 1179 components: - type: Transform - pos: -18.5,-83.5 + pos: 16.5,-98.5 parent: 1 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 8776 + - uid: 1180 components: - type: Transform - pos: 12.5,-101.5 + pos: 19.5,-84.5 parent: 1 - - uid: 8777 + - uid: 1186 components: - type: Transform - pos: 11.5,-101.5 + pos: 13.5,-90.5 parent: 1 - - uid: 8778 + - uid: 1187 components: - type: Transform - pos: 19.5,-93.5 + pos: 21.5,-94.5 parent: 1 - - uid: 8779 + - uid: 1188 components: - type: Transform - pos: 8.5,-76.5 + pos: 13.5,-89.5 parent: 1 - - uid: 8781 + - uid: 1189 components: - type: Transform - pos: -21.5,-89.5 + pos: 13.5,-86.5 parent: 1 - - uid: 8782 + - uid: 1190 components: - type: Transform - pos: -24.5,-94.5 + pos: 16.5,-90.5 parent: 1 - - uid: 8783 + - uid: 1191 components: - type: Transform - pos: -22.5,-101.5 + pos: 17.5,-84.5 parent: 1 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 3828 + - uid: 1192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-38.5 + pos: 21.5,-93.5 parent: 1 - - uid: 3829 + - uid: 1193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-39.5 + pos: 19.5,-98.5 parent: 1 - - uid: 3830 + - uid: 1195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-38.5 + pos: 14.5,-86.5 parent: 1 - - uid: 3831 + - uid: 1196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-39.5 + pos: 19.5,-90.5 parent: 1 - - uid: 8661 + - uid: 1197 components: - type: Transform - pos: 1.5,2.5 - parent: 8566 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 5023 + pos: 20.5,-90.5 + parent: 1 + - uid: 1198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-74.5 + pos: 17.5,-86.5 parent: 1 - - uid: 8775 + - uid: 1199 components: - type: Transform - pos: 3.5,-84.5 + pos: 19.5,-86.5 parent: 1 - - uid: 8784 + - uid: 1203 components: - type: Transform - pos: 10.5,-73.5 + pos: 18.5,-92.5 parent: 1 - - uid: 8785 + - uid: 1209 components: - type: Transform - pos: 8.5,-73.5 + pos: 18.5,-84.5 parent: 1 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 5027 + - uid: 1211 components: - type: Transform - pos: -4.4978137,-73.49133 + pos: 18.5,-85.5 parent: 1 -- proto: ClothingHeadHelmetEVALarge - entities: - - uid: 5831 + - uid: 1212 components: - type: Transform - pos: 17.601696,-106.62102 + pos: 18.5,-89.5 parent: 1 - - uid: 6048 + - uid: 1215 components: - type: Transform - pos: 12.023572,-104.51164 + pos: 18.5,-87.5 parent: 1 -- proto: ClothingHeadHelmetRiot - entities: - - uid: 8575 + - uid: 1230 components: - type: Transform - pos: 7.5,-61.5 + pos: 15.5,-84.5 parent: 1 - - uid: 8578 + - uid: 1232 components: - type: Transform - pos: 8.489466,-61.327038 + pos: 16.5,-84.5 parent: 1 -- proto: ClothingOuterArmorRiot - entities: - - uid: 8576 + - uid: 1238 components: - type: Transform - pos: 7.5,-61.5 + pos: 18.5,-98.5 parent: 1 - - uid: 8577 + - uid: 1263 components: - type: Transform - pos: 8.5,-61.5 + pos: -25.5,-89.5 parent: 1 -- proto: ClothingOuterHardsuitEVAPrisoner - entities: - - uid: 5997 + - uid: 1264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.583323,-106.00074 + pos: -29.5,-91.5 parent: 1 - - uid: 6054 + - uid: 1269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.198365,-104.860115 + pos: -28.5,-91.5 parent: 1 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 6140 + - uid: 1471 components: - type: Transform - pos: 17.530504,-96.52444 + pos: 18.5,-88.5 parent: 1 -- proto: ClothingUniformJumpsuitPrisoner - entities: - - uid: 4480 + - uid: 1530 components: - type: Transform - pos: 18.5,-59.5 + pos: 14.5,-84.5 parent: 1 - - uid: 5399 + - uid: 1669 components: - type: Transform - pos: 16.5,-59.5 + pos: 18.5,-86.5 parent: 1 - - uid: 5988 + - uid: 1949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.520823,-88.01449 + pos: 0.5,7.5 parent: 1 - - uid: 5989 + - uid: 1950 components: - type: Transform - pos: 8.793309,-78.729385 + pos: 1.5,7.5 parent: 1 - - uid: 5993 + - uid: 1967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.277684,-77.71376 + pos: 11.5,-0.5 parent: 1 - - uid: 6007 + - uid: 1968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.895823,-100.47633 + pos: 12.5,-0.5 parent: 1 -- proto: ComfyChair - entities: - - uid: 3959 + - uid: 1969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-64.5 + pos: 13.5,-0.5 parent: 1 -- proto: ComputerBroken - entities: - - uid: 10161 + - uid: 1970 components: - type: Transform - pos: -0.5,0.5 - parent: 10146 -- proto: ComputerComms - entities: - - uid: 4006 + pos: 14.5,-0.5 + parent: 1 + - uid: 1971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-62.5 + pos: 15.5,-0.5 parent: 1 - - type: CommunicationsConsole - global: True -- proto: ComputerRadar - entities: - - uid: 3965 + - uid: 1972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-66.5 + pos: 16.5,-0.5 parent: 1 -- proto: ComputerTelevision - entities: - - uid: 3016 + - uid: 1973 components: - type: Transform - pos: 2.5,-94.5 + pos: 17.5,-0.5 parent: 1 -- proto: CrateFoodCooking - entities: - - uid: 8873 + - uid: 1974 components: - type: Transform - pos: -30.5,-82.5 + pos: 18.5,-0.5 parent: 1 -- proto: CrateFoodDinnerware - entities: - - uid: 8872 + - uid: 1977 components: - type: Transform - pos: -32.5,-82.5 + pos: 0.5,-6.5 parent: 1 -- proto: CrateFoodMRE - entities: - - uid: 722 + - uid: 1978 components: - type: Transform - pos: -32.5,-78.5 + pos: 1.5,-6.5 parent: 1 - - uid: 724 + - uid: 2006 components: - type: Transform - pos: -32.5,-79.5 + pos: -6.5,1.5 parent: 1 - - uid: 726 + - uid: 2007 components: - type: Transform - pos: -32.5,-80.5 + pos: -6.5,0.5 parent: 1 - - uid: 1565 + - uid: 2416 components: - type: Transform - pos: -33.5,-78.5 + pos: -6.5,-64.5 parent: 1 - - uid: 6534 + - uid: 2537 components: - type: Transform - pos: -33.5,-80.5 + pos: -11.5,-82.5 parent: 1 - - uid: 7475 + - uid: 2544 components: - type: Transform - pos: -33.5,-79.5 + pos: 7.5,-81.5 parent: 1 - - uid: 8818 + - uid: 2548 components: - type: Transform - pos: -31.5,-78.5 + pos: 5.5,-81.5 parent: 1 - - uid: 8819 + - uid: 2565 components: - type: Transform - pos: -31.5,-79.5 + pos: 13.5,-84.5 parent: 1 - - uid: 8820 + - uid: 2592 components: - type: Transform - pos: -30.5,-78.5 + pos: 12.5,-102.5 parent: 1 -- proto: CrateHydroponicsSeeds - entities: - - uid: 5654 + - uid: 2594 components: - type: Transform - pos: -13.5,-92.5 + pos: 10.5,-102.5 parent: 1 -- proto: CrateHydroponicsTools - entities: - - uid: 5759 + - uid: 2598 components: - type: Transform - pos: -12.5,-92.5 + pos: 11.5,-102.5 parent: 1 -- proto: CrateMaterialGlass - entities: - - uid: 5026 + - uid: 2605 components: - type: Transform - pos: -6.5,-74.5 + pos: 9.5,-101.5 parent: 1 -- proto: CrateMaterialSteel - entities: - - uid: 5025 + - uid: 2606 components: - type: Transform - pos: -3.5,-75.5 + pos: 9.5,-102.5 parent: 1 - - uid: 5652 + - uid: 2621 components: - type: Transform - pos: -17.5,-92.5 + pos: 14.5,-102.5 parent: 1 -- proto: CrateTrashCart - entities: - - uid: 7667 + - uid: 2622 components: - type: Transform - pos: 5.5,-62.5 + pos: 13.5,-102.5 parent: 1 -- proto: CrateWoodenGrave - entities: - - uid: 3123 + - uid: 2983 components: - type: Transform - pos: -8.5,-85.5 + pos: -0.5,-76.5 parent: 1 -- proto: CryogenicSleepUnit - entities: - - uid: 8816 + - uid: 3020 components: - type: Transform - pos: 19.5,-67.5 + pos: 3.5,-81.5 parent: 1 - - uid: 8817 + - uid: 3023 components: - type: Transform - pos: 19.5,-68.5 + pos: 6.5,-81.5 parent: 1 -- proto: CrystalGrey - entities: - - uid: 6299 + - uid: 3025 components: - type: Transform - pos: -4.5,-104.5 + pos: 4.5,-81.5 parent: 1 - - uid: 6306 + - uid: 3201 components: - type: Transform - pos: -1.5,-107.5 + pos: -11.5,-83.5 parent: 1 - - uid: 6314 + - uid: 3652 components: - type: Transform - pos: 1.5,-107.5 + pos: -2.5,-54.5 parent: 1 - - uid: 6331 + - uid: 3653 components: - type: Transform - pos: 3.5,-104.5 + pos: 1.5,-54.5 parent: 1 -- proto: CrystalSpawner - entities: - - uid: 228 + - uid: 3656 components: - type: Transform - pos: -10.5,-3.5 + pos: 1.5,-50.5 parent: 1 - - uid: 229 + - uid: 3657 components: - type: Transform - pos: -15.5,0.5 + pos: 2.5,-50.5 parent: 1 - - uid: 230 + - uid: 3658 components: - type: Transform - pos: -10.5,3.5 + pos: 2.5,-50.5 parent: 1 - - uid: 898 + - uid: 3659 components: - type: Transform - pos: -29.5,-91.5 + pos: 2.5,-54.5 parent: 1 - - uid: 936 + - uid: 3660 components: - type: Transform - pos: -12.5,-106.5 + pos: 2.5,-53.5 parent: 1 - - uid: 937 + - uid: 3661 components: - type: Transform - pos: -5.5,-109.5 + pos: 2.5,-52.5 parent: 1 - - uid: 944 + - uid: 3662 components: - type: Transform - pos: -0.5,-109.5 + pos: 2.5,-51.5 parent: 1 - - uid: 950 + - uid: 3663 components: - type: Transform - pos: 5.5,-110.5 + pos: -3.5,-54.5 parent: 1 - - uid: 969 + - uid: 3664 components: - type: Transform - pos: 9.5,-106.5 + pos: -3.5,-53.5 parent: 1 - - uid: 2504 + - uid: 3665 components: - type: Transform - pos: -36.5,-85.5 + pos: -3.5,-52.5 parent: 1 - - uid: 2650 + - uid: 3666 components: - type: Transform - pos: -32.5,-88.5 + pos: -3.5,-51.5 parent: 1 - - uid: 3458 + - uid: 3667 components: - type: Transform - pos: -10.5,-43.5 + pos: -3.5,-50.5 parent: 1 - - uid: 3459 + - uid: 3668 components: - type: Transform - pos: -12.5,-48.5 + pos: -2.5,-50.5 parent: 1 - - uid: 3462 + - uid: 3669 components: - type: Transform - pos: -4.5,-32.5 + pos: -1.5,-48.5 parent: 1 - - uid: 3465 + - uid: 3670 components: - type: Transform - pos: -9.5,-38.5 + pos: -1.5,-49.5 parent: 1 - - uid: 3467 + - uid: 3671 components: - type: Transform - pos: -8.5,-34.5 + pos: -1.5,-50.5 parent: 1 - - uid: 3470 + - uid: 3672 components: - type: Transform - pos: -10.5,-52.5 + pos: -1.5,-50.5 parent: 1 - - uid: 6047 + - uid: 3859 components: - type: Transform - pos: 19.5,-95.5 + pos: -11.5,-84.5 parent: 1 - - uid: 6050 + - uid: 4140 components: - type: Transform - pos: 6.5,-79.5 + pos: -0.5,-84.5 parent: 1 - - uid: 6051 + - uid: 4143 components: - type: Transform - pos: 17.5,-77.5 + pos: -0.5,-83.5 parent: 1 - - uid: 6052 + - uid: 4151 components: - type: Transform - pos: 19.5,-82.5 + pos: -0.5,-81.5 parent: 1 - - uid: 6053 + - uid: 4153 components: - type: Transform - pos: 5.5,-77.5 + pos: -2.5,-84.5 parent: 1 - - uid: 6055 + - uid: 4154 components: - type: Transform - pos: 16.5,-87.5 + pos: -1.5,-85.5 parent: 1 - - uid: 6497 + - uid: 4160 components: - type: Transform - pos: 18.5,-109.5 + pos: -2.5,-85.5 parent: 1 - - uid: 6502 + - uid: 4166 components: - type: Transform - pos: 13.5,-111.5 + pos: -0.5,-82.5 parent: 1 - - uid: 6526 + - uid: 4171 components: - type: Transform - pos: 17.5,-111.5 + pos: -0.5,-85.5 parent: 1 - - uid: 7548 + - uid: 4777 components: - type: Transform - pos: -10.5,-105.5 + pos: -2.5,-66.5 parent: 1 - - uid: 7549 + - uid: 4779 components: - type: Transform - pos: -12.5,-97.5 + pos: -3.5,-64.5 parent: 1 - - uid: 7550 + - uid: 4845 components: - type: Transform - pos: -18.5,-96.5 + pos: -1.5,-60.5 parent: 1 - - uid: 7551 + - uid: 4846 components: - type: Transform - pos: -13.5,-94.5 + pos: -1.5,-61.5 parent: 1 - - uid: 7552 + - uid: 4847 components: - type: Transform - pos: -24.5,-96.5 + pos: -1.5,-62.5 parent: 1 - - uid: 7553 + - uid: 4848 components: - type: Transform - pos: -19.5,-92.5 + pos: -1.5,-63.5 parent: 1 - - uid: 7557 + - uid: 4849 components: - type: Transform - pos: -16.5,-73.5 + pos: -1.5,-64.5 parent: 1 - - uid: 7558 + - uid: 4850 components: - type: Transform - pos: -13.5,-73.5 + pos: -1.5,-65.5 parent: 1 - - uid: 7559 + - uid: 4851 components: - type: Transform - pos: -9.5,-67.5 + pos: -1.5,-66.5 parent: 1 - - uid: 7560 + - uid: 4852 components: - type: Transform - pos: -16.5,-58.5 + pos: -1.5,-67.5 parent: 1 - - uid: 7561 + - uid: 4853 components: - type: Transform - pos: -9.5,-61.5 + pos: -1.5,-68.5 parent: 1 - - uid: 9033 + - uid: 4855 components: - type: Transform - pos: -21.5,-75.5 + pos: -1.5,-59.5 parent: 1 - - uid: 9035 + - uid: 4856 components: - type: Transform - pos: -28.5,-75.5 + pos: -1.5,-58.5 parent: 1 - - uid: 10051 + - uid: 4857 components: - type: Transform - pos: -27.5,-125.5 + pos: -1.5,-57.5 parent: 1 - - uid: 10074 + - uid: 4858 components: - type: Transform - pos: -30.5,-119.5 + pos: -1.5,-56.5 parent: 1 - - uid: 10111 + - uid: 4859 components: - type: Transform - pos: -38.5,-113.5 + pos: -1.5,-55.5 parent: 1 - - uid: 10112 + - uid: 4860 components: - type: Transform - pos: -29.5,-118.5 + pos: -1.5,-54.5 parent: 1 - - uid: 10129 + - uid: 4861 components: - type: Transform - pos: -36.5,-123.5 + pos: 0.5,-54.5 parent: 1 - - uid: 10178 + - uid: 4862 components: - type: Transform - pos: -39.5,-115.5 + pos: 0.5,-55.5 parent: 1 - - uid: 10179 + - uid: 4863 components: - type: Transform - pos: -33.5,-102.5 + pos: 0.5,-56.5 parent: 1 - - uid: 10215 + - uid: 4864 components: - type: Transform - pos: -27.5,-99.5 + pos: 0.5,-57.5 parent: 1 - - uid: 10217 + - uid: 4865 components: - type: Transform - pos: -28.5,-95.5 + pos: 0.5,-58.5 parent: 1 - - uid: 10279 + - uid: 4866 components: - type: Transform - pos: -35.5,-75.5 + pos: 0.5,-59.5 parent: 1 - - uid: 10280 + - uid: 4867 components: - type: Transform - pos: -35.5,-80.5 + pos: 0.5,-60.5 parent: 1 -- proto: CyborgEndoskeleton - entities: - - uid: 5637 + - uid: 4868 components: - type: Transform - pos: -16.436348,-89.45624 + pos: 0.5,-61.5 parent: 1 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 4977 + - uid: 4869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-76.5 + pos: 0.5,-62.5 parent: 1 -- proto: DeskBell - entities: - - uid: 3048 + - uid: 4870 components: - type: Transform - pos: -0.08877623,-39.506153 + pos: 0.5,-63.5 parent: 1 -- proto: DonkpocketBoxSpawner - entities: - - uid: 4945 + - uid: 4871 components: - type: Transform - pos: 3.5,-64.5 + pos: 0.5,-64.5 parent: 1 - - uid: 8883 + - uid: 4872 components: - type: Transform - pos: -29.5,-84.5 + pos: 1.5,-64.5 parent: 1 -- proto: DresserFilled - entities: - - uid: 3922 + - uid: 4873 components: - type: Transform - pos: -5.5,-69.5 + pos: 2.5,-64.5 parent: 1 - - uid: 3923 + - uid: 4874 components: - type: Transform - pos: -5.5,-65.5 + pos: 3.5,-64.5 parent: 1 - - uid: 3924 + - uid: 4875 components: - type: Transform - pos: -5.5,-61.5 + pos: 4.5,-64.5 parent: 1 - - uid: 3925 + - uid: 4876 components: - type: Transform - pos: -5.5,-57.5 + pos: 5.5,-64.5 parent: 1 - - uid: 4003 + - uid: 4877 components: - type: Transform - pos: 8.5,-63.5 + pos: 6.5,-64.5 parent: 1 -- proto: Dropper - entities: - - uid: 5640 + - uid: 4878 components: - type: Transform - pos: -11.327644,-92.17483 + pos: 7.5,-64.5 parent: 1 - - uid: 8882 + - uid: 4879 components: - type: Transform - pos: -33.378662,-83.23507 + pos: 8.5,-64.5 parent: 1 -- proto: EmergencyRollerBed - entities: - - uid: 4587 + - uid: 4880 components: - type: Transform - pos: 15.5,-74.5 + pos: 9.5,-64.5 parent: 1 - - uid: 4602 + - uid: 4881 components: - type: Transform - pos: 19.5,-74.5 + pos: 9.5,-65.5 parent: 1 -- proto: FaxMachineBase - entities: - - uid: 3963 + - uid: 4882 components: - type: Transform - pos: 3.5,-63.5 + pos: 9.5,-66.5 parent: 1 - - type: FaxMachine - name: PRISON -- proto: FireAlarm - entities: - - uid: 208 + - uid: 4905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 8566 - - uid: 7622 + pos: -2.5,-62.5 + parent: 1 + - uid: 4926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-53.5 + pos: -2.5,-64.5 parent: 1 - - uid: 7624 + - uid: 4929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-64.5 + pos: -4.5,-64.5 parent: 1 - - uid: 7625 + - uid: 4930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-80.5 + pos: -5.5,-64.5 parent: 1 - - uid: 8897 + - uid: 5030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-84.5 + pos: -1.5,-69.5 parent: 1 -- proto: Firelock - entities: - - uid: 2400 + - uid: 5031 components: - type: Transform - pos: 12.5,-74.5 + pos: -1.5,-70.5 parent: 1 - - uid: 2430 + - uid: 5032 components: - type: Transform - pos: 6.5,-74.5 + pos: -1.5,-71.5 parent: 1 - - uid: 3168 + - uid: 5034 components: - type: Transform - pos: 1.5,-52.5 + pos: -1.5,-73.5 parent: 1 - - uid: 3172 + - uid: 5035 components: - type: Transform - pos: -2.5,-52.5 + pos: -1.5,-74.5 parent: 1 - - uid: 3857 + - uid: 5036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-58.5 + pos: -1.5,-75.5 parent: 1 - - uid: 7599 + - uid: 5037 components: - type: Transform - pos: 0.5,-80.5 + pos: -2.5,-75.5 parent: 1 - - uid: 7600 + - uid: 5038 components: - type: Transform - pos: 0.5,-80.5 + pos: 0.5,-65.5 parent: 1 - - uid: 7601 + - uid: 5039 components: - type: Transform - pos: -0.5,-80.5 + pos: 0.5,-66.5 parent: 1 - - uid: 7602 + - uid: 5040 components: - type: Transform - pos: -1.5,-80.5 + pos: 0.5,-67.5 parent: 1 - - uid: 7603 + - uid: 5041 components: - type: Transform - pos: -5.5,-80.5 + pos: 0.5,-68.5 parent: 1 - - uid: 7604 + - uid: 5042 components: - type: Transform - pos: -8.5,-82.5 + pos: 0.5,-69.5 parent: 1 - - uid: 7605 + - uid: 5043 components: - type: Transform - pos: 7.5,-82.5 + pos: 0.5,-70.5 parent: 1 - - uid: 7606 + - uid: 5044 components: - type: Transform - pos: -1.5,-84.5 + pos: 0.5,-71.5 parent: 1 - - uid: 7607 + - uid: 5046 components: - type: Transform - pos: -0.5,-84.5 + pos: 0.5,-73.5 parent: 1 - - uid: 7608 + - uid: 5047 components: - type: Transform - pos: 0.5,-84.5 + pos: 0.5,-74.5 parent: 1 - - uid: 7609 + - uid: 5048 components: - type: Transform - pos: -14.5,-80.5 + pos: 1.5,-74.5 parent: 1 - - uid: 7610 + - uid: 5049 components: - type: Transform - pos: -13.5,-80.5 + pos: 2.5,-74.5 parent: 1 - - uid: 7611 + - uid: 5050 components: - type: Transform - pos: -14.5,-84.5 + pos: 3.5,-74.5 parent: 1 - - uid: 7612 + - uid: 5051 components: - type: Transform - pos: -13.5,-84.5 + pos: 4.5,-74.5 parent: 1 - - uid: 7613 + - uid: 5052 components: - type: Transform - pos: -2.5,-74.5 + pos: 5.5,-74.5 parent: 1 - - uid: 7614 + - uid: 5053 components: - type: Transform - pos: -2.5,-70.5 + pos: 6.5,-74.5 parent: 1 - - uid: 7615 + - uid: 5456 components: - type: Transform - pos: 1.5,-74.5 + pos: 7.5,-74.5 parent: 1 - - uid: 7616 + - uid: 5457 components: - type: Transform - pos: -2.5,-66.5 + pos: 8.5,-74.5 parent: 1 - - uid: 7617 + - uid: 5458 components: - type: Transform - pos: -2.5,-62.5 + pos: 9.5,-74.5 parent: 1 - - uid: 7619 + - uid: 5459 components: - type: Transform - pos: -0.5,-56.5 + pos: 9.5,-75.5 parent: 1 - - uid: 7620 + - uid: 5533 components: - type: Transform - pos: 6.5,-64.5 + pos: -9.5,-77.5 parent: 1 - - uid: 7621 + - uid: 5534 components: - type: Transform - pos: -0.5,-48.5 + pos: -8.5,-77.5 parent: 1 - - uid: 8977 + - uid: 5536 components: - type: Transform - pos: -31.5,-81.5 + pos: -8.5,-76.5 parent: 1 - - uid: 8978 + - uid: 5552 components: - type: Transform - pos: -29.5,-83.5 + pos: 1.5,-81.5 parent: 1 - - uid: 8979 + - uid: 5568 components: - type: Transform - pos: -29.5,-84.5 + pos: 2.5,-81.5 parent: 1 - - uid: 8980 + - uid: 5570 components: - type: Transform - pos: -29.5,-85.5 + pos: 0.5,-81.5 parent: 1 -- proto: FirelockEdge - entities: - - uid: 8981 + - uid: 5577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-86.5 + pos: -6.5,-81.5 parent: 1 -- proto: Floodlight - entities: - - uid: 1137 + - uid: 5578 components: - type: Transform - pos: 0.8288462,14.809326 + pos: -7.5,-81.5 parent: 1 - - uid: 1138 + - uid: 5593 components: - type: Transform - pos: -1.9524038,14.778076 + pos: -8.5,-81.5 parent: 1 -- proto: FloorDrain - entities: - - uid: 271 + - uid: 5594 components: - type: Transform - pos: -12.5,-76.5 + pos: -10.5,-81.5 parent: 1 - - type: Fixtures - fixtures: {} - - uid: 272 + - uid: 5596 components: - type: Transform - pos: -12.5,-78.5 + pos: -9.5,-81.5 parent: 1 - - type: Fixtures - fixtures: {} - - uid: 273 + - uid: 5627 components: - type: Transform - pos: -14.5,-78.5 + pos: -12.5,-81.5 parent: 1 - - type: Fixtures - fixtures: {} - - uid: 274 + - uid: 5628 components: - type: Transform - pos: -14.5,-76.5 + pos: -11.5,-81.5 parent: 1 - - type: Fixtures - fixtures: {} - - uid: 275 + - uid: 5629 components: - type: Transform - pos: -16.5,-76.5 + pos: -12.5,-80.5 parent: 1 - - type: Fixtures - fixtures: {} - - uid: 276 + - uid: 5810 components: - type: Transform - pos: -16.5,-78.5 + pos: 10.5,-74.5 parent: 1 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemGratingMaint - entities: - - uid: 5024 + - uid: 5811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.4978137,-73.47571 + pos: 11.5,-74.5 parent: 1 -- proto: FloraTree01 - entities: - - uid: 2468 + - uid: 5913 components: - type: Transform - pos: -8.0479355,-96.52573 + pos: 1.5,-77.5 parent: 1 -- proto: FloraTree02 - entities: - - uid: 2475 + - uid: 5914 components: - type: Transform - pos: 7.0776973,-96.65173 + pos: 0.5,-77.5 parent: 1 -- proto: FloraTree03 - entities: - - uid: 2469 + - uid: 5915 components: - type: Transform - pos: -7.907311,-91.33345 + pos: -0.5,-77.5 parent: 1 -- proto: FloraTree06 - entities: - - uid: 2474 + - uid: 5916 components: - type: Transform - pos: 7.1773014,-91.21377 + pos: -0.5,-78.5 parent: 1 -- proto: FloraTreeLarge03 - entities: - - uid: 2454 + - uid: 5917 components: - type: Transform - pos: 7.0921116,-102.15223 + pos: -0.5,-79.5 parent: 1 - - uid: 2883 + - uid: 5922 components: - type: Transform - pos: 6.8794136,-86.270744 + pos: -2.5,-80.5 parent: 1 - - uid: 2900 + - uid: 6203 components: - type: Transform - pos: -7.9600058,-86.39285 + pos: -8.5,-79.5 parent: 1 - - uid: 2905 + - uid: 6210 components: - type: Transform - pos: -7.907311,-101.98691 + pos: -8.5,-78.5 parent: 1 -- proto: FoodBowlBigTrash - entities: - - uid: 5832 + - uid: 6226 components: - type: Transform - pos: 5.0230412,-79.60085 + pos: -6.5,-79.5 parent: 1 -- proto: FoodMeatRat - entities: - - uid: 8553 + - uid: 6234 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8554 + pos: -7.5,-79.5 + parent: 1 + - uid: 6242 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8555 + pos: -5.5,-79.5 + parent: 1 + - uid: 6250 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8556 + pos: -5.5,-81.5 + parent: 1 + - uid: 6251 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8557 + pos: -5.5,-80.5 + parent: 1 + - uid: 6258 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8558 + pos: -3.5,-81.5 + parent: 1 + - uid: 6260 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8559 + pos: -4.5,-81.5 + parent: 1 + - uid: 6268 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8560 + pos: -1.5,-81.5 + parent: 1 + - uid: 6276 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8561 + pos: -2.5,-81.5 + parent: 1 + - uid: 6284 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8562 + pos: -0.5,-74.5 + parent: 1 + - uid: 6292 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 5405 + pos: -0.5,-75.5 + parent: 1 + - uid: 7474 components: - type: Transform - pos: 17.5,-58.5 + pos: 12.5,-74.5 parent: 1 -- proto: FoodMeatRotten - entities: - - uid: 2020 + - uid: 7476 components: - type: Transform - pos: 3.0095332,15.295967 + pos: 13.5,-74.5 parent: 1 -- proto: FoodPizzaVegetable - entities: - - uid: 8552 + - uid: 8227 components: - type: Transform - parent: 8551 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPlateSmallTrash - entities: - - uid: 5852 + pos: 0.5,-0.5 + parent: 8217 + - uid: 8228 components: - type: Transform - pos: 7.9761662,-78.61648 - parent: 1 -- proto: FoodPlateTrash - entities: - - uid: 5833 + pos: -0.5,-0.5 + parent: 8217 + - uid: 8229 components: - type: Transform - pos: 4.4605412,-77.64773 - parent: 1 -- proto: ForkPlastic - entities: - - uid: 8565 + pos: -0.5,0.5 + parent: 8217 + - uid: 8230 components: - type: Transform - pos: -12.625984,-85.5846 - parent: 1 -- proto: GasDualPortVentPump - entities: - - uid: 650 + pos: -1.5,0.5 + parent: 8217 + - uid: 8589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,0.5 + pos: 10.5,-69.5 parent: 1 - - uid: 688 + - uid: 8590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-82.5 + pos: 11.5,-69.5 parent: 1 - - uid: 695 + - uid: 8591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-82.5 + pos: 1.5,-69.5 parent: 1 - - uid: 3569 + - uid: 8592 components: - type: Transform - pos: -3.5,-45.5 + pos: 2.5,-69.5 parent: 1 - - uid: 3570 + - uid: 8593 components: - type: Transform - pos: -2.5,-45.5 + pos: 3.5,-69.5 parent: 1 - - uid: 3571 + - uid: 8594 components: - type: Transform - pos: -1.5,-45.5 + pos: 4.5,-69.5 parent: 1 - - uid: 4165 + - uid: 8595 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-92.5 + pos: 5.5,-69.5 parent: 1 - - uid: 4493 + - uid: 8596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-74.5 + pos: 6.5,-69.5 parent: 1 - - uid: 4568 + - uid: 8597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-70.5 + pos: 7.5,-69.5 parent: 1 - - uid: 4771 + - uid: 8598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-58.5 + pos: 8.5,-69.5 parent: 1 - - uid: 4773 + - uid: 8599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-62.5 + pos: 9.5,-69.5 parent: 1 - - uid: 4774 + - uid: 8600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-66.5 + pos: 2.5,-59.5 parent: 1 - - uid: 4775 + - uid: 8601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-70.5 + pos: 1.5,-59.5 parent: 1 - - uid: 5077 + - uid: 8602 components: - type: Transform - pos: -1.5,-74.5 + pos: 11.5,-59.5 parent: 1 - - uid: 5439 + - uid: 8603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-74.5 + pos: 10.5,-59.5 parent: 1 - - uid: 5918 + - uid: 8604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-84.5 + pos: 9.5,-59.5 parent: 1 - - uid: 5960 + - uid: 8605 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-96.5 + pos: 8.5,-59.5 parent: 1 - - uid: 7571 + - uid: 8606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-86.5 + pos: 7.5,-59.5 parent: 1 - - uid: 9037 + - uid: 8607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-82.5 + pos: 6.5,-59.5 parent: 1 - - uid: 9046 + - uid: 8608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-82.5 + pos: 5.5,-59.5 parent: 1 -- proto: GasPassiveVent - entities: - - uid: 666 + - uid: 8609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,14.5 + pos: 4.5,-59.5 parent: 1 -- proto: GasPipeBend - entities: - - uid: 615 + - uid: 8610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,0.5 + pos: 3.5,-59.5 parent: 1 - - uid: 616 + - uid: 8711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 + pos: 14.5,-74.5 parent: 1 - - uid: 648 + - uid: 8712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-0.5 + pos: 15.5,-74.5 parent: 1 - - uid: 649 + - uid: 8713 components: - type: Transform - pos: 8.5,0.5 + pos: 16.5,-74.5 parent: 1 - - uid: 651 + - uid: 8714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 + pos: 17.5,-74.5 parent: 1 - - uid: 664 + - uid: 8715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 + pos: 18.5,-74.5 parent: 1 - - uid: 667 + - uid: 8716 components: - type: Transform - pos: -0.5,14.5 + pos: 19.5,-74.5 parent: 1 - - uid: 668 + - uid: 8717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 + pos: 19.5,-73.5 parent: 1 - - uid: 669 + - uid: 8718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-1.5 + pos: 19.5,-72.5 parent: 1 - - uid: 1930 + - uid: 8719 components: - type: Transform - pos: 0.5,-1.5 + pos: 19.5,-71.5 parent: 1 - - uid: 2111 + - uid: 8720 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-99.5 + pos: 19.5,-70.5 parent: 1 - - uid: 3584 + - uid: 8721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-46.5 + pos: 19.5,-69.5 parent: 1 - - uid: 3585 + - uid: 8722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-46.5 + pos: 19.5,-68.5 parent: 1 - - uid: 3774 + - uid: 8723 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-50.5 + pos: 19.5,-67.5 parent: 1 - - uid: 3775 + - uid: 8724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-54.5 + pos: 19.5,-66.5 parent: 1 - - uid: 3776 + - uid: 8725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-53.5 + pos: 19.5,-65.5 parent: 1 - - uid: 3777 + - uid: 8726 components: - type: Transform - pos: -5.5,-51.5 + pos: 19.5,-64.5 parent: 1 - - uid: 3779 + - uid: 8728 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-51.5 + pos: 20.5,-70.5 parent: 1 - - uid: 3788 + - uid: 8898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-47.5 + pos: -12.5,-82.5 parent: 1 - - uid: 3789 + - uid: 8899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-47.5 + pos: -13.5,-82.5 parent: 1 - - uid: 3796 + - uid: 8900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-47.5 + pos: -14.5,-82.5 parent: 1 - - uid: 3797 + - uid: 8901 components: - type: Transform - pos: -1.5,-47.5 + pos: -15.5,-82.5 parent: 1 - - uid: 3802 + - uid: 8902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-53.5 + pos: -16.5,-82.5 parent: 1 - - uid: 3803 + - uid: 8903 components: - type: Transform - pos: -1.5,-53.5 + pos: -17.5,-82.5 parent: 1 - - uid: 4125 + - uid: 8904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-99.5 + pos: -18.5,-82.5 parent: 1 - - uid: 4139 + - uid: 10156 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-91.5 - parent: 1 - - uid: 4177 + pos: 0.5,-0.5 + parent: 10146 + - uid: 10157 components: - type: Transform - pos: 1.5,-91.5 - parent: 1 - - uid: 4791 + pos: -0.5,-0.5 + parent: 10146 + - uid: 10158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-57.5 - parent: 1 - - uid: 4792 + pos: -0.5,0.5 + parent: 10146 + - uid: 10159 components: - type: Transform - pos: -0.5,-57.5 - parent: 1 - - uid: 4810 + pos: -1.5,0.5 + parent: 10146 + - uid: 10940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-64.5 - parent: 1 - - uid: 4814 + pos: 0.5,-0.5 + parent: 10867 + - uid: 10941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-68.5 - parent: 1 - - uid: 4828 + pos: -0.5,-0.5 + parent: 10867 + - uid: 10942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-69.5 - parent: 1 - - uid: 4829 + pos: -0.5,0.5 + parent: 10867 + - uid: 10943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-69.5 - parent: 1 - - uid: 4830 + pos: -1.5,0.5 + parent: 10867 + - uid: 11267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-70.5 + pos: 17.5,-102.5 parent: 1 - - uid: 4831 + - uid: 11268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-70.5 + pos: 15.5,-102.5 parent: 1 - - uid: 4837 + - uid: 11269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-59.5 + pos: 16.5,-102.5 parent: 1 - - uid: 4838 + - uid: 11270 components: - type: Transform - pos: 2.5,-59.5 + pos: 18.5,-102.5 parent: 1 - - uid: 5137 + - uid: 11465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-73.5 + pos: 18.5,-64.5 parent: 1 - - uid: 5403 + - uid: 11466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-74.5 + pos: 17.5,-64.5 parent: 1 - - uid: 5441 + - uid: 11467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-74.5 + pos: 16.5,-64.5 parent: 1 - - uid: 5442 + - uid: 11468 components: - type: Transform - pos: 2.5,-73.5 + pos: 15.5,-64.5 parent: 1 - - uid: 7574 + - uid: 11469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-91.5 + pos: 14.5,-64.5 parent: 1 - - uid: 7575 + - uid: 11470 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -12.5,-91.5 + pos: 13.5,-64.5 parent: 1 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7577 + - uid: 11471 components: - type: Transform - pos: -12.5,-85.5 + pos: 12.5,-64.5 parent: 1 - - uid: 7578 + - uid: 12607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-85.5 + pos: 31.5,-78.5 parent: 1 - - uid: 9050 + - uid: 12608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-82.5 + pos: 31.5,-79.5 parent: 1 - - uid: 9051 + - uid: 12609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-83.5 + pos: 31.5,-80.5 parent: 1 - - uid: 9065 + - uid: 12610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-83.5 + pos: 31.5,-81.5 parent: 1 -- proto: GasPipeFourway - entities: - - uid: 706 + - uid: 12611 components: - type: Transform - pos: -13.5,-83.5 + pos: 30.5,-81.5 parent: 1 - - uid: 725 + - uid: 12612 components: - type: Transform - pos: -14.5,-82.5 + pos: 30.5,-80.5 parent: 1 - - uid: 1931 + - uid: 12839 components: - type: Transform - pos: -1.5,-1.5 + pos: 9.5,-76.5 parent: 1 - - uid: 3578 + - uid: 12840 components: - type: Transform - pos: 1.5,-44.5 + pos: 10.5,-76.5 parent: 1 - - uid: 3579 + - uid: 12841 components: - type: Transform - pos: 1.5,-45.5 + pos: 10.5,-75.5 parent: 1 - - uid: 3586 + - uid: 12842 components: - type: Transform - pos: -2.5,-46.5 + pos: 10.5,-75.5 parent: 1 - - uid: 3778 + - uid: 12861 components: - type: Transform - pos: -5.5,-52.5 + pos: 10.5,-77.5 parent: 1 - - uid: 3787 + - uid: 12862 components: - type: Transform - pos: 0.5,-52.5 + pos: 10.5,-78.5 parent: 1 - - uid: 4126 + - uid: 12863 components: - type: Transform - pos: -1.5,-82.5 + pos: 11.5,-78.5 parent: 1 - - uid: 4152 + - uid: 12864 components: - type: Transform - pos: 0.5,-83.5 + pos: 12.5,-78.5 parent: 1 -- proto: GasPipeStraight - entities: - - uid: 618 + - uid: 12879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 + pos: 10.5,-79.5 parent: 1 - - uid: 619 + - uid: 12880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 + pos: 10.5,-80.5 parent: 1 - - uid: 620 + - uid: 12881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 + pos: 10.5,-81.5 parent: 1 - - uid: 621 + - uid: 12882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 + pos: 10.5,-82.5 parent: 1 - - uid: 622 + - uid: 12883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 + pos: 11.5,-82.5 parent: 1 - - uid: 647 + - uid: 12884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 + pos: 12.5,-82.5 parent: 1 - - uid: 652 + - uid: 12885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: 13.5,-82.5 parent: 1 - - uid: 653 + - uid: 12886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 + pos: 14.5,-82.5 parent: 1 - - uid: 654 + - uid: 12887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 + pos: 15.5,-82.5 parent: 1 - - uid: 655 + - uid: 12888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 + pos: 16.5,-82.5 parent: 1 - - uid: 656 + - uid: 12889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 + pos: 17.5,-82.5 parent: 1 - - uid: 657 + - uid: 12890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: 18.5,-82.5 parent: 1 - - uid: 658 + - uid: 12891 components: - type: Transform - pos: 0.5,1.5 + pos: 19.5,-82.5 parent: 1 - - uid: 659 + - uid: 12892 components: - type: Transform - pos: 0.5,2.5 + pos: 20.5,-82.5 parent: 1 - - uid: 660 + - uid: 12893 components: - type: Transform - pos: 0.5,3.5 + pos: 20.5,-81.5 parent: 1 - - uid: 661 + - uid: 12894 components: - type: Transform - pos: 0.5,4.5 + pos: 20.5,-80.5 parent: 1 - - uid: 662 + - uid: 12895 components: - type: Transform - pos: 0.5,5.5 + pos: 20.5,-79.5 parent: 1 - - uid: 663 + - uid: 12896 components: - type: Transform - pos: 0.5,6.5 + pos: 20.5,-78.5 parent: 1 - - uid: 1925 + - uid: 12897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,14.5 + pos: 20.5,-77.5 parent: 1 - - uid: 1932 + - uid: 12898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 + pos: 20.5,-76.5 parent: 1 - - uid: 1933 + - uid: 12899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 + pos: 20.5,-75.5 parent: 1 - - uid: 1935 +- proto: CableTerminal + entities: + - uid: 627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,1.5 + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 parent: 1 - - uid: 1936 + - uid: 628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,2.5 + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 parent: 1 - - uid: 1937 + - uid: 1131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 + rot: -1.5707963267948966 rad + pos: 11.5,-101.5 parent: 1 - - uid: 1938 + - uid: 3627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,4.5 + pos: 4.5,-52.5 parent: 1 - - uid: 1939 + - uid: 3630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,5.5 + pos: 3.5,-52.5 parent: 1 - - uid: 1940 + - uid: 5497 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,6.5 + pos: -5.5,-78.5 parent: 1 - - uid: 1941 + - uid: 5507 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,7.5 + pos: -4.5,-78.5 parent: 1 - - uid: 1942 + - uid: 5508 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,8.5 + pos: -6.5,-78.5 parent: 1 - - uid: 1943 +- proto: CapacitorStockPart + entities: + - uid: 6302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,9.5 + pos: -12.716693,-95.57355 parent: 1 - - uid: 1944 + - uid: 6312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,10.5 + pos: -12.388568,-95.7298 parent: 1 - - uid: 1945 +- proto: Catwalk + entities: + - uid: 2 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,11.5 + pos: 8.5,-0.5 parent: 1 - - uid: 3581 + - uid: 3 components: - type: Transform - pos: -3.5,-44.5 + pos: 7.5,-0.5 parent: 1 - - uid: 3582 + - uid: 4 components: - type: Transform - pos: -2.5,-44.5 + pos: 6.5,-0.5 parent: 1 - - uid: 3583 + - uid: 5 components: - type: Transform - pos: -1.5,-44.5 + pos: 5.5,-0.5 parent: 1 - - uid: 3587 + - uid: 6 components: - type: Transform - pos: 1.5,-46.5 + pos: 4.5,-0.5 parent: 1 - - uid: 3780 + - uid: 7 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-51.5 + pos: 3.5,-0.5 parent: 1 - - uid: 3782 + - uid: 8 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-52.5 + pos: 2.5,-0.5 parent: 1 - - uid: 3783 + - uid: 9 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-52.5 + pos: 1.5,-0.5 parent: 1 - - uid: 3784 + - uid: 10 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-52.5 + pos: 0.5,-0.5 parent: 1 - - uid: 3785 + - uid: 11 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-52.5 + pos: -0.5,-0.5 parent: 1 - - uid: 3786 + - uid: 12 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-52.5 + pos: -1.5,-0.5 parent: 1 - - uid: 3790 + - uid: 13 components: - type: Transform - pos: 0.5,-48.5 + pos: -2.5,-0.5 parent: 1 - - uid: 3791 + - uid: 14 components: - type: Transform - pos: 0.5,-49.5 + pos: -3.5,-0.5 parent: 1 - - uid: 3793 + - uid: 15 components: - type: Transform - pos: 0.5,-51.5 + pos: -4.5,-0.5 parent: 1 - - uid: 3794 + - uid: 17 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-52.5 + pos: -6.5,-0.5 parent: 1 - - uid: 3798 + - uid: 18 components: - type: Transform - pos: -1.5,-48.5 + pos: -7.5,-0.5 parent: 1 - - uid: 3799 + - uid: 19 components: - type: Transform - pos: -1.5,-49.5 + pos: -8.5,-0.5 parent: 1 - - uid: 3800 + - uid: 20 components: - type: Transform - pos: -1.5,-50.5 + pos: -9.5,-0.5 parent: 1 - - uid: 3804 + - uid: 21 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-53.5 + pos: -0.5,-1.5 parent: 1 - - uid: 3805 + - uid: 22 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-53.5 + pos: -0.5,-2.5 parent: 1 - - uid: 4102 + - uid: 23 components: - type: Transform - pos: 0.5,-86.5 + pos: -0.5,-3.5 parent: 1 - - uid: 4106 + - uid: 24 components: - type: Transform - pos: 0.5,-84.5 + pos: -0.5,-4.5 parent: 1 - - uid: 4107 + - uid: 25 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-94.5 + pos: -0.5,-5.5 parent: 1 - - uid: 4112 + - uid: 26 components: - type: Transform - pos: 0.5,-87.5 + pos: -0.5,-6.5 parent: 1 - - uid: 4115 + - uid: 27 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-95.5 + pos: -0.5,-7.5 parent: 1 - - uid: 4116 + - uid: 28 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-96.5 + pos: -0.5,0.5 parent: 1 - - uid: 4117 + - uid: 29 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-93.5 + pos: -0.5,1.5 parent: 1 - - uid: 4118 + - uid: 30 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-98.5 + pos: -0.5,2.5 parent: 1 - - uid: 4119 + - uid: 31 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-97.5 + pos: -0.5,3.5 parent: 1 - - uid: 4120 + - uid: 32 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-90.5 + pos: -0.5,4.5 parent: 1 - - uid: 4127 + - uid: 33 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-91.5 + pos: -0.5,5.5 parent: 1 - - uid: 4133 + - uid: 34 components: - type: Transform - pos: 0.5,-85.5 + pos: -0.5,6.5 parent: 1 - - uid: 4134 + - uid: 80 components: - type: Transform - pos: 0.5,-88.5 + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 parent: 1 - - uid: 4142 + - uid: 81 components: - type: Transform - pos: 0.5,-82.5 + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 parent: 1 - - uid: 4174 + - uid: 82 components: - type: Transform - pos: 0.5,-90.5 + rot: -1.5707963267948966 rad + pos: -1.5,0.5 parent: 1 - - uid: 4178 + - uid: 83 components: - type: Transform - pos: 0.5,-89.5 + rot: -1.5707963267948966 rad + pos: 0.5,0.5 parent: 1 - - uid: 4488 + - uid: 152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-74.5 + pos: -0.5,13.5 parent: 1 - - uid: 4496 + - uid: 153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-74.5 + pos: -0.5,12.5 parent: 1 - - uid: 4499 + - uid: 154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-74.5 + pos: -0.5,11.5 parent: 1 - - uid: 4503 + - uid: 155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-74.5 + pos: -0.5,10.5 parent: 1 - - uid: 4518 + - uid: 156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-74.5 + pos: -0.5,9.5 parent: 1 - - uid: 4526 + - uid: 157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-74.5 + pos: -0.5,8.5 parent: 1 - - uid: 4527 + - uid: 158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-74.5 + pos: -0.5,7.5 parent: 1 - - uid: 4575 + - uid: 181 components: - type: Transform - pos: 17.5,-72.5 + pos: -5.5,-0.5 parent: 1 - - uid: 4590 + - uid: 441 components: - type: Transform - pos: 15.5,-72.5 + pos: -0.5,-8.5 parent: 1 - - uid: 4595 + - uid: 442 components: - type: Transform - pos: 15.5,-71.5 + pos: -0.5,-9.5 parent: 1 - - uid: 4603 + - uid: 443 components: - type: Transform - pos: 17.5,-73.5 + pos: -0.5,-10.5 parent: 1 - - uid: 4779 + - uid: 444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-70.5 + pos: 9.5,-0.5 parent: 1 - - uid: 4780 + - uid: 736 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-70.5 + pos: 24.5,-102.5 parent: 1 - - uid: 4781 + - uid: 756 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-70.5 + pos: 21.5,-102.5 parent: 1 - - uid: 4782 + - uid: 1132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-66.5 + pos: 10.5,-102.5 parent: 1 - - uid: 4783 + - uid: 1177 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-66.5 + pos: 23.5,-102.5 parent: 1 - - uid: 4784 + - uid: 1182 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-66.5 + pos: 25.5,-102.5 parent: 1 - - uid: 4785 + - uid: 1237 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-62.5 + pos: 9.5,-102.5 parent: 1 - - uid: 4786 + - uid: 2069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-62.5 + rot: 3.141592653589793 rad + pos: -0.5,-13.5 parent: 1 - - uid: 4787 + - uid: 2070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-62.5 + rot: 3.141592653589793 rad + pos: -0.5,-12.5 parent: 1 - - uid: 4788 + - uid: 2071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-58.5 + rot: 3.141592653589793 rad + pos: -0.5,-11.5 parent: 1 - - uid: 4789 + - uid: 2072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-58.5 + rot: 3.141592653589793 rad + pos: -0.5,-24.5 parent: 1 - - uid: 4790 + - uid: 2073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-58.5 + rot: 3.141592653589793 rad + pos: -0.5,-23.5 parent: 1 - - uid: 4793 + - uid: 2074 components: - type: Transform - pos: -1.5,-54.5 + rot: 3.141592653589793 rad + pos: -0.5,-22.5 parent: 1 - - uid: 4794 + - uid: 2075 components: - type: Transform - pos: -1.5,-55.5 + rot: 3.141592653589793 rad + pos: -0.5,-21.5 parent: 1 - - uid: 4795 + - uid: 2076 components: - type: Transform - pos: -1.5,-56.5 + rot: 3.141592653589793 rad + pos: -0.5,-20.5 parent: 1 - - uid: 4796 + - uid: 2077 components: - type: Transform - pos: -0.5,-59.5 + rot: 3.141592653589793 rad + pos: -0.5,-19.5 parent: 1 - - uid: 4797 + - uid: 2078 components: - type: Transform - pos: -0.5,-60.5 + rot: 3.141592653589793 rad + pos: -0.5,-18.5 parent: 1 - - uid: 4798 + - uid: 2079 components: - type: Transform - pos: -0.5,-61.5 + rot: 3.141592653589793 rad + pos: -0.5,-17.5 parent: 1 - - uid: 4799 + - uid: 2080 components: - type: Transform - pos: -0.5,-64.5 + rot: 3.141592653589793 rad + pos: -0.5,-16.5 parent: 1 - - uid: 4800 + - uid: 2082 components: - type: Transform - pos: -0.5,-63.5 + rot: 3.141592653589793 rad + pos: -0.5,-14.5 parent: 1 - - uid: 4801 + - uid: 2083 components: - type: Transform - pos: -0.5,-65.5 + pos: -0.5,-25.5 parent: 1 - - uid: 4802 + - uid: 2084 components: - type: Transform - pos: -0.5,-67.5 + pos: -0.5,-26.5 parent: 1 - - uid: 4804 + - uid: 2085 components: - type: Transform - pos: -0.5,-69.5 + pos: -0.5,-27.5 parent: 1 - - uid: 4808 + - uid: 2086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-64.5 + pos: -0.5,-28.5 parent: 1 - - uid: 4809 + - uid: 2087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-64.5 + pos: -0.5,-29.5 parent: 1 - - uid: 4811 + - uid: 2088 components: - type: Transform - pos: 5.5,-65.5 + pos: -0.5,-30.5 parent: 1 - - uid: 4812 + - uid: 2089 components: - type: Transform - pos: 5.5,-66.5 + pos: -0.5,-31.5 parent: 1 - - uid: 4813 + - uid: 2090 components: - type: Transform - pos: 5.5,-67.5 + pos: -0.5,-32.5 parent: 1 - - uid: 4815 + - uid: 2091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-68.5 + pos: -0.5,-33.5 parent: 1 - - uid: 4816 + - uid: 2092 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1 + - uid: 2106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 1 + - uid: 2593 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-68.5 + pos: 12.5,-102.5 parent: 1 - - uid: 4817 + - uid: 2596 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-68.5 + pos: 13.5,-102.5 parent: 1 - - uid: 4818 + - uid: 2597 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-68.5 + pos: 11.5,-102.5 parent: 1 - - uid: 4819 + - uid: 3711 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-68.5 + pos: 3.5,-50.5 parent: 1 - - uid: 4822 + - uid: 3712 components: - type: Transform - pos: 2.5,-62.5 + rot: -1.5707963267948966 rad + pos: 3.5,-51.5 parent: 1 - - uid: 4823 + - uid: 3728 components: - type: Transform - pos: 2.5,-63.5 + rot: -1.5707963267948966 rad + pos: 3.5,-52.5 parent: 1 - - uid: 4824 + - uid: 3729 components: - type: Transform - pos: 2.5,-64.5 + rot: -1.5707963267948966 rad + pos: 3.5,-53.5 parent: 1 - - uid: 4825 + - uid: 3730 components: - type: Transform - pos: 2.5,-65.5 + rot: -1.5707963267948966 rad + pos: 4.5,-50.5 parent: 1 - - uid: 4826 + - uid: 3731 components: - type: Transform - pos: 2.5,-66.5 + rot: -1.5707963267948966 rad + pos: 4.5,-51.5 parent: 1 - - uid: 4827 + - uid: 3732 components: - type: Transform - pos: 2.5,-68.5 + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 parent: 1 - - uid: 4832 + - uid: 3733 components: - type: Transform - pos: 0.5,-54.5 + rot: -1.5707963267948966 rad + pos: 4.5,-53.5 parent: 1 - - uid: 4833 + - uid: 3734 components: - type: Transform - pos: 0.5,-55.5 + rot: -1.5707963267948966 rad + pos: 3.5,-54.5 parent: 1 - - uid: 4834 + - uid: 3735 components: - type: Transform - pos: 0.5,-56.5 + rot: -1.5707963267948966 rad + pos: 4.5,-54.5 parent: 1 - - uid: 4835 + - uid: 3794 components: - type: Transform - pos: 0.5,-57.5 + pos: -16.5,-99.5 parent: 1 - - uid: 4836 + - uid: 3795 components: - type: Transform - pos: 0.5,-58.5 + pos: -14.5,-100.5 parent: 1 - - uid: 4839 + - uid: 3796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-59.5 + pos: -14.5,-101.5 parent: 1 - - uid: 4840 + - uid: 4086 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-60.5 + pos: -6.5,-78.5 parent: 1 - - uid: 5132 + - uid: 4087 components: - type: Transform - pos: 0.5,-71.5 + rot: 3.141592653589793 rad + pos: -6.5,-77.5 parent: 1 - - uid: 5133 + - uid: 4089 components: - type: Transform - pos: 0.5,-72.5 + rot: 3.141592653589793 rad + pos: -5.5,-77.5 parent: 1 - - uid: 5134 + - uid: 4090 components: - type: Transform - pos: 0.5,-73.5 + rot: 3.141592653589793 rad + pos: -5.5,-78.5 parent: 1 - - uid: 5135 + - uid: 4091 components: - type: Transform - pos: -0.5,-71.5 + rot: 3.141592653589793 rad + pos: -4.5,-78.5 parent: 1 - - uid: 5136 + - uid: 4092 components: - type: Transform - pos: -0.5,-72.5 + rot: 3.141592653589793 rad + pos: -4.5,-77.5 parent: 1 - - uid: 5404 + - uid: 4161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-74.5 + pos: -15.5,-101.5 parent: 1 - - uid: 5408 + - uid: 4165 components: - type: Transform - pos: 15.5,-73.5 + pos: -15.5,-100.5 parent: 1 - - uid: 5417 + - uid: 4169 components: - type: Transform - pos: 17.5,-71.5 + pos: -16.5,-101.5 parent: 1 - - uid: 5435 + - uid: 4824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-74.5 + rot: 1.5707963267948966 rad + pos: -16.5,-96.5 parent: 1 - - uid: 5436 + - uid: 4827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-74.5 + rot: 1.5707963267948966 rad + pos: -15.5,-96.5 parent: 1 - - uid: 5440 + - uid: 4828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-74.5 + rot: 1.5707963267948966 rad + pos: -14.5,-96.5 parent: 1 - - uid: 5443 + - uid: 5638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-73.5 + rot: 1.5707963267948966 rad + pos: -16.5,-94.5 parent: 1 - - uid: 5444 + - uid: 5650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-73.5 + rot: 1.5707963267948966 rad + pos: -15.5,-94.5 parent: 1 - - uid: 5446 + - uid: 5975 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-65.5 + pos: 4.5,-116.5 parent: 1 - - uid: 5447 + - uid: 6131 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-66.5 + pos: 11.5,-119.5 parent: 1 - - uid: 5448 + - uid: 6132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-67.5 + pos: 14.5,-113.5 parent: 1 - - uid: 5451 + - uid: 6136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-68.5 + pos: 12.5,-119.5 parent: 1 - - uid: 5452 + - uid: 6140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-69.5 + pos: 15.5,-113.5 parent: 1 - - uid: 5801 + - uid: 6154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-97.5 + pos: 14.5,-119.5 parent: 1 - - uid: 5802 + - uid: 6164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-98.5 + pos: 15.5,-120.5 parent: 1 - - uid: 5803 + - uid: 6169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-93.5 + pos: 13.5,-119.5 parent: 1 - - uid: 5804 + - uid: 6176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-94.5 + pos: 14.5,-120.5 parent: 1 - - uid: 5813 + - uid: 6209 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-96.5 + pos: -15.5,-99.5 parent: 1 - - uid: 5815 + - uid: 6211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-95.5 + pos: -14.5,-99.5 parent: 1 - - uid: 5816 + - uid: 6212 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-83.5 + pos: -16.5,-100.5 parent: 1 - - uid: 5821 + - uid: 6215 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-85.5 + rot: -1.5707963267948966 rad + pos: 17.5,-77.5 parent: 1 - - uid: 5822 + - uid: 6218 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-84.5 + rot: 1.5707963267948966 rad + pos: -14.5,-94.5 parent: 1 - - uid: 5823 + - uid: 6231 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-87.5 + pos: 11.5,-114.5 parent: 1 - - uid: 5824 + - uid: 6233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-86.5 + pos: 13.5,-114.5 parent: 1 - - uid: 5826 + - uid: 6243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-89.5 + rot: -1.5707963267948966 rad + pos: 17.5,-78.5 parent: 1 - - uid: 5827 + - uid: 6244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-88.5 + rot: -1.5707963267948966 rad + pos: 17.5,-76.5 parent: 1 - - uid: 5828 + - uid: 6256 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-83.5 + pos: 10.5,-115.5 parent: 1 - - uid: 5829 + - uid: 6279 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-83.5 + pos: 8.5,-115.5 parent: 1 - - uid: 5830 + - uid: 6286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-83.5 + pos: -3.5,-122.5 parent: 1 - - uid: 5844 + - uid: 6304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-83.5 + pos: -3.5,-123.5 parent: 1 - - uid: 5849 + - uid: 6305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-82.5 + rot: 1.5707963267948966 rad + pos: -2.5,-121.5 parent: 1 - - uid: 5850 + - uid: 6313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-82.5 + rot: 1.5707963267948966 rad + pos: -1.5,-122.5 parent: 1 - - uid: 5851 + - uid: 6339 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-82.5 + pos: 18.5,-76.5 parent: 1 - - uid: 5854 + - uid: 6400 components: - type: Transform - pos: 10.5,-91.5 + rot: 1.5707963267948966 rad + pos: -24.5,-122.5 parent: 1 - - uid: 5855 + - uid: 6404 components: - type: Transform - pos: 10.5,-89.5 + rot: 1.5707963267948966 rad + pos: -26.5,-122.5 parent: 1 - - uid: 5856 + - uid: 6428 components: - type: Transform - pos: 10.5,-88.5 + rot: 1.5707963267948966 rad + pos: -25.5,-122.5 parent: 1 - - uid: 5857 + - uid: 6482 components: - type: Transform - pos: 10.5,-92.5 + rot: 1.5707963267948966 rad + pos: -9.5,-122.5 parent: 1 - - uid: 5858 + - uid: 6494 components: - type: Transform - pos: 10.5,-93.5 + rot: 1.5707963267948966 rad + pos: -22.5,-122.5 parent: 1 - - uid: 5863 + - uid: 6519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-82.5 + rot: 3.141592653589793 rad + pos: 5.5,-114.5 parent: 1 - - uid: 5864 + - uid: 6522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-82.5 + rot: 3.141592653589793 rad + pos: 7.5,-114.5 parent: 1 - - uid: 5866 + - uid: 6710 components: - type: Transform - pos: 10.5,-83.5 + rot: 1.5707963267948966 rad + pos: 11.5,-115.5 parent: 1 - - uid: 5867 + - uid: 6715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-83.5 + rot: 1.5707963267948966 rad + pos: 4.5,-124.5 parent: 1 - - uid: 5868 + - uid: 6716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-83.5 + rot: 3.141592653589793 rad + pos: 0.5,-121.5 parent: 1 - - uid: 5869 + - uid: 6731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-83.5 + rot: 3.141592653589793 rad + pos: -0.5,-121.5 parent: 1 - - uid: 5870 + - uid: 6742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-82.5 + rot: 1.5707963267948966 rad + pos: 8.5,-118.5 parent: 1 - - uid: 5871 + - uid: 6743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-82.5 + rot: 1.5707963267948966 rad + pos: 5.5,-123.5 parent: 1 - - uid: 5872 + - uid: 6745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-83.5 + rot: 1.5707963267948966 rad + pos: 7.5,-119.5 parent: 1 - - uid: 5873 + - uid: 6752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-82.5 + rot: 3.141592653589793 rad + pos: 2.5,-118.5 parent: 1 - - uid: 5877 + - uid: 6756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-94.5 + rot: 1.5707963267948966 rad + pos: 8.5,-119.5 parent: 1 - - uid: 5878 + - uid: 6777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-86.5 + rot: 3.141592653589793 rad + pos: 0.5,-119.5 parent: 1 - - uid: 5879 + - uid: 7414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-90.5 + rot: 3.141592653589793 rad + pos: -14.5,-91.5 parent: 1 - - uid: 5880 + - uid: 7416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-82.5 + rot: 3.141592653589793 rad + pos: -14.5,-90.5 parent: 1 - - uid: 5881 + - uid: 7424 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-82.5 + pos: 22.5,-102.5 parent: 1 - - uid: 5920 + - uid: 7457 components: - type: Transform - pos: 10.5,-85.5 + rot: 3.141592653589793 rad + pos: -14.5,-89.5 parent: 1 - - uid: 5921 + - uid: 7475 components: - type: Transform - pos: 10.5,-87.5 + rot: 3.141592653589793 rad + pos: -15.5,-91.5 parent: 1 - - uid: 5927 + - uid: 7524 components: - type: Transform - pos: 10.5,-95.5 + rot: 3.141592653589793 rad + pos: -15.5,-90.5 parent: 1 - - uid: 5932 + - uid: 7525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-82.5 + rot: 3.141592653589793 rad + pos: -15.5,-89.5 parent: 1 - - uid: 5934 + - uid: 7526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-82.5 + rot: 3.141592653589793 rad + pos: -16.5,-91.5 parent: 1 - - uid: 5935 + - uid: 7528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-82.5 + rot: 3.141592653589793 rad + pos: -16.5,-90.5 parent: 1 - - uid: 5957 + - uid: 7529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-94.5 + rot: 3.141592653589793 rad + pos: -16.5,-89.5 parent: 1 - - uid: 5958 + - uid: 7673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-90.5 + rot: 1.5707963267948966 rad + pos: -2.5,-122.5 parent: 1 - - uid: 5959 + - uid: 7674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-86.5 + rot: 1.5707963267948966 rad + pos: -2.5,-123.5 parent: 1 - - uid: 6560 + - uid: 7677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-75.5 + rot: 1.5707963267948966 rad + pos: -4.5,-122.5 parent: 1 - - uid: 6561 + - uid: 7678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-76.5 + rot: 1.5707963267948966 rad + pos: -19.5,-122.5 parent: 1 - - uid: 6562 + - uid: 7679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-77.5 + rot: 1.5707963267948966 rad + pos: -13.5,-122.5 parent: 1 - - uid: 6563 + - uid: 7680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-78.5 + rot: 1.5707963267948966 rad + pos: -20.5,-122.5 parent: 1 - - uid: 6564 + - uid: 7681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-79.5 + rot: 1.5707963267948966 rad + pos: -12.5,-122.5 parent: 1 - - uid: 6565 + - uid: 7689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-80.5 + rot: 1.5707963267948966 rad + pos: -15.5,-122.5 parent: 1 - - uid: 6566 + - uid: 7690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-81.5 + rot: 1.5707963267948966 rad + pos: -14.5,-122.5 parent: 1 - - uid: 6567 + - uid: 7692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-75.5 + rot: 1.5707963267948966 rad + pos: -16.5,-122.5 parent: 1 - - uid: 6568 + - uid: 7693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-76.5 + rot: 1.5707963267948966 rad + pos: -6.5,-122.5 parent: 1 - - uid: 6569 + - uid: 7694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-77.5 + rot: 1.5707963267948966 rad + pos: -5.5,-122.5 parent: 1 - - uid: 6570 + - uid: 7695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-78.5 + rot: 1.5707963267948966 rad + pos: -7.5,-122.5 parent: 1 - - uid: 6571 + - uid: 7705 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-79.5 + rot: 1.5707963267948966 rad + pos: 9.5,-115.5 parent: 1 - - uid: 6572 + - uid: 7708 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-80.5 + pos: 6.5,-114.5 parent: 1 - - uid: 6573 + - uid: 7709 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-81.5 + pos: 2.5,-117.5 parent: 1 - - uid: 7579 + - uid: 7717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-87.5 + rot: 1.5707963267948966 rad + pos: 10.5,-118.5 parent: 1 - - uid: 7580 + - uid: 7718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-88.5 + rot: 1.5707963267948966 rad + pos: 11.5,-118.5 parent: 1 - - uid: 7581 + - uid: 7720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-89.5 + rot: 1.5707963267948966 rad + pos: 5.5,-122.5 parent: 1 - - uid: 7582 + - uid: 7721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-90.5 + rot: 1.5707963267948966 rad + pos: 6.5,-121.5 parent: 1 - - uid: 7584 + - uid: 7833 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-84.5 + pos: 12.5,-114.5 parent: 1 - - uid: 7585 + - uid: 7860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-87.5 + pos: 14.5,-114.5 parent: 1 - - uid: 7586 + - uid: 7960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-88.5 + rot: 1.5707963267948966 rad + pos: -0.5,-123.5 parent: 1 - - uid: 7587 + - uid: 7961 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-89.5 + pos: 1.5,-119.5 parent: 1 - - uid: 7588 + - uid: 7975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-90.5 + rot: 1.5707963267948966 rad + pos: 7.5,-120.5 parent: 1 - - uid: 7589 + - uid: 7976 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-85.5 + rot: 1.5707963267948966 rad + pos: 7.5,-121.5 parent: 1 - - uid: 7590 + - uid: 7986 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-84.5 + rot: 1.5707963267948966 rad + pos: 6.5,-122.5 parent: 1 - - uid: 7591 + - uid: 7989 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-83.5 + pos: -0.5,-122.5 parent: 1 - - uid: 7592 + - uid: 7993 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-80.5 + pos: 0.5,-120.5 parent: 1 - - uid: 7593 + - uid: 8003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-81.5 + rot: 1.5707963267948966 rad + pos: 9.5,-118.5 parent: 1 - - uid: 7595 + - uid: 8005 components: - type: Transform - pos: -13.5,-82.5 + rot: 3.141592653589793 rad + pos: 1.5,-118.5 parent: 1 - - uid: 7596 + - uid: 8007 components: - type: Transform - pos: -13.5,-81.5 + rot: 3.141592653589793 rad + pos: 4.5,-115.5 parent: 1 - - uid: 7597 + - uid: 8008 components: - type: Transform - pos: -13.5,-80.5 + rot: 3.141592653589793 rad + pos: 3.5,-117.5 parent: 1 - - uid: 7626 + - uid: 8009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-82.5 + rot: 3.141592653589793 rad + pos: 5.5,-115.5 parent: 1 - - uid: 7628 + - uid: 8013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-82.5 + rot: 3.141592653589793 rad + pos: 8.5,-114.5 parent: 1 - - uid: 7629 + - uid: 8021 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-82.5 + pos: 4.5,-123.5 parent: 1 - - uid: 7630 + - uid: 8024 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-82.5 + pos: -8.5,-122.5 parent: 1 - - uid: 7631 + - uid: 8026 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-82.5 + pos: -10.5,-122.5 parent: 1 - - uid: 7632 + - uid: 8028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-82.5 + rot: 3.141592653589793 rad + pos: 3.5,-116.5 parent: 1 - - uid: 7633 + - uid: 8038 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-82.5 + pos: -17.5,-122.5 parent: 1 - - uid: 7634 + - uid: 8041 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-82.5 + pos: -18.5,-122.5 parent: 1 - - uid: 7636 + - uid: 8052 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-82.5 + pos: -21.5,-122.5 parent: 1 - - uid: 7637 + - uid: 8059 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-82.5 + pos: -11.5,-122.5 parent: 1 - - uid: 7639 + - uid: 8071 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-83.5 + pos: -27.5,-122.5 parent: 1 - - uid: 7640 + - uid: 8072 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-83.5 + pos: -4.5,-121.5 parent: 1 - - uid: 7641 + - uid: 8074 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-83.5 + pos: -23.5,-122.5 parent: 1 - - uid: 7642 + - uid: 8076 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-83.5 + pos: -4.5,-123.5 parent: 1 - - uid: 7643 + - uid: 8079 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-83.5 + pos: -3.5,-121.5 parent: 1 - - uid: 7644 + - uid: 8863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-83.5 + pos: -16.5,-86.5 parent: 1 - - uid: 7645 + - uid: 8864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-83.5 + pos: -15.5,-86.5 parent: 1 - - uid: 7646 + - uid: 8866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-83.5 + pos: -11.5,-86.5 parent: 1 - - uid: 7647 + - uid: 12783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-83.5 + rot: -1.5707963267948966 rad + pos: 18.5,-77.5 parent: 1 - - uid: 7649 + - uid: 12784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-83.5 + rot: -1.5707963267948966 rad + pos: 18.5,-78.5 parent: 1 - - uid: 7650 + - uid: 12785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-83.5 + rot: -1.5707963267948966 rad + pos: 18.5,-78.5 parent: 1 - - uid: 8995 + - uid: 12851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-97.5 + pos: 9.5,-76.5 parent: 1 - - uid: 8999 + - uid: 12852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-97.5 + pos: 9.5,-77.5 parent: 1 - - uid: 9029 + - uid: 12853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-98.5 + pos: 9.5,-78.5 parent: 1 - - uid: 9038 + - uid: 12854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-82.5 + pos: 9.5,-79.5 parent: 1 - - uid: 9039 + - uid: 12855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-82.5 + pos: 11.5,-76.5 parent: 1 - - uid: 9040 + - uid: 12856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-82.5 + pos: 11.5,-77.5 parent: 1 - - uid: 9041 + - uid: 12857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-82.5 + pos: 11.5,-78.5 parent: 1 - - uid: 9042 + - uid: 12858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-82.5 + pos: 11.5,-79.5 parent: 1 - - uid: 9043 +- proto: Chair + entities: + - uid: 1235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-82.5 + rot: -1.5707963267948966 rad + pos: 40.5,-81.5 parent: 1 - - uid: 9044 + - uid: 2425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-82.5 + rot: 3.141592653589793 rad + pos: -3.5,-98.5 parent: 1 - - uid: 9045 + - uid: 2426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-82.5 + pos: -4.5,-99.5 parent: 1 - - uid: 9047 + - uid: 2428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-82.5 + pos: -3.5,-99.5 parent: 1 - - uid: 9048 + - uid: 2431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-82.5 + rot: 3.141592653589793 rad + pos: -4.5,-101.5 parent: 1 - - uid: 9049 + - uid: 2480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-82.5 + pos: -3.5,-93.5 parent: 1 - - uid: 9052 + - uid: 2487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-83.5 + pos: 3.5,-93.5 parent: 1 - - uid: 9053 + - uid: 2495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-83.5 + pos: -4.5,-93.5 parent: 1 - - uid: 9057 + - uid: 2497 components: - type: Transform - pos: -31.5,-80.5 + pos: -4.5,-96.5 parent: 1 - - uid: 9058 + - uid: 2498 components: - type: Transform - pos: -31.5,-81.5 + pos: -3.5,-96.5 parent: 1 - - uid: 9059 + - uid: 2500 components: - type: Transform - pos: -31.5,-82.5 + rot: 3.141592653589793 rad + pos: -4.5,-98.5 parent: 1 - - uid: 9062 + - uid: 2503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-83.5 + rot: 3.141592653589793 rad + pos: 2.5,-95.5 parent: 1 - - uid: 9063 + - uid: 2511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-83.5 + rot: 3.141592653589793 rad + pos: -3.5,-101.5 parent: 1 - - uid: 9064 + - uid: 2519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-83.5 + rot: 3.141592653589793 rad + pos: 3.5,-101.5 parent: 1 - - uid: 9407 + - uid: 2521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-99.5 + pos: 2.5,-99.5 parent: 1 - - uid: 10824 + - uid: 2522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-99.5 + pos: 3.5,-99.5 parent: 1 -- proto: GasPipeTJunction - entities: - - uid: 558 + - uid: 2527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-97.5 + pos: 2.5,-96.5 parent: 1 - - uid: 608 + - uid: 2536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,0.5 + pos: 3.5,-96.5 parent: 1 - - uid: 609 + - uid: 2906 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,0.5 + pos: 2.5,-93.5 parent: 1 - - uid: 610 + - uid: 2907 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,0.5 + pos: -3.5,-95.5 parent: 1 - - uid: 611 + - uid: 2910 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,0.5 + pos: -4.5,-95.5 parent: 1 - - uid: 612 + - uid: 2980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,0.5 - parent: 1 - - uid: 613 + rot: -1.5707963267948966 rad + pos: 4.5,-83.5 + parent: 1 + - uid: 2982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,0.5 + rot: 1.5707963267948966 rad + pos: 2.5,-83.5 parent: 1 - - uid: 614 + - uid: 3135 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,0.5 + pos: 3.5,-95.5 parent: 1 - - uid: 646 + - uid: 3136 components: - type: Transform - pos: 10.5,-0.5 + rot: 3.141592653589793 rad + pos: 2.5,-101.5 parent: 1 - - uid: 697 + - uid: 3777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-83.5 + rot: 1.5707963267948966 rad + pos: -21.5,-86.5 parent: 1 - - uid: 720 + - uid: 3778 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-83.5 + pos: -22.5,-93.5 parent: 1 - - uid: 1934 + - uid: 3779 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,0.5 + pos: -19.5,-89.5 parent: 1 - - uid: 2403 + - uid: 3787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-73.5 + rot: -1.5707963267948966 rad + pos: -19.5,-98.5 parent: 1 - - uid: 3580 + - uid: 3788 components: - type: Transform - pos: 1.5,-43.5 + rot: 3.141592653589793 rad + pos: -22.5,-93.5 parent: 1 - - uid: 3768 + - uid: 3799 components: - type: Transform - pos: -5.5,-54.5 + pos: -20.5,-91.5 parent: 1 - - uid: 3769 + - uid: 3801 components: - type: Transform - pos: -4.5,-54.5 + rot: 3.141592653589793 rad + pos: -20.5,-102.5 parent: 1 - - uid: 3770 + - uid: 3802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-54.5 + rot: 1.5707963267948966 rad + pos: -21.5,-101.5 parent: 1 - - uid: 3771 + - uid: 3803 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-50.5 + pos: -20.5,-93.5 parent: 1 - - uid: 3772 + - uid: 3804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-50.5 + rot: 1.5707963267948966 rad + pos: -21.5,-98.5 parent: 1 - - uid: 3773 + - uid: 3818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-50.5 + rot: 1.5707963267948966 rad + pos: -23.5,-92.5 parent: 1 - - uid: 3781 + - uid: 3925 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-51.5 + pos: -20.5,-96.5 parent: 1 - - uid: 3792 + - uid: 4102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-50.5 + rot: 3.141592653589793 rad + pos: -22.5,-96.5 parent: 1 - - uid: 4113 + - uid: 4106 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-92.5 + pos: -19.5,-88.5 parent: 1 - - uid: 4605 + - uid: 4107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-74.5 + pos: -20.5,-94.5 parent: 1 - - uid: 4772 + - uid: 4119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-58.5 + rot: 1.5707963267948966 rad + pos: -21.5,-100.5 parent: 1 - - uid: 4776 + - uid: 4121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-62.5 + pos: -20.5,-91.5 parent: 1 - - uid: 4777 + - uid: 4126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-66.5 + rot: 1.5707963267948966 rad + pos: -21.5,-88.5 parent: 1 - - uid: 4778 + - uid: 4573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-70.5 + rot: 3.141592653589793 rad + pos: 18.5,-74.5 parent: 1 - - uid: 4803 + - uid: 4574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-68.5 + rot: 3.141592653589793 rad + pos: 16.5,-74.5 parent: 1 - - uid: 4820 + - uid: 5413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-67.5 + rot: 3.141592653589793 rad + pos: 17.5,-74.5 parent: 1 - - uid: 4821 + - uid: 6308 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-61.5 + pos: 2.5,-81.5 parent: 1 - - uid: 5079 + - uid: 6322 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-74.5 + pos: 4.5,-81.5 parent: 1 - - uid: 5919 + - uid: 10936 components: - type: Transform - pos: 10.5,-82.5 + rot: -1.5707963267948966 rad + pos: 36.5,-81.5 parent: 1 - - uid: 5930 + - uid: 11256 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-86.5 + pos: 33.5,-81.5 parent: 1 - - uid: 5931 + - uid: 11428 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-94.5 + pos: 37.5,-81.5 parent: 1 - - uid: 5933 + - uid: 11579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-90.5 + pos: 16.5,-97.5 parent: 1 - - uid: 7576 + - uid: 11580 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-86.5 + pos: 19.5,-98.5 parent: 1 - - uid: 9054 + - uid: 11581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-83.5 + rot: 3.141592653589793 rad + pos: 17.5,-101.5 parent: 1 -- proto: GasPort - entities: - - uid: 203 + - uid: 11582 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 8566 - - uid: 592 + pos: 18.5,-101.5 + parent: 1 + - uid: 11583 components: - type: Transform - pos: 17.5,1.5 + rot: 3.141592653589793 rad + pos: 16.5,-89.5 parent: 1 - - uid: 593 + - uid: 11584 components: - type: Transform - pos: 16.5,1.5 + rot: 3.141592653589793 rad + pos: 17.5,-89.5 parent: 1 - - uid: 594 + - uid: 11585 components: - type: Transform - pos: 15.5,1.5 + rot: 3.141592653589793 rad + pos: 18.5,-89.5 parent: 1 - - uid: 595 + - uid: 11586 components: - type: Transform - pos: 14.5,1.5 + rot: -1.5707963267948966 rad + pos: 19.5,-87.5 parent: 1 - - uid: 596 + - uid: 11587 components: - type: Transform - pos: 13.5,1.5 + pos: 18.5,-85.5 parent: 1 - - uid: 597 + - uid: 11588 components: - type: Transform - pos: 12.5,1.5 + rot: 1.5707963267948966 rad + pos: 15.5,-86.5 parent: 1 - - uid: 598 +- proto: ChairOfficeLight + entities: + - uid: 9154 components: - type: Transform - pos: 11.5,1.5 + rot: 3.141592653589793 rad + pos: 18.550701,-64.39269 parent: 1 - - uid: 599 +- proto: ChairPilotSeat + entities: + - uid: 258 components: - type: Transform - pos: 10.5,1.5 - parent: 1 - - uid: 3746 + pos: 0.5,1.5 + parent: 8566 + - uid: 8231 components: - type: Transform - pos: -6.5,-49.5 - parent: 1 - - uid: 3747 + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 8217 + - uid: 8656 components: - type: Transform - pos: -5.5,-49.5 - parent: 1 - - uid: 3748 + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 8566 + - uid: 8657 components: - type: Transform - pos: -4.5,-49.5 - parent: 1 - - uid: 3749 + pos: 1.5,1.5 + parent: 8566 + - uid: 8658 components: - type: Transform - pos: -3.5,-49.5 - parent: 1 - - uid: 3750 + pos: -0.5,1.5 + parent: 8566 + - uid: 8659 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-55.5 - parent: 1 - - uid: 3751 + pos: -0.5,-0.5 + parent: 8566 + - uid: 8660 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-55.5 - parent: 1 - - uid: 3752 + pos: 1.5,-0.5 + parent: 8566 + - uid: 10160 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-55.5 - parent: 1 - - uid: 3753 + pos: -0.5,-0.5 + parent: 10146 + - uid: 10944 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-55.5 - parent: 1 - - uid: 3754 + pos: -0.5,-0.5 + parent: 10867 +- proto: ChairWood + entities: + - uid: 4474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-51.5 + rot: 3.141592653589793 rad + pos: 16.5,-59.5 parent: 1 - - uid: 3755 + - uid: 5387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-52.5 + rot: 3.141592653589793 rad + pos: 18.5,-59.5 parent: 1 - - uid: 3756 +- proto: ChemistryHotplate + entities: + - uid: 12969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-53.5 + pos: 18.5,-63.5 parent: 1 -- proto: GasPressurePump +- proto: ChemMaster entities: - - uid: 617 + - uid: 8884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 17.5,-63.5 parent: 1 -- proto: GasVentPump +- proto: ChessBoard entities: - - uid: 251 - components: - - type: Transform - pos: -1.5,0.5 - parent: 8566 - - uid: 665 + - uid: 11656 components: - type: Transform - pos: 0.5,7.5 + pos: 17.225525,-87.57355 parent: 1 - - uid: 670 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 2361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 + pos: -23.5,-81.5 parent: 1 - - uid: 745 + - uid: 3825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-97.5 + pos: 0.5,-55.5 parent: 1 - - uid: 749 + - uid: 3826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-99.5 + pos: -1.5,-49.5 parent: 1 - - uid: 3495 + - uid: 3832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-90.5 + pos: 8.5,0.5 parent: 1 - - uid: 3566 + - uid: 3834 components: - type: Transform - pos: -3.5,-43.5 + pos: -1.5,12.5 parent: 1 - - uid: 3567 + - uid: 3835 components: - type: Transform - pos: -2.5,-43.5 + pos: 0.5,12.5 parent: 1 - - uid: 3568 + - uid: 4063 components: - type: Transform - pos: -1.5,-43.5 + pos: -9.5,-81.5 parent: 1 - - uid: 3801 + - uid: 4093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-51.5 + pos: -4.5,-79.5 parent: 1 - - uid: 4010 + - uid: 4520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-94.5 + pos: 4.5,-75.5 parent: 1 - - uid: 4169 + - uid: 4583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-99.5 + pos: 3.5,-75.5 parent: 1 - - uid: 4767 + - uid: 5128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-62.5 + pos: 1.5,-78.5 parent: 1 - - uid: 4768 + - uid: 5129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-58.5 + pos: 1.5,-79.5 parent: 1 - - uid: 4769 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 2403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-66.5 + pos: -23.5,-83.5 parent: 1 - - uid: 4770 + - uid: 3518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-70.5 + pos: -9.5,-83.5 parent: 1 - - uid: 4806 + - uid: 3824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-64.5 + pos: -1.5,-55.5 parent: 1 - - uid: 5416 + - uid: 3827 components: - type: Transform - pos: 17.5,-70.5 + pos: 0.5,-49.5 parent: 1 - - uid: 5445 + - uid: 3833 components: - type: Transform - pos: 15.5,-64.5 + pos: 8.5,-1.5 parent: 1 - - uid: 5835 + - uid: 4570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-82.5 + pos: 3.5,-73.5 parent: 1 - - uid: 5838 + - uid: 4585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-86.5 + pos: 4.5,-73.5 parent: 1 - - uid: 7569 + - uid: 5126 components: - type: Transform - pos: -14.5,-79.5 + pos: -2.5,-78.5 parent: 1 - - uid: 7570 + - uid: 5127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-91.5 + pos: -2.5,-79.5 parent: 1 - - uid: 9055 +- proto: ClosetJanitorFilled + entities: + - uid: 10248 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-84.5 + pos: 25.5,-77.5 parent: 1 - - uid: 9056 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 745 components: - type: Transform - pos: -31.5,-79.5 + pos: 22.5,-101.5 parent: 1 -- proto: GasVentScrubber - entities: - - uid: 1926 + - uid: 850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 + pos: 25.5,-101.5 parent: 1 - - uid: 1927 + - uid: 853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 + pos: 8.5,-104.5 parent: 1 - - uid: 1928 + - uid: 858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 + pos: 15.5,-107.5 parent: 1 - - uid: 1929 + - uid: 7668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 + pos: 9.5,-124.5 parent: 1 - - uid: 3572 + - uid: 7672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-43.5 + pos: 14.5,-113.5 parent: 1 - - uid: 3573 + - uid: 7722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-44.5 + pos: 12.5,-121.5 parent: 1 - - uid: 3574 + - uid: 7723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-45.5 + pos: 10.5,-124.5 parent: 1 - - uid: 3575 + - uid: 8216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-43.5 + pos: 12.5,-123.5 parent: 1 - - uid: 3576 + - uid: 8872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-44.5 + pos: -4.5,-123.5 parent: 1 - - uid: 3577 + - uid: 8873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 + pos: -4.5,-121.5 parent: 1 - - uid: 3795 + - uid: 9139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-52.5 + pos: -2.5,-121.5 parent: 1 - - uid: 3818 + - uid: 9152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-50.5 + pos: -2.5,-123.5 parent: 1 - - uid: 4161 + - uid: 12542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-99.5 + pos: 8.5,-114.5 parent: 1 - - uid: 4172 + - uid: 12547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-92.5 + pos: 4.5,-124.5 parent: 1 - - uid: 4805 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 3828 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-61.5 + pos: 5.5,-38.5 parent: 1 - - uid: 4807 + - uid: 3829 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-67.5 + pos: 5.5,-39.5 parent: 1 - - uid: 5078 + - uid: 3830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-74.5 + pos: -6.5,-38.5 parent: 1 - - uid: 5928 + - uid: 3831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-83.5 + rot: 1.5707963267948966 rad + pos: -6.5,-39.5 parent: 1 - - uid: 7572 + - uid: 8661 + components: + - type: Transform + pos: 1.5,2.5 + parent: 8566 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 5023 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-86.5 + pos: -7.5,-74.5 parent: 1 - - uid: 7573 + - uid: 6423 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-91.5 + pos: 8.5,-77.5 parent: 1 - - uid: 7594 + - uid: 8775 components: - type: Transform - pos: -13.5,-79.5 + pos: 3.5,-84.5 parent: 1 - - uid: 9036 + - uid: 8784 components: - type: Transform - pos: -0.5,-82.5 + pos: 10.5,-73.5 parent: 1 - - uid: 9060 + - uid: 8785 components: - type: Transform - pos: -17.5,-82.5 + pos: 8.5,-73.5 parent: 1 - - uid: 9061 +- proto: ClosetWallOrange + entities: + - uid: 12575 components: - type: Transform - pos: -10.5,-82.5 + pos: 23.5,-88.5 parent: 1 -- proto: GeneratorBasic15kW - entities: - - uid: 244 + - uid: 12576 components: - type: Transform - pos: -2.5,0.5 - parent: 8566 - - uid: 625 + pos: 23.5,-84.5 + parent: 1 + - uid: 12577 components: - type: Transform - pos: 17.5,-1.5 + pos: 23.5,-92.5 parent: 1 - - uid: 626 + - uid: 12592 components: - type: Transform - pos: 17.5,-2.5 + pos: 29.5,-84.5 parent: 1 - - uid: 3640 + - uid: 12593 components: - type: Transform - pos: 3.5,-50.5 + pos: 34.5,-84.5 parent: 1 - - uid: 3641 + - uid: 12594 components: - type: Transform - pos: 3.5,-51.5 + pos: 39.5,-84.5 parent: 1 - - uid: 3642 + - uid: 12595 components: - type: Transform - pos: 4.5,-50.5 + pos: 23.5,-96.5 parent: 1 - - uid: 3643 + - uid: 12596 components: - type: Transform - pos: 4.5,-51.5 + pos: 11.5,-96.5 parent: 1 -- proto: GeneratorWallmountAPU - entities: - - uid: 10162 + - uid: 12597 components: - type: Transform - pos: -1.5,-0.5 - parent: 10146 -- proto: GeneratorWallmountBasic - entities: - - uid: 239 + pos: 11.5,-92.5 + parent: 1 + - uid: 12598 components: - type: Transform - pos: -3.5,-0.5 - parent: 8566 - - uid: 5885 + pos: 11.5,-88.5 + parent: 1 + - uid: 12599 components: - type: Transform - pos: -2.5,-77.5 + pos: 11.5,-84.5 parent: 1 -- proto: Grille +- proto: ClothingBeltUtilityFilled entities: - - uid: 204 + - uid: 5027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 8566 - - uid: 217 + pos: -4.4978137,-73.49133 + parent: 1 +- proto: ClothingHeadHelmetEVA + entities: + - uid: 5877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 8566 - - uid: 255 + rot: 1.5707963267948966 rad + pos: 28.063118,-114.42992 + parent: 1 + - uid: 5878 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 8566 - - uid: 3057 + pos: 17.940395,-117.99242 + parent: 1 + - uid: 8249 components: - type: Transform - pos: -4.5,-40.5 + rot: 1.5707963267948966 rad + pos: 2.3313298,-122.54111 parent: 1 - - uid: 3058 + - uid: 8303 components: - type: Transform - pos: -3.5,-40.5 + rot: 1.5707963267948966 rad + pos: 41.14596,-117.53098 parent: 1 - - uid: 3059 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 8575 components: - type: Transform - pos: 2.5,-40.5 + pos: 7.5,-61.5 parent: 1 - - uid: 3060 + - uid: 8578 components: - type: Transform - pos: 3.5,-40.5 + pos: 8.489466,-61.327038 parent: 1 - - uid: 3143 +- proto: ClothingOuterArmorRiot + entities: + - uid: 8576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-92.5 + pos: 7.5,-61.5 parent: 1 - - uid: 3854 + - uid: 8577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-65.5 + pos: 8.5,-61.5 parent: 1 - - uid: 3855 +- proto: ClothingOuterHardsuitEVAPrisoner + entities: + - uid: 7822 components: + - type: MetaData + desc: doublechest was here. + name: Prison 1.5 - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-61.5 + pos: -18.555355,-28.66484 parent: 1 - - uid: 3856 + - uid: 7949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-57.5 + rot: 1.5707963267948966 rad + pos: 2.9063272,-122.63194 parent: 1 - - uid: 3886 + - uid: 8301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-69.5 + rot: 1.5707963267948966 rad + pos: 18.440008,-118.09432 parent: 1 - - uid: 4398 + - uid: 8311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-60.5 + rot: 1.5707963267948966 rad + pos: 41.726006,-117.68576 parent: 1 - - uid: 4403 + - uid: 8312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-58.5 + rot: 1.5707963267948966 rad + pos: 28.54486,-114.64907 parent: 1 - - uid: 8667 +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 4480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 8566 - - uid: 8668 + pos: 18.5,-59.5 + parent: 1 + - uid: 5399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 8566 - - uid: 8708 + pos: 16.5,-59.5 + parent: 1 +- proto: ComfyChair + entities: + - uid: 3959 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-59.5 + rot: -1.5707963267948966 rad + pos: 4.5,-64.5 parent: 1 - - uid: 10163 +- proto: ComputerBroken + entities: + - uid: 8245 components: - type: Transform - pos: -0.5,1.5 + pos: -0.5,0.5 + parent: 8217 + - uid: 10161 + components: + - type: Transform + pos: -0.5,0.5 parent: 10146 -- proto: GunSafePistolMk58 - entities: - - uid: 8567 + - uid: 10945 components: - type: Transform - pos: 7.5,-57.5 - parent: 1 - - type: AccessReader - access: - - - Security -- proto: GunSafeRifleLecter + pos: -0.5,0.5 + parent: 10867 +- proto: ComputerComms entities: - - uid: 3941 + - uid: 4006 components: - type: Transform - pos: 8.5,-57.5 + rot: 1.5707963267948966 rad + pos: 3.5,-62.5 parent: 1 - - type: AccessReader - access: - - - Security -- proto: GunSafeShotgunKammerer + - type: CommunicationsConsole + global: True +- proto: ComputerRadar entities: - - uid: 8569 + - uid: 3965 components: - type: Transform - pos: 10.5,-57.5 + rot: 1.5707963267948966 rad + pos: 3.5,-66.5 parent: 1 - - type: AccessReader - access: - - - Security -- proto: GunSafeSubMachineGunDrozd +- proto: ComputerTelevision entities: - - uid: 3951 + - uid: 3016 components: - type: Transform - pos: 9.5,-57.5 + pos: 2.5,-94.5 parent: 1 - - type: AccessReader - access: - - - Security -- proto: Gyroscope +- proto: CrateElectrical entities: - - uid: 219 + - uid: 880 components: - type: Transform - pos: -1.5,1.5 - parent: 8566 -- proto: HospitalCurtains + pos: 23.5,-101.5 + parent: 1 +- proto: CrateEmptySpawner entities: - - uid: 5466 + - uid: 4835 components: - type: Transform - pos: -16.5,-76.5 + pos: -12.5,-99.5 parent: 1 - - type: Door - secondsUntilStateChange: -11202.115 - state: Opening - - uid: 5471 + - uid: 5179 components: - type: Transform - pos: -16.5,-78.5 + pos: -10.5,-91.5 parent: 1 - - uid: 5484 + - uid: 12972 components: - type: Transform - pos: -14.5,-78.5 + pos: -10.5,-90.5 parent: 1 - - uid: 5485 + - uid: 12973 components: - type: Transform - pos: -12.5,-76.5 + pos: -10.5,-89.5 parent: 1 - - uid: 5492 +- proto: CrateFoodCooking + entities: + - uid: 2543 components: - type: Transform - pos: -14.5,-76.5 + pos: -28.5,-90.5 parent: 1 - - uid: 5498 +- proto: CrateFoodDinnerware + entities: + - uid: 6168 components: - type: Transform - pos: -12.5,-78.5 + pos: -28.5,-89.5 parent: 1 -- proto: hydroponicsTray +- proto: CrateFoodMRE entities: - - uid: 5631 + - uid: 667 components: - type: Transform - pos: -10.5,-88.5 + pos: -22.5,-85.5 parent: 1 - - uid: 5632 + - uid: 668 components: - type: Transform - pos: -10.5,-86.5 + pos: -23.5,-90.5 parent: 1 - - uid: 5633 + - uid: 2231 components: - type: Transform - pos: -12.5,-86.5 + pos: -23.5,-102.5 parent: 1 - - uid: 5636 + - uid: 2256 components: - type: Transform - pos: -12.5,-88.5 + pos: -23.5,-85.5 parent: 1 - - uid: 5649 + - uid: 2541 components: - type: Transform - pos: -11.5,-90.5 + pos: -22.5,-102.5 parent: 1 - - uid: 5651 +- proto: CrateFunBoardGames + entities: + - uid: 11655 components: - type: Transform - pos: -11.5,-86.5 + pos: 15.5,-88.5 parent: 1 - - uid: 5676 +- proto: CrateHydroponicsSeeds + entities: + - uid: 5824 components: - type: Transform - pos: -10.5,-90.5 + pos: -28.5,-98.5 parent: 1 - - uid: 5745 +- proto: CrateHydroponicsTools + entities: + - uid: 12061 components: - type: Transform - pos: -11.5,-88.5 + pos: -26.5,-97.5 parent: 1 - - uid: 5758 +- proto: CrateMaterialGlass + entities: + - uid: 5026 components: - type: Transform - pos: -12.5,-90.5 + pos: -6.5,-74.5 parent: 1 -- proto: IncompleteBaseBallBat +- proto: CrateMaterialSteel entities: - - uid: 6059 + - uid: 5025 components: - type: Transform - pos: 8.372846,-77.17898 + pos: -3.5,-75.5 parent: 1 -- proto: InflatableWall +- proto: CrateServiceJanitorialSupplies entities: - - uid: 185 + - uid: 9566 components: - type: Transform - pos: -8.5,-1.5 + pos: 23.5,-77.5 parent: 1 - - uid: 186 +- proto: CrateTrashCart + entities: + - uid: 7667 components: - type: Transform - pos: -9.5,-0.5 + pos: 5.5,-62.5 parent: 1 - - uid: 187 +- proto: CrateTrashCartFilled + entities: + - uid: 12799 components: - type: Transform - pos: -6.5,-0.5 + pos: 21.5,-76.5 parent: 1 - - uid: 188 + - uid: 12800 components: - type: Transform - pos: -5.5,0.5 + pos: 21.5,-79.5 parent: 1 - - uid: 189 +- proto: CrateWoodenGrave + entities: + - uid: 3123 components: - type: Transform - pos: -8.5,-0.5 + pos: -8.5,-85.5 parent: 1 - - uid: 2438 +- proto: CryogenicSleepUnit + entities: + - uid: 8816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-64.5 + pos: 19.5,-67.5 parent: 1 - - uid: 10045 + - uid: 8817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-65.5 + pos: 19.5,-68.5 parent: 1 - - uid: 10084 +- proto: CrystalGrey + entities: + - uid: 6299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-64.5 + pos: -4.5,-104.5 parent: 1 - - uid: 10123 + - uid: 6306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-64.5 + pos: -1.5,-107.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 8550 + - uid: 6314 components: - type: Transform - pos: -11.5,-85.5 + pos: 1.5,-107.5 parent: 1 - - uid: 8880 + - uid: 6331 components: - type: Transform - pos: -33.5,-84.5 + pos: 3.5,-104.5 parent: 1 -- proto: KnifePlastic +- proto: CrystalSpawner entities: - - uid: 8564 + - uid: 228 components: - type: Transform - pos: -12.782234,-85.61585 + pos: -10.5,-3.5 parent: 1 -- proto: LargeBeaker - entities: - - uid: 8881 + - uid: 229 components: - type: Transform - pos: -33.269287,-83.656944 + pos: -15.5,0.5 parent: 1 -- proto: LeftArmBorg - entities: - - uid: 5748 + - uid: 230 components: - type: Transform - pos: -16.748848,-89.64374 + pos: -10.5,3.5 parent: 1 -- proto: LightHeadBorg - entities: - - uid: 5747 + - uid: 1423 components: - type: Transform - pos: -16.467598,-89.09686 + pos: 3.5,-79.5 parent: 1 -- proto: LightReplacerEmpty - entities: - - uid: 6495 + - uid: 1535 components: - type: Transform - pos: 13.348649,-101.421936 + pos: 6.5,-77.5 parent: 1 -- proto: LockableButtonBrig - entities: - - uid: 536 + - uid: 6815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-98.5 + pos: 16.5,-117.5 parent: 1 - - type: AccessReader - access: - - - Security - - type: DeviceLinkSource - linkedPorts: - 2502: - - Pressed: Toggle - - uid: 728 + - uid: 7219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-100.5 + pos: 8.5,-117.5 parent: 1 - - type: AccessReader - access: - - - Security - - type: DeviceLinkSource - linkedPorts: - 2172: - - Pressed: Toggle -- proto: LockableButtonSecurity - entities: - - uid: 3096 + - uid: 7220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-44.5 + pos: 0.5,-125.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3047: - - Pressed: Toggle - 3046: - - Pressed: Toggle - 3045: - - Pressed: Toggle -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 4100 + - uid: 7232 components: - type: Transform - pos: -9.5,-79.5 + pos: 3.5,-121.5 parent: 1 -- proto: LockerFreezer - entities: - - uid: 8871 + - uid: 10074 components: - type: Transform - pos: -33.5,-82.5 + pos: -30.5,-119.5 parent: 1 -- proto: LockerFreezerBase - entities: - - uid: 8551 + - uid: 10111 components: - type: Transform - pos: -10.5,-85.5 + pos: -38.5,-113.5 parent: 1 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8552 - - 8553 - - 8554 - - 8555 - - 8556 - - 8557 - - 8558 - - 8559 - - 8560 - - 8561 - - 8562 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LootSpawnerArmory - entities: - - uid: 3949 + - uid: 10112 components: - type: Transform - pos: 8.5,-60.5 + pos: -29.5,-118.5 parent: 1 - - uid: 3973 + - uid: 10178 components: - type: Transform - pos: 9.5,-58.5 + pos: -39.5,-115.5 parent: 1 -- proto: LootSpawnerMaterialsHighValueConstruction - entities: - - uid: 4944 + - uid: 11278 components: - type: Transform - pos: -3.5,-71.5 + pos: 34.5,-107.5 parent: 1 -- proto: LootSpawnerMaterialsSurplus - entities: - - uid: 682 + - uid: 11279 components: - type: Transform - pos: 12.5,-0.5 + pos: 36.5,-110.5 parent: 1 - - uid: 683 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 4977 components: - type: Transform - pos: 13.5,0.5 + rot: 3.141592653589793 rad + pos: 3.5,-76.5 parent: 1 -- proto: LootSpawnerMedicalClassy +- proto: DeskBell entities: - - uid: 4529 + - uid: 3048 components: - type: Transform - pos: 18.5,-72.5 + pos: -0.08877623,-39.506153 parent: 1 - - uid: 4539 +- proto: DiceBag + entities: + - uid: 11662 components: - type: Transform - pos: 18.5,-70.5 + pos: 17.818012,-87.73239 parent: 1 - - uid: 4572 +- proto: DisposalBend + entities: + - uid: 1036 components: - type: Transform - pos: 16.5,-72.5 + rot: 1.5707963267948966 rad + pos: -21.5,-82.5 parent: 1 - - uid: 4580 + - uid: 1037 components: - type: Transform - pos: 14.5,-72.5 + rot: 1.5707963267948966 rad + pos: -23.5,-91.5 parent: 1 - - uid: 4946 + - uid: 1039 components: - type: Transform - pos: -5.5,-57.5 + rot: -1.5707963267948966 rad + pos: -21.5,-91.5 parent: 1 - - uid: 4947 + - uid: 1354 components: - type: Transform - pos: -5.5,-61.5 + rot: 1.5707963267948966 rad + pos: -25.5,-89.5 parent: 1 - - uid: 5176 + - uid: 1355 components: - type: Transform - pos: 16.5,-63.5 + rot: -1.5707963267948966 rad + pos: -25.5,-90.5 parent: 1 - - uid: 5179 + - uid: 6334 components: - type: Transform - pos: 17.5,-63.5 + pos: 20.5,-77.5 parent: 1 - - uid: 5401 + - uid: 6477 components: - type: Transform - pos: 16.5,-70.5 + rot: -1.5707963267948966 rad + pos: 20.5,-84.5 parent: 1 - - uid: 5402 + - uid: 11882 components: - type: Transform - pos: 14.5,-70.5 + pos: 17.5,-82.5 parent: 1 - - uid: 5419 + - uid: 12742 components: - type: Transform - pos: 16.5,-67.5 + rot: -1.5707963267948966 rad + pos: 16.5,-99.5 parent: 1 - - uid: 5420 + - uid: 12743 components: - type: Transform - pos: 13.5,-67.5 + rot: 3.141592653589793 rad + pos: 18.5,-99.5 parent: 1 -- proto: LootSpawnerSecurity - entities: - - uid: 4948 + - uid: 12749 components: - type: Transform - pos: -6.5,-61.5 + pos: 18.5,-85.5 parent: 1 - - uid: 4949 + - uid: 12750 components: - type: Transform - pos: -6.5,-65.5 + rot: 1.5707963267948966 rad + pos: 16.5,-86.5 parent: 1 - - uid: 4950 + - uid: 12818 components: - type: Transform - pos: -6.5,-57.5 + rot: 3.141592653589793 rad + pos: 14.5,-81.5 parent: 1 -- proto: LuxuryPen - entities: - - uid: 3964 + - uid: 12819 components: - type: Transform - pos: 3.5079834,-64.63967 + pos: 33.5,-82.5 parent: 1 -- proto: MaintenanceFluffSpawner +- proto: DisposalJunction entities: - - uid: 681 + - uid: 1086 components: - type: Transform - pos: 15.5,-0.5 + rot: 1.5707963267948966 rad + pos: 1.5,-82.5 parent: 1 - - uid: 10011 + - uid: 5989 components: - type: Transform - pos: -34.5,-88.5 + rot: 1.5707963267948966 rad + pos: 1.5,-82.5 parent: 1 - - uid: 10012 + - uid: 6350 components: - type: Transform - pos: -23.5,-92.5 + rot: 3.141592653589793 rad + pos: 20.5,-82.5 parent: 1 - - uid: 10013 + - uid: 12736 components: - type: Transform - pos: 16.5,-97.5 + rot: 3.141592653589793 rad + pos: 17.5,-85.5 parent: 1 - - uid: 10052 + - uid: 12738 components: - type: Transform - pos: 18.5,-85.5 + rot: 3.141592653589793 rad + pos: 18.5,-91.5 parent: 1 - - uid: 10053 + - uid: 12739 components: - type: Transform - pos: -12.5,-54.5 + rot: 3.141592653589793 rad + pos: 18.5,-91.5 parent: 1 - - uid: 10090 + - uid: 12740 components: - type: Transform - pos: 12.5,-77.5 + rot: 3.141592653589793 rad + pos: 18.5,-95.5 parent: 1 - - uid: 10130 + - uid: 12741 components: - type: Transform - pos: -10.5,-49.5 + rot: 3.141592653589793 rad + pos: 18.5,-95.5 parent: 1 - - uid: 10699 + - uid: 12748 components: - type: Transform - pos: -30.5,-75.5 + rot: 3.141592653589793 rad + pos: 18.5,-87.5 parent: 1 - - uid: 10701 +- proto: DisposalJunctionFlipped + entities: + - uid: 1290 components: - type: Transform - pos: -22.5,-76.5 + rot: 3.141592653589793 rad + pos: -21.5,-89.5 parent: 1 - - uid: 10865 + - uid: 1356 components: - type: Transform - pos: -36.5,-83.5 + rot: 3.141592653589793 rad + pos: -21.5,-88.5 parent: 1 - - uid: 10866 + - uid: 6356 components: - type: Transform - pos: -18.5,-75.5 + rot: 3.141592653589793 rad + pos: 20.5,-81.5 parent: 1 - - uid: 10867 + - uid: 12737 components: - type: Transform - pos: -11.5,-70.5 + rot: 3.141592653589793 rad + pos: 17.5,-86.5 parent: 1 - - uid: 10868 + - uid: 12744 components: - type: Transform - pos: -14.5,-67.5 + rot: 3.141592653589793 rad + pos: 16.5,-95.5 parent: 1 - - uid: 10869 + - uid: 12745 components: - type: Transform - pos: -10.5,-60.5 + rot: 3.141592653589793 rad + pos: 16.5,-91.5 parent: 1 -- proto: MaintenancePlantSpawner - entities: - - uid: 6483 + - uid: 12746 components: - type: Transform - pos: 13.5,-83.5 + rot: 3.141592653589793 rad + pos: 16.5,-91.5 parent: 1 - - uid: 6486 + - uid: 12747 components: - type: Transform - pos: 12.5,-85.5 + rot: 3.141592653589793 rad + pos: 16.5,-87.5 parent: 1 - - uid: 6507 +- proto: DisposalPipe + entities: + - uid: 1002 components: - type: Transform - pos: 12.5,-91.5 + pos: -23.5,-94.5 parent: 1 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 6484 + - uid: 1004 components: - type: Transform - pos: 14.5,-81.5 + pos: -23.5,-95.5 parent: 1 - - uid: 6501 + - uid: 1016 components: - type: Transform - pos: 14.5,-93.5 + pos: -23.5,-93.5 parent: 1 - - uid: 8993 + - uid: 1018 components: - type: Transform - pos: 14.5,-89.5 + pos: -21.5,-83.5 parent: 1 - - uid: 10134 + - uid: 1033 components: - type: Transform - pos: 14.5,-85.5 + rot: 1.5707963267948966 rad + pos: -20.5,-82.5 parent: 1 -- proto: Mattress - entities: - - uid: 262 + - uid: 1034 components: - type: Transform - pos: 14.5,-95.5 + rot: 1.5707963267948966 rad + pos: -19.5,-82.5 parent: 1 - - uid: 263 + - uid: 1035 components: - type: Transform - pos: 14.5,-91.5 + pos: -23.5,-92.5 parent: 1 - - uid: 264 + - uid: 1038 components: - type: Transform - pos: 12.5,-93.5 + rot: -1.5707963267948966 rad + pos: -22.5,-91.5 parent: 1 - - uid: 265 + - uid: 1040 components: - type: Transform - pos: 12.5,-99.5 + rot: 3.141592653589793 rad + pos: -21.5,-90.5 parent: 1 - - uid: 282 + - uid: 1253 components: - type: Transform - pos: 12.5,-89.5 + rot: 3.141592653589793 rad + pos: 20.5,-80.5 parent: 1 - - uid: 283 + - uid: 1275 components: - type: Transform - pos: 14.5,-87.5 + pos: -23.5,-96.5 parent: 1 - - uid: 284 + - uid: 1278 components: - type: Transform - pos: 12.5,-87.5 + pos: -23.5,-97.5 parent: 1 - - uid: 285 + - uid: 1287 components: - type: Transform - pos: 14.5,-83.5 + rot: 1.5707963267948966 rad + pos: -22.5,-88.5 parent: 1 - - uid: 286 + - uid: 1302 components: - type: Transform - pos: 12.5,-81.5 + pos: -23.5,-98.5 parent: 1 - - uid: 735 + - uid: 1305 components: - type: Transform - pos: 12.5,-97.5 + rot: 1.5707963267948966 rad + pos: -22.5,-89.5 parent: 1 -- proto: MedicalBed - entities: - - uid: 4322 + - uid: 1319 components: - type: Transform - pos: 16.5,-69.5 + rot: 1.5707963267948966 rad + pos: -23.5,-89.5 parent: 1 - - uid: 4379 + - uid: 1338 components: - type: Transform - pos: 14.5,-69.5 + rot: 1.5707963267948966 rad + pos: -24.5,-89.5 parent: 1 - - uid: 4396 + - uid: 1388 components: - type: Transform - pos: 16.5,-71.5 + rot: 3.141592653589793 rad + pos: -21.5,-87.5 parent: 1 - - uid: 5167 + - uid: 1389 components: - type: Transform - pos: 18.5,-71.5 + rot: 3.141592653589793 rad + pos: -21.5,-86.5 parent: 1 - - uid: 5168 + - uid: 1390 components: - type: Transform - pos: 14.5,-71.5 + rot: 3.141592653589793 rad + pos: -21.5,-85.5 parent: 1 - - uid: 5180 + - uid: 1391 components: - type: Transform - pos: 18.5,-69.5 + rot: 3.141592653589793 rad + pos: -21.5,-84.5 parent: 1 -- proto: MedicalTechFab - entities: - - uid: 5173 + - uid: 1561 components: - type: Transform - pos: 13.5,-63.5 + pos: 17.5,-101.5 parent: 1 -- proto: MedkitAdvancedFilled - entities: - - uid: 5174 + - uid: 5993 components: - type: Transform - pos: 13.29439,-65.586044 + rot: 3.141592653589793 rad + pos: 1.5,-83.5 parent: 1 -- proto: MedkitBruteFilled - entities: - - uid: 5165 + - uid: 6118 components: - type: Transform - pos: 16.35689,-65.19542 + rot: 3.141592653589793 rad + pos: 1.5,-84.5 parent: 1 -- proto: MedkitBurnFilled - entities: - - uid: 5166 + - uid: 6120 components: - type: Transform - pos: 16.653765,-65.492294 + pos: 17.5,-101.5 parent: 1 -- proto: MedkitCombatFilled - entities: - - uid: 4321 + - uid: 6355 components: - type: Transform - pos: 13.66939,-65.32042 + rot: 3.141592653589793 rad + pos: 20.5,-78.5 parent: 1 -- proto: MopBucketFull - entities: - - uid: 6504 + - uid: 6476 components: - type: Transform - pos: 14.5,-102.5 + rot: -1.5707963267948966 rad + pos: 19.5,-84.5 parent: 1 -- proto: MopItem - entities: - - uid: 6503 + - uid: 6478 components: - type: Transform - pos: 14.348649,-102.515686 + rot: 3.141592653589793 rad + pos: 20.5,-83.5 parent: 1 -- proto: NitrogenCanister - entities: - - uid: 8710 + - uid: 6480 components: - type: Transform - pos: -3.5,-51.5 + rot: 3.141592653589793 rad + pos: 20.5,-79.5 parent: 1 -- proto: OrganArachnidHeart - entities: - - uid: 3190 + - uid: 7368 components: - type: Transform - pos: 0.51143837,-104.341965 + rot: -1.5707963267948966 rad + pos: 18.5,-84.5 parent: 1 -- proto: OrganArachnidTongue - entities: - - uid: 3528 + - uid: 7609 components: - type: Transform - pos: -1.5510616,-104.29509 + rot: 1.5707963267948966 rad + pos: 7.5,-83.5 parent: 1 -- proto: OxygenCanister - entities: - - uid: 8709 + - uid: 8565 components: - type: Transform - pos: -3.5,-53.5 + pos: 17.5,-83.5 parent: 1 -- proto: Pickaxe - entities: - - uid: 7562 + - uid: 10937 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.205107,-100.44877 + pos: 9.5,-82.5 parent: 1 - - uid: 7598 + - uid: 11104 components: - type: Transform - pos: 11.5,-105.5 + rot: -1.5707963267948966 rad + pos: 6.5,-82.5 parent: 1 - - uid: 7627 + - uid: 11273 components: - type: Transform - pos: 18.5,-95.5 + rot: -1.5707963267948966 rad + pos: 7.5,-82.5 parent: 1 - - uid: 7635 + - uid: 11274 components: - type: Transform - pos: -26.5,-91.5 + rot: -1.5707963267948966 rad + pos: 5.5,-82.5 parent: 1 - - uid: 7638 + - uid: 11415 components: - type: Transform - pos: 6.5,-78.5 + rot: -1.5707963267948966 rad + pos: 10.5,-82.5 parent: 1 - - uid: 7648 + - uid: 11442 components: - type: Transform - pos: -32.5,-105.5 + rot: -1.5707963267948966 rad + pos: 8.5,-82.5 parent: 1 - - uid: 7666 + - uid: 11699 components: - type: Transform - pos: -29.5,-123.5 + rot: -1.5707963267948966 rad + pos: 4.5,-82.5 parent: 1 - - uid: 7668 + - uid: 11703 components: - type: Transform - pos: -34.5,-76.5 + rot: -1.5707963267948966 rad + pos: 11.5,-82.5 parent: 1 - - uid: 7669 + - uid: 11757 components: - type: Transform - pos: -14.5,-72.5 + rot: -1.5707963267948966 rad + pos: 2.5,-82.5 parent: 1 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 3974 + - uid: 11765 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-60.5 + pos: 3.5,-82.5 parent: 1 - - uid: 3976 + - uid: 11766 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-60.5 + rot: -1.5707963267948966 rad + pos: 12.5,-82.5 parent: 1 - - uid: 4363 + - uid: 11806 components: - type: Transform - pos: 6.5,-60.5 + rot: -1.5707963267948966 rad + pos: 0.5,-82.5 parent: 1 - - uid: 4374 + - uid: 11807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-60.5 + rot: -1.5707963267948966 rad + pos: 13.5,-82.5 parent: 1 - - uid: 4375 + - uid: 11885 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-58.5 + pos: 16.5,-82.5 parent: 1 - - uid: 4376 + - uid: 11886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-58.5 + rot: -1.5707963267948966 rad + pos: 14.5,-82.5 parent: 1 - - uid: 4389 + - uid: 11931 components: - type: Transform - pos: 6.5,-58.5 + rot: -1.5707963267948966 rad + pos: -4.5,-82.5 parent: 1 - - uid: 4390 + - uid: 11933 components: - type: Transform - pos: 6.5,-58.5 + rot: -1.5707963267948966 rad + pos: -5.5,-82.5 parent: 1 - - uid: 4399 + - uid: 11935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-58.5 + rot: -1.5707963267948966 rad + pos: -3.5,-82.5 parent: 1 - - uid: 4401 + - uid: 11936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-58.5 + rot: -1.5707963267948966 rad + pos: -0.5,-82.5 parent: 1 - - uid: 4412 + - uid: 11937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-58.5 + rot: -1.5707963267948966 rad + pos: 15.5,-82.5 parent: 1 - - uid: 8700 + - uid: 11938 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-59.5 + pos: -12.5,-82.5 parent: 1 - - uid: 8701 + - uid: 11939 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-59.5 + rot: -1.5707963267948966 rad + pos: -11.5,-82.5 parent: 1 - - uid: 8702 + - uid: 11940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-59.5 + rot: -1.5707963267948966 rad + pos: -1.5,-82.5 parent: 1 - - uid: 8703 + - uid: 11984 components: - type: Transform - pos: 8.5,-59.5 + rot: -1.5707963267948966 rad + pos: -6.5,-82.5 parent: 1 - - uid: 8704 + - uid: 11985 components: - type: Transform - pos: 9.5,-59.5 + rot: -1.5707963267948966 rad + pos: -7.5,-82.5 parent: 1 - - uid: 8705 + - uid: 11986 components: - type: Transform - pos: 10.5,-59.5 + rot: -1.5707963267948966 rad + pos: -8.5,-82.5 parent: 1 - - uid: 8706 + - uid: 11987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-59.5 + rot: -1.5707963267948966 rad + pos: -9.5,-82.5 parent: 1 - - uid: 8707 + - uid: 11988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-59.5 + rot: -1.5707963267948966 rad + pos: -2.5,-82.5 parent: 1 -- proto: PlushieNar - entities: - - uid: 6266 + - uid: 11990 components: - type: Transform - pos: -0.51981163,-104.45134 + rot: -1.5707963267948966 rad + pos: -16.5,-82.5 parent: 1 -- proto: PosterContrabandMissingSpacepen - entities: - - uid: 2422 + - uid: 12023 components: - type: Transform - pos: 16.5,-66.5 + rot: -1.5707963267948966 rad + pos: -10.5,-82.5 parent: 1 - - uid: 4976 + - uid: 12030 components: - type: Transform - pos: 1.5,-73.5 + rot: -1.5707963267948966 rad + pos: -17.5,-82.5 parent: 1 -- proto: PottedPlantRandom - entities: - - uid: 8766 + - uid: 12077 components: - type: Transform - pos: 9.5,-102.5 + rot: -1.5707963267948966 rad + pos: -18.5,-82.5 parent: 1 - - uid: 8768 + - uid: 12078 components: - type: Transform - pos: -4.5,-88.5 + rot: -1.5707963267948966 rad + pos: -15.5,-82.5 parent: 1 - - uid: 8769 + - uid: 12094 components: - type: Transform - pos: 3.5,-88.5 + rot: -1.5707963267948966 rad + pos: -13.5,-82.5 parent: 1 - - uid: 8770 + - uid: 12095 components: - type: Transform - pos: 3.5,-90.5 + rot: -1.5707963267948966 rad + pos: -14.5,-82.5 parent: 1 - - uid: 8771 + - uid: 12683 components: - type: Transform - pos: -4.5,-90.5 + rot: 1.5707963267948966 rad + pos: 10.5,-87.5 parent: 1 - - uid: 8772 + - uid: 12684 components: - type: Transform - pos: -15.5,-85.5 + rot: 1.5707963267948966 rad + pos: 11.5,-87.5 parent: 1 - - uid: 8773 + - uid: 12685 components: - type: Transform - pos: -15.5,-81.5 + rot: 1.5707963267948966 rad + pos: 12.5,-87.5 parent: 1 - - uid: 8774 + - uid: 12686 components: - type: Transform - pos: -15.5,-83.5 + rot: 1.5707963267948966 rad + pos: 13.5,-87.5 parent: 1 -- proto: PottedPlantRandomPlastic - entities: - - uid: 5763 + - uid: 12687 components: - type: Transform - pos: 0.5,-51.5 + rot: 1.5707963267948966 rad + pos: 14.5,-87.5 parent: 1 - - uid: 5764 + - uid: 12688 components: - type: Transform - pos: 0.5,-57.5 + rot: 1.5707963267948966 rad + pos: 15.5,-87.5 parent: 1 - - uid: 5805 + - uid: 12689 components: - type: Transform - pos: -3.5,-65.5 + rot: 1.5707963267948966 rad + pos: 20.5,-87.5 parent: 1 - - uid: 5807 + - uid: 12690 components: - type: Transform - pos: 0.5,-53.5 + rot: 1.5707963267948966 rad + pos: 21.5,-87.5 parent: 1 - - uid: 5808 + - uid: 12691 components: - type: Transform - pos: -1.5,-51.5 + rot: 1.5707963267948966 rad + pos: 22.5,-87.5 parent: 1 - - uid: 5809 + - uid: 12692 components: - type: Transform - pos: -3.5,-69.5 + rot: 1.5707963267948966 rad + pos: 23.5,-87.5 parent: 1 - - uid: 5812 + - uid: 12693 components: - type: Transform - pos: -1.5,-53.5 + rot: 1.5707963267948966 rad + pos: 24.5,-87.5 parent: 1 - - uid: 5814 + - uid: 12694 components: - type: Transform - pos: 9.5,-65.5 + rot: 1.5707963267948966 rad + pos: 19.5,-87.5 parent: 1 - - uid: 5817 + - uid: 12695 components: - type: Transform - pos: 2.5,-62.5 + rot: 1.5707963267948966 rad + pos: 10.5,-91.5 parent: 1 - - uid: 5818 + - uid: 12696 components: - type: Transform - pos: -3.5,-57.5 + rot: 1.5707963267948966 rad + pos: 11.5,-91.5 parent: 1 - - uid: 5819 + - uid: 12697 components: - type: Transform - pos: 2.5,-66.5 + rot: 1.5707963267948966 rad + pos: 12.5,-91.5 parent: 1 - - uid: 5825 + - uid: 12698 components: - type: Transform - pos: -3.5,-61.5 + rot: 1.5707963267948966 rad + pos: 13.5,-91.5 parent: 1 -- proto: PowerCellRecharger - entities: - - uid: 4634 + - uid: 12699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-67.5 + rot: 1.5707963267948966 rad + pos: 14.5,-91.5 parent: 1 -- proto: Poweredlight - entities: - - uid: 2408 + - uid: 12700 components: - type: Transform - pos: 18.5,-63.5 + rot: 1.5707963267948966 rad + pos: 15.5,-91.5 parent: 1 - - uid: 3816 + - uid: 12701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-50.5 + rot: 1.5707963267948966 rad + pos: 19.5,-91.5 parent: 1 - - uid: 3817 + - uid: 12702 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-50.5 + pos: 20.5,-91.5 parent: 1 - - uid: 3819 + - uid: 12703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-54.5 + rot: 1.5707963267948966 rad + pos: 21.5,-91.5 parent: 1 - - uid: 3820 + - uid: 12704 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-54.5 + pos: 22.5,-91.5 parent: 1 - - uid: 3930 + - uid: 12705 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-58.5 + pos: 23.5,-91.5 parent: 1 - - uid: 3931 + - uid: 12706 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-62.5 + pos: 24.5,-91.5 parent: 1 - - uid: 3932 + - uid: 12707 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-66.5 + pos: 24.5,-95.5 parent: 1 - - uid: 3933 + - uid: 12708 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-70.5 + pos: 23.5,-95.5 parent: 1 - - uid: 3934 + - uid: 12709 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-59.5 + pos: 22.5,-95.5 parent: 1 - - uid: 3935 + - uid: 12710 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-63.5 + pos: 21.5,-95.5 parent: 1 - - uid: 3936 + - uid: 12711 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-67.5 + pos: 20.5,-95.5 parent: 1 - - uid: 3937 + - uid: 12712 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-71.5 + pos: 19.5,-95.5 parent: 1 - - uid: 3977 + - uid: 12713 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-57.5 + pos: 15.5,-95.5 parent: 1 - - uid: 3979 + - uid: 12714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-65.5 + rot: 1.5707963267948966 rad + pos: 14.5,-95.5 parent: 1 - - uid: 3980 + - uid: 12715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-63.5 + rot: 1.5707963267948966 rad + pos: 13.5,-95.5 parent: 1 - - uid: 3981 + - uid: 12716 components: - type: Transform - pos: 5.5,-57.5 + rot: 1.5707963267948966 rad + pos: 12.5,-95.5 parent: 1 - - uid: 3982 + - uid: 12717 components: - type: Transform - pos: 1.5,-57.5 + rot: 1.5707963267948966 rad + pos: 11.5,-95.5 parent: 1 - - uid: 3983 + - uid: 12718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-71.5 + rot: 1.5707963267948966 rad + pos: 10.5,-95.5 parent: 1 - - uid: 4359 + - uid: 12719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-60.5 + rot: 1.5707963267948966 rad + pos: 15.5,-99.5 parent: 1 - - uid: 4360 + - uid: 12720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-58.5 + rot: 1.5707963267948966 rad + pos: 14.5,-99.5 parent: 1 - - uid: 4394 + - uid: 12721 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-72.5 + pos: 13.5,-99.5 parent: 1 - - uid: 4418 + - uid: 12722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-68.5 + rot: 1.5707963267948966 rad + pos: 12.5,-99.5 parent: 1 - - uid: 4644 + - uid: 12723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-68.5 + rot: 1.5707963267948966 rad + pos: 11.5,-99.5 parent: 1 - - uid: 4653 + - uid: 12724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-70.5 + rot: 1.5707963267948966 rad + pos: 10.5,-99.5 parent: 1 - - uid: 4661 + - uid: 12725 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-61.5 + pos: 19.5,-99.5 parent: 1 - - uid: 4662 + - uid: 12726 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-67.5 + pos: 20.5,-99.5 parent: 1 - - uid: 4663 + - uid: 12727 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-71.5 + pos: 21.5,-99.5 parent: 1 - - uid: 4766 + - uid: 12728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-64.5 + rot: 1.5707963267948966 rad + pos: 22.5,-99.5 parent: 1 - - uid: 5075 + - uid: 12729 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-75.5 + pos: 23.5,-99.5 parent: 1 - - uid: 5076 + - uid: 12730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-75.5 + rot: 1.5707963267948966 rad + pos: 24.5,-99.5 parent: 1 - - uid: 5177 + - uid: 12733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-72.5 + rot: 3.141592653589793 rad + pos: 17.5,-100.5 parent: 1 - - uid: 5386 + - uid: 12751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-68.5 + pos: 18.5,-86.5 parent: 1 - - uid: 5398 + - uid: 12752 components: - type: Transform - pos: 14.5,-63.5 + pos: 18.5,-88.5 parent: 1 - - uid: 5406 + - uid: 12753 components: - type: Transform - pos: 9.5,-74.5 + pos: 18.5,-89.5 parent: 1 - - uid: 5529 + - uid: 12754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-78.5 + pos: 18.5,-90.5 parent: 1 - - uid: 5532 + - uid: 12755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-78.5 + pos: 16.5,-88.5 parent: 1 -- proto: PoweredlightCyan - entities: - - uid: 259 + - uid: 12756 components: - type: Transform - pos: -1.5,1.5 - parent: 8566 - - uid: 2421 + pos: 16.5,-89.5 + parent: 1 + - uid: 12757 components: - type: Transform - pos: 4.5,-73.5 + pos: 16.5,-90.5 parent: 1 - - uid: 4998 + - uid: 12758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-75.5 + pos: 16.5,-92.5 parent: 1 - - uid: 8670 + - uid: 12759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 8566 -- proto: PoweredlightSodium - entities: - - uid: 72 + pos: 16.5,-93.5 + parent: 1 + - uid: 12760 components: - type: Transform - pos: -3.5,0.5 + pos: 16.5,-94.5 parent: 1 - - uid: 74 + - uid: 12761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 + pos: 18.5,-92.5 parent: 1 - - uid: 77 + - uid: 12762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,2.5 + pos: 18.5,-93.5 parent: 1 - - uid: 79 + - uid: 12763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 + pos: 18.5,-94.5 parent: 1 - - uid: 287 + - uid: 12764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-102.5 + pos: 16.5,-96.5 parent: 1 - - uid: 3242 + - uid: 12765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-90.5 + pos: 16.5,-97.5 parent: 1 - - uid: 3453 + - uid: 12766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-98.5 + pos: 16.5,-98.5 parent: 1 - - uid: 3489 + - uid: 12767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-94.5 + pos: 18.5,-96.5 parent: 1 - - uid: 3808 + - uid: 12768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-50.5 + pos: 18.5,-97.5 parent: 1 - - uid: 3809 + - uid: 12769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-54.5 + pos: 18.5,-98.5 parent: 1 - - uid: 3810 + - uid: 12770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-50.5 + rot: 3.141592653589793 rad + pos: 17.5,-87.5 parent: 1 - - uid: 3811 + - uid: 12771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-54.5 + rot: 3.141592653589793 rad + pos: 17.5,-88.5 parent: 1 - - uid: 3812 + - uid: 12772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-50.5 + rot: 3.141592653589793 rad + pos: 17.5,-89.5 parent: 1 - - uid: 3813 + - uid: 12773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-50.5 + rot: 3.141592653589793 rad + pos: 17.5,-90.5 parent: 1 - - uid: 3814 + - uid: 12774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-54.5 + rot: 3.141592653589793 rad + pos: 17.5,-91.5 parent: 1 - - uid: 3815 + - uid: 12775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-54.5 + rot: 3.141592653589793 rad + pos: 17.5,-92.5 parent: 1 - - uid: 4009 + - uid: 12776 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-102.5 + pos: 17.5,-93.5 parent: 1 - - uid: 4995 + - uid: 12777 components: - type: Transform - pos: -4.5,-73.5 + rot: 3.141592653589793 rad + pos: 17.5,-94.5 parent: 1 - - uid: 5001 + - uid: 12778 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-75.5 + pos: 17.5,-95.5 parent: 1 - - uid: 5834 + - uid: 12779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-83.5 + rot: 3.141592653589793 rad + pos: 17.5,-96.5 parent: 1 - - uid: 5836 + - uid: 12780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-86.5 + rot: 3.141592653589793 rad + pos: 17.5,-97.5 parent: 1 - - uid: 5837 + - uid: 12781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-81.5 + rot: 3.141592653589793 rad + pos: 17.5,-98.5 parent: 1 - - uid: 8831 + - uid: 12782 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-86.5 + pos: 17.5,-99.5 parent: 1 - - uid: 8838 + - uid: 12814 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-86.5 + pos: 14.5,-77.5 parent: 1 - - uid: 8851 + - uid: 12815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-83.5 + pos: 14.5,-78.5 parent: 1 - - uid: 8852 + - uid: 12816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-81.5 + pos: 14.5,-79.5 parent: 1 - - uid: 8853 + - uid: 12817 components: - type: Transform - pos: -21.5,-78.5 + pos: 14.5,-80.5 parent: 1 - - uid: 8854 + - uid: 12820 components: - type: Transform - pos: -27.5,-78.5 + rot: -1.5707963267948966 rad + pos: 32.5,-82.5 parent: 1 - - uid: 8866 + - uid: 12821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-82.5 + rot: -1.5707963267948966 rad + pos: 31.5,-82.5 parent: 1 - - uid: 8867 + - uid: 12822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-79.5 + rot: -1.5707963267948966 rad + pos: 30.5,-82.5 parent: 1 - - uid: 8868 + - uid: 12823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-83.5 + rot: -1.5707963267948966 rad + pos: 29.5,-82.5 parent: 1 - - uid: 8869 + - uid: 12824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-85.5 + rot: -1.5707963267948966 rad + pos: 28.5,-82.5 parent: 1 -- proto: PoweredSmallLight - entities: - - uid: 148 + - uid: 12825 components: - type: Transform - pos: -1.5,12.5 + rot: -1.5707963267948966 rad + pos: 27.5,-82.5 parent: 1 - - uid: 149 + - uid: 12826 components: - type: Transform - pos: 0.5,12.5 + rot: -1.5707963267948966 rad + pos: 26.5,-82.5 parent: 1 - - uid: 277 + - uid: 12827 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-99.5 + rot: -1.5707963267948966 rad + pos: 25.5,-82.5 parent: 1 - - uid: 278 + - uid: 12828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-95.5 + rot: -1.5707963267948966 rad + pos: 24.5,-82.5 parent: 1 - - uid: 279 + - uid: 12829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-91.5 + rot: -1.5707963267948966 rad + pos: 23.5,-82.5 parent: 1 - - uid: 280 + - uid: 12830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-87.5 + rot: -1.5707963267948966 rad + pos: 22.5,-82.5 parent: 1 - - uid: 281 + - uid: 12831 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-83.5 + rot: -1.5707963267948966 rad + pos: 21.5,-82.5 parent: 1 - - uid: 448 + - uid: 12832 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,0.5 + pos: 19.5,-81.5 parent: 1 - - uid: 449 + - uid: 12833 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-1.5 + pos: 18.5,-81.5 parent: 1 - - uid: 671 + - uid: 12834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-2.5 + rot: -1.5707963267948966 rad + pos: 17.5,-81.5 parent: 1 - - uid: 672 + - uid: 12835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-2.5 + rot: -1.5707963267948966 rad + pos: 16.5,-81.5 parent: 1 - - uid: 673 + - uid: 12836 components: - type: Transform - pos: 12.5,1.5 + rot: -1.5707963267948966 rad + pos: 15.5,-81.5 parent: 1 - - uid: 674 +- proto: DisposalPipeBroken + entities: + - uid: 6337 components: - type: Transform - pos: 15.5,1.5 + rot: 1.5707963267948966 rad + pos: 19.5,-77.5 parent: 1 - - uid: 3144 +- proto: DisposalTrunk + entities: + - uid: 1303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-102.5 + rot: 1.5707963267948966 rad + pos: -23.5,-88.5 parent: 1 - - uid: 3146 + - uid: 1462 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-102.5 + pos: -23.5,-99.5 parent: 1 - - uid: 3147 + - uid: 1468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-90.5 + parent: 1 + - uid: 6018 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-102.5 + pos: 1.5,-85.5 parent: 1 - - uid: 5940 + - uid: 6217 components: - type: Transform - pos: 13.5,-89.5 + rot: 1.5707963267948966 rad + pos: -26.5,-90.5 parent: 1 - - uid: 5943 + - uid: 12675 components: - type: Transform - pos: 13.5,-81.5 + rot: -1.5707963267948966 rad + pos: 25.5,-87.5 parent: 1 - - uid: 5952 + - uid: 12676 components: - type: Transform - pos: 13.5,-93.5 + rot: -1.5707963267948966 rad + pos: 25.5,-91.5 parent: 1 - - uid: 5953 + - uid: 12677 components: - type: Transform - pos: 13.5,-85.5 + rot: -1.5707963267948966 rad + pos: 25.5,-95.5 parent: 1 - - uid: 5961 + - uid: 12678 components: - type: Transform - pos: 13.5,-97.5 + rot: -1.5707963267948966 rad + pos: 25.5,-99.5 parent: 1 - - uid: 8821 + - uid: 12679 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-79.5 + pos: 9.5,-99.5 parent: 1 - - uid: 8822 + - uid: 12680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-79.5 + rot: 1.5707963267948966 rad + pos: 9.5,-95.5 parent: 1 - - uid: 10164 + - uid: 12681 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 10146 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PRISONAirlockGlassLockedBrig - entities: - - uid: 3860 + pos: 9.5,-91.5 + parent: 1 + - uid: 12682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-58.5 + rot: 1.5707963267948966 rad + pos: 9.5,-87.5 parent: 1 - - uid: 3861 + - uid: 12732 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-62.5 + pos: 17.5,-102.5 parent: 1 - - uid: 3862 + - uid: 12812 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-66.5 + pos: 33.5,-83.5 parent: 1 - - uid: 3887 + - uid: 12813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-70.5 + pos: 14.5,-76.5 parent: 1 - - uid: 4641 +- proto: DisposalUnit + entities: + - uid: 2641 components: - type: Transform - pos: 6.5,-68.5 + pos: -23.5,-99.5 parent: 1 - - uid: 4650 + - uid: 3216 components: - type: Transform - pos: 6.5,-69.5 + pos: -23.5,-99.5 parent: 1 - - uid: 4658 + - uid: 4117 components: - type: Transform - pos: 6.5,-70.5 + pos: -23.5,-88.5 parent: 1 - - uid: 5115 + - uid: 6119 components: - type: Transform - pos: -1.5,-80.5 + pos: 1.5,-85.5 parent: 1 - - uid: 5124 + - uid: 6214 components: - type: Transform - pos: -0.5,-80.5 + pos: -26.5,-90.5 parent: 1 - - uid: 5125 + - uid: 12731 components: - type: Transform - pos: 0.5,-80.5 + pos: 17.5,-102.5 parent: 1 -- proto: PRISONAirlockGlassLockedMed - entities: - - uid: 2395 + - uid: 12808 components: - type: Transform - pos: 6.5,-74.5 + pos: 33.5,-83.5 parent: 1 - - uid: 2417 + - uid: 12809 components: - type: Transform - pos: 12.5,-74.5 + pos: 14.5,-76.5 parent: 1 - - uid: 2432 +- proto: DisposalYJunction + entities: + - uid: 1538 components: - type: Transform - pos: 1.5,-74.5 + rot: 1.5707963267948966 rad + pos: 17.5,-84.5 parent: 1 - - uid: 4467 +- proto: DonkpocketBoxSpawner + entities: + - uid: 4945 components: - type: Transform - pos: 14.5,-66.5 + pos: 3.5,-64.5 parent: 1 - - uid: 4524 + - uid: 7637 components: - type: Transform - pos: 15.5,-66.5 + pos: -14.5,-89.5 parent: 1 -- proto: PRISONAirlockGlassLockedPrisoner +- proto: DresserFilled entities: - - uid: 2894 + - uid: 4003 components: - type: Transform - pos: -1.5,-84.5 + pos: 8.5,-63.5 parent: 1 - - uid: 2896 +- proto: EmergencyLight + entities: + - uid: 11607 components: - type: Transform - pos: -0.5,-84.5 + rot: -1.5707963267948966 rad + pos: 20.5,-101.5 parent: 1 - - uid: 2903 + - uid: 11611 components: - type: Transform - pos: 0.5,-84.5 + rot: 1.5707963267948966 rad + pos: 14.5,-101.5 parent: 1 - - uid: 5499 + - uid: 11633 components: - type: Transform - pos: -14.5,-80.5 + rot: 3.141592653589793 rad + pos: 16.5,-102.5 parent: 1 - - uid: 5504 + - uid: 11634 components: - type: Transform - pos: -13.5,-80.5 + rot: 3.141592653589793 rad + pos: 18.5,-102.5 parent: 1 - - uid: 5746 +- proto: EmergencyRollerBed + entities: + - uid: 4587 components: - type: Transform - pos: -13.5,-84.5 + pos: 15.5,-74.5 parent: 1 - - uid: 5762 + - uid: 4602 components: - type: Transform - pos: -14.5,-84.5 + pos: 19.5,-74.5 parent: 1 - - uid: 8982 +- proto: FaxMachineBase + entities: + - uid: 3963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-82.5 + pos: 3.5,-63.5 parent: 1 -- proto: PRISONAirlockGlassShuttleLocked + - type: FaxMachine + name: PRISON +- proto: FireAlarm entities: - - uid: 8671 + - uid: 208 components: - type: Transform - pos: 0.5,-1.5 + rot: 3.141592653589793 rad + pos: -1.5,2.5 parent: 8566 -- proto: PRISONAirlockLocked - entities: - - uid: 151 + - uid: 7622 components: - type: Transform - pos: -0.5,13.5 + rot: 1.5707963267948966 rad + pos: -2.5,-53.5 parent: 1 - - uid: 3117 + - uid: 7625 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-48.5 + pos: 2.5,-80.5 parent: 1 - - uid: 3823 +- proto: Firelock + entities: + - uid: 2400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-56.5 + pos: 12.5,-74.5 parent: 1 - - uid: 8870 + - uid: 2430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-81.5 + pos: 6.5,-74.5 parent: 1 -- proto: PRISONAirlockLockedBrig - entities: - - uid: 6387 + - uid: 3168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-82.5 + pos: 1.5,-52.5 parent: 1 - - uid: 6574 + - uid: 3172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-82.5 + pos: -2.5,-52.5 parent: 1 -- proto: PRISONAirlockLockedEng - entities: - - uid: 447 + - uid: 3893 components: - type: Transform - pos: 9.5,-0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-60.5 parent: 1 - - uid: 3806 + - uid: 3907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-52.5 + rot: 1.5707963267948966 rad + pos: -2.5,-59.5 parent: 1 - - uid: 3807 + - uid: 3918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-52.5 + rot: 1.5707963267948966 rad + pos: -2.5,-64.5 parent: 1 - - uid: 4099 + - uid: 3922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-80.5 + rot: 1.5707963267948966 rad + pos: -2.5,-68.5 parent: 1 - - uid: 5003 + - uid: 3929 components: - type: Transform - pos: -2.5,-74.5 + rot: 1.5707963267948966 rad + pos: -2.5,-69.5 parent: 1 -- proto: PRISONAirlockLockedHeadOfPrison - entities: - - uid: 3999 + - uid: 7599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-64.5 + pos: 0.5,-80.5 parent: 1 - - uid: 4361 + - uid: 7600 components: - type: Transform - pos: 6.5,-59.5 + pos: 0.5,-80.5 parent: 1 -- proto: PRISONAirlockLockedPrisoner - entities: - - uid: 5938 + - uid: 7601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-86.5 + pos: -0.5,-80.5 parent: 1 - - uid: 5941 + - uid: 7602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-90.5 + pos: -1.5,-80.5 parent: 1 - - uid: 5942 + - uid: 7603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-94.5 + pos: -5.5,-80.5 parent: 1 - - uid: 5951 + - uid: 7604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-82.5 + pos: -8.5,-82.5 parent: 1 -- proto: PRISONComputerShuttle - entities: - - uid: 8672 + - uid: 7605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 8566 -- proto: PRISONComputerShuttlePrison - entities: - - uid: 4005 + pos: 7.5,-82.5 + parent: 1 + - uid: 7606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-65.5 + pos: -1.5,-84.5 parent: 1 -- proto: PRISONEncryptionKey - entities: - - uid: 8698 + - uid: 7607 components: - type: Transform - parent: 8697 - - type: Physics - canCollide: False -- proto: PRISONFlag - entities: - - uid: 4627 + pos: -0.5,-84.5 + parent: 1 + - uid: 7608 components: - type: Transform - pos: 6.5,-71.5 + pos: 0.5,-84.5 parent: 1 - - uid: 4635 + - uid: 7611 components: - type: Transform - pos: 6.5,-67.5 + pos: -14.5,-84.5 parent: 1 - - uid: 4636 + - uid: 7612 components: - type: Transform - pos: 6.5,-71.5 + pos: -13.5,-84.5 parent: 1 -- proto: PRISONLockerFilled - entities: - - uid: 3906 + - uid: 7613 components: - type: Transform - pos: -6.5,-59.5 + pos: -2.5,-74.5 parent: 1 - - uid: 3907 + - uid: 7615 components: - type: Transform - pos: -6.5,-63.5 + pos: 1.5,-74.5 parent: 1 - - uid: 3908 + - uid: 7619 components: - type: Transform - pos: -6.5,-67.5 + pos: -0.5,-56.5 parent: 1 - - uid: 3919 + - uid: 7620 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 1 + - uid: 7621 components: - type: Transform - pos: -6.5,-71.5 + pos: -0.5,-48.5 parent: 1 -- proto: PRISONLockerHeadOfPrisonFilled + - uid: 7947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-80.5 + parent: 1 + - uid: 8831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-80.5 + parent: 1 + - uid: 12926 + components: + - type: Transform + pos: 27.5,-82.5 + parent: 1 +- proto: Floodlight entities: - - uid: 4001 + - uid: 1137 components: - type: Transform - pos: 10.5,-63.5 + pos: 0.8288462,14.809326 parent: 1 -- proto: PRISONShuttleWindow + - uid: 1138 + components: + - type: Transform + pos: -1.9524038,14.778076 + parent: 1 +- proto: FloorDrain entities: - - uid: 241 + - uid: 271 + components: + - type: Transform + pos: -12.5,-76.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 272 + components: + - type: Transform + pos: -12.5,-78.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 273 + components: + - type: Transform + pos: -14.5,-78.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 274 + components: + - type: Transform + pos: -14.5,-76.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 275 + components: + - type: Transform + pos: -16.5,-76.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 276 + components: + - type: Transform + pos: -16.5,-78.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 5823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-101.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 5829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-100.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 6187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-86.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 6188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-87.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 10246 + components: + - type: Transform + pos: 24.5,-78.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemGratingMaint + entities: + - uid: 5024 components: - type: Transform rot: 1.5707963267948966 rad + pos: -5.4978137,-73.47571 + parent: 1 +- proto: FloraTree01 + entities: + - uid: 2468 + components: + - type: Transform + pos: -8.0479355,-96.52573 + parent: 1 +- proto: FloraTree02 + entities: + - uid: 2475 + components: + - type: Transform + pos: 7.0776973,-96.65173 + parent: 1 +- proto: FloraTree03 + entities: + - uid: 2469 + components: + - type: Transform + pos: -7.907311,-91.33345 + parent: 1 +- proto: FloraTree06 + entities: + - uid: 2474 + components: + - type: Transform + pos: 7.1773014,-91.21377 + parent: 1 + - uid: 12600 + components: + - type: Transform + pos: 7.3036175,-86.2279 + parent: 1 +- proto: FloraTreeLarge03 + entities: + - uid: 2454 + components: + - type: Transform + pos: 7.0921116,-102.15223 + parent: 1 + - uid: 2900 + components: + - type: Transform + pos: -7.9600058,-86.39285 + parent: 1 + - uid: 2905 + components: + - type: Transform + pos: -7.907311,-101.98691 + parent: 1 +- proto: FoodMeatRatdoubleKebab + entities: + - uid: 5405 + components: + - type: Transform + pos: 17.5,-58.5 + parent: 1 +- proto: FoodMeatRotten + entities: + - uid: 2020 + components: + - type: Transform + pos: 3.0095332,15.295967 + parent: 1 +- proto: GeneratorBasic15kW + entities: + - uid: 244 + components: + - type: Transform + pos: -2.5,0.5 + parent: 8566 + - uid: 625 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 3640 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 1 + - uid: 3641 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 1 + - uid: 3642 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 1 + - uid: 3643 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 8232 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 8217 + - uid: 10162 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 10146 + - uid: 10946 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 10867 +- proto: GeneratorWallmountBasic + entities: + - uid: 239 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 8566 + - uid: 5885 + components: + - type: Transform + pos: -2.5,-77.5 + parent: 1 +- proto: Grille + entities: + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 8566 - - uid: 242 + - uid: 217 components: - type: Transform - rot: 1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 8566 - - uid: 254 + - uid: 255 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 8566 - - uid: 8673 + - uid: 3057 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 1 + - uid: 3058 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 1 + - uid: 3059 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 1 + - uid: 3060 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 1 + - uid: 3143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-92.5 + parent: 1 + - uid: 4398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-60.5 + parent: 1 + - uid: 4403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-58.5 + parent: 1 + - uid: 4791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-92.5 + parent: 1 + - uid: 5750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-95.5 + parent: 1 + - uid: 5753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-93.5 + parent: 1 + - uid: 5758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-96.5 + parent: 1 + - uid: 5759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-94.5 + parent: 1 + - uid: 5760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-91.5 + parent: 1 + - uid: 7361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-86.5 + parent: 1 + - uid: 7363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-90.5 + parent: 1 + - uid: 7367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-85.5 + parent: 1 + - uid: 7412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-89.5 + parent: 1 + - uid: 7433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-93.5 + parent: 1 + - uid: 7436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-93.5 + parent: 1 + - uid: 7437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-94.5 + parent: 1 + - uid: 7438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-98.5 + parent: 1 + - uid: 7452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-97.5 + parent: 1 + - uid: 7456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-98.5 + parent: 1 + - uid: 7484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-97.5 + parent: 1 + - uid: 7487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-85.5 + parent: 1 + - uid: 7491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-94.5 + parent: 1 + - uid: 7492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-90.5 + parent: 1 + - uid: 7494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-89.5 + parent: 1 + - uid: 7495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-86.5 + parent: 1 + - uid: 8233 + components: + - type: Transform + pos: -0.5,1.5 + parent: 8217 + - uid: 8667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 8566 + - uid: 8668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 8566 + - uid: 8708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-59.5 + parent: 1 + - uid: 10163 + components: + - type: Transform + pos: -0.5,1.5 + parent: 10146 + - uid: 10947 + components: + - type: Transform + pos: -0.5,1.5 + parent: 10867 + - uid: 11612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-83.5 + parent: 1 + - uid: 11623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-93.5 + parent: 1 + - uid: 11624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-93.5 + parent: 1 + - uid: 11627 + components: + - type: Transform + pos: 17.5,-92.5 + parent: 1 +- proto: GunSafePistolMk58 + entities: + - uid: 8567 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 1 + - type: AccessReader + access: + - - Security +- proto: GunSafeRifleLecter + entities: + - uid: 3941 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 1 + - type: AccessReader + access: + - - Security +- proto: GunSafeShotgunKammerer + entities: + - uid: 8569 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 1 + - type: AccessReader + access: + - - Security +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 3951 + components: + - type: Transform + pos: 9.5,-57.5 + parent: 1 + - type: AccessReader + access: + - - Security +- proto: Gyroscope + entities: + - uid: 219 + components: + - type: Transform + pos: -1.5,1.5 + parent: 8566 +- proto: HospitalCurtains + entities: + - uid: 5466 + components: + - type: Transform + pos: -16.5,-76.5 + parent: 1 + - type: Door + secondsUntilStateChange: -31875.422 + state: Opening + - uid: 5471 + components: + - type: Transform + pos: -16.5,-78.5 + parent: 1 + - uid: 5484 + components: + - type: Transform + pos: -14.5,-78.5 + parent: 1 + - uid: 5485 + components: + - type: Transform + pos: -12.5,-76.5 + parent: 1 + - uid: 5492 + components: + - type: Transform + pos: -14.5,-76.5 + parent: 1 + - uid: 5498 + components: + - type: Transform + pos: -12.5,-78.5 + parent: 1 +- proto: HydroponicsToolHatchet + entities: + - uid: 4808 + components: + - type: Transform + pos: -12.1018505,-100.41807 + parent: 1 +- proto: hydroponicsTray + entities: + - uid: 4178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-92.5 + parent: 1 + - uid: 4499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-92.5 + parent: 1 + - uid: 4803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-94.5 + parent: 1 + - uid: 5802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-95.5 + parent: 1 + - uid: 5803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-95.5 + parent: 1 + - uid: 5804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-94.5 + parent: 1 + - uid: 5849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-95.5 + parent: 1 + - uid: 5850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-93.5 + parent: 1 + - uid: 5851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-93.5 + parent: 1 +- proto: InflatableWall + entities: + - uid: 2438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-64.5 + parent: 1 + - uid: 10045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-65.5 + parent: 1 + - uid: 10084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-64.5 + parent: 1 + - uid: 10123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-64.5 + parent: 1 +- proto: JanitorialTrolley + entities: + - uid: 6794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-78.5 + parent: 1 +- proto: KitchenElectricGrill + entities: + - uid: 4174 + components: + - type: Transform + pos: -26.5,-85.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 3785 + components: + - type: Transform + pos: -28.5,-85.5 + parent: 1 + - uid: 4804 + components: + - type: Transform + pos: -25.5,-85.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 3782 + components: + - type: Transform + pos: -27.5,-85.5 + parent: 1 + - uid: 5166 + components: + - type: Transform + pos: 16.5,-65.5 + parent: 1 +- proto: Lamp + entities: + - uid: 11635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.32219,-98.48248 + parent: 1 + - uid: 11636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.44719,-87.55769 + parent: 1 +- proto: LockableButtonSecurity + entities: + - uid: 3096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-44.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 3047: + - Pressed: Toggle + 3046: + - Pressed: Toggle + 3045: + - Pressed: Toggle +- proto: LockerChemistryFilled + entities: + - uid: 2424 + components: + - type: Transform + pos: 19.5,-65.5 + parent: 1 + - type: AccessReader + access: [] +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 4100 + components: + - type: Transform + pos: -9.5,-79.5 + parent: 1 + - uid: 6424 + components: + - type: Transform + pos: 11.5,-76.5 + parent: 1 + - type: AccessReader + access: [] +- proto: LockerFreezerBase + entities: + - uid: 3790 + components: + - type: Transform + pos: -25.5,-88.5 + parent: 1 + - uid: 4118 + components: + - type: Transform + pos: -26.5,-88.5 + parent: 1 +- proto: Log + entities: + - uid: 4805 + components: + - type: Transform + pos: -15.1487255,-101.32905 + parent: 1 + - uid: 4806 + components: + - type: Transform + pos: -14.6799755,-101.01655 + parent: 1 + - uid: 4807 + components: + - type: Transform + pos: -14.9143505,-101.64155 + parent: 1 + - uid: 4810 + components: + - type: Transform + pos: -16.086226,-100.6103 + parent: 1 + - uid: 4811 + components: + - type: Transform + pos: -15.5549755,-100.03217 + parent: 1 + - uid: 4812 + components: + - type: Transform + pos: -15.4924755,-101.5478 + parent: 1 + - uid: 4814 + components: + - type: Transform + pos: -15.2581005,-101.1728 + parent: 1 + - uid: 4815 + components: + - type: Transform + pos: -15.2268505,-100.62592 + parent: 1 + - uid: 4816 + components: + - type: Transform + pos: -14.8831005,-100.57905 + parent: 1 + - uid: 4817 + components: + - type: Transform + pos: -12.5706005,-100.46494 + parent: 1 + - uid: 4819 + components: + - type: Transform + pos: -15.2268505,-99.76655 + parent: 1 + - uid: 4820 + components: + - type: Transform + pos: -15.2268505,-100.20405 + parent: 1 + - uid: 4821 + components: + - type: Transform + pos: -15.6643505,-100.9853 + parent: 1 + - uid: 4822 + components: + - type: Transform + pos: -15.6956005,-101.21967 + parent: 1 + - uid: 4825 + components: + - type: Transform + pos: -15.2268505,-100.62592 + parent: 1 + - uid: 4826 + components: + - type: Transform + pos: -14.7112255,-99.28217 + parent: 1 + - uid: 4829 + components: + - type: Transform + pos: -15.2112255,-99.32905 + parent: 1 + - uid: 4830 + components: + - type: Transform + pos: -14.6799755,-100.20405 + parent: 1 + - uid: 4831 + components: + - type: Transform + pos: -14.4768505,-99.68842 + parent: 1 + - uid: 4832 + components: + - type: Transform + pos: -15.7268505,-99.82905 + parent: 1 + - uid: 4833 + components: + - type: Transform + pos: -14.3987255,-101.37592 + parent: 1 + - uid: 4834 + components: + - type: Transform + pos: -14.5237255,-100.9228 + parent: 1 + - uid: 4837 + components: + - type: Transform + pos: -14.6799755,-100.65717 + parent: 1 + - uid: 4838 + components: + - type: Transform + pos: -14.6956005,-99.6728 + parent: 1 + - uid: 4840 + components: + - type: Transform + pos: -14.5237255,-100.2353 + parent: 1 + - uid: 5452 + components: + - type: Transform + pos: -16.398726,-101.07905 + parent: 1 + - uid: 5556 + components: + - type: Transform + pos: -15.8518505,-100.2353 + parent: 1 + - uid: 5572 + components: + - type: Transform + pos: -16.41435,-99.93842 + parent: 1 + - uid: 5588 + components: + - type: Transform + pos: -15.7581005,-101.07905 + parent: 1 + - uid: 5631 + components: + - type: Transform + pos: -16.41435,-100.53217 + parent: 1 + - uid: 5632 + components: + - type: Transform + pos: -15.7893505,-99.37592 + parent: 1 + - uid: 5633 + components: + - type: Transform + pos: -15.8362255,-100.57905 + parent: 1 + - uid: 5649 + components: + - type: Transform + pos: -14.6487255,-101.68842 + parent: 1 + - uid: 5651 + components: + - type: Transform + pos: -16.16435,-101.3603 + parent: 1 + - uid: 5652 + components: + - type: Transform + pos: -15.2737255,-100.3603 + parent: 1 + - uid: 5654 + components: + - type: Transform + pos: -16.47685,-101.57905 + parent: 1 + - uid: 5656 + components: + - type: Transform + pos: -16.086226,-99.6103 + parent: 1 + - uid: 5676 + components: + - type: Transform + pos: -16.429976,-99.46967 + parent: 1 + - uid: 5677 + components: + - type: Transform + pos: -15.8987255,-99.89155 + parent: 1 + - uid: 5678 + components: + - type: Transform + pos: -15.7893505,-101.50092 + parent: 1 +- proto: LootSpawnerArmory + entities: + - uid: 776 + components: + - type: Transform + pos: 30.5,-102.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: 38.5,-103.5 + parent: 1 + - uid: 925 + components: + - type: Transform + pos: 37.5,-103.5 + parent: 1 + - uid: 1782 + components: + - type: Transform + pos: 42.5,-85.5 + parent: 1 + - uid: 1803 + components: + - type: Transform + pos: 31.5,-102.5 + parent: 1 + - uid: 1835 + components: + - type: Transform + pos: 30.5,-103.5 + parent: 1 + - uid: 1862 + components: + - type: Transform + pos: 31.5,-103.5 + parent: 1 + - uid: 3949 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 1 + - uid: 3973 + components: + - type: Transform + pos: 9.5,-58.5 + parent: 1 + - uid: 6391 + components: + - type: Transform + pos: 42.5,-86.5 + parent: 1 + - uid: 12510 + components: + - type: Transform + pos: 41.5,-101.5 + parent: 1 +- proto: LootSpawnerArmoryArmorOnly + entities: + - uid: 8500 + components: + - type: Transform + pos: 41.5,-102.5 + parent: 1 + - uid: 8553 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 8554 + components: + - type: Transform + pos: -16.5,-91.5 + parent: 1 + - uid: 12513 + components: + - type: Transform + pos: 41.5,-100.5 + parent: 1 +- proto: LootSpawnerCableCoil + entities: + - uid: 8557 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 8558 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 8559 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 +- proto: LootSpawnerEncryptionKey + entities: + - uid: 8841 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 +- proto: LootSpawnerIndustrial + entities: + - uid: 8829 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 + - uid: 8830 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 + - uid: 8832 + components: + - type: Transform + pos: -14.5,-91.5 + parent: 1 + - uid: 8833 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 8834 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 8835 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 + - uid: 8836 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 8837 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 + - uid: 8838 + components: + - type: Transform + pos: -16.5,-91.5 + parent: 1 +- proto: LootSpawnerMaterials + entities: + - uid: 12515 + components: + - type: Transform + pos: 40.5,-99.5 + parent: 1 +- proto: LootSpawnerMaterialsSupplementary + entities: + - uid: 8555 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 + - uid: 8556 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 +- proto: LootSpawnerMaterialsSurplus + entities: + - uid: 682 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 7626 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 4529 + components: + - type: Transform + pos: 18.5,-72.5 + parent: 1 + - uid: 4539 + components: + - type: Transform + pos: 18.5,-70.5 + parent: 1 + - uid: 4572 + components: + - type: Transform + pos: 16.5,-72.5 + parent: 1 + - uid: 4580 + components: + - type: Transform + pos: 14.5,-72.5 + parent: 1 + - uid: 5401 + components: + - type: Transform + pos: 16.5,-70.5 + parent: 1 + - uid: 5402 + components: + - type: Transform + pos: 14.5,-70.5 + parent: 1 + - uid: 5419 + components: + - type: Transform + pos: 16.5,-67.5 + parent: 1 + - uid: 5420 + components: + - type: Transform + pos: 13.5,-67.5 + parent: 1 + - uid: 7647 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 + - uid: 7649 + components: + - type: Transform + pos: -14.5,-91.5 + parent: 1 + - uid: 7650 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 7946 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 + - uid: 8548 + components: + - type: Transform + pos: -16.5,-91.5 + parent: 1 + - uid: 8549 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 8550 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 8551 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 + - uid: 8552 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 +- proto: LootSpawnerMedicalMinor + entities: + - uid: 7638 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 7639 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 + - uid: 7640 + components: + - type: Transform + pos: -16.5,-91.5 + parent: 1 + - uid: 7641 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 7642 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 7643 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 + - uid: 7644 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 + - uid: 7645 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 + - uid: 7646 + components: + - type: Transform + pos: -14.5,-91.5 + parent: 1 +- proto: LootSpawnerSecurity + entities: + - uid: 12516 + components: + - type: Transform + pos: 40.5,-103.5 + parent: 1 + - uid: 12517 + components: + - type: Transform + pos: 42.5,-99.5 + parent: 1 +- proto: LuxuryPen + entities: + - uid: 3964 + components: + - type: Transform + pos: 3.5079834,-64.63967 + parent: 1 +- proto: MachineFrame + entities: + - uid: 6223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-94.5 + parent: 1 + - uid: 6235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-96.5 + parent: 1 + - uid: 6236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-94.5 + parent: 1 +- proto: MagicDiceBag + entities: + - uid: 11663 + components: + - type: Transform + pos: 17.06495,-99.32433 + parent: 1 +- proto: MaintenanceFluffSpawner + entities: + - uid: 681 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - uid: 7272 + components: + - type: Transform + pos: 14.5,-118.5 + parent: 1 + - uid: 7467 + components: + - type: Transform + pos: 7.5,-116.5 + parent: 1 + - uid: 7468 + components: + - type: Transform + pos: 17.5,-116.5 + parent: 1 + - uid: 7469 + components: + - type: Transform + pos: 2.5,-121.5 + parent: 1 + - uid: 7481 + components: + - type: Transform + pos: 3.5,-119.5 + parent: 1 + - uid: 7482 + components: + - type: Transform + pos: 12.5,-116.5 + parent: 1 + - uid: 7515 + components: + - type: Transform + pos: 16.5,-120.5 + parent: 1 + - uid: 7581 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 7582 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 + - uid: 7583 + components: + - type: Transform + pos: -16.5,-91.5 + parent: 1 + - uid: 7584 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 7585 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 7586 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 + - uid: 7587 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 + - uid: 7588 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 + - uid: 7589 + components: + - type: Transform + pos: -14.5,-91.5 + parent: 1 +- proto: MaintenancePlantSpawner + entities: + - uid: 6419 + components: + - type: Transform + pos: 28.5,-98.5 + parent: 1 + - uid: 6447 + components: + - type: Transform + pos: 29.5,-96.5 + parent: 1 + - uid: 6450 + components: + - type: Transform + pos: 27.5,-88.5 + parent: 1 + - uid: 6464 + components: + - type: Transform + pos: 29.5,-90.5 + parent: 1 + - uid: 7501 + components: + - type: Transform + pos: 12.5,-115.5 + parent: 1 + - uid: 7506 + components: + - type: Transform + pos: 1.5,-120.5 + parent: 1 + - uid: 7511 + components: + - type: Transform + pos: 16.5,-112.5 + parent: 1 + - uid: 7842 + components: + - type: Transform + pos: 17.5,-121.5 + parent: 1 + - uid: 10306 + components: + - type: Transform + pos: 38.5,-99.5 + parent: 1 + - uid: 10599 + components: + - type: Transform + pos: 36.5,-96.5 + parent: 1 + - uid: 10619 + components: + - type: Transform + pos: 41.5,-94.5 + parent: 1 + - uid: 10637 + components: + - type: Transform + pos: 31.5,-94.5 + parent: 1 + - uid: 10660 + components: + - type: Transform + pos: 41.5,-88.5 + parent: 1 + - uid: 10762 + components: + - type: Transform + pos: 32.5,-100.5 + parent: 1 + - uid: 11719 + components: + - type: Transform + pos: 38.5,-90.5 + parent: 1 + - uid: 12053 + components: + - type: Transform + pos: 36.5,-92.5 + parent: 1 +- proto: MaintenanceToolSpawner + entities: + - uid: 3569 + components: + - type: Transform + pos: -17.5,-123.5 + parent: 1 + - uid: 3760 + components: + - type: Transform + pos: -24.5,-121.5 + parent: 1 + - uid: 4809 + components: + - type: Transform + pos: -14.5,-91.5 + parent: 1 + - uid: 4818 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 + - uid: 5205 + components: + - type: Transform + pos: -12.5,-121.5 + parent: 1 + - uid: 5206 + components: + - type: Transform + pos: 20.5,-120.5 + parent: 1 + - uid: 5210 + components: + - type: Transform + pos: 42.5,-114.5 + parent: 1 + - uid: 5214 + components: + - type: Transform + pos: 30.5,-114.5 + parent: 1 + - uid: 5314 + components: + - type: Transform + pos: 37.5,-114.5 + parent: 1 + - uid: 5315 + components: + - type: Transform + pos: 21.5,-114.5 + parent: 1 + - uid: 5564 + components: + - type: Transform + pos: 25.5,-120.5 + parent: 1 + - uid: 5583 + components: + - type: Transform + pos: -20.5,-118.5 + parent: 1 + - uid: 5598 + components: + - type: Transform + pos: 17.5,-115.5 + parent: 1 + - uid: 5644 + components: + - type: Transform + pos: 13.5,-116.5 + parent: 1 + - uid: 5955 + components: + - type: Transform + pos: 13.5,-118.5 + parent: 1 + - uid: 5958 + components: + - type: Transform + pos: 18.5,-116.5 + parent: 1 + - uid: 7276 + components: + - type: Transform + pos: 5.5,-116.5 + parent: 1 + - uid: 7465 + components: + - type: Transform + pos: 5.5,-120.5 + parent: 1 + - uid: 7466 + components: + - type: Transform + pos: 2.5,-120.5 + parent: 1 + - uid: 7470 + components: + - type: Transform + pos: 1.5,-123.5 + parent: 1 + - uid: 7574 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 7575 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 + - uid: 7576 + components: + - type: Transform + pos: -16.5,-91.5 + parent: 1 + - uid: 7577 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 7578 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 7579 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 + - uid: 7580 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 + - uid: 9168 + components: + - type: Transform + pos: 9.5,-117.5 + parent: 1 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 3757 + components: + - type: Transform + pos: -10.5,-123.5 + parent: 1 + - uid: 4496 + components: + - type: Transform + pos: -24.5,-123.5 + parent: 1 + - uid: 5193 + components: + - type: Transform + pos: 21.5,-117.5 + parent: 1 + - uid: 5195 + components: + - type: Transform + pos: 26.5,-114.5 + parent: 1 + - uid: 5203 + components: + - type: Transform + pos: 20.5,-114.5 + parent: 1 + - uid: 5204 + components: + - type: Transform + pos: 35.5,-114.5 + parent: 1 + - uid: 5211 + components: + - type: Transform + pos: 43.5,-114.5 + parent: 1 + - uid: 5306 + components: + - type: Transform + pos: 31.5,-117.5 + parent: 1 + - uid: 5307 + components: + - type: Transform + pos: 31.5,-114.5 + parent: 1 + - uid: 5308 + components: + - type: Transform + pos: 31.5,-120.5 + parent: 1 + - uid: 5309 + components: + - type: Transform + pos: 38.5,-120.5 + parent: 1 + - uid: 5313 + components: + - type: Transform + pos: 42.5,-120.5 + parent: 1 + - uid: 5608 + components: + - type: Transform + pos: -19.5,-121.5 + parent: 1 + - uid: 5626 + components: + - type: Transform + pos: -8.5,-123.5 + parent: 1 + - uid: 7590 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 7591 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 + - uid: 7592 + components: + - type: Transform + pos: -16.5,-91.5 + parent: 1 + - uid: 7593 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 7594 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 7595 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 + - uid: 7596 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 + - uid: 7597 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 + - uid: 7610 + components: + - type: Transform + pos: -14.5,-91.5 + parent: 1 + - uid: 7827 + components: + - type: Transform + pos: 3.5,-125.5 + parent: 1 + - uid: 7850 + components: + - type: Transform + pos: 15.5,-114.5 + parent: 1 + - uid: 7882 + components: + - type: Transform + pos: 3.5,-118.5 + parent: 1 + - uid: 7900 + components: + - type: Transform + pos: 12.5,-118.5 + parent: 1 + - uid: 8506 + components: + - type: Transform + pos: 36.5,-100.5 + parent: 1 + - uid: 8520 + components: + - type: Transform + pos: 35.5,-102.5 + parent: 1 + - uid: 12519 + components: + - type: Transform + pos: 36.5,-88.5 + parent: 1 + - uid: 12520 + components: + - type: Transform + pos: 33.5,-94.5 + parent: 1 + - uid: 12521 + components: + - type: Transform + pos: 32.5,-88.5 + parent: 1 + - uid: 12522 + components: + - type: Transform + pos: 35.5,-98.5 + parent: 1 + - uid: 12665 + components: + - type: Transform + pos: 11.5,-99.5 + parent: 1 + - uid: 12666 + components: + - type: Transform + pos: 9.5,-94.5 + parent: 1 + - uid: 12667 + components: + - type: Transform + pos: 12.5,-90.5 + parent: 1 + - uid: 12668 + components: + - type: Transform + pos: 9.5,-86.5 + parent: 1 + - uid: 12669 + components: + - type: Transform + pos: 24.5,-86.5 + parent: 1 + - uid: 12670 + components: + - type: Transform + pos: 23.5,-90.5 + parent: 1 + - uid: 12671 + components: + - type: Transform + pos: 24.5,-94.5 + parent: 1 + - uid: 12672 + components: + - type: Transform + pos: 23.5,-99.5 + parent: 1 +- proto: MaterialBones1 + entities: + - uid: 11658 + components: + - type: Transform + pos: 18.016434,-86.55023 + parent: 1 +- proto: MaterialReclaimer + entities: + - uid: 8868 + components: + - type: Transform + pos: -15.5,-86.5 + parent: 1 + - uid: 12797 + components: + - type: Transform + pos: 21.5,-77.5 + parent: 1 +- proto: MatterBinStockPart + entities: + - uid: 6327 + components: + - type: Transform + pos: -12.763568,-94.76105 + parent: 1 +- proto: Mattress + entities: + - uid: 11529 + components: + - type: Transform + pos: 12.5,-97.5 + parent: 1 + - uid: 11530 + components: + - type: Transform + pos: 10.5,-97.5 + parent: 1 + - uid: 11531 + components: + - type: Transform + pos: 22.5,-97.5 + parent: 1 + - uid: 11532 + components: + - type: Transform + pos: 24.5,-97.5 + parent: 1 + - uid: 11533 + components: + - type: Transform + pos: 24.5,-93.5 + parent: 1 + - uid: 11534 + components: + - type: Transform + pos: 22.5,-93.5 + parent: 1 + - uid: 11535 + components: + - type: Transform + pos: 12.5,-93.5 + parent: 1 + - uid: 11536 + components: + - type: Transform + pos: 10.5,-93.5 + parent: 1 + - uid: 11537 + components: + - type: Transform + pos: 12.5,-89.5 + parent: 1 + - uid: 11538 + components: + - type: Transform + pos: 10.5,-89.5 + parent: 1 + - uid: 11539 + components: + - type: Transform + pos: 24.5,-89.5 + parent: 1 + - uid: 11540 + components: + - type: Transform + pos: 22.5,-89.5 + parent: 1 + - uid: 11541 + components: + - type: Transform + pos: 24.5,-85.5 + parent: 1 + - uid: 11542 + components: + - type: Transform + pos: 22.5,-85.5 + parent: 1 + - uid: 11543 + components: + - type: Transform + pos: 12.5,-85.5 + parent: 1 + - uid: 11544 + components: + - type: Transform + pos: 10.5,-85.5 + parent: 1 + - uid: 11863 + components: + - type: Transform + pos: 40.5,-86.5 + parent: 1 + - uid: 11864 + components: + - type: Transform + pos: 30.5,-86.5 + parent: 1 + - uid: 11918 + components: + - type: Transform + pos: 35.5,-86.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 4322 + components: + - type: Transform + pos: 16.5,-69.5 + parent: 1 + - uid: 4379 + components: + - type: Transform + pos: 14.5,-69.5 + parent: 1 + - uid: 4396 + components: + - type: Transform + pos: 16.5,-71.5 + parent: 1 + - uid: 5167 + components: + - type: Transform + pos: 18.5,-71.5 + parent: 1 + - uid: 5168 + components: + - type: Transform + pos: 14.5,-71.5 + parent: 1 + - uid: 5180 + components: + - type: Transform + pos: 18.5,-69.5 + parent: 1 +- proto: MedicalTechFab + entities: + - uid: 5173 + components: + - type: Transform + pos: 13.5,-63.5 + parent: 1 +- proto: MedkitAdvancedFilled + entities: + - uid: 5174 + components: + - type: Transform + pos: 13.29439,-65.586044 + parent: 1 +- proto: MedkitBruteFilled + entities: + - uid: 12970 + components: + - type: Transform + pos: 13.263907,-65.22161 + parent: 1 +- proto: MedkitBurnFilled + entities: + - uid: 12971 + components: + - type: Transform + pos: 13.654532,-65.580986 + parent: 1 +- proto: MedkitCombatFilled + entities: + - uid: 4321 + components: + - type: Transform + pos: 13.66939,-65.32042 + parent: 1 +- proto: MicroManipulatorStockPart + entities: + - uid: 6325 + components: + - type: Transform + pos: -12.326068,-95.3548 + parent: 1 +- proto: MopBucketFull + entities: + - uid: 10213 + components: + - type: Transform + pos: 23.5,-79.5 + parent: 1 +- proto: MopItem + entities: + - uid: 1064 + components: + - type: Transform + pos: 9.531484,-108.68756 + parent: 1 + - uid: 9567 + components: + - type: Transform + pos: 23.408846,-79.39193 + parent: 1 +- proto: Multitool + entities: + - uid: 12976 + components: + - type: Transform + pos: -10.5,-96.5 + parent: 1 +- proto: OreBag + entities: + - uid: 182 + components: + - type: Transform + pos: -13.440236,0.10643375 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -13.440236,0.10643375 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -11.987111,-2.2998161 + parent: 1 +- proto: OreBox + entities: + - uid: 16 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 8870 + components: + - type: Transform + pos: -12.5,-86.5 + parent: 1 +- proto: OreProcessor + entities: + - uid: 8869 + components: + - type: Transform + pos: -11.5,-86.5 + parent: 1 +- proto: OrganArachnidHeart + entities: + - uid: 3190 + components: + - type: Transform + pos: 0.51143837,-104.341965 + parent: 1 +- proto: OrganArachnidTongue + entities: + - uid: 3528 + components: + - type: Transform + pos: -1.5510616,-104.29509 + parent: 1 +- proto: Paper + entities: + - uid: 8850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.441378,-89.710014 + parent: 1 + - type: Paper + content: >- + Хлам: Неизвестно + + + Упакуйте его по коробкам. + - uid: 8851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.785128,-101.26335 + parent: 1 + - type: Paper + content: >- + Бревно: 40 + + + Сделайте доски. + - uid: 8852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.800753,-96.43686 + parent: 1 + - type: Paper + content: >- + Платы: 6 + + + Завершите настройку оборудования. + - uid: 8865 + components: + - type: Transform + pos: -11.411367,-87.56902 + parent: 1 + - type: Paper + content: >- + Руда: Неизвестно + + + Копайте руду в шахте. + - uid: 11637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.32219,-88.41707 + parent: 1 + - uid: 11638 + components: + - type: Transform + pos: 16.47844,-88.43269 + parent: 1 + - uid: 11639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.35344,-87.18269 + parent: 1 + - uid: 11640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.462814,-86.41707 + parent: 1 + - uid: 11641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.60344,-86.94832 + parent: 1 + - uid: 11642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.63469,-99.30621 + parent: 1 + - uid: 11643 + components: + - type: Transform + pos: 18.619064,-100.49371 + parent: 1 + - uid: 11644 + components: + - type: Transform + pos: 17.525314,-100.25934 + parent: 1 + - uid: 11645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.525314,-100.33746 + parent: 1 + - uid: 11646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.41594,-99.52496 + parent: 1 + - uid: 11647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.525314,-98.57184 + parent: 1 + - uid: 11648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.32219,-98.49371 + parent: 1 +- proto: Pen + entities: + - uid: 11649 + components: + - type: Transform + pos: 17.16594,-100.323814 + parent: 1 + - uid: 11650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.962814,-98.49569 + parent: 1 + - uid: 11651 + components: + - type: Transform + pos: 18.63469,-99.80819 + parent: 1 + - uid: 11652 + components: + - type: Transform + pos: 16.994064,-88.4588 + parent: 1 + - uid: 11653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.306564,-86.67755 + parent: 1 + - uid: 11654 + components: + - type: Transform + pos: 18.556564,-86.6463 + parent: 1 +- proto: Pickaxe + entities: + - uid: 3567 + components: + - type: Transform + pos: 40.5,-92.5 + parent: 1 + - uid: 4503 + components: + - type: Transform + pos: -16.5,-123.5 + parent: 1 + - uid: 4518 + components: + - type: Transform + pos: 24.5,-120.5 + parent: 1 + - uid: 4526 + components: + - type: Transform + pos: 20.5,-117.5 + parent: 1 + - uid: 4527 + components: + - type: Transform + pos: -10.5,-109.5 + parent: 1 + - uid: 4596 + components: + - type: Transform + pos: 34.5,-110.5 + parent: 1 + - uid: 4599 + components: + - type: Transform + pos: -7.5,-116.5 + parent: 1 + - uid: 5428 + components: + - type: Transform + pos: 37.5,-78.5 + parent: 1 + - uid: 5937 + components: + - type: Transform + pos: 3.5,-124.5 + parent: 1 + - uid: 6374 + components: + - type: Transform + pos: 26.5,-111.5 + parent: 1 + - uid: 6398 + components: + - type: Transform + pos: 44.5,-105.5 + parent: 1 + - uid: 12967 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1 + - uid: 12968 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 +- proto: PinpointerNuclear + entities: + - uid: 1528 + components: + - type: Transform + pos: 6.5,-78.5 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 3974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-60.5 + parent: 1 + - uid: 3976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-60.5 + parent: 1 + - uid: 4363 + components: + - type: Transform + pos: 6.5,-60.5 + parent: 1 + - uid: 4374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-60.5 + parent: 1 + - uid: 4375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-58.5 + parent: 1 + - uid: 4376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-58.5 + parent: 1 + - uid: 4389 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 1 + - uid: 4390 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 1 + - uid: 4399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-58.5 + parent: 1 + - uid: 4401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-58.5 + parent: 1 + - uid: 4412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-58.5 + parent: 1 + - uid: 8700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-59.5 + parent: 1 + - uid: 8701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-59.5 + parent: 1 + - uid: 8702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-59.5 + parent: 1 + - uid: 8703 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 1 + - uid: 8704 + components: + - type: Transform + pos: 9.5,-59.5 + parent: 1 + - uid: 8705 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 1 + - uid: 8706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-59.5 + parent: 1 + - uid: 8707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-59.5 + parent: 1 +- proto: PlasticFlapsOpaque + entities: + - uid: 918 + components: + - type: Transform + pos: 19.5,-103.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: 34.5,-80.5 + parent: 1 + - uid: 924 + components: + - type: Transform + pos: -16.5,-103.5 + parent: 1 + - uid: 927 + components: + - type: Transform + pos: 36.5,-80.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-101.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-103.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: -7.5,-103.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-103.5 + parent: 1 + - uid: 6540 + components: + - type: Transform + pos: 15.5,-103.5 + parent: 1 + - uid: 6738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-126.5 + parent: 1 + - uid: 6750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-126.5 + parent: 1 + - uid: 7996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-126.5 + parent: 1 + - uid: 8265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-121.5 + parent: 1 + - uid: 8272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-122.5 + parent: 1 + - uid: 8296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-123.5 + parent: 1 + - uid: 12049 + components: + - type: Transform + pos: -11.5,-103.5 + parent: 1 + - uid: 12511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-86.5 + parent: 1 +- proto: PlushieNar + entities: + - uid: 6266 + components: + - type: Transform + pos: -0.51981163,-104.45134 + parent: 1 +- proto: PlushieNuke + entities: + - uid: 12911 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 1 +- proto: PosterContrabandMissingSpacepen + entities: + - uid: 2422 + components: + - type: Transform + pos: 16.5,-66.5 + parent: 1 + - uid: 4976 + components: + - type: Transform + pos: 1.5,-73.5 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 806 + components: + - type: Transform + pos: -19.5,-81.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: -19.5,-83.5 + parent: 1 + - uid: 8768 + components: + - type: Transform + pos: -4.5,-88.5 + parent: 1 + - uid: 8769 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 1 + - uid: 8770 + components: + - type: Transform + pos: 3.5,-90.5 + parent: 1 + - uid: 8771 + components: + - type: Transform + pos: -4.5,-90.5 + parent: 1 + - uid: 8773 + components: + - type: Transform + pos: -15.5,-81.5 + parent: 1 + - uid: 8774 + components: + - type: Transform + pos: -15.5,-83.5 + parent: 1 +- proto: PottedPlantRandomPlastic + entities: + - uid: 5763 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 1 + - uid: 5764 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 1 + - uid: 5807 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 1 + - uid: 5808 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 1 + - uid: 5812 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 1 + - uid: 5814 + components: + - type: Transform + pos: 9.5,-65.5 + parent: 1 + - uid: 5817 + components: + - type: Transform + pos: 2.5,-62.5 + parent: 1 + - uid: 5819 + components: + - type: Transform + pos: 2.5,-66.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 4634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-67.5 + parent: 1 +- proto: PowerCellSmall + entities: + - uid: 11659 + components: + - type: Transform + pos: 17.813309,-88.45648 + parent: 1 +- proto: Poweredlight + entities: + - uid: 2408 + components: + - type: Transform + pos: 18.5,-63.5 + parent: 1 + - uid: 3816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-50.5 + parent: 1 + - uid: 3817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-50.5 + parent: 1 + - uid: 3819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-54.5 + parent: 1 + - uid: 3820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-54.5 + parent: 1 + - uid: 3841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-63.5 + parent: 1 + - uid: 3842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-65.5 + parent: 1 + - uid: 3977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-57.5 + parent: 1 + - uid: 3979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-65.5 + parent: 1 + - uid: 3980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-63.5 + parent: 1 + - uid: 3981 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 1 + - uid: 3982 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 1 + - uid: 3983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-71.5 + parent: 1 + - uid: 4359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-60.5 + parent: 1 + - uid: 4360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-58.5 + parent: 1 + - uid: 4394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-72.5 + parent: 1 + - uid: 4418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-68.5 + parent: 1 + - uid: 4644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-68.5 + parent: 1 + - uid: 4653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-70.5 + parent: 1 + - uid: 4661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-61.5 + parent: 1 + - uid: 4662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-67.5 + parent: 1 + - uid: 4663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-71.5 + parent: 1 + - uid: 4766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-64.5 + parent: 1 + - uid: 4784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-70.5 + parent: 1 + - uid: 4854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-71.5 + parent: 1 + - uid: 4904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-57.5 + parent: 1 + - uid: 4921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-58.5 + parent: 1 + - uid: 5002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-61.5 + parent: 1 + - uid: 5075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-75.5 + parent: 1 + - uid: 5076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-75.5 + parent: 1 + - uid: 5177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-72.5 + parent: 1 + - uid: 5386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-68.5 + parent: 1 + - uid: 5398 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 1 + - uid: 5406 + components: + - type: Transform + pos: 9.5,-74.5 + parent: 1 + - uid: 5529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-78.5 + parent: 1 + - uid: 5532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-78.5 + parent: 1 + - uid: 5805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-67.5 + parent: 1 +- proto: PoweredlightCyan + entities: + - uid: 259 + components: + - type: Transform + pos: -1.5,1.5 + parent: 8566 + - uid: 2421 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 1 + - uid: 4998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-75.5 + parent: 1 + - uid: 8670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 8566 +- proto: PoweredlightSodium + entities: + - uid: 72 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-92.5 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-96.5 + parent: 1 + - uid: 663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-99.5 + parent: 1 + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-88.5 + parent: 1 + - uid: 816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-90.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-81.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-83.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-90.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 3.5,-81.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: -10.5,-81.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-83.5 + parent: 1 + - uid: 1206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-83.5 + parent: 1 + - uid: 1945 + components: + - type: Transform + pos: -23.5,-85.5 + parent: 1 + - uid: 2150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-90.5 + parent: 1 + - uid: 2567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-90.5 + parent: 1 + - uid: 3783 + components: + - type: Transform + pos: -11.5,-85.5 + parent: 1 + - uid: 3791 + components: + - type: Transform + pos: -16.5,-85.5 + parent: 1 + - uid: 3797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-97.5 + parent: 1 + - uid: 3798 + components: + - type: Transform + pos: -19.5,-85.5 + parent: 1 + - uid: 3808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-50.5 + parent: 1 + - uid: 3809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 1 + - uid: 3810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-50.5 + parent: 1 + - uid: 3811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-54.5 + parent: 1 + - uid: 3812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-50.5 + parent: 1 + - uid: 3813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-50.5 + parent: 1 + - uid: 3814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-54.5 + parent: 1 + - uid: 3815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-54.5 + parent: 1 + - uid: 3926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-100.5 + parent: 1 + - uid: 4134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-95.5 + parent: 1 + - uid: 4823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-100.5 + parent: 1 + - uid: 4836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-100.5 + parent: 1 + - uid: 4995 + components: + - type: Transform + pos: -4.5,-73.5 + parent: 1 + - uid: 5001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-75.5 + parent: 1 + - uid: 6568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-95.5 + parent: 1 + - uid: 6569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-95.5 + parent: 1 + - uid: 6570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-95.5 + parent: 1 + - uid: 11597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-83.5 + parent: 1 + - uid: 11604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-83.5 + parent: 1 + - uid: 11614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-102.5 + parent: 1 + - uid: 11621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-93.5 + parent: 1 + - uid: 11622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-93.5 + parent: 1 + - uid: 11629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-91.5 + parent: 1 + - uid: 12625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-82.5 + parent: 1 + - uid: 12626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-83.5 + parent: 1 + - uid: 12627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-83.5 + parent: 1 + - uid: 12628 + components: + - type: Transform + pos: 32.5,-81.5 + parent: 1 + - uid: 12629 + components: + - type: Transform + pos: 37.5,-81.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 148 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 1 + - uid: 672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: -15.5,-76.5 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: -13.5,-76.5 + parent: 1 + - uid: 801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-81.5 + parent: 1 + - uid: 802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-79.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: 23.5,-77.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 25.5,-77.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-81.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-83.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-83.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-83.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-81.5 + parent: 1 + - uid: 2393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-77.5 + parent: 1 + - uid: 3144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-102.5 + parent: 1 + - uid: 3146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-102.5 + parent: 1 + - uid: 3147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-102.5 + parent: 1 + - uid: 3186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-77.5 + parent: 1 + - uid: 3450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-79.5 + parent: 1 + - uid: 3933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-64.5 + parent: 1 + - uid: 8234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 8217 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 10146 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 10867 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-102.5 + parent: 1 + - uid: 11601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-102.5 + parent: 1 + - uid: 11602 + components: + - type: Transform + pos: 12.5,-101.5 + parent: 1 + - uid: 11603 + components: + - type: Transform + pos: 22.5,-101.5 + parent: 1 + - uid: 11664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-98.5 + parent: 1 + - uid: 11665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-94.5 + parent: 1 + - uid: 11666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-98.5 + parent: 1 + - uid: 11667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-94.5 + parent: 1 + - uid: 11668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-90.5 + parent: 1 + - uid: 11670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-90.5 + parent: 1 + - uid: 11671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-86.5 + parent: 1 + - uid: 11672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-86.5 + parent: 1 + - uid: 11673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-86.5 + parent: 1 + - uid: 11758 + components: + - type: Transform + pos: 28.5,-85.5 + parent: 1 + - uid: 11811 + components: + - type: Transform + pos: 38.5,-85.5 + parent: 1 + - uid: 11813 + components: + - type: Transform + pos: 33.5,-85.5 + parent: 1 + - uid: 12630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-83.5 + parent: 1 + - uid: 12631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-81.5 + parent: 1 + - uid: 12632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-81.5 + parent: 1 + - uid: 12633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-83.5 + parent: 1 + - uid: 12634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-79.5 + parent: 1 + - uid: 12639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-83.5 + parent: 1 + - uid: 12640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-81.5 + parent: 1 + - uid: 12792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-76.5 + parent: 1 + - uid: 12793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-76.5 + parent: 1 + - uid: 12794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-79.5 + parent: 1 + - uid: 12795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-76.5 + parent: 1 + - uid: 12796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-79.5 + parent: 1 + - uid: 12810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-76.5 + parent: 1 + - uid: 12811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-79.5 + parent: 1 + - uid: 12859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-78.5 + parent: 1 + - uid: 12860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-78.5 + parent: 1 +- proto: PRISONAirlockGlassLocked + entities: + - uid: 4789 + components: + - type: Transform + pos: 6.5,-74.5 + parent: 1 + - uid: 4790 + components: + - type: Transform + pos: 1.5,-74.5 + parent: 1 + - uid: 4841 + components: + - type: Transform + pos: 12.5,-74.5 + parent: 1 +- proto: PRISONAirlockGlassLockedBrig + entities: + - uid: 3916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-69.5 + parent: 1 + - uid: 3919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-60.5 + parent: 1 + - uid: 3920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-59.5 + parent: 1 + - uid: 3928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-68.5 + parent: 1 + - uid: 4641 + components: + - type: Transform + pos: 6.5,-68.5 + parent: 1 + - uid: 4658 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 1 + - uid: 4787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-69.5 + parent: 1 + - uid: 4788 + components: + - type: Transform + pos: 27.5,-82.5 + parent: 1 + - type: AccessReader + enabled: False + - uid: 5115 + components: + - type: Transform + pos: -1.5,-80.5 + parent: 1 + - uid: 5124 + components: + - type: Transform + pos: -0.5,-80.5 + parent: 1 + - uid: 5125 + components: + - type: Transform + pos: 0.5,-80.5 + parent: 1 +- proto: PRISONAirlockGlassLockedMed + entities: + - uid: 4467 + components: + - type: Transform + pos: 14.5,-66.5 + parent: 1 + - uid: 4524 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 1 +- proto: PRISONAirlockGlassLockedPrisoner + entities: + - uid: 2894 + components: + - type: Transform + pos: -1.5,-84.5 + parent: 1 + - uid: 2896 + components: + - type: Transform + pos: -0.5,-84.5 + parent: 1 + - uid: 2903 + components: + - type: Transform + pos: 0.5,-84.5 + parent: 1 + - uid: 4433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-82.5 + parent: 1 + - uid: 4794 + components: + - type: Transform + pos: -24.5,-98.5 + parent: 1 + - uid: 4796 + components: + - type: Transform + pos: -21.5,-84.5 + parent: 1 + - uid: 5417 + components: + - type: Transform + pos: -24.5,-89.5 + parent: 1 + - uid: 5499 + components: + - type: Transform + pos: -14.5,-80.5 + parent: 1 + - uid: 5504 + components: + - type: Transform + pos: -13.5,-80.5 + parent: 1 + - uid: 5746 + components: + - type: Transform + pos: -13.5,-84.5 + parent: 1 + - uid: 5762 + components: + - type: Transform + pos: -14.5,-84.5 + parent: 1 +- proto: PRISONAirlockGlassShuttleLocked + entities: + - uid: 8671 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 8566 +- proto: PRISONAirlockLocked + entities: + - uid: 151 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 3117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-48.5 + parent: 1 + - uid: 3823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-56.5 + parent: 1 +- proto: PRISONAirlockLockedBrig + entities: + - uid: 6574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-82.5 + parent: 1 + - uid: 12081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-84.5 + parent: 1 + - uid: 12192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-84.5 + parent: 1 + - uid: 12246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-84.5 + parent: 1 +- proto: PRISONAirlockLockedEng + entities: + - uid: 447 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-102.5 + parent: 1 + - uid: 3806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-52.5 + parent: 1 + - uid: 3807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-52.5 + parent: 1 + - uid: 4099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-80.5 + parent: 1 + - uid: 4924 + components: + - type: Transform + pos: -2.5,-64.5 + parent: 1 + - uid: 5003 + components: + - type: Transform + pos: -2.5,-74.5 + parent: 1 + - uid: 7400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-102.5 + parent: 1 + - uid: 12604 + components: + - type: Transform + pos: 31.5,-80.5 + parent: 1 + - uid: 12850 + components: + - type: Transform + pos: 10.5,-80.5 + parent: 1 +- proto: PRISONAirlockLockedHeadOfPrison + entities: + - uid: 3999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-64.5 + parent: 1 + - uid: 4361 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 1 +- proto: PRISONAirlockLockedPrisoner + entities: + - uid: 788 + components: + - type: Transform + pos: 20.5,-80.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 24.5,-80.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: 14.5,-80.5 + parent: 1 + - uid: 7360 + components: + - type: Transform + pos: 21.5,-87.5 + parent: 1 + - uid: 7383 + components: + - type: Transform + pos: 13.5,-87.5 + parent: 1 + - uid: 7390 + components: + - type: Transform + pos: 21.5,-91.5 + parent: 1 + - uid: 7943 + components: + - type: Transform + pos: 13.5,-99.5 + parent: 1 + - uid: 7944 + components: + - type: Transform + pos: 21.5,-99.5 + parent: 1 + - uid: 7952 + components: + - type: Transform + pos: 21.5,-95.5 + parent: 1 + - uid: 7953 + components: + - type: Transform + pos: 13.5,-91.5 + parent: 1 + - uid: 7955 + components: + - type: Transform + pos: 13.5,-95.5 + parent: 1 +- proto: PRISONComputerShuttle + entities: + - uid: 8672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 8566 +- proto: PRISONComputerShuttlePrison + entities: + - uid: 4005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-65.5 + parent: 1 +- proto: PRISONEncryptionKey + entities: + - uid: 8698 + components: + - type: Transform + parent: 8697 + - type: Physics + canCollide: False +- proto: PRISONFlag + entities: + - uid: 4627 + components: + - type: Transform + pos: 6.5,-71.5 + parent: 1 + - uid: 4635 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 1 + - uid: 4636 + components: + - type: Transform + pos: 6.5,-71.5 + parent: 1 +- proto: PRISONLockableButtonHeadOfPrison + entities: + - uid: 4844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-72.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 3984: + - Pressed: Toggle + 3985: + - Pressed: Toggle + 3986: + - Pressed: Toggle + 5108: + - Pressed: Toggle + 5109: + - Pressed: Toggle + 5110: + - Pressed: Toggle +- proto: PRISONLockableButtonPrisonBrig + entities: + - uid: 7364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-96.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 7955: + - Pressed: DoorBolt + - uid: 7413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-88.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 7360: + - Pressed: DoorBolt + - uid: 7441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-88.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 7383: + - Pressed: DoorBolt + - uid: 7442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-92.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 7390: + - Pressed: DoorBolt + - uid: 7958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-100.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 7943: + - Pressed: DoorBolt + - uid: 7959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-96.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 7952: + - Pressed: DoorBolt + - uid: 7962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-100.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 7944: + - Pressed: DoorBolt + - uid: 7963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-92.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 7953: + - Pressed: DoorBolt +- proto: PRISONLockerFilled + entities: + - uid: 3838 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 1 + - uid: 3901 + components: + - type: Transform + pos: -4.5,-61.5 + parent: 1 + - uid: 3912 + components: + - type: Transform + pos: -4.5,-60.5 + parent: 1 + - uid: 3913 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 1 + - uid: 3917 + components: + - type: Transform + pos: -5.5,-69.5 + parent: 1 + - uid: 3930 + components: + - type: Transform + pos: -5.5,-68.5 + parent: 1 + - uid: 3931 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 1 + - uid: 4786 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 1 +- proto: PRISONLockerHeadOfPrisonFilled + entities: + - uid: 4001 + components: + - type: Transform + pos: 10.5,-63.5 + parent: 1 +- proto: PRISONShuttleWindow + entities: + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 8566 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 8566 + - uid: 254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 8566 + - uid: 8673 + components: + - type: Transform + pos: 0.5,2.5 + parent: 8566 + - uid: 8675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 8566 +- proto: PRISONSpawnPointEngineer + entities: + - uid: 5009 + components: + - type: Transform + pos: -3.5,-74.5 + parent: 1 +- proto: PRISONSpawnPointHeadOfPrison + entities: + - uid: 5005 + components: + - type: Transform + pos: 9.5,-64.5 + parent: 1 +- proto: PRISONSpawnPointMedic + entities: + - uid: 8765 + components: + - type: Transform + pos: 14.5,-64.5 + parent: 1 +- proto: PRISONSpawnPointOfficer + entities: + - uid: 3840 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 1 + - uid: 4843 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 1 + - uid: 4913 + components: + - type: Transform + pos: -6.5,-68.5 + parent: 1 + - uid: 4919 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 1 + - uid: 4920 + components: + - type: Transform + pos: -6.5,-61.5 + parent: 1 + - uid: 12924 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 1 + - uid: 12925 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 1 + - uid: 12927 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 1 +- proto: PRISONSpawnPointPrisoner + entities: + - uid: 264 + components: + - type: Transform + pos: 10.5,-90.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 23.5,-94.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 23.5,-98.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: 10.5,-94.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 24.5,-90.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + pos: 10.5,-86.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 19.5,-77.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: 10.5,-98.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: 23.5,-86.5 + parent: 1 + - uid: 5567 + components: + - type: Transform + pos: 14.5,-77.5 + parent: 1 +- proto: PRISONSuitStorageEngi + entities: + - uid: 4914 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 1 +- proto: PRISONSuitStorageHeadOfPrison + entities: + - uid: 4000 + components: + - type: Transform + pos: 9.5,-63.5 + parent: 1 +- proto: PRISONSuitStorageMed + entities: + - uid: 4767 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 1 +- proto: PRISONSuitStorageOfficer + entities: + - uid: 3894 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 1 + - uid: 3906 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 1 + - uid: 3914 + components: + - type: Transform + pos: -4.5,-70.5 + parent: 1 + - uid: 3915 + components: + - type: Transform + pos: -4.5,-68.5 + parent: 1 + - uid: 4912 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 1 + - uid: 4918 + components: + - type: Transform + pos: -5.5,-61.5 + parent: 1 + - uid: 4949 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 1 + - uid: 5020 + components: + - type: Transform + pos: -5.5,-58.5 + parent: 1 +- proto: PRISONVendingMachine + entities: + - uid: 4942 + components: + - type: Transform + pos: 10.5,-67.5 + parent: 1 + - uid: 4943 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 1 +- proto: PRISONVendingMachineDrobe + entities: + - uid: 4645 + components: + - type: Transform + pos: 7.5,-71.5 + parent: 1 + - uid: 4654 + components: + - type: Transform + pos: 10.5,-71.5 + parent: 1 +- proto: PRISONWallShuttle + entities: + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 8566 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 8566 + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 8566 + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 8566 + - uid: 8676 + components: + - type: Transform + pos: 1.5,2.5 + parent: 8566 + - uid: 8679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 8566 + - uid: 8682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 8566 + - uid: 8683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 8566 +- proto: PRISONWallShuttleDiagonal + entities: + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 8566 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 8566 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 8566 + - uid: 247 + components: + - type: Transform + pos: -2.5,2.5 + parent: 8566 + - uid: 8684 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 8566 + - uid: 8685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 8566 + - uid: 8689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 8566 + - uid: 8690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 8566 +- proto: PRISONWindoorSecureBrigLocked + entities: + - uid: 1243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-83.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-82.5 + parent: 1 + - uid: 3836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-58.5 + parent: 1 + - uid: 3837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-60.5 + parent: 1 + - uid: 3896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-67.5 + parent: 1 + - uid: 3932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-60.5 + parent: 1 + - uid: 3934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-68.5 + parent: 1 + - uid: 4910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-59.5 + parent: 1 + - uid: 4916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-69.5 + parent: 1 + - uid: 4923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-70.5 + parent: 1 + - uid: 4927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-59.5 + parent: 1 + - uid: 4944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-69.5 + parent: 1 + - uid: 4946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-58.5 + parent: 1 + - uid: 4999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-68.5 + parent: 1 + - uid: 5008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-70.5 + parent: 1 + - uid: 5176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-68.5 + parent: 1 + - uid: 5809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-61.5 + parent: 1 + - uid: 5818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-61.5 + parent: 1 + - uid: 7623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-67.5 + parent: 1 + - uid: 7624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-67.5 + parent: 1 + - uid: 11100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-83.5 + parent: 1 + - uid: 11101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-82.5 + parent: 1 + - uid: 11102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-81.5 + parent: 1 + - uid: 11418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-83.5 + parent: 1 + - uid: 12132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-82.5 + parent: 1 + - uid: 12133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-81.5 + parent: 1 + - uid: 12583 + components: + - type: Transform + pos: 19.5,-81.5 + parent: 1 + - uid: 12584 + components: + - type: Transform + pos: 18.5,-81.5 + parent: 1 + - uid: 12585 + components: + - type: Transform + pos: 17.5,-81.5 + parent: 1 + - uid: 12586 + components: + - type: Transform + pos: 16.5,-81.5 + parent: 1 + - uid: 12587 + components: + - type: Transform + pos: 15.5,-81.5 + parent: 1 + - uid: 12635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-81.5 + parent: 1 + - uid: 12636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-81.5 + parent: 1 + - uid: 12637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-82.5 + parent: 1 + - uid: 12638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-83.5 + parent: 1 +- proto: PRISONWindoorSecureLocked + entities: + - uid: 914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-103.5 + parent: 1 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-103.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: -21.5,-103.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-103.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-103.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + pos: 6.5,-103.5 + parent: 1 + - uid: 2957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-103.5 + parent: 1 + - uid: 9555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-101.5 + parent: 1 + - uid: 9563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-101.5 + parent: 1 + - uid: 12203 + components: + - type: Transform + pos: -7.5,-103.5 + parent: 1 + - uid: 12204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-80.5 + parent: 1 + - uid: 12206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-80.5 + parent: 1 + - uid: 12218 + components: + - type: Transform + pos: 15.5,-103.5 + parent: 1 + - uid: 12219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-103.5 + parent: 1 + - uid: 12222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-103.5 + parent: 1 + - uid: 12224 + components: + - type: Transform + pos: 19.5,-103.5 + parent: 1 + - uid: 12236 + components: + - type: Transform + pos: -16.5,-103.5 + parent: 1 + - uid: 12238 + components: + - type: Transform + pos: -11.5,-103.5 + parent: 1 + - uid: 12512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-86.5 + parent: 1 + - uid: 12514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-86.5 + parent: 1 + - uid: 12947 + components: + - type: Transform + pos: 36.5,-80.5 + parent: 1 + - uid: 12948 + components: + - type: Transform + pos: 34.5,-80.5 + parent: 1 +- proto: PRISONWindoorSecureMedLocked + entities: + - uid: 12309 + components: + - type: Transform + pos: 18.5,-66.5 + parent: 1 + - uid: 12347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-66.5 + parent: 1 + - uid: 12359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-66.5 + parent: 1 + - uid: 12361 + components: + - type: Transform + pos: 19.5,-66.5 + parent: 1 + - uid: 12401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-66.5 + parent: 1 + - uid: 12455 + components: + - type: Transform + pos: 17.5,-66.5 + parent: 1 +- proto: PRISONWindoorSecurePrisonerLocked + entities: + - uid: 4795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-87.5 + parent: 1 + - uid: 5079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-86.5 + parent: 1 + - uid: 5132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-87.5 + parent: 1 + - uid: 5133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-100.5 + parent: 1 + - uid: 5134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-100.5 + parent: 1 + - uid: 5137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-86.5 + parent: 1 + - uid: 5403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-101.5 + parent: 1 + - uid: 5404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-101.5 + parent: 1 +- proto: Rack + entities: + - uid: 675 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-101.5 + parent: 1 + - uid: 4462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-79.5 + parent: 1 + - uid: 5012 + components: + - type: Transform + pos: -4.5,-73.5 + parent: 1 + - uid: 5013 + components: + - type: Transform + pos: -5.5,-73.5 + parent: 1 + - uid: 5014 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 1 + - uid: 5528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-78.5 + parent: 1 + - uid: 5927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-124.5 + parent: 1 + - uid: 6422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-79.5 + parent: 1 + - uid: 8252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-121.5 + parent: 1 + - uid: 8269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-121.5 + parent: 1 + - uid: 8570 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 1 + - uid: 8571 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 1 + - uid: 8572 + components: + - type: Transform + pos: 9.5,-61.5 + parent: 1 + - uid: 8573 + components: + - type: Transform + pos: 9.5,-61.5 + parent: 1 +- proto: Railing + entities: + - uid: 6328 + components: + - type: Transform + pos: -16.5,-98.5 + parent: 1 + - uid: 6329 + components: + - type: Transform + pos: -15.5,-98.5 + parent: 1 + - uid: 6330 + components: + - type: Transform + pos: -14.5,-98.5 + parent: 1 + - uid: 6332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-99.5 + parent: 1 + - uid: 6333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-100.5 + parent: 1 + - uid: 6348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-101.5 + parent: 1 + - uid: 6349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-102.5 + parent: 1 + - uid: 6351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-102.5 + parent: 1 + - uid: 6353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-102.5 + parent: 1 + - uid: 6394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-97.5 + parent: 1 + - uid: 6395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-97.5 + parent: 1 + - uid: 6397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-97.5 + parent: 1 + - uid: 6417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-96.5 + parent: 1 + - uid: 6441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-95.5 + parent: 1 + - uid: 6458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-94.5 + parent: 1 + - uid: 6459 + components: + - type: Transform + pos: -16.5,-93.5 + parent: 1 + - uid: 6466 + components: + - type: Transform + pos: -15.5,-93.5 + parent: 1 + - uid: 6517 + components: + - type: Transform + pos: -14.5,-93.5 + parent: 1 + - uid: 6571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-92.5 + parent: 1 + - uid: 6572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-92.5 + parent: 1 + - uid: 6573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-92.5 + parent: 1 + - uid: 7534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-91.5 + parent: 1 + - uid: 7563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-90.5 + parent: 1 + - uid: 7567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-89.5 + parent: 1 + - uid: 7569 + components: + - type: Transform + pos: -16.5,-88.5 + parent: 1 + - uid: 7570 + components: + - type: Transform + pos: -15.5,-88.5 + parent: 1 + - uid: 7571 + components: + - type: Transform + pos: -14.5,-88.5 + parent: 1 + - uid: 12786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-79.5 + parent: 1 + - uid: 12787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-79.5 + parent: 1 + - uid: 12788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-78.5 + parent: 1 + - uid: 12789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-76.5 + parent: 1 + - uid: 12790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-77.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 6370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-102.5 + parent: 1 + - uid: 6392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-98.5 + parent: 1 + - uid: 6531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-93.5 + parent: 1 + - uid: 6534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-97.5 + parent: 1 + - uid: 7572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-88.5 + parent: 1 + - uid: 7573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-92.5 + parent: 1 + - uid: 12791 + components: + - type: Transform + pos: 19.5,-79.5 + parent: 1 +- proto: RandomBoard + entities: + - uid: 6560 + components: + - type: Transform + pos: -15.5,-95.5 + parent: 1 + - uid: 6561 + components: + - type: Transform + pos: -14.5,-96.5 + parent: 1 + - uid: 6562 + components: + - type: Transform + pos: -13.5,-94.5 + parent: 1 + - uid: 6563 + components: + - type: Transform + pos: -16.5,-96.5 + parent: 1 + - uid: 6564 + components: + - type: Transform + pos: -11.5,-95.5 + parent: 1 + - uid: 6566 + components: + - type: Transform + pos: -16.5,-94.5 + parent: 1 + - uid: 6567 + components: + - type: Transform + pos: -16.5,-94.5 + parent: 1 +- proto: RandomDrinkBottle + entities: + - uid: 8842 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 8843 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 +- proto: RandomDrinkSoda + entities: + - uid: 8839 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 8840 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 3800 + components: + - type: Transform + pos: -20.5,-98.5 + parent: 1 + - uid: 3805 + components: + - type: Transform + pos: -20.5,-99.5 + parent: 1 + - uid: 3924 + components: + - type: Transform + pos: -20.5,-89.5 + parent: 1 + - uid: 3927 + components: + - type: Transform + pos: -20.5,-86.5 + parent: 1 + - uid: 4113 + components: + - type: Transform + pos: -22.5,-95.5 + parent: 1 + - uid: 4115 + components: + - type: Transform + pos: -20.5,-101.5 + parent: 1 + - uid: 4125 + components: + - type: Transform + pos: -20.5,-100.5 + parent: 1 + - uid: 4127 + components: + - type: Transform + pos: -21.5,-92.5 + parent: 1 + - uid: 4133 + components: + - type: Transform + pos: -20.5,-92.5 + parent: 1 + - uid: 4139 + components: + - type: Transform + pos: -20.5,-88.5 + parent: 1 +- proto: RandomGreyStalagmite + entities: + - uid: 223 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: -25.5,-111.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: -12.5,20.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: -13.5,22.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: -11.5,26.5 + parent: 1 + - uid: 1365 + components: + - type: Transform + pos: -12.5,27.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: -10.5,29.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + pos: -7.5,30.5 + parent: 1 + - uid: 1368 + components: + - type: Transform + pos: -4.5,32.5 + parent: 1 + - uid: 1369 + components: + - type: Transform + pos: -0.5,31.5 + parent: 1 + - uid: 1370 + components: + - type: Transform + pos: 0.5,32.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: 5.5,32.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: 7.5,30.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: 12.5,24.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: 12.5,23.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: 5.5,-79.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: 7.5,-78.5 + parent: 1 + - uid: 3572 + components: + - type: Transform + pos: 11.5,-119.5 + parent: 1 + - uid: 3751 + components: + - type: Transform + pos: 6.5,-122.5 + parent: 1 + - uid: 5461 + components: + - type: Transform + pos: 7.5,-76.5 + parent: 1 + - uid: 5462 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 1 + - uid: 5938 + components: + - type: Transform + pos: 11.5,-114.5 + parent: 1 + - uid: 6277 + components: + - type: Transform + pos: -2.5,-104.5 + parent: 1 + - uid: 6290 + components: + - type: Transform + pos: 2.5,-106.5 + parent: 1 + - uid: 6307 + components: + - type: Transform + pos: 0.5,-107.5 + parent: 1 + - uid: 6315 + components: + - type: Transform + pos: -3.5,-106.5 + parent: 1 + - uid: 6453 + components: + - type: Transform + pos: -28.5,-115.5 + parent: 1 + - uid: 6818 + components: + - type: Transform + pos: 9.5,-123.5 + parent: 1 + - uid: 7472 + components: + - type: Transform + pos: 5.5,-114.5 + parent: 1 + - uid: 8474 + components: + - type: Transform + pos: 11.5,-124.5 + parent: 1 + - uid: 10107 + components: + - type: Transform + pos: -35.5,-119.5 + parent: 1 + - uid: 10108 + components: + - type: Transform + pos: -34.5,-120.5 + parent: 1 + - uid: 10145 + components: + - type: Transform + pos: -36.5,-117.5 + parent: 1 + - uid: 10211 + components: + - type: Transform + pos: -38.5,-114.5 + parent: 1 + - uid: 10212 + components: + - type: Transform + pos: -37.5,-116.5 + parent: 1 + - uid: 10250 + components: + - type: Transform + pos: -37.5,-111.5 + parent: 1 + - uid: 10287 + components: + - type: Transform + pos: -28.5,-108.5 + parent: 1 + - uid: 10288 + components: + - type: Transform + pos: -30.5,-109.5 + parent: 1 + - uid: 10289 + components: + - type: Transform + pos: -29.5,-112.5 + parent: 1 + - uid: 10702 + components: + - type: Transform + pos: 36.5,-112.5 + parent: 1 + - uid: 10767 + components: + - type: Transform + pos: 31.5,-108.5 + parent: 1 + - uid: 11280 + components: + - type: Transform + pos: 35.5,-109.5 + parent: 1 + - uid: 11446 + components: + - type: Transform + pos: 37.5,-112.5 + parent: 1 + - uid: 11447 + components: + - type: Transform + pos: 33.5,-107.5 + parent: 1 +- proto: RandomServiceCorpseSpawner + entities: + - uid: 2427 + components: + - type: Transform + pos: 14.5,-116.5 + parent: 1 +- proto: RandomSoap + entities: + - uid: 5488 + components: + - type: Transform + pos: -12.5,-79.5 + parent: 1 + - uid: 5501 + components: + - type: Transform + pos: -15.5,-77.5 + parent: 1 + - uid: 12059 + components: + - type: Transform + pos: -15.5,-79.5 + parent: 1 + - uid: 12060 + components: + - type: Transform + pos: -12.5,-77.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 499 + components: + - type: Transform + pos: 15.5,-108.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: 11.5,-105.5 + parent: 1 + - uid: 5356 + components: + - type: Transform + pos: -15.5,-113.5 + parent: 1 + - uid: 5367 + components: + - type: Transform + pos: -20.5,-116.5 + parent: 1 + - uid: 5368 + components: + - type: Transform + pos: -20.5,-119.5 + parent: 1 + - uid: 5931 + components: + - type: Transform + pos: -7.5,-114.5 + parent: 1 + - uid: 5985 + components: + - type: Transform + pos: 17.5,-105.5 + parent: 1 + - uid: 6043 + components: + - type: Transform + pos: 44.5,-78.5 + parent: 1 + - uid: 6044 + components: + - type: Transform + pos: 44.5,-92.5 + parent: 1 + - uid: 6045 + components: + - type: Transform + pos: 40.5,-78.5 + parent: 1 + - uid: 6047 + components: + - type: Transform + pos: 44.5,-82.5 + parent: 1 + - uid: 6087 + components: + - type: Transform + pos: 36.5,-120.5 + parent: 1 + - uid: 6088 + components: + - type: Transform + pos: 32.5,-90.5 + parent: 1 + - uid: 6091 + components: + - type: Transform + pos: 29.5,-92.5 + parent: 1 + - uid: 6092 + components: + - type: Transform + pos: 35.5,-78.5 + parent: 1 + - uid: 6094 + components: + - type: Transform + pos: 16.5,-118.5 + parent: 1 + - uid: 6116 + components: + - type: Transform + pos: 27.5,-92.5 + parent: 1 + - uid: 6133 + components: + - type: Transform + pos: 15.5,-118.5 + parent: 1 + - uid: 6134 + components: + - type: Transform + pos: 28.5,-101.5 + parent: 1 + - uid: 6137 + components: + - type: Transform + pos: -10.5,-121.5 + parent: 1 + - uid: 6139 + components: + - type: Transform + pos: 31.5,-98.5 + parent: 1 + - uid: 6144 + components: + - type: Transform + pos: 41.5,-99.5 + parent: 1 + - uid: 6150 + components: + - type: Transform + pos: 34.5,-100.5 + parent: 1 + - uid: 6152 + components: + - type: Transform + pos: 39.5,-97.5 + parent: 1 + - uid: 6155 + components: + - type: Transform + pos: 29.5,-109.5 + parent: 1 + - uid: 6170 + components: + - type: Transform + pos: 25.5,-108.5 + parent: 1 + - uid: 6172 + components: + - type: Transform + pos: 27.5,-95.5 + parent: 1 + - uid: 6185 + components: + - type: Transform + pos: 42.5,-100.5 + parent: 1 + - uid: 6405 + components: + - type: Transform + pos: -15.5,-123.5 + parent: 1 + - uid: 6426 + components: + - type: Transform + pos: 21.5,-120.5 + parent: 1 + - uid: 6469 + components: + - type: Transform + pos: 10.5,-116.5 + parent: 1 + - uid: 6471 + components: + - type: Transform + pos: -16.5,-121.5 + parent: 1 + - uid: 6475 + components: + - type: Transform + pos: -9.5,-123.5 + parent: 1 + - uid: 6489 + components: + - type: Transform + pos: 17.5,-120.5 + parent: 1 + - uid: 6498 + components: + - type: Transform + pos: 30.5,-117.5 + parent: 1 + - uid: 6499 + components: + - type: Transform + pos: 29.5,-120.5 + parent: 1 + - uid: 6532 + components: + - type: Transform + pos: 9.5,-106.5 + parent: 1 + - uid: 6535 + components: + - type: Transform + pos: 9.5,-107.5 + parent: 1 + - uid: 6748 + components: + - type: Transform + pos: 13.5,-107.5 + parent: 1 + - uid: 6749 + components: + - type: Transform + pos: 12.5,-104.5 + parent: 1 + - uid: 6793 + components: + - type: Transform + pos: 9.5,-104.5 + parent: 1 + - uid: 6804 + components: + - type: Transform + pos: 10.5,-105.5 + parent: 1 + - uid: 7538 + components: + - type: Transform + pos: -7.5,-123.5 + parent: 1 + - uid: 7539 + components: + - type: Transform + pos: 4.5,-121.5 + parent: 1 + - uid: 7543 + components: + - type: Transform + pos: 0.5,-124.5 + parent: 1 + - uid: 7544 + components: + - type: Transform + pos: 2.5,-124.5 + parent: 1 + - uid: 7548 + components: + - type: Transform + pos: 4.5,-119.5 + parent: 1 + - uid: 7557 + components: + - type: Transform + pos: 13.5,-117.5 + parent: 1 + - uid: 7560 + components: + - type: Transform + pos: 7.5,-117.5 + parent: 1 + - uid: 7561 + components: + - type: Transform + pos: 2.5,-123.5 + parent: 1 + - uid: 7698 + components: + - type: Transform + pos: 22.5,-117.5 + parent: 1 + - uid: 7699 + components: + - type: Transform + pos: 24.5,-114.5 + parent: 1 + - uid: 7715 + components: + - type: Transform + pos: 31.5,-105.5 + parent: 1 + - uid: 7716 + components: + - type: Transform + pos: 34.5,-105.5 + parent: 1 + - uid: 7719 + components: + - type: Transform + pos: 38.5,-105.5 + parent: 1 + - uid: 7931 + components: + - type: Transform + pos: 42.5,-103.5 + parent: 1 + - uid: 8011 + components: + - type: Transform + pos: 27.5,-105.5 + parent: 1 + - uid: 8016 + components: + - type: Transform + pos: 22.5,-108.5 + parent: 1 + - uid: 8017 + components: + - type: Transform + pos: 27.5,-111.5 + parent: 1 + - uid: 8022 + components: + - type: Transform + pos: -7.5,-121.5 + parent: 1 + - uid: 8039 + components: + - type: Transform + pos: -23.5,-121.5 + parent: 1 + - uid: 8045 + components: + - type: Transform + pos: -22.5,-123.5 + parent: 1 + - uid: 8049 + components: + - type: Transform + pos: 40.5,-101.5 + parent: 1 + - uid: 8053 + components: + - type: Transform + pos: 32.5,-111.5 + parent: 1 + - uid: 8058 + components: + - type: Transform + pos: -25.5,-123.5 + parent: 1 + - uid: 8060 + components: + - type: Transform + pos: 41.5,-103.5 + parent: 1 + - uid: 8064 + components: + - type: Transform + pos: 42.5,-101.5 + parent: 1 + - uid: 8105 + components: + - type: Transform + pos: 20.5,-112.5 + parent: 1 + - uid: 8107 + components: + - type: Transform + pos: 17.5,-112.5 + parent: 1 + - uid: 8108 + components: + - type: Transform + pos: 17.5,-108.5 + parent: 1 + - uid: 8116 + components: + - type: Transform + pos: 38.5,-114.5 + parent: 1 + - uid: 8117 + components: + - type: Transform + pos: 43.5,-117.5 + parent: 1 + - uid: 8119 + components: + - type: Transform + pos: 35.5,-111.5 + parent: 1 + - uid: 8122 + components: + - type: Transform + pos: 41.5,-120.5 + parent: 1 + - uid: 8123 + components: + - type: Transform + pos: 32.5,-107.5 + parent: 1 + - uid: 8124 + components: + - type: Transform + pos: 15.5,-105.5 + parent: 1 + - uid: 8126 + components: + - type: Transform + pos: 33.5,-112.5 + parent: 1 + - uid: 8127 + components: + - type: Transform + pos: 32.5,-109.5 + parent: 1 + - uid: 8128 + components: + - type: Transform + pos: 38.5,-117.5 + parent: 1 + - uid: 8148 + components: + - type: Transform + pos: 25.5,-109.5 + parent: 1 + - uid: 8149 + components: + - type: Transform + pos: 29.5,-94.5 + parent: 1 + - uid: 8150 + components: + - type: Transform + pos: 44.5,-98.5 + parent: 1 + - uid: 8152 + components: + - type: Transform + pos: 42.5,-105.5 + parent: 1 + - uid: 8153 + components: + - type: Transform + pos: 44.5,-87.5 + parent: 1 + - uid: 8158 + components: + - type: Transform + pos: 35.5,-90.5 + parent: 1 + - uid: 8159 + components: + - type: Transform + pos: 44.5,-103.5 + parent: 1 + - uid: 8160 + components: + - type: Transform + pos: 44.5,-100.5 + parent: 1 + - uid: 8166 + components: + - type: Transform + pos: 23.5,-105.5 + parent: 1 + - uid: 8190 + components: + - type: Transform + pos: 16.5,-114.5 + parent: 1 + - uid: 8191 + components: + - type: Transform + pos: 38.5,-93.5 + parent: 1 + - uid: 8192 + components: + - type: Transform + pos: 40.5,-94.5 + parent: 1 + - uid: 8201 + components: + - type: Transform + pos: 28.5,-102.5 + parent: 1 + - uid: 8211 + components: + - type: Transform + pos: -3.5,-118.5 + parent: 1 + - uid: 8248 + components: + - type: Transform + pos: -2.5,-115.5 + parent: 1 + - uid: 8250 + components: + - type: Transform + pos: -14.5,-121.5 + parent: 1 + - uid: 8262 + components: + - type: Transform + pos: 39.5,-94.5 + parent: 1 + - uid: 8263 + components: + - type: Transform + pos: 39.5,-101.5 + parent: 1 + - uid: 8267 + components: + - type: Transform + pos: 40.5,-100.5 + parent: 1 + - uid: 8268 + components: + - type: Transform + pos: -13.5,-123.5 + parent: 1 + - uid: 8271 + components: + - type: Transform + pos: 40.5,-102.5 + parent: 1 + - uid: 8275 + components: + - type: Transform + pos: 33.5,-96.5 + parent: 1 + - uid: 8276 + components: + - type: Transform + pos: 32.5,-96.5 + parent: 1 + - uid: 8284 + components: + - type: Transform + pos: 27.5,-91.5 + parent: 1 + - uid: 8285 + components: + - type: Transform + pos: 36.5,-94.5 + parent: 1 + - uid: 8287 + components: + - type: Transform + pos: 31.5,-99.5 + parent: 1 + - uid: 8319 + components: + - type: Transform + pos: -15.5,-118.5 + parent: 1 + - uid: 8326 + components: + - type: Transform + pos: -15.5,-116.5 + parent: 1 + - uid: 8330 + components: + - type: Transform + pos: -14.5,-114.5 + parent: 1 + - uid: 8331 + components: + - type: Transform + pos: -20.5,-113.5 + parent: 1 + - uid: 8334 + components: + - type: Transform + pos: 34.5,-78.5 + parent: 1 + - uid: 8335 + components: + - type: Transform + pos: -14.5,-112.5 + parent: 1 + - uid: 8336 + components: + - type: Transform + pos: -21.5,-114.5 + parent: 1 + - uid: 8359 + components: + - type: Transform + pos: -20.5,-112.5 + parent: 1 + - uid: 8560 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 + - uid: 8561 + components: + - type: Transform + pos: -14.5,-91.5 + parent: 1 + - uid: 8562 + components: + - type: Transform + pos: -14.5,-91.5 + parent: 1 + - uid: 8563 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 8564 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 + - uid: 8709 + components: + - type: Transform + pos: -16.5,-91.5 + parent: 1 + - uid: 8710 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 8772 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 8779 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 + - uid: 8781 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 + - uid: 8782 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 + - uid: 8783 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 8818 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 + - uid: 8819 + components: + - type: Transform + pos: -16.5,-91.5 + parent: 1 + - uid: 8820 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 8821 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 8822 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 + - uid: 8823 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 + - uid: 8824 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 + - uid: 8825 + components: + - type: Transform + pos: -14.5,-91.5 + parent: 1 + - uid: 11894 + components: + - type: Transform + pos: -26.5,-121.5 + parent: 1 + - uid: 11953 + components: + - type: Transform + pos: -27.5,-121.5 + parent: 1 + - uid: 12035 + components: + - type: Transform + pos: -20.5,-121.5 + parent: 1 + - uid: 12036 + components: + - type: Transform + pos: -19.5,-123.5 + parent: 1 + - uid: 12543 + components: + - type: Transform + pos: 16.5,-116.5 + parent: 1 + - uid: 12546 + components: + - type: Transform + pos: -9.5,-116.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 10113 + components: + - type: Transform + pos: -29.5,-116.5 + parent: 1 + - uid: 10175 + components: + - type: Transform + pos: -34.5,-117.5 + parent: 1 + - uid: 10177 + components: + - type: Transform + pos: -31.5,-111.5 + parent: 1 + - uid: 10216 + components: + - type: Transform + pos: -36.5,-112.5 + parent: 1 + - uid: 11669 + components: + - type: Transform + pos: 24.5,-98.5 + parent: 1 + - uid: 11674 + components: + - type: Transform + pos: 9.5,-98.5 + parent: 1 + - uid: 11675 + components: + - type: Transform + pos: 11.5,-93.5 + parent: 1 + - uid: 11676 + components: + - type: Transform + pos: 11.5,-93.5 + parent: 1 + - uid: 11677 + components: + - type: Transform + pos: 25.5,-94.5 + parent: 1 + - uid: 11678 + components: + - type: Transform + pos: 24.5,-91.5 + parent: 1 + - uid: 11679 + components: + - type: Transform + pos: 25.5,-85.5 + parent: 1 + - uid: 11680 + components: + - type: Transform + pos: 11.5,-85.5 + parent: 1 + - uid: 11681 + components: + - type: Transform + pos: 11.5,-90.5 + parent: 1 + - uid: 11832 + components: + - type: Transform + pos: 40.5,-111.5 + parent: 1 + - uid: 11834 + components: + - type: Transform + pos: 43.5,-108.5 + parent: 1 + - uid: 11896 + components: + - type: Transform + pos: 43.5,-112.5 + parent: 1 + - uid: 11952 + components: + - type: Transform + pos: 41.5,-112.5 + parent: 1 + - uid: 11954 + components: + - type: Transform + pos: 41.5,-108.5 + parent: 1 + - uid: 12801 + components: + - type: Transform + pos: 17.5,-78.5 + parent: 1 + - uid: 12802 + components: + - type: Transform + pos: 18.5,-78.5 + parent: 1 + - uid: 12803 + components: + - type: Transform + pos: 18.5,-77.5 + parent: 1 + - uid: 12804 + components: + - type: Transform + pos: 17.5,-77.5 + parent: 1 + - uid: 12805 + components: + - type: Transform + pos: 17.5,-76.5 + parent: 1 + - uid: 12806 + components: + - type: Transform + pos: 18.5,-76.5 + parent: 1 +- proto: RandomVending + entities: + - uid: 3966 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 1 +- proto: RandomVendingDrinks + entities: + - uid: 3967 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 1 + - uid: 3969 + components: + - type: Transform + pos: 2.5,-71.5 + parent: 1 + - uid: 6300 + components: + - type: Transform + pos: -5.5,-83.5 + parent: 1 + - uid: 10935 + components: + - type: Transform + pos: 41.5,-83.5 + parent: 1 +- proto: RandomVendingSnacks + entities: + - uid: 3968 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 1 + - uid: 3970 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 1 + - uid: 3971 + components: + - type: Transform + pos: 4.5,-71.5 + parent: 1 + - uid: 6338 + components: + - type: Transform + pos: -3.5,-83.5 + parent: 1 + - uid: 11255 + components: + - type: Transform + pos: 41.5,-81.5 + parent: 1 +- proto: RandomWoodenSupport + entities: + - uid: 5350 + components: + - type: Transform + pos: 17.5,-119.5 + parent: 1 + - uid: 9163 + components: + - type: Transform + pos: 5.5,-118.5 + parent: 1 + - uid: 9164 + components: + - type: Transform + pos: 1.5,-124.5 + parent: 1 + - uid: 9165 + components: + - type: Transform + pos: 14.5,-115.5 + parent: 1 +- proto: ReinforcedUraniumWindow + entities: + - uid: 3049 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 1 + - uid: 3050 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 1 + - uid: 3051 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 1 + - uid: 3052 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 1 +- proto: RightHandHuman + entities: + - uid: 3525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.9729366,-104.95134 + parent: 1 + - uid: 6269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5270634,-104.654465 + parent: 1 +- proto: RightLegHuman + entities: + - uid: 3200 + components: + - type: Transform + pos: -0.19168663,-107.310715 + parent: 1 +- proto: RiotShield + entities: + - uid: 8579 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 1 + - uid: 8580 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 1 +- proto: RitualDagger + entities: + - uid: 6282 + components: + - type: Transform + pos: -0.53543663,-106.154465 + parent: 1 +- proto: Screwdriver + entities: + - uid: 6295 + components: + - type: Transform + pos: -12.357318,-95.0423 + parent: 1 + - uid: 12975 + components: + - type: Transform + pos: -10.5,-94.5 + parent: 1 +- proto: SeedExtractor + entities: + - uid: 5852 + components: + - type: Transform + pos: -28.5,-102.5 + parent: 1 +- proto: ServiceLightBulb + entities: + - uid: 12674 + components: + - type: Transform + pos: 24.542252,-102.32553 + parent: 1 +- proto: SheetGlass + entities: + - uid: 8585 + components: + - type: Transform + pos: 9.5,-61.5 + parent: 1 +- proto: SheetPlastic + entities: + - uid: 8584 + components: + - type: Transform + pos: 9.5,-61.5 + parent: 1 +- proto: SheetSteel + entities: + - uid: 8583 + components: + - type: Transform + pos: 9.5,-61.5 + parent: 1 +- proto: Shovel + entities: + - uid: 3126 + components: + - type: Transform + pos: -8.381332,-85.51731 + parent: 1 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 944 + components: + - type: Transform + pos: 12.54947,-124.392555 + parent: 1 + - uid: 8874 + components: + - type: Transform + pos: 44.523453,-120.47346 + parent: 1 + - uid: 9140 + components: + - type: Transform + pos: 12.5,-112.5 + parent: 1 + - uid: 12540 + components: + - type: Transform + pos: -32.696075,-117.599594 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 8235 + components: + - type: Transform + pos: -0.5,1.5 + parent: 8217 + - uid: 10165 + components: + - type: Transform + pos: -0.5,1.5 + parent: 10146 + - uid: 10949 + components: + - type: Transform + pos: -0.5,1.5 + parent: 10867 +- proto: SignEngineering + entities: + - uid: 5007 + components: + - type: Transform + pos: -2.5,-73.5 + parent: 1 +- proto: SignHead + entities: + - uid: 5006 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 5010 + components: + - type: Transform + pos: 1.5,-75.5 + parent: 1 +- proto: SignPrison + entities: + - uid: 4625 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 1 + - uid: 4626 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 1 +- proto: Sink + entities: + - uid: 5483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-76.5 + parent: 1 + - uid: 5486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-78.5 + parent: 1 +- proto: SinkStemlessWater + entities: + - uid: 11421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-85.5 + parent: 1 + - uid: 11553 + components: + - type: Transform + pos: 9.5,-97.5 + parent: 1 + - uid: 11554 + components: + - type: Transform + pos: 25.5,-97.5 + parent: 1 + - uid: 11555 + components: + - type: Transform + pos: 25.5,-93.5 + parent: 1 + - uid: 11556 + components: + - type: Transform + pos: 9.5,-93.5 + parent: 1 + - uid: 11557 + components: + - type: Transform + pos: 9.5,-89.5 + parent: 1 + - uid: 11558 + components: + - type: Transform + pos: 25.5,-89.5 + parent: 1 + - uid: 11559 + components: + - type: Transform + pos: 25.5,-85.5 + parent: 1 + - uid: 11560 + components: + - type: Transform + pos: 9.5,-85.5 + parent: 1 + - uid: 11704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-85.5 + parent: 1 + - uid: 11705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-85.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 3978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-71.5 + parent: 1 + - uid: 5826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-102.5 + parent: 1 + - uid: 6167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-90.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 623 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 3626 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 1 + - uid: 3628 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 1 + - uid: 5496 + components: + - type: Transform + pos: -4.5,-77.5 + parent: 1 + - uid: 5511 + components: + - type: Transform + pos: -6.5,-77.5 + parent: 1 + - uid: 5516 + components: + - type: Transform + pos: -5.5,-77.5 + parent: 1 + - uid: 7403 + components: + - type: Transform + pos: 10.5,-101.5 + parent: 1 +- proto: SoapSyndie + entities: + - uid: 6291 + components: + - type: Transform + pos: -2.1448116,-106.82634 + parent: 1 +- proto: SpawnMobCleanBot + entities: + - uid: 301 + components: + - type: Transform + pos: -10.5,-100.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -13.5,-77.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: -27.5,-100.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: -27.5,-88.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: -0.5,-90.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 3.5,-69.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: -0.5,-82.5 + parent: 1 + - uid: 2859 + components: + - type: Transform + pos: 10.5,-82.5 + parent: 1 + - uid: 6193 + components: + - type: Transform + pos: -25.5,-87.5 + parent: 1 + - uid: 8848 + components: + - type: Transform + pos: 17.5,-71.5 + parent: 1 + - uid: 8849 + components: + - type: Transform + pos: 15.5,-71.5 + parent: 1 + - uid: 10214 + components: + - type: Transform + pos: 24.5,-82.5 + parent: 1 +- proto: SpawnMobCockroach + entities: + - uid: 8844 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 8845 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 + - uid: 8846 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 8847 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 +- proto: SpawnMobMedibot + entities: + - uid: 5165 + components: + - type: Transform + pos: 16.5,-68.5 + parent: 1 + - uid: 12518 + components: + - type: Transform + pos: 42.5,-102.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 12946 + components: + - type: Transform + pos: 17.5,-95.5 + parent: 1 +- proto: StairDark + entities: + - uid: 11688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-83.5 + parent: 1 + - uid: 11689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-82.5 + parent: 1 + - uid: 11690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-81.5 + parent: 1 + - uid: 11691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-81.5 + parent: 1 + - uid: 11692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-82.5 + parent: 1 + - uid: 11693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-83.5 + parent: 1 +- proto: StationMapBroken + entities: + - uid: 8214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-124.5 + parent: 1 + - uid: 10623 + components: + - type: Transform + pos: -3.5,-120.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 640 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 4780 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 1 + - uid: 5517 + components: + - type: Transform + pos: -9.5,-77.5 + parent: 1 + - uid: 6427 + components: + - type: Transform + pos: 9.5,-76.5 + parent: 1 + - uid: 7428 + components: + - type: Transform + pos: 9.5,-101.5 + parent: 1 + - uid: 12605 + components: + - type: Transform + pos: 31.5,-78.5 + parent: 1 + - uid: 12606 + components: + - type: Transform + pos: 31.5,-78.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 8566 + - uid: 3646 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 1 + - uid: 3647 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 1 + - uid: 5884 + components: + - type: Transform + pos: 1.5,-77.5 + parent: 1 + - uid: 8236 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 8217 + - uid: 10166 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 10146 + - uid: 10950 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 10867 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 12578 + components: + - type: Transform + pos: 15.5,-81.5 + parent: 1 + - uid: 12579 + components: + - type: Transform + pos: 16.5,-81.5 + parent: 1 + - uid: 12580 + components: + - type: Transform + pos: 17.5,-81.5 + parent: 1 + - uid: 12581 + components: + - type: Transform + pos: 18.5,-81.5 + parent: 1 + - uid: 12582 + components: + - type: Transform + pos: 19.5,-81.5 + parent: 1 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 8699 + components: + - type: Transform + pos: 9.5,-59.5 + parent: 1 +- proto: SurveillanceCameraSecurity + entities: + - uid: 3102 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 1 + - type: SurveillanceCamera + id: Вход + - uid: 3103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-41.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Вход-слева + - uid: 3104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-41.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Вход-справа +- proto: SurveillanceWirelessCameraAnchoredConstructed + entities: + - uid: 3072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-39.5 + parent: 1 +- proto: SurvivalKnife + entities: + - uid: 2019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5998418,16.561592 + parent: 1 +- proto: Table + entities: + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-95.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-86.5 + parent: 1 + - uid: 546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-87.5 + parent: 1 + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-99.5 + parent: 1 + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-88.5 + parent: 1 + - uid: 665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-89.5 + parent: 1 + - uid: 813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-92.5 + parent: 1 + - uid: 817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-92.5 + parent: 1 + - uid: 963 + components: + - type: Transform + pos: -24.5,-100.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-98.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-95.5 + parent: 1 + - uid: 1942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-95.5 + parent: 1 + - uid: 2405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-94.5 + parent: 1 + - uid: 2406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-94.5 + parent: 1 + - uid: 2407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-97.5 + parent: 1 + - uid: 2418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-97.5 + parent: 1 + - uid: 2423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-97.5 + parent: 1 + - uid: 2442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-100.5 + parent: 1 + - uid: 2447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-100.5 + parent: 1 + - uid: 2452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-100.5 + parent: 1 + - uid: 2453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-100.5 + parent: 1 + - uid: 3149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-97.5 + parent: 1 + - uid: 3151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-94.5 + parent: 1 + - uid: 3154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-94.5 + parent: 1 + - uid: 3781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-101.5 + parent: 1 + - uid: 3789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-100.5 + parent: 1 + - uid: 3939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-67.5 + parent: 1 + - uid: 3940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-71.5 + parent: 1 + - uid: 3972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-67.5 + parent: 1 + - uid: 4568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-92.5 + parent: 1 + - uid: 4643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-71.5 + parent: 1 + - uid: 4799 + components: + - type: Transform + pos: -24.5,-101.5 + parent: 1 + - uid: 4800 + components: + - type: Transform + pos: -24.5,-87.5 + parent: 1 + - uid: 4802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-85.5 + parent: 1 + - uid: 5186 + components: + - type: Transform + pos: 19.5,-66.5 + parent: 1 + - uid: 5369 + components: + - type: Transform + pos: 18.5,-66.5 + parent: 1 + - uid: 5371 + components: + - type: Transform + pos: 17.5,-66.5 + parent: 1 + - uid: 5772 + components: + - type: Transform + pos: -24.5,-86.5 + parent: 1 + - uid: 5821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-85.5 + parent: 1 + - uid: 5827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-85.5 + parent: 1 + - uid: 5828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-85.5 + parent: 1 + - uid: 5867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-85.5 + parent: 1 + - uid: 6289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-95.5 + parent: 1 + - uid: 6294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-94.5 + parent: 1 + - uid: 6479 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 1 + - uid: 6481 + components: + - type: Transform + pos: 3.5,-81.5 + parent: 1 + - uid: 7549 + components: + - type: Transform + pos: -12.5,-91.5 + parent: 1 + - uid: 7550 + components: + - type: Transform + pos: -12.5,-90.5 + parent: 1 + - uid: 7551 + components: + - type: Transform + pos: -12.5,-89.5 + parent: 1 + - uid: 11441 + components: + - type: Transform + pos: 39.5,-81.5 + parent: 1 + - uid: 11561 + components: + - type: Transform + pos: 16.5,-100.5 + parent: 1 + - uid: 11562 + components: + - type: Transform + pos: 16.5,-99.5 + parent: 1 + - uid: 11563 + components: + - type: Transform + pos: 16.5,-98.5 + parent: 1 + - uid: 11564 + components: + - type: Transform + pos: 17.5,-100.5 + parent: 1 + - uid: 11565 + components: + - type: Transform + pos: 17.5,-99.5 + parent: 1 + - uid: 11566 + components: + - type: Transform + pos: 17.5,-98.5 + parent: 1 + - uid: 11567 + components: + - type: Transform + pos: 18.5,-100.5 + parent: 1 + - uid: 11568 + components: + - type: Transform + pos: 18.5,-99.5 + parent: 1 + - uid: 11569 + components: + - type: Transform + pos: 18.5,-98.5 + parent: 1 + - uid: 11570 + components: + - type: Transform + pos: 16.5,-86.5 + parent: 1 + - uid: 11571 + components: + - type: Transform + pos: 16.5,-87.5 + parent: 1 + - uid: 11572 + components: + - type: Transform + pos: 16.5,-88.5 + parent: 1 + - uid: 11573 + components: + - type: Transform + pos: 17.5,-86.5 + parent: 1 + - uid: 11574 + components: + - type: Transform + pos: 17.5,-87.5 + parent: 1 + - uid: 11575 + components: + - type: Transform + pos: 17.5,-88.5 + parent: 1 + - uid: 11576 + components: + - type: Transform + pos: 18.5,-86.5 + parent: 1 + - uid: 11577 + components: + - type: Transform + pos: 18.5,-87.5 + parent: 1 + - uid: 11578 + components: + - type: Transform + pos: 18.5,-88.5 + parent: 1 + - uid: 12038 + components: + - type: Transform + pos: 38.5,-81.5 + parent: 1 + - uid: 12039 + components: + - type: Transform + pos: 35.5,-81.5 + parent: 1 + - uid: 12040 + components: + - type: Transform + pos: 34.5,-81.5 + parent: 1 +- proto: TableCounterWood + entities: + - uid: 2916 + components: + - type: Transform + pos: -2.5,-102.5 + parent: 1 + - uid: 2924 + components: + - type: Transform + pos: -1.5,-102.5 + parent: 1 + - uid: 2998 + components: + - type: Transform + pos: -0.5,-102.5 + parent: 1 + - uid: 2999 + components: + - type: Transform + pos: 0.5,-102.5 + parent: 1 + - uid: 3001 + components: + - type: Transform + pos: 1.5,-102.5 + parent: 1 + - uid: 3004 + components: + - type: Transform + pos: -1.5,-101.5 + parent: 1 + - uid: 3010 + components: + - type: Transform + pos: -0.5,-101.5 + parent: 1 + - uid: 3012 + components: + - type: Transform + pos: 0.5,-101.5 + parent: 1 + - uid: 4839 + components: + - type: Transform + pos: -12.5,-100.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 4393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-72.5 + parent: 1 + - uid: 4423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-72.5 + parent: 1 + - uid: 4435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-70.5 + parent: 1 + - uid: 4540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-70.5 + parent: 1 + - uid: 4567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-70.5 + parent: 1 + - uid: 4601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-72.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 2429 + components: + - type: Transform + pos: 18.5,-63.5 + parent: 1 + - uid: 4410 + components: + - type: Transform + pos: 16.5,-65.5 + parent: 1 + - uid: 4588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-67.5 + parent: 1 + - uid: 5164 + components: + - type: Transform + pos: 13.5,-65.5 + parent: 1 + - uid: 5415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-67.5 + parent: 1 +- proto: TableWood + entities: + - uid: 3960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-63.5 + parent: 1 + - uid: 3961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-64.5 + parent: 1 + - uid: 3962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-65.5 + parent: 1 +- proto: TelecomServer + entities: + - uid: 8697 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 1 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8698 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: Telecrystal1 + entities: + - uid: 1252 + components: + - type: Transform + pos: 5.5,-78.5 + parent: 1 +- proto: Thruster + entities: + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 8566 + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 8566 + - uid: 8237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 8217 + - uid: 8238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 8217 + - uid: 8695 + components: + - type: Transform + pos: 3.5,2.5 + parent: 8566 + - uid: 8696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 8566 + - uid: 10167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 10146 + - uid: 10168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 10146 + - uid: 10951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 10867 + - uid: 10952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 10867 +- proto: ToiletDirtyWater + entities: + - uid: 11420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-86.5 + parent: 1 + - uid: 11545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-99.5 + parent: 1 + - uid: 11546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-95.5 + parent: 1 + - uid: 11547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-91.5 + parent: 1 + - uid: 11548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-87.5 + parent: 1 + - uid: 11549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-87.5 + parent: 1 + - uid: 11550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-91.5 + parent: 1 + - uid: 11551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-95.5 + parent: 1 + - uid: 11552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-99.5 + parent: 1 + - uid: 11759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-86.5 + parent: 1 + - uid: 11812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-86.5 + parent: 1 +- proto: ToolboxElectricalFilled + entities: + - uid: 677 + components: + - type: Transform + pos: 12.509671,-2.5977519 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 13.478421,-2.5821269 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: 24.521502,-101.57335 + parent: 1 + - uid: 5021 + components: + - type: Transform + pos: -5.4821887,-75.61633 + parent: 1 + - uid: 5022 + components: + - type: Transform + pos: -5.5446887,-75.31946 + parent: 1 + - uid: 5530 + components: + - type: Transform + pos: -9.500497,-78.5904 + parent: 1 +- proto: ToolboxMechanicalFilled + entities: + - uid: 679 + components: + - type: Transform + pos: 12.478421,-2.2852519 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 13.478421,-2.2696269 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 24.505877,-101.245224 + parent: 1 + - uid: 5527 + components: + - type: Transform + pos: -9.484872,-78.262276 + parent: 1 +- proto: ToySpawner + entities: + - uid: 7628 + components: + - type: Transform + pos: -14.5,-91.5 + parent: 1 + - uid: 7629 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 1 + - uid: 7630 + components: + - type: Transform + pos: -16.5,-90.5 + parent: 1 + - uid: 7631 + components: + - type: Transform + pos: -16.5,-91.5 + parent: 1 + - uid: 7632 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 1 + - uid: 7633 + components: + - type: Transform + pos: -15.5,-90.5 + parent: 1 + - uid: 7634 + components: + - type: Transform + pos: -15.5,-91.5 + parent: 1 + - uid: 7635 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 1 + - uid: 7636 + components: + - type: Transform + pos: -14.5,-90.5 + parent: 1 +- proto: TrashBag + entities: + - uid: 300 + components: + - type: Transform + pos: 24.478214,-79.4052 + parent: 1 + - uid: 6797 + components: + - type: Transform + pos: 8.478891,-108.55638 + parent: 1 + - uid: 12798 + components: + - type: Transform + pos: 21.5,-78.5 + parent: 1 +- proto: Truncheon + entities: + - uid: 8581 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 1 + - uid: 8582 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 1 +- proto: UnfinishedMachineFrame + entities: + - uid: 6222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-96.5 + parent: 1 + - uid: 6224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-96.5 + parent: 1 + - uid: 6241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-94.5 + parent: 1 +- proto: VendingMachineBooze + entities: + - uid: 4002 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 1 +- proto: VendingMachineChefDrobe + entities: + - uid: 6186 + components: + - type: Transform + pos: -28.5,-88.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineChefvend + entities: + - uid: 4172 + components: + - type: Transform + pos: -28.5,-87.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineChemicals + entities: + - uid: 2415 + components: + - type: Transform + pos: 19.5,-63.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineDinnerware + entities: + - uid: 3786 + components: + - type: Transform + pos: -28.5,-86.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineEngiDrobe + entities: + - uid: 5016 + components: + - type: Transform + pos: -3.5,-73.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineEngivend + entities: + - uid: 5017 + components: + - type: Transform + pos: -6.5,-73.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineHydrobe + entities: + - uid: 5801 + components: + - type: Transform + pos: -28.5,-97.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineJaniDrobe + entities: + - uid: 9557 + components: + - type: Transform + pos: 24.5,-77.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineMedical + entities: + - uid: 2420 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineMediDrobe + entities: + - uid: 2419 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineSeeds + entities: + - uid: 5822 + components: + - type: Transform + pos: -25.5,-97.5 + parent: 1 + - type: AccessReader + access: [] +- proto: VendingMachineSustenance + entities: + - uid: 7531 + components: + - type: Transform + pos: -10.5,-99.5 + parent: 1 + - uid: 12590 + components: + - type: Transform + pos: 16.5,-83.5 + parent: 1 + - uid: 12591 + components: + - type: Transform + pos: 18.5,-83.5 + parent: 1 +- proto: VendingMachineVendomat + entities: + - uid: 6287 + components: + - type: Transform + pos: -12.5,-96.5 + parent: 1 +- proto: VendingMachineYouTool + entities: + - uid: 5018 + components: + - type: Transform + pos: -6.5,-75.5 + parent: 1 +- proto: WallmountTelescreen + entities: + - uid: 3101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-44.5 + parent: 1 + - uid: 4940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-65.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 39 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + - uid: 569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + - uid: 573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + - uid: 575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 1 + - uid: 576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + - uid: 579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 1 + - uid: 580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 1 + - uid: 582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 1 + - uid: 585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,2.5 + parent: 1 + - uid: 586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 1 + - uid: 588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 1 + - uid: 590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + - uid: 591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: -24.5,-97.5 + parent: 1 + - uid: 879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-84.5 + parent: 1 + - uid: 989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-97.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-103.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: 9.5,-84.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: 10.5,-84.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: 25.5,-84.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-77.5 + parent: 1 + - uid: 1941 + components: + - type: Transform + pos: -19.5,-103.5 + parent: 1 + - uid: 1943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-96.5 + parent: 1 + - uid: 2021 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 2022 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 2024 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 2025 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 2026 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 2031 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 2034 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 + - uid: 2037 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 1 + - uid: 2038 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 1 + - uid: 2039 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1 + - uid: 2040 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1 + - uid: 2041 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1 + - uid: 2042 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 1 + - uid: 2043 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 1 + - uid: 2044 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 1 + - uid: 2045 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 1 + - uid: 2048 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 1 + - uid: 2051 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 1 + - uid: 2054 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 2055 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 2057 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 2059 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 2060 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 1 + - uid: 2061 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1 + - uid: 2062 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 1 + - uid: 2064 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 1 + - uid: 2067 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 1 + - uid: 2068 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 2107 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 1 + - uid: 2120 components: - type: Transform - pos: 0.5,2.5 - parent: 8566 - - uid: 8675 + rot: 3.141592653589793 rad + pos: -3.5,-34.5 + parent: 1 + - uid: 2258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 8566 -- proto: PRISONSpawnPointEngineer - entities: - - uid: 5009 + rot: 1.5707963267948966 rad + pos: 22.5,-66.5 + parent: 1 + - uid: 2391 components: - type: Transform - pos: -3.5,-74.5 + pos: 8.5,-103.5 parent: 1 -- proto: PRISONSpawnPointHeadOfPrison - entities: - - uid: 5005 + - uid: 2434 components: - type: Transform - pos: 9.5,-64.5 + rot: 1.5707963267948966 rad + pos: 22.5,-62.5 parent: 1 -- proto: PRISONSpawnPointMedic - entities: - - uid: 8765 + - uid: 2436 components: - type: Transform - pos: 14.5,-64.5 + rot: 1.5707963267948966 rad + pos: 21.5,-66.5 parent: 1 -- proto: PRISONSpawnPointOfficer - entities: - - uid: 4999 + - uid: 2440 components: - type: Transform - pos: -4.5,-66.5 + rot: 1.5707963267948966 rad + pos: 21.5,-62.5 parent: 1 - - uid: 5000 + - uid: 2443 components: - type: Transform - pos: -4.5,-62.5 + pos: 12.5,-55.5 parent: 1 - - uid: 5002 + - uid: 2444 components: - type: Transform - pos: -4.5,-70.5 + pos: 11.5,-55.5 parent: 1 - - uid: 5008 + - uid: 2445 components: - type: Transform - pos: -4.5,-58.5 + pos: 10.5,-55.5 parent: 1 -- proto: PRISONSpawnPointPrisoner - entities: - - uid: 5428 + - uid: 2450 components: - type: Transform - pos: 13.5,-90.5 + pos: 9.5,-55.5 parent: 1 - - uid: 5429 + - uid: 2451 components: - type: Transform - pos: 13.5,-94.5 + pos: 8.5,-55.5 parent: 1 - - uid: 5431 + - uid: 2455 components: - type: Transform - pos: 13.5,-86.5 + pos: 1.5,-84.5 parent: 1 - - uid: 5434 + - uid: 2456 components: - type: Transform - pos: 13.5,-82.5 + pos: 7.5,-55.5 parent: 1 -- proto: PRISONSuitStorageHeadOfPrison - entities: - - uid: 4000 + - uid: 2463 components: - type: Transform - pos: 9.5,-63.5 + pos: 2.5,-84.5 parent: 1 -- proto: PRISONSuitStorageOfficer - entities: - - uid: 3915 + - uid: 2464 components: - type: Transform - pos: -5.5,-67.5 + pos: 3.5,-84.5 parent: 1 - - uid: 3916 + - uid: 2465 components: - type: Transform - pos: -5.5,-63.5 + pos: 4.5,-84.5 parent: 1 - - uid: 3917 + - uid: 2466 components: - type: Transform - pos: -5.5,-59.5 + pos: 5.5,-84.5 parent: 1 - - uid: 3918 + - uid: 2470 components: - type: Transform - pos: -5.5,-71.5 + pos: 6.5,-84.5 parent: 1 -- proto: PRISONVendingMachine - entities: - - uid: 4942 + - uid: 2472 components: - type: Transform - pos: 10.5,-67.5 + pos: 7.5,-84.5 parent: 1 - - uid: 4943 + - uid: 2545 components: - type: Transform - pos: 7.5,-67.5 + pos: -5.5,-84.5 parent: 1 -- proto: PRISONVendingMachineDrobe - entities: - - uid: 4645 + - uid: 2546 components: - type: Transform - pos: 7.5,-71.5 + pos: -7.5,-84.5 parent: 1 - - uid: 4654 + - uid: 2551 components: - type: Transform - pos: 10.5,-71.5 + pos: -10.5,-84.5 parent: 1 -- proto: PRISONWallShuttle - entities: - - uid: 214 + - uid: 2568 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 8566 - - uid: 215 + rot: -1.5707963267948966 rad + pos: 10.5,-103.5 + parent: 1 + - uid: 2624 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 8566 - - uid: 248 + pos: 2.5,-34.5 + parent: 1 + - uid: 2627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 8566 - - uid: 250 + pos: 18.5,-103.5 + parent: 1 + - uid: 2881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 8566 - - uid: 8676 + pos: -3.5,-84.5 + parent: 1 + - uid: 2882 components: - type: Transform - pos: 1.5,2.5 - parent: 8566 - - uid: 8679 + pos: -2.5,-84.5 + parent: 1 + - uid: 2927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 8566 - - uid: 8682 + pos: -9.5,-89.5 + parent: 1 + - uid: 2938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 8566 - - uid: 8683 + pos: 4.5,-103.5 + parent: 1 + - uid: 2944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 8566 -- proto: PRISONWallShuttleDiagonal - entities: - - uid: 205 + pos: -9.5,-103.5 + parent: 1 + - uid: 2948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 8566 - - uid: 211 + pos: -5.5,-103.5 + parent: 1 + - uid: 2984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 8566 - - uid: 221 + pos: -9.5,-87.5 + parent: 1 + - uid: 2986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 8566 - - uid: 247 + pos: -9.5,-88.5 + parent: 1 + - uid: 2988 components: - type: Transform - pos: -2.5,2.5 - parent: 8566 - - uid: 8684 + pos: -9.5,-90.5 + parent: 1 + - uid: 3034 components: - type: Transform - pos: 2.5,-0.5 - parent: 8566 - - uid: 8685 + rot: 3.141592653589793 rad + pos: 3.5,-36.5 + parent: 1 + - uid: 3036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 8566 - - uid: 8689 + rot: 3.141592653589793 rad + pos: 5.5,-38.5 + parent: 1 + - uid: 3040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 8566 - - uid: 8690 + rot: 3.141592653589793 rad + pos: -5.5,-37.5 + parent: 1 + - uid: 3041 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 8566 -- proto: Rack - entities: - - uid: 675 + pos: -4.5,-36.5 + parent: 1 + - uid: 3042 components: - type: Transform - pos: 13.5,-2.5 + rot: 3.141592653589793 rad + pos: -3.5,-35.5 parent: 1 - - uid: 676 + - uid: 3053 components: - type: Transform - pos: 12.5,-2.5 + pos: 4.5,-40.5 parent: 1 - - uid: 2416 + - uid: 3054 components: - type: Transform - pos: 16.5,-63.5 + pos: 1.5,-40.5 parent: 1 - - uid: 2427 + - uid: 3055 components: - type: Transform - pos: 17.5,-63.5 + pos: -2.5,-40.5 parent: 1 - - uid: 5012 + - uid: 3056 components: - type: Transform - pos: -4.5,-73.5 + pos: -5.5,-40.5 parent: 1 - - uid: 5013 + - uid: 3066 components: - type: Transform - pos: -5.5,-73.5 + pos: 4.5,-46.5 parent: 1 - - uid: 5014 + - uid: 3069 components: - type: Transform - pos: -5.5,-75.5 + pos: 4.5,-42.5 parent: 1 - - uid: 5015 + - uid: 3071 components: - type: Transform - pos: -4.5,-75.5 + pos: -5.5,-44.5 parent: 1 - - uid: 5528 + - uid: 3077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-78.5 + pos: 5.5,-41.5 parent: 1 - - uid: 8570 + - uid: 3078 components: - type: Transform - pos: 7.5,-61.5 + pos: 5.5,-42.5 parent: 1 - - uid: 8571 + - uid: 3079 components: - type: Transform - pos: 8.5,-61.5 + pos: 5.5,-43.5 parent: 1 - - uid: 8572 + - uid: 3082 components: - type: Transform - pos: 9.5,-61.5 + pos: 5.5,-46.5 parent: 1 - - uid: 8573 + - uid: 3083 components: - type: Transform - pos: 9.5,-61.5 + pos: 5.5,-47.5 parent: 1 -- proto: RandomFoodBakedSingle - entities: - - uid: 8887 + - uid: 3084 components: - type: Transform - pos: -26.5,-80.5 + pos: -6.5,-40.5 parent: 1 -- proto: RandomFoodBakedWhole - entities: - - uid: 8888 + - uid: 3085 components: - type: Transform - pos: -22.5,-81.5 + pos: -6.5,-41.5 parent: 1 -- proto: RandomFoodMeal - entities: - - uid: 8885 + - uid: 3086 components: - type: Transform - pos: -25.5,-83.5 + pos: -6.5,-42.5 parent: 1 - - uid: 8886 + - uid: 3087 components: - type: Transform - pos: -23.5,-81.5 + pos: -6.5,-43.5 parent: 1 -- proto: RandomFoodSingle - entities: - - uid: 8889 + - uid: 3088 components: - type: Transform - pos: -22.5,-84.5 + pos: -6.5,-44.5 parent: 1 - - uid: 8890 + - uid: 3089 components: - type: Transform - pos: -25.5,-84.5 + pos: -6.5,-45.5 parent: 1 - - uid: 8891 + - uid: 3090 components: - type: Transform - pos: -26.5,-84.5 + pos: -6.5,-46.5 parent: 1 -- proto: RandomGreyStalagmite - entities: - - uid: 223 + - uid: 3091 components: - type: Transform - pos: -14.5,-1.5 + pos: -6.5,-47.5 parent: 1 - - uid: 224 + - uid: 3107 components: - type: Transform - pos: -10.5,1.5 + rot: 3.141592653589793 rad + pos: 3.5,-48.5 parent: 1 - - uid: 225 + - uid: 3110 components: - type: Transform - pos: -14.5,1.5 + rot: 3.141592653589793 rad + pos: 0.5,-48.5 parent: 1 - - uid: 226 + - uid: 3111 components: - type: Transform - pos: -11.5,-4.5 + rot: 3.141592653589793 rad + pos: -1.5,-48.5 parent: 1 - - uid: 227 + - uid: 3112 components: - type: Transform - pos: -12.5,3.5 + rot: 3.141592653589793 rad + pos: -2.5,-48.5 parent: 1 - - uid: 760 + - uid: 3115 components: - type: Transform - pos: -36.5,-87.5 + rot: 3.141592653589793 rad + pos: -5.5,-48.5 parent: 1 - - uid: 879 + - uid: 3116 components: - type: Transform - pos: -25.5,-90.5 + rot: 3.141592653589793 rad + pos: -6.5,-48.5 parent: 1 - - uid: 884 + - uid: 3118 components: - type: Transform - pos: -30.5,-88.5 + pos: -4.5,-84.5 parent: 1 - - uid: 893 + - uid: 3120 components: - type: Transform - pos: -37.5,-80.5 + pos: -6.5,-84.5 parent: 1 - - uid: 907 + - uid: 3121 components: - type: Transform - pos: -25.5,-111.5 + pos: -8.5,-84.5 parent: 1 - - uid: 913 + - uid: 3182 components: - type: Transform - pos: -7.5,-109.5 + pos: 8.5,-86.5 parent: 1 - - uid: 914 + - uid: 3214 components: - type: Transform - pos: -5.5,-111.5 + pos: -24.5,-83.5 parent: 1 - - uid: 922 + - uid: 3217 components: - type: Transform - pos: 11.5,-107.5 + pos: -20.5,-80.5 parent: 1 - - uid: 928 + - uid: 3229 components: - type: Transform - pos: 10.5,-104.5 + pos: -9.5,-92.5 parent: 1 - - uid: 929 + - uid: 3243 components: - type: Transform - pos: 3.5,-109.5 + pos: -9.5,-94.5 parent: 1 - - uid: 942 + - uid: 3313 components: - type: Transform - pos: 1.5,-111.5 + pos: -7.5,-48.5 parent: 1 - - uid: 945 + - uid: 3336 components: - type: Transform - pos: 6.5,-108.5 + pos: 8.5,-101.5 parent: 1 - - uid: 1362 + - uid: 3337 components: - type: Transform - pos: -12.5,20.5 + pos: 8.5,-99.5 parent: 1 - - uid: 1363 + - uid: 3352 components: - type: Transform - pos: -13.5,22.5 + pos: 6.5,-48.5 parent: 1 - - uid: 1364 + - uid: 3445 components: - type: Transform - pos: -11.5,26.5 + pos: -9.5,-93.5 parent: 1 - - uid: 1365 + - uid: 3446 components: - type: Transform - pos: -12.5,27.5 + pos: 8.5,-85.5 parent: 1 - - uid: 1366 + - uid: 3451 components: - type: Transform - pos: -10.5,29.5 + pos: 8.5,-89.5 parent: 1 - - uid: 1367 + - uid: 3455 components: - type: Transform - pos: -7.5,30.5 + pos: 8.5,-91.5 parent: 1 - - uid: 1368 + - uid: 3464 components: - type: Transform - pos: -4.5,32.5 + pos: 8.5,-98.5 parent: 1 - - uid: 1369 + - uid: 3469 components: - type: Transform - pos: -0.5,31.5 + pos: 8.5,-102.5 parent: 1 - - uid: 1370 + - uid: 3472 components: - type: Transform - pos: 0.5,32.5 + pos: -9.5,-95.5 parent: 1 - - uid: 1371 + - uid: 3476 components: - type: Transform - pos: 5.5,32.5 + pos: 8.5,-88.5 parent: 1 - - uid: 1372 + - uid: 3498 components: - type: Transform - pos: 7.5,30.5 + pos: 8.5,-87.5 parent: 1 - - uid: 1373 + - uid: 3501 components: - type: Transform - pos: 10.5,29.5 + pos: 8.5,-100.5 parent: 1 - - uid: 1374 + - uid: 3505 components: - type: Transform - pos: 11.5,27.5 + pos: 8.5,-84.5 parent: 1 - - uid: 1375 + - uid: 3511 components: - type: Transform - pos: 12.5,24.5 + pos: -9.5,-86.5 parent: 1 - - uid: 1376 + - uid: 3514 components: - type: Transform - pos: 12.5,23.5 + pos: -9.5,-91.5 parent: 1 - - uid: 1377 + - uid: 3522 components: - type: Transform - pos: 10.5,21.5 + pos: -9.5,-85.5 parent: 1 - - uid: 1378 + - uid: 3523 components: - type: Transform - pos: 8.5,20.5 + pos: -9.5,-84.5 parent: 1 - - uid: 1379 + - uid: 3532 components: - type: Transform - pos: 7.5,19.5 + rot: 3.141592653589793 rad + pos: 9.5,-103.5 parent: 1 - - uid: 2860 + - uid: 3570 components: - type: Transform - pos: -12.5,-52.5 + rot: 1.5707963267948966 rad + pos: -26.5,-84.5 parent: 1 - - uid: 3466 + - uid: 3571 components: - type: Transform - pos: -4.5,-29.5 + pos: -14.5,-103.5 parent: 1 - - uid: 3468 + - uid: 3573 components: - type: Transform - pos: -6.5,-31.5 + pos: -13.5,-103.5 parent: 1 - - uid: 3493 + - uid: 3574 components: - type: Transform - pos: -9.5,-50.5 + pos: -15.5,-103.5 parent: 1 - - uid: 3494 + - uid: 3575 components: - type: Transform - pos: -7.5,-32.5 + pos: -22.5,-103.5 parent: 1 - - uid: 3496 + - uid: 3576 components: - type: Transform - pos: -8.5,-43.5 + pos: -23.5,-103.5 parent: 1 - - uid: 3497 + - uid: 3577 components: - type: Transform - pos: -8.5,-36.5 + pos: -20.5,-103.5 parent: 1 - - uid: 3499 + - uid: 3588 components: - type: Transform - pos: -11.5,-46.5 + pos: 1.5,-49.5 parent: 1 - - uid: 3500 + - uid: 3589 components: - type: Transform - pos: -11.5,-37.5 + pos: 1.5,-50.5 parent: 1 - - uid: 3502 + - uid: 3590 components: - type: Transform - pos: -11.5,-40.5 + pos: 1.5,-51.5 parent: 1 - - uid: 5461 + - uid: 3591 components: - type: Transform - pos: 7.5,-76.5 + pos: -4.5,-56.5 parent: 1 - - uid: 5462 + - uid: 3592 components: - type: Transform - pos: 3.5,-78.5 + pos: 1.5,-53.5 parent: 1 - - uid: 6040 + - uid: 3593 components: - type: Transform - pos: 19.5,-98.5 + pos: 1.5,-54.5 parent: 1 - - uid: 6041 + - uid: 3594 components: - type: Transform - pos: 9.5,-79.5 + pos: 1.5,-55.5 parent: 1 - - uid: 6042 + - uid: 3595 components: - type: Transform - pos: 18.5,-92.5 + pos: 1.5,-56.5 parent: 1 - - uid: 6043 + - uid: 3596 components: - type: Transform - pos: 18.5,-105.5 + pos: -2.5,-49.5 parent: 1 - - uid: 6044 + - uid: 3597 components: - type: Transform - pos: 14.5,-106.5 + pos: -2.5,-50.5 parent: 1 - - uid: 6045 + - uid: 3598 components: - type: Transform - pos: 18.5,-89.5 + pos: -2.5,-51.5 parent: 1 - - uid: 6046 + - uid: 3599 components: - type: Transform - pos: 13.5,-76.5 + pos: -3.5,-56.5 parent: 1 - - uid: 6049 + - uid: 3600 components: - type: Transform - pos: 19.5,-80.5 + pos: -2.5,-53.5 parent: 1 - - uid: 6254 + - uid: 3601 components: - type: Transform - pos: -32.5,-90.5 + pos: -2.5,-54.5 parent: 1 - - uid: 6277 + - uid: 3602 components: - type: Transform - pos: -2.5,-104.5 + pos: -2.5,-55.5 parent: 1 - - uid: 6279 + - uid: 3603 components: - type: Transform - pos: -37.5,-84.5 + pos: -2.5,-56.5 parent: 1 - - uid: 6290 + - uid: 3604 components: - type: Transform - pos: 2.5,-106.5 + pos: -5.5,-56.5 parent: 1 - - uid: 6304 + - uid: 3605 components: - type: Transform - pos: -35.5,-82.5 + pos: -6.5,-56.5 parent: 1 - - uid: 6305 + - uid: 3606 components: - type: Transform - pos: -32.5,-76.5 + pos: 2.5,-56.5 parent: 1 - - uid: 6307 + - uid: 3607 components: - type: Transform - pos: 0.5,-107.5 + pos: 3.5,-56.5 parent: 1 - - uid: 6313 + - uid: 3608 components: - type: Transform - pos: -34.5,-74.5 + pos: 4.5,-56.5 parent: 1 - - uid: 6315 + - uid: 3609 components: - type: Transform - pos: -3.5,-106.5 + pos: 5.5,-56.5 parent: 1 - - uid: 6318 + - uid: 3610 components: - type: Transform - pos: -26.5,-76.5 + pos: 6.5,-56.5 parent: 1 - - uid: 6396 + - uid: 3611 components: - type: Transform - pos: -30.5,-74.5 + pos: 6.5,-55.5 parent: 1 - - uid: 6436 + - uid: 3612 components: - type: Transform - pos: -24.5,-74.5 + pos: 6.5,-54.5 parent: 1 - - uid: 6453 + - uid: 3613 components: - type: Transform - pos: -28.5,-115.5 + pos: 6.5,-53.5 parent: 1 - - uid: 6475 + - uid: 3614 components: - type: Transform - pos: 14.5,-109.5 + pos: 6.5,-52.5 parent: 1 - - uid: 6516 + - uid: 3615 components: - type: Transform - pos: 19.5,-111.5 + pos: 6.5,-51.5 parent: 1 - - uid: 6519 + - uid: 3616 components: - type: Transform - pos: 10.5,-111.5 + pos: 6.5,-50.5 parent: 1 - - uid: 6522 + - uid: 3617 components: - type: Transform - pos: 17.5,-108.5 + pos: 6.5,-49.5 parent: 1 - - uid: 7486 + - uid: 3618 components: - type: Transform - pos: -11.5,-109.5 + pos: -7.5,-49.5 parent: 1 - - uid: 7512 + - uid: 3619 components: - type: Transform - pos: -1.5,-111.5 + pos: -7.5,-50.5 parent: 1 - - uid: 7513 + - uid: 3620 components: - type: Transform - pos: -3.5,-108.5 + pos: -7.5,-51.5 parent: 1 - - uid: 7520 + - uid: 3621 components: - type: Transform - pos: 9.5,-108.5 + pos: -7.5,-52.5 parent: 1 - - uid: 7524 + - uid: 3622 components: - type: Transform - pos: -14.5,-98.5 + pos: -7.5,-53.5 parent: 1 - - uid: 7525 + - uid: 3623 components: - type: Transform - pos: -11.5,-100.5 + pos: -7.5,-54.5 parent: 1 - - uid: 7526 + - uid: 3624 components: - type: Transform - pos: -11.5,-102.5 + pos: -7.5,-55.5 parent: 1 - - uid: 7527 + - uid: 3625 components: - type: Transform - pos: -13.5,-104.5 + pos: -7.5,-56.5 parent: 1 - - uid: 7528 + - uid: 3767 components: - type: Transform - pos: -16.5,-96.5 + pos: -24.5,-81.5 parent: 1 - - uid: 7529 + - uid: 3768 components: - type: Transform - pos: -20.5,-95.5 + pos: -24.5,-82.5 parent: 1 - - uid: 7530 + - uid: 3769 components: - type: Transform - pos: -21.5,-101.5 + pos: -21.5,-80.5 parent: 1 - - uid: 7531 + - uid: 3780 components: - type: Transform - pos: -23.5,-99.5 + pos: -19.5,-80.5 parent: 1 - - uid: 7536 + - uid: 3784 components: - type: Transform - pos: -19.5,-76.5 + pos: -23.5,-80.5 parent: 1 - - uid: 7537 + - uid: 3821 components: - type: Transform - pos: -16.5,-71.5 + rot: -1.5707963267948966 rad + pos: 0.5,-56.5 parent: 1 - - uid: 7538 + - uid: 3822 components: - type: Transform - pos: -9.5,-70.5 + rot: -1.5707963267948966 rad + pos: -1.5,-56.5 parent: 1 - - uid: 7539 + - uid: 3844 components: - type: Transform - pos: -16.5,-67.5 + pos: -4.5,-63.5 parent: 1 - - uid: 7540 + - uid: 3845 components: - type: Transform - pos: -16.5,-65.5 + pos: -2.5,-57.5 parent: 1 - - uid: 7541 + - uid: 3846 components: - type: Transform - pos: -12.5,-65.5 + pos: -2.5,-58.5 parent: 1 - - uid: 7542 + - uid: 3847 components: - type: Transform - pos: -9.5,-63.5 + pos: -2.5,-70.5 parent: 1 - - uid: 7543 + - uid: 3848 components: - type: Transform - pos: -11.5,-61.5 + pos: -2.5,-71.5 parent: 1 - - uid: 7544 + - uid: 3850 components: - type: Transform - pos: -9.5,-59.5 + pos: -2.5,-63.5 parent: 1 - - uid: 7545 + - uid: 3851 components: - type: Transform - pos: -10.5,-56.5 + pos: -3.5,-63.5 parent: 1 - - uid: 7546 + - uid: 3852 components: - type: Transform - pos: -17.5,-59.5 + pos: -2.5,-65.5 parent: 1 - - uid: 7547 + - uid: 3853 components: - type: Transform - pos: -17.5,-62.5 + pos: -2.5,-61.5 parent: 1 - - uid: 10107 + - uid: 3854 components: - type: Transform - pos: -35.5,-119.5 + pos: -2.5,-62.5 parent: 1 - - uid: 10108 + - uid: 3863 components: - type: Transform - pos: -34.5,-120.5 + rot: 3.141592653589793 rad + pos: -7.5,-57.5 parent: 1 - - uid: 10109 + - uid: 3864 components: - type: Transform - pos: -34.5,-126.5 + rot: 3.141592653589793 rad + pos: -7.5,-58.5 parent: 1 - - uid: 10110 + - uid: 3865 components: - type: Transform - pos: -36.5,-126.5 + rot: 3.141592653589793 rad + pos: -7.5,-59.5 parent: 1 - - uid: 10145 + - uid: 3866 components: - type: Transform - pos: -36.5,-117.5 + rot: 3.141592653589793 rad + pos: -7.5,-60.5 parent: 1 - - uid: 10176 + - uid: 3867 components: - type: Transform - pos: -38.5,-125.5 + rot: 3.141592653589793 rad + pos: -7.5,-61.5 parent: 1 - - uid: 10211 + - uid: 3868 components: - type: Transform - pos: -38.5,-114.5 + rot: 3.141592653589793 rad + pos: -7.5,-62.5 parent: 1 - - uid: 10212 + - uid: 3869 components: - type: Transform - pos: -37.5,-116.5 + rot: 3.141592653589793 rad + pos: -7.5,-63.5 parent: 1 - - uid: 10213 + - uid: 3870 components: - type: Transform - pos: -37.5,-122.5 + rot: 3.141592653589793 rad + pos: -7.5,-64.5 parent: 1 - - uid: 10214 + - uid: 3871 components: - type: Transform - pos: -31.5,-125.5 + rot: 3.141592653589793 rad + pos: -7.5,-65.5 parent: 1 - - uid: 10248 + - uid: 3872 components: - type: Transform - pos: -22.5,-111.5 + rot: 3.141592653589793 rad + pos: -7.5,-66.5 parent: 1 - - uid: 10249 + - uid: 3873 components: - type: Transform - pos: -25.5,-108.5 + rot: 3.141592653589793 rad + pos: -7.5,-67.5 parent: 1 - - uid: 10250 + - uid: 3874 components: - type: Transform - pos: -37.5,-111.5 + rot: 3.141592653589793 rad + pos: -7.5,-68.5 parent: 1 - - uid: 10251 + - uid: 3875 components: - type: Transform - pos: -27.5,-122.5 + rot: 3.141592653589793 rad + pos: -7.5,-69.5 parent: 1 - - uid: 10252 + - uid: 3876 components: - type: Transform - pos: -25.5,-124.5 + rot: 3.141592653589793 rad + pos: -7.5,-70.5 parent: 1 - - uid: 10253 + - uid: 3877 components: - type: Transform - pos: -23.5,-127.5 + rot: 3.141592653589793 rad + pos: -7.5,-71.5 parent: 1 - - uid: 10286 + - uid: 3878 components: - type: Transform - pos: -19.5,-109.5 + rot: 3.141592653589793 rad + pos: -7.5,-72.5 parent: 1 - - uid: 10287 + - uid: 3879 components: - type: Transform - pos: -28.5,-108.5 + rot: 3.141592653589793 rad + pos: -7.5,-73.5 parent: 1 - - uid: 10288 + - uid: 3880 components: - type: Transform - pos: -30.5,-109.5 + rot: 3.141592653589793 rad + pos: -7.5,-74.5 parent: 1 - - uid: 10289 + - uid: 3881 components: - type: Transform - pos: -29.5,-112.5 + rot: 3.141592653589793 rad + pos: -7.5,-75.5 parent: 1 - - uid: 10290 + - uid: 3888 components: - type: Transform - pos: -26.5,-123.5 + rot: -1.5707963267948966 rad + pos: -2.5,-72.5 parent: 1 -- proto: RandomSnacks - entities: - - uid: 8892 + - uid: 3902 components: - type: Transform - pos: -23.5,-83.5 + rot: -1.5707963267948966 rad + pos: -3.5,-72.5 parent: 1 - - uid: 8893 + - uid: 3903 components: - type: Transform - pos: -23.5,-80.5 + rot: -1.5707963267948966 rad + pos: -4.5,-72.5 parent: 1 -- proto: RandomSoap - entities: - - uid: 5488 + - uid: 3904 components: - type: Transform - pos: -12.5,-79.5 + rot: -1.5707963267948966 rad + pos: -5.5,-72.5 parent: 1 - - uid: 5501 + - uid: 3905 components: - type: Transform - pos: -15.5,-77.5 + rot: -1.5707963267948966 rad + pos: -6.5,-72.5 parent: 1 - - uid: 8894 + - uid: 3908 components: - type: Transform - pos: -28.5,-78.5 + pos: -3.5,-65.5 parent: 1 -- proto: RandomSpawner100 - entities: - - uid: 10113 + - uid: 3909 components: - type: Transform - pos: -29.5,-116.5 + pos: -4.5,-65.5 parent: 1 - - uid: 10175 + - uid: 3910 components: - type: Transform - pos: -34.5,-117.5 + pos: -5.5,-65.5 parent: 1 - - uid: 10177 + - uid: 3911 components: - type: Transform - pos: -31.5,-111.5 + pos: -6.5,-65.5 parent: 1 - - uid: 10216 + - uid: 3936 components: - type: Transform - pos: -36.5,-112.5 + pos: -2.5,-66.5 parent: 1 -- proto: RandomVending - entities: - - uid: 3966 + - uid: 3938 components: - type: Transform - pos: 3.5,-57.5 + rot: 1.5707963267948966 rad + pos: 6.5,-57.5 parent: 1 -- proto: RandomVendingDrinks - entities: - - uid: 3967 + - uid: 3942 components: - type: Transform - pos: 4.5,-57.5 + rot: 1.5707963267948966 rad + pos: 6.5,-61.5 parent: 1 - - uid: 3969 + - uid: 3943 components: - type: Transform - pos: 2.5,-71.5 + rot: 1.5707963267948966 rad + pos: 6.5,-62.5 parent: 1 - - uid: 6300 + - uid: 3944 components: - type: Transform - pos: -5.5,-83.5 + rot: 1.5707963267948966 rad + pos: 6.5,-63.5 parent: 1 -- proto: RandomVendingSnacks - entities: - - uid: 3968 + - uid: 3945 components: - type: Transform - pos: 2.5,-57.5 + rot: 3.141592653589793 rad + pos: 7.5,-62.5 parent: 1 - - uid: 3970 + - uid: 3946 components: - type: Transform - pos: 3.5,-71.5 + rot: 1.5707963267948966 rad + pos: 6.5,-65.5 parent: 1 - - uid: 3971 + - uid: 3947 components: - type: Transform - pos: 4.5,-71.5 + rot: 1.5707963267948966 rad + pos: 6.5,-66.5 parent: 1 - - uid: 6338 + - uid: 3948 components: - type: Transform - pos: -3.5,-83.5 + rot: 1.5707963267948966 rad + pos: 6.5,-67.5 parent: 1 -- proto: ReinforcedShiv - entities: - - uid: 7565 + - uid: 3952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.352341,-65.66672 + rot: 1.5707963267948966 rad + pos: 6.5,-71.5 parent: 1 - - uid: 7566 + - uid: 3953 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.056604,-56.776928 + pos: 6.5,-72.5 parent: 1 -- proto: ReinforcedUraniumWindow - entities: - - uid: 3049 + - uid: 3954 components: - type: Transform - pos: -3.5,-40.5 + rot: 1.5707963267948966 rad + pos: 1.5,-72.5 parent: 1 - - uid: 3050 + - uid: 3955 components: - type: Transform - pos: -4.5,-40.5 + rot: 1.5707963267948966 rad + pos: 2.5,-72.5 parent: 1 - - uid: 3051 + - uid: 3956 components: - type: Transform - pos: 2.5,-40.5 + rot: 1.5707963267948966 rad + pos: 3.5,-72.5 parent: 1 - - uid: 3052 + - uid: 3957 components: - type: Transform - pos: 3.5,-40.5 + rot: 1.5707963267948966 rad + pos: 4.5,-72.5 parent: 1 -- proto: RightHandHuman - entities: - - uid: 3525 + - uid: 3958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.9729366,-104.95134 + rot: 1.5707963267948966 rad + pos: 5.5,-72.5 parent: 1 - - uid: 6269 + - uid: 3987 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5270634,-104.654465 + pos: 8.5,-62.5 parent: 1 -- proto: RightLegHuman - entities: - - uid: 3200 + - uid: 3988 components: - type: Transform - pos: -0.19168663,-107.310715 + rot: 3.141592653589793 rad + pos: 9.5,-62.5 parent: 1 -- proto: RiotShield - entities: - - uid: 8579 + - uid: 3989 components: - type: Transform - pos: 8.5,-61.5 + rot: 3.141592653589793 rad + pos: 10.5,-62.5 parent: 1 - - uid: 8580 + - uid: 3990 components: - type: Transform - pos: 7.5,-61.5 + rot: 3.141592653589793 rad + pos: 11.5,-62.5 parent: 1 -- proto: RitualDagger - entities: - - uid: 6282 + - uid: 3991 components: - type: Transform - pos: -0.53543663,-106.154465 + rot: 3.141592653589793 rad + pos: 11.5,-64.5 parent: 1 -- proto: RobustHarvestChemistryBottle - entities: - - uid: 5638 + - uid: 3992 components: - type: Transform - pos: -11.265144,-92.4717 + rot: 3.141592653589793 rad + pos: 11.5,-65.5 parent: 1 -- proto: ScalpelShiv - entities: - - uid: 7564 + - uid: 3993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.14552,-72.95584 + rot: 3.141592653589793 rad + pos: 11.5,-66.5 parent: 1 -- proto: Screwdriver - entities: - - uid: 5677 + - uid: 3994 components: - type: Transform - pos: -17.496967,-87.42334 + rot: 3.141592653589793 rad + pos: 10.5,-66.5 parent: 1 -- proto: SheetGlass - entities: - - uid: 8585 + - uid: 3995 components: - type: Transform - pos: 9.5,-61.5 + rot: 3.141592653589793 rad + pos: 9.5,-66.5 parent: 1 -- proto: SheetPlastic - entities: - - uid: 8584 + - uid: 3996 components: - type: Transform - pos: 9.5,-61.5 + rot: 3.141592653589793 rad + pos: 8.5,-66.5 parent: 1 -- proto: SheetSteel - entities: - - uid: 8583 + - uid: 3997 components: - type: Transform - pos: 9.5,-61.5 + rot: 3.141592653589793 rad + pos: 7.5,-66.5 parent: 1 -- proto: Shovel - entities: - - uid: 3126 + - uid: 3998 components: - type: Transform - pos: -8.381332,-85.51731 + rot: 3.141592653589793 rad + pos: 11.5,-63.5 parent: 1 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 10199 + - uid: 4112 components: - type: Transform - pos: -32.5,-127.5 + pos: -22.5,-80.5 parent: 1 -- proto: ShuttleWindow - entities: - - uid: 10165 + - uid: 4116 components: - type: Transform - pos: -0.5,1.5 - parent: 10146 -- proto: SignEngineering - entities: - - uid: 5007 + pos: -24.5,-80.5 + parent: 1 + - uid: 4265 components: - type: Transform - pos: -2.5,-73.5 + pos: 12.5,-61.5 parent: 1 -- proto: SignHead - entities: - - uid: 5006 + - uid: 4266 components: - type: Transform - pos: 6.5,-65.5 + pos: 12.5,-60.5 parent: 1 -- proto: SignMedical - entities: - - uid: 5010 + - uid: 4267 components: - type: Transform - pos: 1.5,-75.5 + pos: 12.5,-59.5 parent: 1 -- proto: SignPrison - entities: - - uid: 4625 + - uid: 4268 components: - type: Transform - pos: 1.5,-40.5 + pos: 12.5,-58.5 parent: 1 - - uid: 4626 + - uid: 4269 components: - type: Transform - pos: -2.5,-40.5 + pos: 12.5,-57.5 parent: 1 -- proto: Sink - entities: - - uid: 5483 + - uid: 4270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-76.5 + pos: 12.5,-56.5 parent: 1 - - uid: 5486 + - uid: 4287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-78.5 + pos: 16.5,-62.5 parent: 1 -- proto: SinkWide - entities: - - uid: 3978 + - uid: 4294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-71.5 + pos: 16.5,-66.5 parent: 1 -- proto: SMESBasic - entities: - - uid: 623 + - uid: 4298 components: - type: Transform - pos: 15.5,-2.5 + pos: 13.5,-66.5 parent: 1 - - uid: 624 + - uid: 4362 components: - type: Transform - pos: 15.5,-1.5 + pos: 11.5,-61.5 parent: 1 - - uid: 3626 + - uid: 4364 components: - type: Transform - pos: 3.5,-53.5 + pos: 11.5,-58.5 parent: 1 - - uid: 3628 + - uid: 4372 components: - type: Transform - pos: 4.5,-53.5 + pos: 11.5,-60.5 parent: 1 - - uid: 5496 + - uid: 4373 components: - type: Transform - pos: -4.5,-77.5 + pos: 11.5,-59.5 parent: 1 - - uid: 5511 + - uid: 4377 components: - type: Transform - pos: -6.5,-77.5 + pos: 11.5,-56.5 parent: 1 - - uid: 5516 + - uid: 4385 components: - type: Transform - pos: -5.5,-77.5 + pos: 11.5,-57.5 parent: 1 -- proto: SoapSyndie - entities: - - uid: 6291 + - uid: 4386 components: - type: Transform - pos: -2.1448116,-106.82634 + pos: 10.5,-56.5 parent: 1 -- proto: SpawnMobMedibot - entities: - - uid: 8884 + - uid: 4387 components: - type: Transform - pos: 18.5,-64.5 + pos: 9.5,-56.5 parent: 1 -- proto: SpawnPointLatejoin - entities: - - uid: 8815 + - uid: 4400 components: - type: Transform - pos: -0.5,-99.5 + pos: 8.5,-56.5 parent: 1 -- proto: StorageCanister - entities: - - uid: 3757 + - uid: 4413 components: - type: Transform - pos: -6.5,-51.5 + pos: 7.5,-56.5 parent: 1 - - uid: 3758 + - uid: 4436 components: - type: Transform - pos: -6.5,-52.5 + pos: 19.5,-62.5 parent: 1 - - uid: 3759 + - uid: 4450 components: - type: Transform - pos: -6.5,-53.5 + pos: 12.5,-62.5 parent: 1 -- proto: SubstationBasic - entities: - - uid: 640 + - uid: 4451 components: - type: Transform - pos: 10.5,-2.5 + pos: 12.5,-63.5 parent: 1 - - uid: 5517 + - uid: 4452 components: - type: Transform - pos: -9.5,-77.5 + pos: 12.5,-64.5 parent: 1 -- proto: SubstationWallBasic - entities: - - uid: 256 + - uid: 4456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 8566 - - uid: 3646 + pos: 12.5,-65.5 + parent: 1 + - uid: 4461 components: - type: Transform - pos: 1.5,-54.5 + pos: 12.5,-66.5 parent: 1 - - uid: 3647 + - uid: 4481 components: - type: Transform - pos: -2.5,-54.5 + pos: 14.5,-62.5 parent: 1 - - uid: 5884 + - uid: 4482 components: - type: Transform - pos: 1.5,-77.5 + pos: 20.5,-62.5 parent: 1 - - uid: 10166 + - uid: 4484 components: - type: Transform - pos: 0.5,-0.5 - parent: 10146 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 5843 + pos: 20.5,-63.5 + parent: 1 + - uid: 4485 components: - type: Transform - pos: 10.5,-81.5 + pos: 20.5,-65.5 parent: 1 - - uid: 5846 + - uid: 4486 components: - type: Transform - pos: 9.5,-81.5 + pos: 20.5,-66.5 parent: 1 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 8699 + - uid: 4487 components: - type: Transform - pos: 9.5,-59.5 + pos: 7.5,-73.5 parent: 1 -- proto: SurveillanceCameraSecurity - entities: - - uid: 3102 + - uid: 4490 components: - type: Transform - pos: 1.5,-39.5 + pos: 7.5,-75.5 parent: 1 - - type: SurveillanceCamera - id: Вход - - uid: 3103 + - uid: 4492 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-41.5 + pos: 8.5,-73.5 parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Вход-слева - - uid: 3104 + - uid: 4494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-41.5 + pos: 8.5,-75.5 parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Вход-справа -- proto: SurveillanceWirelessCameraAnchoredConstructed - entities: - - uid: 3072 + - uid: 4495 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-39.5 + pos: 9.5,-73.5 parent: 1 -- proto: SurvivalKnife - entities: - - uid: 2019 + - uid: 4497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5998418,16.561592 + pos: 9.5,-75.5 parent: 1 -- proto: Table - entities: - - uid: 2405 + - uid: 4498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-94.5 + pos: 10.5,-73.5 parent: 1 - - uid: 2406 + - uid: 4501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-94.5 + pos: 10.5,-75.5 parent: 1 - - uid: 2407 + - uid: 4502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-97.5 + pos: 11.5,-73.5 parent: 1 - - uid: 2418 + - uid: 4504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-97.5 + pos: 11.5,-75.5 parent: 1 - - uid: 2423 + - uid: 4506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-97.5 + pos: 12.5,-67.5 parent: 1 - - uid: 2442 + - uid: 4507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-100.5 + pos: 12.5,-68.5 parent: 1 - - uid: 2447 + - uid: 4509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-100.5 + pos: 12.5,-69.5 parent: 1 - - uid: 2452 + - uid: 4510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-100.5 + pos: 12.5,-70.5 parent: 1 - - uid: 2453 + - uid: 4512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-100.5 + pos: 12.5,-71.5 parent: 1 - - uid: 3149 + - uid: 4514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-97.5 + pos: 12.5,-72.5 parent: 1 - - uid: 3151 + - uid: 4516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-94.5 + pos: 12.5,-73.5 parent: 1 - - uid: 3154 + - uid: 4519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-94.5 + pos: 12.5,-75.5 parent: 1 - - uid: 3939 + - uid: 4521 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-67.5 + pos: 15.5,-62.5 parent: 1 - - uid: 3940 + - uid: 4528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-71.5 + pos: 13.5,-75.5 parent: 1 - - uid: 3972 + - uid: 4530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-67.5 + pos: 14.5,-75.5 parent: 1 - - uid: 4643 + - uid: 4569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-71.5 + pos: 15.5,-75.5 parent: 1 - - uid: 5186 + - uid: 4575 components: - type: Transform - pos: 19.5,-66.5 + pos: -19.5,-84.5 parent: 1 - - uid: 5369 + - uid: 4576 components: - type: Transform - pos: 18.5,-66.5 + pos: 16.5,-75.5 parent: 1 - - uid: 5371 + - uid: 4582 components: - type: Transform - pos: 17.5,-66.5 + pos: 17.5,-75.5 parent: 1 - - uid: 5648 + - uid: 4590 components: - type: Transform - pos: -17.5,-86.5 + pos: -23.5,-84.5 parent: 1 - - uid: 5650 + - uid: 4603 components: - type: Transform - pos: -17.5,-87.5 + pos: -20.5,-84.5 parent: 1 - - uid: 5761 + - uid: 4605 components: - type: Transform - pos: -11.5,-92.5 + pos: -24.5,-84.5 parent: 1 - - uid: 6479 + - uid: 4607 components: - type: Transform - pos: 3.5,-83.5 + pos: 20.5,-67.5 parent: 1 - - uid: 6481 + - uid: 4608 components: - type: Transform - pos: 3.5,-81.5 + pos: 20.5,-68.5 parent: 1 - - uid: 8548 + - uid: 4610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-85.5 + pos: 20.5,-70.5 parent: 1 - - uid: 8549 + - uid: 4611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-85.5 + pos: 20.5,-75.5 parent: 1 - - uid: 8824 + - uid: 4624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-83.5 + pos: 11.5,-67.5 parent: 1 - - uid: 8825 + - uid: 4631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-83.5 + pos: 11.5,-72.5 parent: 1 - - uid: 8826 + - uid: 4632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-81.5 + pos: 10.5,-72.5 parent: 1 - - uid: 8827 + - uid: 4633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-83.5 + pos: 11.5,-69.5 parent: 1 - - uid: 8842 + - uid: 4640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-81.5 + pos: 8.5,-72.5 parent: 1 - - uid: 8843 + - uid: 4642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-81.5 + pos: 11.5,-68.5 parent: 1 - - uid: 8844 + - uid: 4649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-80.5 + pos: 7.5,-72.5 parent: 1 - - uid: 8845 + - uid: 4651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-81.5 + pos: 11.5,-71.5 parent: 1 - - uid: 8846 + - uid: 4659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-80.5 + pos: 9.5,-72.5 parent: 1 - - uid: 8847 + - uid: 4660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-80.5 + pos: 11.5,-70.5 parent: 1 - - uid: 8850 + - uid: 4781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-80.5 + pos: -6.5,-63.5 parent: 1 - - uid: 8856 + - uid: 4782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-83.5 + pos: -2.5,-67.5 parent: 1 - - uid: 8857 + - uid: 4792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-80.5 + pos: -22.5,-84.5 parent: 1 - - uid: 8858 + - uid: 4798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-81.5 + pos: -24.5,-102.5 parent: 1 - - uid: 8859 + - uid: 4801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-83.5 + pos: -24.5,-88.5 parent: 1 - - uid: 8860 + - uid: 4948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-84.5 + pos: -5.5,-63.5 parent: 1 - - uid: 8861 + - uid: 4951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-84.5 + pos: 6.5,-73.5 parent: 1 - - uid: 8863 + - uid: 4953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-84.5 + pos: 6.5,-75.5 parent: 1 - - uid: 8864 + - uid: 4954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-84.5 + pos: -7.5,-76.5 parent: 1 - - uid: 8865 + - uid: 4955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-84.5 + pos: -6.5,-76.5 parent: 1 -- proto: TableCounterWood - entities: - - uid: 2916 + - uid: 4956 components: - type: Transform - pos: -2.5,-102.5 + pos: -2.5,-76.5 parent: 1 - - uid: 2924 + - uid: 4957 components: - type: Transform - pos: -1.5,-102.5 + pos: -3.5,-76.5 parent: 1 - - uid: 2998 + - uid: 4958 components: - type: Transform - pos: -0.5,-102.5 + pos: -4.5,-76.5 parent: 1 - - uid: 2999 + - uid: 4959 components: - type: Transform - pos: 0.5,-102.5 + pos: -5.5,-76.5 parent: 1 - - uid: 3001 + - uid: 4960 components: - type: Transform - pos: 1.5,-102.5 + pos: 1.5,-76.5 parent: 1 - - uid: 3004 + - uid: 4961 components: - type: Transform - pos: -1.5,-101.5 + pos: 2.5,-76.5 parent: 1 - - uid: 3010 + - uid: 4962 components: - type: Transform - pos: -0.5,-101.5 + pos: 3.5,-76.5 parent: 1 - - uid: 3012 + - uid: 4963 components: - type: Transform - pos: 0.5,-101.5 + pos: 4.5,-76.5 parent: 1 -- proto: TableReinforced - entities: - - uid: 4393 + - uid: 4964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-72.5 + pos: 5.5,-76.5 parent: 1 - - uid: 4423 + - uid: 4965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-72.5 + pos: 6.5,-76.5 parent: 1 - - uid: 4435 + - uid: 4966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-70.5 + pos: 1.5,-73.5 parent: 1 - - uid: 4540 + - uid: 4967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-70.5 + pos: 1.5,-75.5 parent: 1 - - uid: 4567 + - uid: 4968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-70.5 + pos: -2.5,-73.5 parent: 1 - - uid: 4601 + - uid: 4969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-72.5 + pos: -2.5,-75.5 parent: 1 - - uid: 6241 + - uid: 5111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-84.5 + pos: -2.5,-77.5 parent: 1 - - uid: 6458 + - uid: 5112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-83.5 + pos: 1.5,-77.5 parent: 1 - - uid: 7533 + - uid: 5113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-85.5 + pos: 1.5,-80.5 parent: 1 - - uid: 8876 + - uid: 5114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-86.5 + pos: -2.5,-80.5 parent: 1 - - uid: 8877 + - uid: 5116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-86.5 + pos: 2.5,-77.5 parent: 1 - - uid: 8878 + - uid: 5117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-84.5 + pos: 2.5,-78.5 parent: 1 - - uid: 8879 + - uid: 5118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-83.5 + pos: 2.5,-79.5 parent: 1 -- proto: TableReinforcedGlass - entities: - - uid: 2429 + - uid: 5119 components: - type: Transform - pos: 18.5,-63.5 + pos: 2.5,-80.5 parent: 1 - - uid: 4410 + - uid: 5120 components: - type: Transform - pos: 16.5,-65.5 + pos: -3.5,-77.5 parent: 1 - - uid: 4588 + - uid: 5121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-67.5 + pos: -3.5,-78.5 parent: 1 - - uid: 5164 + - uid: 5122 components: - type: Transform - pos: 13.5,-65.5 + pos: -3.5,-79.5 parent: 1 - - uid: 5415 + - uid: 5123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-67.5 + pos: -3.5,-80.5 parent: 1 -- proto: TableWood - entities: - - uid: 3960 + - uid: 5139 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-63.5 + pos: -4.5,-80.5 parent: 1 - - uid: 3961 + - uid: 5141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-64.5 + pos: -6.5,-80.5 parent: 1 - - uid: 3962 + - uid: 5142 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-65.5 + pos: -7.5,-80.5 parent: 1 -- proto: TelecomServer - entities: - - uid: 8697 + - uid: 5143 components: - type: Transform - pos: 10.5,-59.5 + rot: -1.5707963267948966 rad + pos: -8.5,-80.5 parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 8698 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: Thruster - entities: - - uid: 252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 8566 - - uid: 253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 8566 - - uid: 8695 + - uid: 5144 components: - type: Transform - pos: 3.5,2.5 - parent: 8566 - - uid: 8696 + rot: -1.5707963267948966 rad + pos: -9.5,-80.5 + parent: 1 + - uid: 5196 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 8566 - - uid: 10167 + pos: 8.5,-80.5 + parent: 1 + - uid: 5197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 10146 - - uid: 10168 + rot: -1.5707963267948966 rad + pos: 7.5,-80.5 + parent: 1 + - uid: 5198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 10146 -- proto: ToiletDirtyWater - entities: - - uid: 736 + rot: -1.5707963267948966 rad + pos: 6.5,-80.5 + parent: 1 + - uid: 5199 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-99.5 + pos: 5.5,-80.5 parent: 1 - - uid: 779 + - uid: 5200 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-97.5 + pos: 4.5,-80.5 parent: 1 - - uid: 3912 + - uid: 5201 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-59.5 + pos: 3.5,-80.5 parent: 1 - - uid: 3913 + - uid: 5233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-63.5 + pos: -17.5,-75.5 parent: 1 - - uid: 3914 + - uid: 5330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-67.5 + pos: -11.5,-75.5 parent: 1 - - uid: 3921 + - uid: 5349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-71.5 + pos: -10.5,-75.5 parent: 1 - - uid: 6490 + - uid: 5384 components: - type: Transform - pos: 14.5,-89.5 + pos: 17.5,-62.5 parent: 1 - - uid: 6491 + - uid: 5388 components: - type: Transform - pos: 14.5,-81.5 + pos: 18.5,-62.5 parent: 1 - - uid: 6492 + - uid: 5408 components: - type: Transform - pos: 14.5,-85.5 + rot: 1.5707963267948966 rad + pos: -29.5,-88.5 parent: 1 - - uid: 6496 + - uid: 5416 components: - type: Transform - pos: 14.5,-93.5 + pos: -24.5,-85.5 parent: 1 -- proto: ToolboxElectricalFilled - entities: - - uid: 677 + - uid: 5418 components: - type: Transform - pos: 12.509671,-2.5977519 + pos: 13.5,-62.5 parent: 1 - - uid: 678 + - uid: 5421 components: - type: Transform - pos: 13.478421,-2.5821269 + pos: 20.5,-69.5 parent: 1 - - uid: 5019 + - uid: 5422 components: - type: Transform - pos: -4.5290637,-75.60071 + pos: 20.5,-71.5 parent: 1 - - uid: 5020 + - uid: 5423 components: - type: Transform - pos: -4.4665637,-75.27258 + pos: 20.5,-72.5 parent: 1 - - uid: 5021 + - uid: 5424 components: - type: Transform - pos: -5.4821887,-75.61633 + pos: 20.5,-73.5 parent: 1 - - uid: 5022 + - uid: 5425 components: - type: Transform - pos: -5.5446887,-75.31946 + pos: 20.5,-74.5 parent: 1 - - uid: 5530 + - uid: 5435 components: - type: Transform - pos: -9.500497,-78.5904 + pos: -24.5,-90.5 parent: 1 -- proto: ToolboxMechanicalFilled - entities: - - uid: 679 + - uid: 5442 components: - type: Transform - pos: 12.478421,-2.2852519 + pos: -18.5,-103.5 parent: 1 - - uid: 680 + - uid: 5443 components: - type: Transform - pos: 13.478421,-2.2696269 + pos: -18.5,-100.5 parent: 1 - - uid: 5527 + - uid: 5444 components: - type: Transform - pos: -9.484872,-78.262276 + pos: -18.5,-102.5 parent: 1 -- proto: TrashBag - entities: - - uid: 6488 + - uid: 5446 components: - type: Transform - pos: 14.395524,-101.40631 + pos: -18.5,-94.5 parent: 1 -- proto: Truncheon - entities: - - uid: 8581 + - uid: 5447 components: - type: Transform - pos: 8.5,-61.5 + pos: -18.5,-99.5 parent: 1 - - uid: 8582 + - uid: 5451 components: - type: Transform - pos: 7.5,-61.5 + pos: -18.5,-101.5 parent: 1 -- proto: UraniumReinforcedWindowDirectional - entities: - - uid: 3836 + - uid: 5464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-61.5 + rot: 3.141592653589793 rad + pos: -10.5,-76.5 parent: 1 - - uid: 3837 + - uid: 5467 components: - type: Transform - pos: -2.5,-61.5 + pos: -12.5,-80.5 parent: 1 - - uid: 3840 + - uid: 5468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-65.5 + pos: -11.5,-80.5 parent: 1 - - uid: 3841 + - uid: 5469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-65.5 + pos: -15.5,-80.5 parent: 1 - - uid: 3844 + - uid: 5470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-61.5 + pos: -16.5,-80.5 parent: 1 - - uid: 3845 + - uid: 5480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-61.5 + pos: -17.5,-77.5 parent: 1 - - uid: 3848 + - uid: 5493 components: - type: Transform - pos: -2.5,-65.5 + rot: 3.141592653589793 rad + pos: -10.5,-77.5 parent: 1 - - uid: 3849 + - uid: 5494 components: - type: Transform - pos: -2.5,-57.5 + rot: 3.141592653589793 rad + pos: -10.5,-78.5 parent: 1 - - uid: 3850 + - uid: 5495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-57.5 + rot: 3.141592653589793 rad + pos: -10.5,-80.5 parent: 1 - - uid: 3851 + - uid: 5524 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-57.5 + pos: -10.5,-79.5 parent: 1 - - uid: 3852 + - uid: 5547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-57.5 + pos: -11.5,-84.5 parent: 1 - - uid: 3853 + - uid: 5555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-65.5 + pos: -18.5,-87.5 parent: 1 - - uid: 3882 + - uid: 5561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-69.5 + pos: -12.5,-84.5 parent: 1 - - uid: 3883 + - uid: 5611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-69.5 + pos: -18.5,-85.5 parent: 1 - - uid: 3884 + - uid: 5614 components: - type: Transform - pos: -2.5,-69.5 + pos: -18.5,-92.5 parent: 1 - - uid: 3885 + - uid: 5617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-69.5 + pos: -18.5,-89.5 parent: 1 -- proto: VendingMachineBooze - entities: - - uid: 4002 + - uid: 5630 components: - type: Transform - pos: 7.5,-63.5 + pos: -15.5,-84.5 parent: 1 -- proto: VendingMachineChefvend - entities: - - uid: 8875 + - uid: 5636 components: - type: Transform - pos: -33.5,-86.5 + pos: -18.5,-95.5 parent: 1 - - type: AccessReader - access: [] -- proto: VendingMachineChemicals - entities: - - uid: 2415 + - uid: 5639 components: - type: Transform - pos: 19.5,-63.5 + rot: 1.5707963267948966 rad + pos: -29.5,-98.5 parent: 1 -- proto: VendingMachineDinnerware - entities: - - uid: 8874 + - uid: 5640 components: - type: Transform - pos: -33.5,-85.5 + rot: 1.5707963267948966 rad + pos: -29.5,-90.5 parent: 1 - - type: AccessReader - access: [] -- proto: VendingMachineEngiDrobe - entities: - - uid: 5016 + - uid: 5641 components: - type: Transform - pos: -3.5,-73.5 + rot: 1.5707963267948966 rad + pos: -29.5,-91.5 parent: 1 -- proto: VendingMachineEngivend - entities: - - uid: 5017 + - uid: 5647 components: - type: Transform - pos: -6.5,-73.5 + pos: -16.5,-84.5 parent: 1 -- proto: VendingMachineMedical - entities: - - uid: 2420 + - uid: 5648 components: - type: Transform - pos: 15.5,-63.5 + rot: 1.5707963267948966 rad + pos: -29.5,-92.5 parent: 1 -- proto: VendingMachineMediDrobe - entities: - - uid: 2419 + - uid: 5669 components: - type: Transform - pos: 14.5,-63.5 + pos: -17.5,-84.5 parent: 1 -- proto: VendingMachineSeeds - entities: - - uid: 5760 + - uid: 5757 components: - type: Transform - pos: -10.5,-92.5 + pos: -18.5,-84.5 parent: 1 - - type: AccessReader - access: [] -- proto: VendingMachineYouTool - entities: - - uid: 5018 + - uid: 5768 components: - type: Transform - pos: -6.5,-75.5 + pos: -18.5,-93.5 parent: 1 -- proto: WallmountTelescreen - entities: - - uid: 3101 + - uid: 5771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-44.5 + pos: -18.5,-80.5 parent: 1 - - uid: 4940 + - uid: 5773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-65.5 + pos: -24.5,-103.5 parent: 1 -- proto: WallReinforced - entities: - - uid: 39 + - uid: 5775 components: - type: Transform - pos: -3.5,1.5 + pos: -24.5,-99.5 parent: 1 - - uid: 41 + - uid: 5813 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-2.5 + pos: -27.5,-84.5 parent: 1 - - uid: 44 + - uid: 5815 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-3.5 + pos: -28.5,-84.5 parent: 1 - - uid: 45 + - uid: 5830 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-3.5 + pos: -29.5,-84.5 parent: 1 - - uid: 46 + - uid: 5841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 + rot: 3.141592653589793 rad + pos: 9.5,-80.5 parent: 1 - - uid: 47 + - uid: 5844 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,1.5 + pos: -29.5,-85.5 parent: 1 - - uid: 48 + - uid: 5864 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,2.5 + pos: -29.5,-89.5 parent: 1 - - uid: 49 + - uid: 5870 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,3.5 + pos: -29.5,-99.5 parent: 1 - - uid: 51 + - uid: 5872 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,5.5 + pos: -29.5,-100.5 parent: 1 - - uid: 52 + - uid: 5925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,1.5 + rot: 3.141592653589793 rad + pos: 11.5,-80.5 parent: 1 - - uid: 53 + - uid: 5926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,1.5 + rot: 3.141592653589793 rad + pos: 12.5,-80.5 parent: 1 - - uid: 54 + - uid: 5965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,1.5 + rot: 3.141592653589793 rad + pos: 13.5,-80.5 parent: 1 - - uid: 57 + - uid: 5969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-2.5 + rot: 3.141592653589793 rad + pos: 15.5,-80.5 parent: 1 - - uid: 60 + - uid: 6041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 + rot: -1.5707963267948966 rad + pos: 22.5,-77.5 parent: 1 - - uid: 63 + - uid: 6046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 + rot: -1.5707963267948966 rad + pos: 22.5,-78.5 parent: 1 - - uid: 66 + - uid: 6053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,1.5 + rot: -1.5707963267948966 rad + pos: 16.5,-77.5 parent: 1 - - uid: 68 + - uid: 6059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 + rot: -1.5707963267948966 rad + pos: 16.5,-78.5 parent: 1 - - uid: 69 + - uid: 6142 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-2.5 + pos: -25.5,-103.5 parent: 1 - - uid: 70 + - uid: 6161 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,4.5 + pos: -27.5,-103.5 parent: 1 - - uid: 71 + - uid: 6162 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,5.5 + pos: -26.5,-103.5 parent: 1 - - uid: 131 + - uid: 6346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,6.5 + rot: 3.141592653589793 rad + pos: 7.5,-81.5 parent: 1 - - uid: 133 + - uid: 6354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,8.5 + rot: 3.141592653589793 rad + pos: 7.5,-83.5 parent: 1 - - uid: 134 + - uid: 6362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 + rot: 3.141592653589793 rad + pos: -8.5,-81.5 parent: 1 - - uid: 136 + - uid: 6379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,11.5 + rot: 3.141592653589793 rad + pos: -8.5,-83.5 parent: 1 - - uid: 138 + - uid: 6421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,13.5 + pos: 12.5,-78.5 parent: 1 - - uid: 139 + - uid: 6429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,13.5 + rot: 1.5707963267948966 rad + pos: 8.5,-76.5 parent: 1 - - uid: 140 + - uid: 6434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,13.5 + pos: 12.5,-79.5 parent: 1 - - uid: 141 + - uid: 6505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,12.5 + rot: 3.141592653589793 rad + pos: 13.5,-103.5 parent: 1 - - uid: 142 + - uid: 6511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,11.5 + rot: 3.141592653589793 rad + pos: 14.5,-103.5 parent: 1 - - uid: 143 + - uid: 7369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 + pos: 22.5,-80.5 parent: 1 - - uid: 144 + - uid: 7373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 + pos: 11.5,-92.5 parent: 1 - - uid: 146 + - uid: 7374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,7.5 + pos: 12.5,-92.5 parent: 1 - - uid: 150 + - uid: 7384 components: - type: Transform - pos: 0.5,13.5 + pos: 23.5,-100.5 parent: 1 - - uid: 177 + - uid: 7385 components: - type: Transform - pos: -9.5,1.5 + pos: 10.5,-96.5 parent: 1 - - uid: 178 + - uid: 7386 components: - type: Transform - pos: -7.5,-2.5 + pos: 21.5,-100.5 parent: 1 - - uid: 180 + - uid: 7387 components: - type: Transform - pos: -9.5,-2.5 + pos: 24.5,-96.5 parent: 1 - - uid: 231 + - uid: 7388 components: - type: Transform - pos: 9.5,1.5 + pos: 22.5,-100.5 parent: 1 - - uid: 232 + - uid: 7389 components: - type: Transform - pos: 8.5,1.5 + rot: -1.5707963267948966 rad + pos: 16.5,-76.5 parent: 1 - - uid: 235 + - uid: 7391 components: - type: Transform - pos: 9.5,-2.5 + pos: 21.5,-80.5 parent: 1 - - uid: 236 + - uid: 7402 components: - type: Transform - pos: 8.5,-2.5 + rot: -1.5707963267948966 rad + pos: 13.5,-101.5 parent: 1 - - uid: 237 + - uid: 7404 components: - type: Transform - pos: 7.5,-2.5 + rot: -1.5707963267948966 rad + pos: 21.5,-75.5 parent: 1 - - uid: 238 + - uid: 7405 components: - type: Transform - pos: 6.5,-2.5 + rot: -1.5707963267948966 rad + pos: 22.5,-76.5 parent: 1 - - uid: 323 + - uid: 7427 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,2.5 + pos: 21.5,-101.5 parent: 1 - - uid: 417 + - uid: 7489 components: - type: Transform - pos: 1.5,-7.5 + pos: 16.5,-80.5 parent: 1 - - uid: 420 + - uid: 7940 components: - type: Transform - pos: 1.5,-10.5 + pos: 11.5,-100.5 parent: 1 - - uid: 421 + - uid: 7945 components: - type: Transform - pos: -2.5,-7.5 + pos: 12.5,-100.5 parent: 1 - - uid: 422 + - uid: 7948 components: - type: Transform - pos: -2.5,-8.5 + pos: 12.5,-96.5 parent: 1 - - uid: 424 + - uid: 7950 components: - type: Transform - pos: -2.5,-10.5 + pos: 25.5,-100.5 parent: 1 - - uid: 446 + - uid: 7951 components: - type: Transform - pos: 9.5,-1.5 + pos: 22.5,-103.5 parent: 1 - - uid: 535 + - uid: 7954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-98.5 + pos: 13.5,-100.5 parent: 1 - - uid: 557 + - uid: 7956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-98.5 + pos: 20.5,-103.5 parent: 1 - - uid: 561 + - uid: 7967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 + pos: 21.5,-103.5 parent: 1 - - uid: 569 + - uid: 7971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,2.5 + pos: 17.5,-103.5 parent: 1 - - uid: 571 + - uid: 7972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 + pos: 16.5,-103.5 parent: 1 - - uid: 573 + - uid: 7982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 + pos: 25.5,-96.5 parent: 1 - - uid: 575 + - uid: 7983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-3.5 + pos: 13.5,-96.5 parent: 1 - - uid: 576 + - uid: 7984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-3.5 + pos: 11.5,-96.5 parent: 1 - - uid: 577 + - uid: 9460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-3.5 + pos: 23.5,-76.5 parent: 1 - - uid: 579 + - uid: 10006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-3.5 + rot: 1.5707963267948966 rad + pos: 23.5,-62.5 parent: 1 - - uid: 580 + - uid: 10052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 + pos: 10.5,-92.5 parent: 1 - - uid: 582 + - uid: 10081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 + pos: 9.5,-92.5 parent: 1 - - uid: 585 + - uid: 10091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,2.5 + pos: 21.5,-96.5 parent: 1 - - uid: 586 + - uid: 10134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,2.5 + pos: 22.5,-96.5 parent: 1 - - uid: 588 + - uid: 10187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,2.5 + pos: 23.5,-96.5 parent: 1 - - uid: 590 + - uid: 10188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,2.5 + pos: 24.5,-100.5 parent: 1 - - uid: 591 + - uid: 10210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,2.5 + pos: 24.5,-76.5 parent: 1 - - uid: 723 + - uid: 10223 components: - type: Transform - pos: -34.5,-82.5 + pos: 23.5,-80.5 parent: 1 - - uid: 772 + - uid: 10224 components: - type: Transform - pos: -23.5,-87.5 + rot: 1.5707963267948966 rad + pos: 23.5,-66.5 parent: 1 - - uid: 846 + - uid: 10245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-98.5 + pos: 25.5,-76.5 parent: 1 - - uid: 850 + - uid: 10262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-98.5 + pos: 9.5,-96.5 parent: 1 - - uid: 1115 + - uid: 10278 components: - type: Transform - pos: -34.5,-83.5 + pos: 26.5,-78.5 parent: 1 - - uid: 1116 + - uid: 10893 components: - type: Transform - pos: -29.5,-79.5 + rot: 1.5707963267948966 rad + pos: 24.5,-62.5 parent: 1 - - uid: 1117 + - uid: 10894 components: - type: Transform - pos: -24.5,-87.5 + rot: 1.5707963267948966 rad + pos: 24.5,-63.5 parent: 1 - - uid: 1263 + - uid: 10895 components: - type: Transform - pos: -21.5,-77.5 + rot: 1.5707963267948966 rad + pos: 24.5,-64.5 parent: 1 - - uid: 1264 + - uid: 10896 components: - type: Transform - pos: -23.5,-77.5 + rot: 1.5707963267948966 rad + pos: 24.5,-65.5 parent: 1 - - uid: 1267 + - uid: 10897 components: - type: Transform - pos: -29.5,-80.5 + rot: 1.5707963267948966 rad + pos: 24.5,-66.5 parent: 1 - - uid: 1468 + - uid: 10931 components: - type: Transform - pos: -19.5,-78.5 + pos: 25.5,-80.5 parent: 1 - - uid: 1561 + - uid: 10932 components: - type: Transform - pos: -19.5,-77.5 + pos: 24.5,-84.5 parent: 1 - - uid: 1563 + - uid: 10933 components: - type: Transform - pos: -34.5,-81.5 + pos: 17.5,-80.5 parent: 1 - - uid: 1584 + - uid: 10934 components: - type: Transform - pos: -19.5,-87.5 + pos: 22.5,-84.5 parent: 1 - - uid: 1585 + - uid: 11079 components: - type: Transform - pos: -19.5,-86.5 + pos: 23.5,-84.5 parent: 1 - - uid: 1587 + - uid: 11080 components: - type: Transform - pos: -19.5,-85.5 + pos: 13.5,-84.5 parent: 1 - - uid: 1588 + - uid: 11081 components: - type: Transform - pos: -24.5,-77.5 + pos: 21.5,-84.5 parent: 1 - - uid: 1589 + - uid: 11082 components: - type: Transform - pos: -33.5,-81.5 + pos: 12.5,-88.5 parent: 1 - - uid: 1590 + - uid: 11083 components: - type: Transform - pos: -32.5,-81.5 + pos: 13.5,-88.5 parent: 1 - - uid: 2021 + - uid: 11084 components: - type: Transform - pos: 1.5,-11.5 + pos: 10.5,-88.5 parent: 1 - - uid: 2022 + - uid: 11085 components: - type: Transform - pos: 1.5,-12.5 + pos: 11.5,-88.5 parent: 1 - - uid: 2024 + - uid: 11086 components: - type: Transform - pos: 1.5,-14.5 + pos: 21.5,-88.5 parent: 1 - - uid: 2025 + - uid: 11087 components: - type: Transform - pos: 1.5,-15.5 + pos: 9.5,-88.5 parent: 1 - - uid: 2026 + - uid: 11088 components: - type: Transform - pos: 1.5,-16.5 + pos: 23.5,-88.5 parent: 1 - - uid: 2031 + - uid: 11089 components: - type: Transform - pos: 1.5,-21.5 + pos: 22.5,-88.5 parent: 1 - - uid: 2034 + - uid: 11090 components: - type: Transform - pos: 1.5,-24.5 + pos: 25.5,-88.5 parent: 1 - - uid: 2037 + - uid: 11091 components: - type: Transform - pos: 1.5,-27.5 + pos: 24.5,-88.5 parent: 1 - - uid: 2038 + - uid: 11092 components: - type: Transform - pos: 1.5,-28.5 + pos: 22.5,-92.5 parent: 1 - - uid: 2039 + - uid: 11093 components: - type: Transform - pos: 1.5,-29.5 + pos: 21.5,-92.5 parent: 1 - - uid: 2040 + - uid: 11094 components: - type: Transform - pos: 1.5,-30.5 + pos: 24.5,-92.5 parent: 1 - - uid: 2041 + - uid: 11095 components: - type: Transform - pos: 1.5,-31.5 + pos: 23.5,-92.5 parent: 1 - - uid: 2042 + - uid: 11096 components: - type: Transform - pos: 1.5,-32.5 + pos: 13.5,-92.5 parent: 1 - - uid: 2043 + - uid: 11097 components: - type: Transform - pos: 1.5,-33.5 + pos: 25.5,-92.5 parent: 1 - - uid: 2044 + - uid: 11098 components: - type: Transform - pos: 1.5,-34.5 + pos: 25.5,-103.5 parent: 1 - - uid: 2045 + - uid: 11099 components: - type: Transform - pos: -2.5,-34.5 + pos: 26.5,-80.5 parent: 1 - - uid: 2048 + - uid: 11247 components: - type: Transform - pos: -2.5,-31.5 + pos: 26.5,-84.5 parent: 1 - - uid: 2051 + - uid: 11248 components: - type: Transform - pos: -2.5,-28.5 + pos: 26.5,-85.5 parent: 1 - - uid: 2054 + - uid: 11249 components: - type: Transform - pos: -2.5,-16.5 + pos: 26.5,-86.5 parent: 1 - - uid: 2055 + - uid: 11250 components: - type: Transform - pos: -2.5,-15.5 + pos: 26.5,-87.5 parent: 1 - - uid: 2057 + - uid: 11251 components: - type: Transform - pos: -2.5,-13.5 + pos: 26.5,-88.5 parent: 1 - - uid: 2059 + - uid: 11252 components: - type: Transform - pos: -2.5,-11.5 + pos: 26.5,-89.5 parent: 1 - - uid: 2060 + - uid: 11253 components: - type: Transform - pos: -2.5,-26.5 + pos: 26.5,-90.5 parent: 1 - - uid: 2061 + - uid: 11254 components: - type: Transform - pos: -2.5,-25.5 + pos: 26.5,-91.5 parent: 1 - - uid: 2062 + - uid: 11257 components: - type: Transform - pos: -2.5,-24.5 + pos: 26.5,-94.5 parent: 1 - - uid: 2064 + - uid: 11258 components: - type: Transform - pos: -2.5,-22.5 + pos: 26.5,-95.5 parent: 1 - - uid: 2067 + - uid: 11259 components: - type: Transform - pos: -2.5,-19.5 + pos: 26.5,-96.5 parent: 1 - - uid: 2068 + - uid: 11260 components: - type: Transform - pos: -2.5,-18.5 + pos: 26.5,-97.5 parent: 1 - - uid: 2107 + - uid: 11261 components: - type: Transform - pos: -1.5,-34.5 + pos: 26.5,-98.5 parent: 1 - - uid: 2120 + - uid: 11262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-34.5 + pos: 26.5,-99.5 parent: 1 - - uid: 2258 + - uid: 11263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-66.5 + pos: 26.5,-100.5 parent: 1 - - uid: 2391 + - uid: 11264 components: - type: Transform - pos: 8.5,-103.5 + pos: 26.5,-101.5 parent: 1 - - uid: 2393 + - uid: 11265 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-91.5 + pos: 26.5,-102.5 parent: 1 - - uid: 2434 + - uid: 11266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-62.5 + pos: 26.5,-103.5 parent: 1 - - uid: 2436 + - uid: 11416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-66.5 + rot: -1.5707963267948966 rad + pos: 28.5,-84.5 parent: 1 - - uid: 2440 + - uid: 11422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-62.5 + rot: -1.5707963267948966 rad + pos: 27.5,-87.5 parent: 1 - - uid: 2443 + - uid: 11700 components: - type: Transform - pos: 12.5,-55.5 + rot: -1.5707963267948966 rad + pos: 28.5,-80.5 parent: 1 - - uid: 2444 + - uid: 11701 components: - type: Transform - pos: 11.5,-55.5 + rot: -1.5707963267948966 rad + pos: 29.5,-84.5 parent: 1 - - uid: 2445 + - uid: 11702 components: - type: Transform - pos: 10.5,-55.5 + rot: -1.5707963267948966 rad + pos: 29.5,-80.5 parent: 1 - - uid: 2450 + - uid: 11706 components: - type: Transform - pos: 9.5,-55.5 + rot: -1.5707963267948966 rad + pos: 28.5,-87.5 parent: 1 - - uid: 2451 + - uid: 11760 components: - type: Transform - pos: 8.5,-55.5 + rot: -1.5707963267948966 rad + pos: 29.5,-87.5 parent: 1 - - uid: 2455 + - uid: 11814 components: - type: Transform - pos: 1.5,-84.5 + rot: -1.5707963267948966 rad + pos: 30.5,-87.5 parent: 1 - - uid: 2456 + - uid: 11859 components: - type: Transform - pos: 7.5,-55.5 + pos: 30.5,-79.5 parent: 1 - - uid: 2463 + - uid: 11860 components: - type: Transform - pos: 2.5,-84.5 + pos: 31.5,-77.5 parent: 1 - - uid: 2464 + - uid: 11861 components: - type: Transform - pos: 3.5,-84.5 + pos: 30.5,-77.5 parent: 1 - - uid: 2465 + - uid: 11865 components: - type: Transform - pos: 4.5,-84.5 + rot: -1.5707963267948966 rad + pos: 31.5,-84.5 parent: 1 - - uid: 2466 + - uid: 11866 components: - type: Transform - pos: 5.5,-84.5 + rot: -1.5707963267948966 rad + pos: 31.5,-85.5 parent: 1 - - uid: 2470 + - uid: 11867 components: - type: Transform - pos: 6.5,-84.5 + rot: -1.5707963267948966 rad + pos: 31.5,-86.5 parent: 1 - - uid: 2472 + - uid: 11868 components: - type: Transform - pos: 7.5,-84.5 + rot: -1.5707963267948966 rad + pos: 31.5,-87.5 parent: 1 - - uid: 2541 + - uid: 11917 components: - type: Transform - pos: -10.5,-93.5 + rot: 1.5707963267948966 rad + pos: 33.5,-80.5 parent: 1 - - uid: 2545 + - uid: 11919 components: - type: Transform - pos: -5.5,-84.5 + rot: -1.5707963267948966 rad + pos: 32.5,-84.5 parent: 1 - - uid: 2546 + - uid: 11920 components: - type: Transform - pos: -7.5,-84.5 + rot: -1.5707963267948966 rad + pos: 35.5,-87.5 parent: 1 - - uid: 2551 + - uid: 11921 components: - type: Transform - pos: -10.5,-84.5 + rot: -1.5707963267948966 rad + pos: 32.5,-87.5 parent: 1 - - uid: 2624 + - uid: 11971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-34.5 + rot: 1.5707963267948966 rad + pos: 30.5,-80.5 parent: 1 - - uid: 2881 + - uid: 11972 components: - type: Transform - pos: -3.5,-84.5 + pos: 32.5,-77.5 parent: 1 - - uid: 2882 + - uid: 11973 components: - type: Transform - pos: -2.5,-84.5 + rot: -1.5707963267948966 rad + pos: 34.5,-84.5 parent: 1 - - uid: 2927 + - uid: 11974 components: - type: Transform - pos: -9.5,-89.5 + rot: -1.5707963267948966 rad + pos: 36.5,-87.5 parent: 1 - - uid: 2938 + - uid: 11975 components: - type: Transform - pos: 4.5,-103.5 + rot: -1.5707963267948966 rad + pos: 34.5,-87.5 parent: 1 - - uid: 2944 + - uid: 12025 components: - type: Transform - pos: -9.5,-103.5 + rot: 1.5707963267948966 rad + pos: 35.5,-80.5 parent: 1 - - uid: 2948 + - uid: 12027 components: - type: Transform - pos: -5.5,-103.5 + rot: -1.5707963267948966 rad + pos: 33.5,-84.5 parent: 1 - - uid: 2984 + - uid: 12028 components: - type: Transform - pos: -9.5,-87.5 + rot: -1.5707963267948966 rad + pos: 36.5,-86.5 parent: 1 - - uid: 2986 + - uid: 12029 components: - type: Transform - pos: -9.5,-88.5 + rot: -1.5707963267948966 rad + pos: 33.5,-87.5 parent: 1 - - uid: 2988 + - uid: 12080 components: - type: Transform - pos: -9.5,-90.5 + rot: 1.5707963267948966 rad + pos: 32.5,-80.5 parent: 1 - - uid: 3034 + - uid: 12082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-36.5 + rot: -1.5707963267948966 rad + pos: 36.5,-84.5 parent: 1 - - uid: 3036 + - uid: 12083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-38.5 + rot: -1.5707963267948966 rad + pos: 36.5,-85.5 parent: 1 - - uid: 3040 + - uid: 12134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-37.5 + rot: 1.5707963267948966 rad + pos: 27.5,-81.5 parent: 1 - - uid: 3041 + - uid: 12186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-36.5 + rot: 1.5707963267948966 rad + pos: 27.5,-80.5 parent: 1 - - uid: 3042 + - uid: 12187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-35.5 + rot: 1.5707963267948966 rad + pos: 27.5,-83.5 parent: 1 - - uid: 3053 + - uid: 12188 components: - type: Transform - pos: 4.5,-40.5 + rot: 1.5707963267948966 rad + pos: 27.5,-84.5 parent: 1 - - uid: 3054 + - uid: 12240 components: - type: Transform - pos: 1.5,-40.5 + rot: -1.5707963267948966 rad + pos: 37.5,-84.5 parent: 1 - - uid: 3055 + - uid: 12294 components: - type: Transform - pos: -2.5,-40.5 + rot: -1.5707963267948966 rad + pos: 38.5,-84.5 parent: 1 - - uid: 3056 + - uid: 12296 components: - type: Transform - pos: -5.5,-40.5 + rot: -1.5707963267948966 rad + pos: 41.5,-87.5 parent: 1 - - uid: 3066 + - uid: 12300 components: - type: Transform - pos: 4.5,-46.5 + rot: -1.5707963267948966 rad + pos: 41.5,-87.5 parent: 1 - - uid: 3069 + - uid: 12348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-84.5 + parent: 1 + - uid: 12349 components: - type: Transform - pos: 4.5,-42.5 + rot: -1.5707963267948966 rad + pos: 41.5,-84.5 parent: 1 - - uid: 3071 + - uid: 12350 components: - type: Transform - pos: -5.5,-44.5 + rot: -1.5707963267948966 rad + pos: 40.5,-87.5 parent: 1 - - uid: 3077 + - uid: 12351 components: - type: Transform - pos: 5.5,-41.5 + rot: -1.5707963267948966 rad + pos: 41.5,-86.5 parent: 1 - - uid: 3078 + - uid: 12352 components: - type: Transform - pos: 5.5,-42.5 + rot: -1.5707963267948966 rad + pos: 41.5,-84.5 parent: 1 - - uid: 3079 + - uid: 12353 components: - type: Transform - pos: 5.5,-43.5 + rot: -1.5707963267948966 rad + pos: 41.5,-85.5 parent: 1 - - uid: 3082 + - uid: 12402 components: - type: Transform - pos: 5.5,-46.5 + rot: -1.5707963267948966 rad + pos: 41.5,-85.5 parent: 1 - - uid: 3083 + - uid: 12403 components: - type: Transform - pos: 5.5,-47.5 + rot: -1.5707963267948966 rad + pos: 41.5,-86.5 parent: 1 - - uid: 3084 + - uid: 12404 components: - type: Transform - pos: -6.5,-40.5 + rot: -1.5707963267948966 rad + pos: 39.5,-87.5 parent: 1 - - uid: 3085 + - uid: 12405 components: - type: Transform - pos: -6.5,-41.5 + rot: -1.5707963267948966 rad + pos: 38.5,-87.5 parent: 1 - - uid: 3086 + - uid: 12408 components: - type: Transform - pos: -6.5,-42.5 + rot: -1.5707963267948966 rad + pos: 37.5,-87.5 parent: 1 - - uid: 3087 + - uid: 12558 components: - type: Transform - pos: -6.5,-43.5 + rot: 1.5707963267948966 rad + pos: 37.5,-80.5 parent: 1 - - uid: 3088 + - uid: 12559 components: - type: Transform - pos: -6.5,-44.5 + rot: 1.5707963267948966 rad + pos: 38.5,-80.5 parent: 1 - - uid: 3089 + - uid: 12560 components: - type: Transform - pos: -6.5,-45.5 + rot: 1.5707963267948966 rad + pos: 39.5,-80.5 parent: 1 - - uid: 3090 + - uid: 12561 components: - type: Transform - pos: -6.5,-46.5 + rot: 1.5707963267948966 rad + pos: 40.5,-80.5 parent: 1 - - uid: 3091 + - uid: 12562 components: - type: Transform - pos: -6.5,-47.5 + rot: 1.5707963267948966 rad + pos: 41.5,-80.5 parent: 1 - - uid: 3107 + - uid: 12563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-48.5 + rot: 1.5707963267948966 rad + pos: 42.5,-80.5 parent: 1 - - uid: 3110 + - uid: 12564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-48.5 + rot: 1.5707963267948966 rad + pos: 42.5,-81.5 parent: 1 - - uid: 3111 + - uid: 12565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-48.5 + rot: 1.5707963267948966 rad + pos: 42.5,-82.5 parent: 1 - - uid: 3112 + - uid: 12566 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-48.5 + rot: 1.5707963267948966 rad + pos: 42.5,-83.5 parent: 1 - - uid: 3115 + - uid: 12567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-48.5 + rot: 1.5707963267948966 rad + pos: 42.5,-84.5 parent: 1 - - uid: 3116 + - uid: 12570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-48.5 + pos: 30.5,-78.5 parent: 1 - - uid: 3118 + - uid: 12602 components: - type: Transform - pos: -4.5,-84.5 + pos: 32.5,-78.5 parent: 1 - - uid: 3120 + - uid: 12603 components: - type: Transform - pos: -6.5,-84.5 + pos: 32.5,-79.5 parent: 1 - - uid: 3121 +- proto: WallReinforcedDiagonal + entities: + - uid: 38 components: - type: Transform - pos: -8.5,-84.5 + rot: 3.141592653589793 rad + pos: -2.5,1.5 parent: 1 - - uid: 3176 + - uid: 40 components: - type: Transform - pos: 6.5,-103.5 + pos: 1.5,-2.5 parent: 1 - - uid: 3182 + - uid: 42 components: - type: Transform - pos: 8.5,-86.5 + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 parent: 1 - - uid: 3229 + - uid: 43 components: - type: Transform - pos: -9.5,-92.5 + rot: 1.5707963267948966 rad + pos: 1.5,1.5 parent: 1 - - uid: 3243 + - uid: 3075 components: - type: Transform - pos: -9.5,-94.5 + pos: 4.5,-41.5 parent: 1 - - uid: 3313 + - uid: 3092 components: - type: Transform - pos: -7.5,-48.5 + rot: 1.5707963267948966 rad + pos: 4.5,-47.5 parent: 1 - - uid: 3335 + - uid: 3093 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-92.5 + pos: -5.5,-47.5 parent: 1 - - uid: 3336 + - uid: 3094 components: - type: Transform - pos: 8.5,-101.5 + rot: -1.5707963267948966 rad + pos: -5.5,-41.5 parent: 1 - - uid: 3337 + - uid: 4286 components: - type: Transform - pos: 8.5,-99.5 + rot: -1.5707963267948966 rad + pos: 2.5,-75.5 parent: 1 - - uid: 3352 + - uid: 4468 components: - type: Transform - pos: 6.5,-48.5 + rot: 1.5707963267948966 rad + pos: 5.5,-73.5 parent: 1 - - uid: 3445 + - uid: 5385 components: - type: Transform - pos: -9.5,-93.5 + pos: 5.5,-75.5 parent: 1 - - uid: 3446 + - uid: 5400 components: - type: Transform - pos: 8.5,-85.5 + rot: 3.141592653589793 rad + pos: 2.5,-73.5 parent: 1 - - uid: 3451 +- proto: WallReinforcedRust + entities: + - uid: 36 components: - type: Transform - pos: 8.5,-89.5 + rot: 3.141592653589793 rad + pos: -2.5,3.5 parent: 1 - - uid: 3455 + - uid: 37 components: - type: Transform - pos: 8.5,-91.5 + rot: 3.141592653589793 rad + pos: -2.5,2.5 parent: 1 - - uid: 3463 + - uid: 50 components: - type: Transform - pos: 8.5,-94.5 + rot: -1.5707963267948966 rad + pos: 1.5,4.5 parent: 1 - - uid: 3464 + - uid: 55 components: - type: Transform - pos: 8.5,-98.5 + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 parent: 1 - - uid: 3469 + - uid: 56 components: - type: Transform - pos: 8.5,-102.5 + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 parent: 1 - - uid: 3472 + - uid: 58 components: - type: Transform - pos: -9.5,-95.5 + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 parent: 1 - - uid: 3475 + - uid: 59 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-92.5 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1 - - uid: 3476 + - uid: 61 components: - type: Transform - pos: 8.5,-88.5 + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 parent: 1 - - uid: 3482 + - uid: 62 components: - type: Transform - pos: 8.5,-97.5 + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 parent: 1 - - uid: 3485 + - uid: 64 components: - type: Transform - pos: 8.5,-90.5 + rot: -1.5707963267948966 rad + pos: -4.5,1.5 parent: 1 - - uid: 3498 + - uid: 65 components: - type: Transform - pos: 8.5,-87.5 + rot: -1.5707963267948966 rad + pos: -5.5,1.5 parent: 1 - - uid: 3501 + - uid: 67 components: - type: Transform - pos: 8.5,-100.5 + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 parent: 1 - - uid: 3505 + - uid: 132 components: - type: Transform - pos: 8.5,-84.5 + rot: -1.5707963267948966 rad + pos: 1.5,7.5 parent: 1 - - uid: 3511 + - uid: 135 components: - type: Transform - pos: -9.5,-86.5 + rot: -1.5707963267948966 rad + pos: 1.5,10.5 parent: 1 - - uid: 3514 + - uid: 137 components: - type: Transform - pos: -9.5,-91.5 + rot: -1.5707963267948966 rad + pos: 1.5,12.5 parent: 1 - - uid: 3522 + - uid: 145 components: - type: Transform - pos: -9.5,-85.5 + rot: -1.5707963267948966 rad + pos: -2.5,8.5 parent: 1 - - uid: 3523 + - uid: 147 components: - type: Transform - pos: -9.5,-84.5 + rot: -1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 - - uid: 3532 + - uid: 175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-103.5 + pos: -7.5,1.5 parent: 1 - - uid: 3588 + - uid: 176 components: - type: Transform - pos: 1.5,-49.5 + pos: -8.5,1.5 parent: 1 - - uid: 3589 + - uid: 179 components: - type: Transform - pos: 1.5,-50.5 + pos: -8.5,-2.5 parent: 1 - - uid: 3590 + - uid: 190 components: - type: Transform - pos: 1.5,-51.5 + rot: 3.141592653589793 rad + pos: -13.5,-104.5 parent: 1 - - uid: 3591 + - uid: 233 components: - type: Transform - pos: -4.5,-56.5 + pos: 7.5,1.5 parent: 1 - - uid: 3592 + - uid: 234 components: - type: Transform - pos: 1.5,-53.5 + pos: 6.5,1.5 parent: 1 - - uid: 3593 + - uid: 303 components: - type: Transform - pos: 1.5,-54.5 + rot: 3.141592653589793 rad + pos: -12.5,-104.5 parent: 1 - - uid: 3594 + - uid: 346 components: - type: Transform - pos: 1.5,-55.5 + rot: 3.141592653589793 rad + pos: -11.5,-106.5 parent: 1 - - uid: 3595 + - uid: 418 components: - type: Transform - pos: 1.5,-56.5 + pos: 1.5,-8.5 parent: 1 - - uid: 3596 + - uid: 419 components: - type: Transform - pos: -2.5,-49.5 + pos: 1.5,-9.5 parent: 1 - - uid: 3597 + - uid: 423 components: - type: Transform - pos: -2.5,-50.5 + pos: -2.5,-9.5 parent: 1 - - uid: 3598 + - uid: 445 components: - type: Transform - pos: -2.5,-51.5 + pos: 9.5,0.5 parent: 1 - - uid: 3599 + - uid: 500 components: - type: Transform - pos: -3.5,-56.5 + rot: 3.141592653589793 rad + pos: 8.5,-109.5 parent: 1 - - uid: 3600 + - uid: 562 components: - type: Transform - pos: -2.5,-53.5 + pos: 28.5,-107.5 parent: 1 - - uid: 3601 + - uid: 570 components: - type: Transform - pos: -2.5,-54.5 + rot: -1.5707963267948966 rad + pos: 11.5,2.5 parent: 1 - - uid: 3602 + - uid: 572 components: - type: Transform - pos: -2.5,-55.5 + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 parent: 1 - - uid: 3603 + - uid: 574 components: - type: Transform - pos: -2.5,-56.5 + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 parent: 1 - - uid: 3604 + - uid: 578 components: - type: Transform - pos: -5.5,-56.5 + rot: -1.5707963267948966 rad + pos: 17.5,-3.5 parent: 1 - - uid: 3605 + - uid: 581 components: - type: Transform - pos: -6.5,-56.5 + rot: -1.5707963267948966 rad + pos: 18.5,-1.5 parent: 1 - - uid: 3606 + - uid: 583 components: - type: Transform - pos: 2.5,-56.5 + rot: -1.5707963267948966 rad + pos: 18.5,0.5 parent: 1 - - uid: 3607 + - uid: 584 components: - type: Transform - pos: 3.5,-56.5 + rot: -1.5707963267948966 rad + pos: 18.5,1.5 parent: 1 - - uid: 3608 + - uid: 587 components: - type: Transform - pos: 4.5,-56.5 + rot: -1.5707963267948966 rad + pos: 16.5,2.5 parent: 1 - - uid: 3609 + - uid: 589 components: - type: Transform - pos: 5.5,-56.5 + rot: -1.5707963267948966 rad + pos: 14.5,2.5 parent: 1 - - uid: 3610 + - uid: 602 components: - type: Transform - pos: 6.5,-56.5 + rot: 3.141592653589793 rad + pos: 29.5,-101.5 parent: 1 - - uid: 3611 + - uid: 760 components: - type: Transform - pos: 6.5,-55.5 + rot: 3.141592653589793 rad + pos: -32.5,-105.5 parent: 1 - - uid: 3612 + - uid: 854 components: - type: Transform - pos: 6.5,-54.5 + rot: 3.141592653589793 rad + pos: -12.5,-106.5 parent: 1 - - uid: 3613 + - uid: 860 components: - type: Transform - pos: 6.5,-53.5 + pos: -13.5,-111.5 parent: 1 - - uid: 3614 + - uid: 897 components: - type: Transform - pos: 6.5,-52.5 + rot: 3.141592653589793 rad + pos: 29.5,-103.5 parent: 1 - - uid: 3615 + - uid: 899 components: - type: Transform - pos: 6.5,-51.5 + rot: 3.141592653589793 rad + pos: 29.5,-102.5 parent: 1 - - uid: 3616 + - uid: 900 components: - type: Transform - pos: 6.5,-50.5 + rot: 3.141592653589793 rad + pos: 29.5,-104.5 parent: 1 - - uid: 3617 + - uid: 903 components: - type: Transform - pos: 6.5,-49.5 + rot: 3.141592653589793 rad + pos: 27.5,-106.5 parent: 1 - - uid: 3618 + - uid: 904 components: - type: Transform - pos: -7.5,-49.5 + rot: 3.141592653589793 rad + pos: 10.5,-111.5 parent: 1 - - uid: 3619 + - uid: 905 components: - type: Transform - pos: -7.5,-50.5 + rot: 3.141592653589793 rad + pos: 11.5,-111.5 parent: 1 - - uid: 3620 + - uid: 911 components: - type: Transform - pos: -7.5,-51.5 + rot: 3.141592653589793 rad + pos: 33.5,-103.5 parent: 1 - - uid: 3621 + - uid: 915 components: - type: Transform - pos: -7.5,-52.5 + rot: 3.141592653589793 rad + pos: -32.5,-102.5 parent: 1 - - uid: 3622 + - uid: 916 components: - type: Transform - pos: -7.5,-53.5 + rot: 3.141592653589793 rad + pos: 7.5,-103.5 parent: 1 - - uid: 3623 + - uid: 917 components: - type: Transform - pos: -7.5,-54.5 + rot: 3.141592653589793 rad + pos: 33.5,-104.5 parent: 1 - - uid: 3624 + - uid: 926 components: - type: Transform - pos: -7.5,-55.5 + rot: 3.141592653589793 rad + pos: -32.5,-101.5 parent: 1 - - uid: 3625 + - uid: 960 components: - type: Transform - pos: -7.5,-56.5 + pos: -10.5,-103.5 parent: 1 - - uid: 3821 + - uid: 987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-56.5 + pos: -28.5,-103.5 parent: 1 - - uid: 3822 + - uid: 997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-56.5 + pos: -21.5,-111.5 parent: 1 - - uid: 3838 + - uid: 999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-59.5 + rot: 3.141592653589793 rad + pos: -21.5,-106.5 parent: 1 - - uid: 3839 + - uid: 1024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-60.5 + rot: 3.141592653589793 rad + pos: -23.5,-106.5 parent: 1 - - uid: 3842 + - uid: 1025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-63.5 + rot: 3.141592653589793 rad + pos: -23.5,-104.5 parent: 1 - - uid: 3843 + - uid: 1052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-64.5 + rot: 3.141592653589793 rad + pos: -27.5,-106.5 parent: 1 - - uid: 3846 + - uid: 1053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-67.5 + rot: 3.141592653589793 rad + pos: -26.5,-106.5 parent: 1 - - uid: 3847 + - uid: 1056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-68.5 + rot: 3.141592653589793 rad + pos: 18.5,-106.5 parent: 1 - - uid: 3863 + - uid: 1057 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-57.5 + pos: 13.5,-109.5 parent: 1 - - uid: 3864 + - uid: 1058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-58.5 + pos: 10.5,-108.5 parent: 1 - - uid: 3865 + - uid: 1060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-59.5 + pos: 12.5,-108.5 parent: 1 - - uid: 3866 + - uid: 1066 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-60.5 + pos: 10.5,-109.5 parent: 1 - - uid: 3867 + - uid: 1067 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-61.5 + pos: 9.5,-111.5 parent: 1 - - uid: 3868 + - uid: 1068 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-62.5 + pos: 9.5,-109.5 parent: 1 - - uid: 3869 + - uid: 1072 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-63.5 + pos: 8.5,-111.5 parent: 1 - - uid: 3870 + - uid: 1081 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-64.5 + pos: 7.5,-111.5 parent: 1 - - uid: 3871 + - uid: 1084 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-65.5 + pos: 7.5,-107.5 parent: 1 - - uid: 3872 + - uid: 1085 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-66.5 + pos: 7.5,-106.5 parent: 1 - - uid: 3873 + - uid: 1109 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-67.5 + pos: 7.5,-105.5 parent: 1 - - uid: 3874 + - uid: 1116 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-68.5 + pos: 6.5,-111.5 parent: 1 - - uid: 3875 + - uid: 1234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-69.5 + rot: -1.5707963267948966 rad + pos: 8.5,-102.5 parent: 1 - - uid: 3876 + - uid: 1236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-103.5 + parent: 1 + - uid: 1261 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-70.5 + pos: 5.5,-107.5 parent: 1 - - uid: 3877 + - uid: 1262 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-71.5 + pos: 5.5,-106.5 parent: 1 - - uid: 3878 + - uid: 1266 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-72.5 + pos: 5.5,-105.5 parent: 1 - - uid: 3879 + - uid: 1267 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-73.5 + pos: 4.5,-111.5 parent: 1 - - uid: 3880 + - uid: 1295 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-74.5 + pos: 5.5,-111.5 parent: 1 - - uid: 3881 + - uid: 1381 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-75.5 + pos: 3.5,-111.5 parent: 1 - - uid: 3888 + - uid: 1392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-72.5 + pos: 23.5,-112.5 parent: 1 - - uid: 3889 + - uid: 1396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-71.5 + pos: 29.5,-115.5 parent: 1 - - uid: 3890 + - uid: 1406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-64.5 + pos: 29.5,-116.5 parent: 1 - - uid: 3891 + - uid: 1407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-64.5 + rot: 3.141592653589793 rad + pos: 2.5,-109.5 parent: 1 - - uid: 3892 + - uid: 1410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-64.5 + pos: 23.5,-113.5 parent: 1 - - uid: 3893 + - uid: 1422 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-64.5 + pos: 9.5,-103.5 parent: 1 - - uid: 3894 + - uid: 1492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-68.5 + rot: 3.141592653589793 rad + pos: 0.5,-109.5 parent: 1 - - uid: 3895 + - uid: 1494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-68.5 + rot: 3.141592653589793 rad + pos: -0.5,-111.5 parent: 1 - - uid: 3896 + - uid: 1499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-68.5 + pos: 23.5,-111.5 parent: 1 - - uid: 3897 + - uid: 1500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-68.5 + pos: 23.5,-109.5 parent: 1 - - uid: 3898 + - uid: 1502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-60.5 + rot: 3.141592653589793 rad + pos: -2.5,-111.5 parent: 1 - - uid: 3899 + - uid: 1504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-60.5 + rot: 3.141592653589793 rad + pos: -3.5,-111.5 parent: 1 - - uid: 3900 + - uid: 1506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-60.5 + rot: 3.141592653589793 rad + pos: -4.5,-111.5 parent: 1 - - uid: 3901 + - uid: 1517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-60.5 + rot: 3.141592653589793 rad + pos: -6.5,-109.5 parent: 1 - - uid: 3902 + - uid: 1518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-72.5 + rot: 3.141592653589793 rad + pos: -6.5,-108.5 parent: 1 - - uid: 3903 + - uid: 1521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-72.5 + rot: 3.141592653589793 rad + pos: -6.5,-107.5 parent: 1 - - uid: 3904 + - uid: 1522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-72.5 + rot: 3.141592653589793 rad + pos: -6.5,-106.5 parent: 1 - - uid: 3905 + - uid: 1523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-72.5 + rot: 3.141592653589793 rad + pos: -6.5,-105.5 parent: 1 - - uid: 3938 + - uid: 1543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-57.5 + rot: 3.141592653589793 rad + pos: -8.5,-108.5 parent: 1 - - uid: 3942 + - uid: 1544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-61.5 + rot: 3.141592653589793 rad + pos: -8.5,-107.5 parent: 1 - - uid: 3943 + - uid: 1545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-62.5 + rot: 3.141592653589793 rad + pos: -8.5,-106.5 parent: 1 - - uid: 3944 + - uid: 1655 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-63.5 + pos: -10.5,-106.5 parent: 1 - - uid: 3945 + - uid: 1760 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-62.5 - parent: 1 - - uid: 3946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-65.5 + pos: -13.5,-106.5 parent: 1 - - uid: 3947 + - uid: 1764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-66.5 + rot: 3.141592653589793 rad + pos: -14.5,-106.5 parent: 1 - - uid: 3948 + - uid: 1765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-67.5 + rot: 3.141592653589793 rad + pos: -14.5,-104.5 parent: 1 - - uid: 3952 + - uid: 1768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-71.5 + rot: 3.141592653589793 rad + pos: -15.5,-106.5 parent: 1 - - uid: 3953 + - uid: 1769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-72.5 + rot: 3.141592653589793 rad + pos: -15.5,-104.5 parent: 1 - - uid: 3954 + - uid: 1770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-72.5 + pos: -16.5,-111.5 parent: 1 - - uid: 3955 + - uid: 1773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-72.5 + rot: 3.141592653589793 rad + pos: -16.5,-106.5 parent: 1 - - uid: 3956 + - uid: 1776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-72.5 + rot: -1.5707963267948966 rad + pos: -17.5,-106.5 parent: 1 - - uid: 3957 + - uid: 1783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-72.5 + rot: -1.5707963267948966 rad + pos: -17.5,-104.5 parent: 1 - - uid: 3958 + - uid: 1784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-72.5 + pos: -17.5,-111.5 parent: 1 - - uid: 3987 + - uid: 1790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-62.5 + pos: -18.5,-111.5 parent: 1 - - uid: 3988 + - uid: 1802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-62.5 + rot: -1.5707963267948966 rad + pos: -18.5,-106.5 parent: 1 - - uid: 3989 + - uid: 1806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-62.5 + rot: -1.5707963267948966 rad + pos: -18.5,-104.5 parent: 1 - - uid: 3990 + - uid: 1831 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-62.5 + rot: -1.5707963267948966 rad + pos: -19.5,-106.5 parent: 1 - - uid: 3991 + - uid: 1836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-64.5 + rot: -1.5707963267948966 rad + pos: -19.5,-104.5 parent: 1 - - uid: 3992 + - uid: 1848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-65.5 + pos: -20.5,-111.5 parent: 1 - - uid: 3993 + - uid: 1861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-66.5 + rot: -1.5707963267948966 rad + pos: -20.5,-106.5 parent: 1 - - uid: 3994 + - uid: 1863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-66.5 + rot: -1.5707963267948966 rad + pos: -20.5,-104.5 parent: 1 - - uid: 3995 + - uid: 2023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-66.5 + pos: 1.5,-13.5 parent: 1 - - uid: 3996 + - uid: 2027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-66.5 + pos: 1.5,-17.5 parent: 1 - - uid: 3997 + - uid: 2030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-66.5 + pos: 1.5,-20.5 parent: 1 - - uid: 3998 + - uid: 2032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-63.5 + pos: 1.5,-22.5 parent: 1 - - uid: 4011 + - uid: 2033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-88.5 + pos: 1.5,-23.5 parent: 1 - - uid: 4064 + - uid: 2035 components: - type: Transform - pos: 7.5,-103.5 + pos: 1.5,-25.5 parent: 1 - - uid: 4265 + - uid: 2036 components: - type: Transform - pos: 12.5,-61.5 + pos: 1.5,-26.5 parent: 1 - - uid: 4266 + - uid: 2046 components: - type: Transform - pos: 12.5,-60.5 + pos: -2.5,-33.5 parent: 1 - - uid: 4267 + - uid: 2047 components: - type: Transform - pos: 12.5,-59.5 + pos: -2.5,-32.5 parent: 1 - - uid: 4268 + - uid: 2052 components: - type: Transform - pos: 12.5,-58.5 + pos: -2.5,-27.5 parent: 1 - - uid: 4269 + - uid: 2053 components: - type: Transform - pos: 12.5,-57.5 + pos: -2.5,-17.5 parent: 1 - - uid: 4270 + - uid: 2056 components: - type: Transform - pos: 12.5,-56.5 + pos: -2.5,-14.5 parent: 1 - - uid: 4287 + - uid: 2058 components: - type: Transform - pos: 16.5,-62.5 + pos: -2.5,-12.5 parent: 1 - - uid: 4294 + - uid: 2063 components: - type: Transform - pos: 16.5,-66.5 + pos: -2.5,-23.5 parent: 1 - - uid: 4298 + - uid: 2065 components: - type: Transform - pos: 13.5,-66.5 + pos: -2.5,-21.5 parent: 1 - - uid: 4362 + - uid: 2066 components: - type: Transform - pos: 11.5,-61.5 + pos: -2.5,-20.5 parent: 1 - - uid: 4364 + - uid: 2108 components: - type: Transform - pos: 11.5,-58.5 + pos: 0.5,-34.5 parent: 1 - - uid: 4372 + - uid: 2212 components: - type: Transform - pos: 11.5,-60.5 + pos: 23.5,-121.5 parent: 1 - - uid: 4373 + - uid: 2219 components: - type: Transform - pos: 11.5,-59.5 + pos: 23.5,-119.5 parent: 1 - - uid: 4377 + - uid: 2236 components: - type: Transform - pos: 11.5,-56.5 + pos: 23.5,-118.5 parent: 1 - - uid: 4385 + - uid: 2278 components: - type: Transform - pos: 11.5,-57.5 + pos: -13.5,-112.5 parent: 1 - - uid: 4386 + - uid: 2929 components: - type: Transform - pos: 10.5,-56.5 + pos: 3.5,-103.5 parent: 1 - - uid: 4387 + - uid: 2932 components: - type: Transform - pos: 9.5,-56.5 + pos: -9.5,-98.5 parent: 1 - - uid: 4400 + - uid: 2934 components: - type: Transform - pos: 8.5,-56.5 + pos: -9.5,-99.5 parent: 1 - - uid: 4413 + - uid: 2949 components: - type: Transform - pos: 7.5,-56.5 + pos: -9.5,-100.5 parent: 1 - - uid: 4436 + - uid: 2951 components: - type: Transform - pos: 19.5,-62.5 + pos: -8.5,-103.5 parent: 1 - - uid: 4450 + - uid: 2952 components: - type: Transform - pos: 12.5,-62.5 + rot: 3.141592653589793 rad + pos: -6.5,-104.5 parent: 1 - - uid: 4451 + - uid: 2956 components: - type: Transform - pos: 12.5,-63.5 + pos: -3.5,-103.5 parent: 1 - - uid: 4452 + - uid: 2964 components: - type: Transform - pos: 12.5,-64.5 + pos: 0.5,-103.5 parent: 1 - - uid: 4456 + - uid: 2968 components: - type: Transform - pos: 12.5,-65.5 + pos: 1.5,-103.5 parent: 1 - - uid: 4461 + - uid: 2973 components: - type: Transform - pos: 12.5,-66.5 + pos: 2.5,-103.5 parent: 1 - - uid: 4481 + - uid: 3033 components: - type: Transform - pos: 14.5,-62.5 + rot: 3.141592653589793 rad + pos: 2.5,-35.5 parent: 1 - - uid: 4482 + - uid: 3035 components: - type: Transform - pos: 20.5,-62.5 + rot: 3.141592653589793 rad + pos: 4.5,-37.5 parent: 1 - - uid: 4484 + - uid: 3037 components: - type: Transform - pos: 20.5,-63.5 + rot: 3.141592653589793 rad + pos: 5.5,-39.5 parent: 1 - - uid: 4485 + - uid: 3038 components: - type: Transform - pos: 20.5,-65.5 + rot: 3.141592653589793 rad + pos: -6.5,-39.5 parent: 1 - - uid: 4486 + - uid: 3039 components: - type: Transform - pos: 20.5,-66.5 + rot: 3.141592653589793 rad + pos: -6.5,-38.5 parent: 1 - - uid: 4487 + - uid: 3064 components: - type: Transform - pos: 7.5,-73.5 + rot: 3.141592653589793 rad + pos: 4.5,-45.5 parent: 1 - - uid: 4490 + - uid: 3065 components: - type: Transform - pos: 7.5,-75.5 + rot: 3.141592653589793 rad + pos: -5.5,-46.5 parent: 1 - - uid: 4492 + - uid: 3067 components: - type: Transform - pos: 8.5,-73.5 + rot: 3.141592653589793 rad + pos: -5.5,-45.5 parent: 1 - - uid: 4494 + - uid: 3068 components: - type: Transform - pos: 8.5,-75.5 + rot: 3.141592653589793 rad + pos: -5.5,-43.5 parent: 1 - - uid: 4495 + - uid: 3070 components: - type: Transform - pos: 9.5,-73.5 + rot: 3.141592653589793 rad + pos: 4.5,-43.5 parent: 1 - - uid: 4497 + - uid: 3073 components: - type: Transform - pos: 9.5,-75.5 + rot: 3.141592653589793 rad + pos: -5.5,-42.5 parent: 1 - - uid: 4498 + - uid: 3074 components: - type: Transform - pos: 10.5,-73.5 + rot: 3.141592653589793 rad + pos: 4.5,-44.5 parent: 1 - - uid: 4501 + - uid: 3076 components: - type: Transform - pos: 10.5,-75.5 + rot: 3.141592653589793 rad + pos: 5.5,-40.5 parent: 1 - - uid: 4502 + - uid: 3080 components: - type: Transform - pos: 11.5,-73.5 + rot: 3.141592653589793 rad + pos: 5.5,-44.5 parent: 1 - - uid: 4504 + - uid: 3081 components: - type: Transform - pos: 11.5,-75.5 + rot: 3.141592653589793 rad + pos: 5.5,-45.5 parent: 1 - - uid: 4506 + - uid: 3105 components: - type: Transform - pos: 12.5,-67.5 + rot: 3.141592653589793 rad + pos: 5.5,-48.5 parent: 1 - - uid: 4507 + - uid: 3106 components: - type: Transform - pos: 12.5,-68.5 + rot: 3.141592653589793 rad + pos: 4.5,-48.5 parent: 1 - - uid: 4509 + - uid: 3108 components: - type: Transform - pos: 12.5,-69.5 + rot: 3.141592653589793 rad + pos: 2.5,-48.5 parent: 1 - - uid: 4510 + - uid: 3109 components: - type: Transform - pos: 12.5,-70.5 + rot: 3.141592653589793 rad + pos: 1.5,-48.5 parent: 1 - - uid: 4512 + - uid: 3113 components: - type: Transform - pos: 12.5,-71.5 + rot: 3.141592653589793 rad + pos: -3.5,-48.5 parent: 1 - - uid: 4514 + - uid: 3114 components: - type: Transform - pos: 12.5,-72.5 + rot: 3.141592653589793 rad + pos: -4.5,-48.5 parent: 1 - - uid: 4516 + - uid: 3173 components: - type: Transform - pos: 12.5,-73.5 + pos: 5.5,-103.5 parent: 1 - - uid: 4519 + - uid: 3456 components: - type: Transform - pos: 12.5,-75.5 + pos: 8.5,-92.5 parent: 1 - - uid: 4521 + - uid: 3460 components: - type: Transform - pos: 15.5,-62.5 + pos: 8.5,-95.5 parent: 1 - - uid: 4528 + - uid: 3466 components: - type: Transform - pos: 13.5,-75.5 + rot: 3.141592653589793 rad + pos: -10.5,-104.5 parent: 1 - - uid: 4530 + - uid: 3468 components: - type: Transform - pos: 14.5,-75.5 + rot: 3.141592653589793 rad + pos: -9.5,-104.5 parent: 1 - - uid: 4569 + - uid: 3492 components: - type: Transform - pos: 15.5,-75.5 + pos: -9.5,-97.5 parent: 1 - - uid: 4576 + - uid: 3493 components: - type: Transform - pos: 16.5,-75.5 + rot: 3.141592653589793 rad + pos: -8.5,-104.5 parent: 1 - - uid: 4582 + - uid: 3494 components: - type: Transform - pos: 17.5,-75.5 + rot: 3.141592653589793 rad + pos: 5.5,-104.5 parent: 1 - - uid: 4597 + - uid: 5250 components: - type: Transform - pos: 18.5,-75.5 + pos: -16.5,-75.5 parent: 1 - - uid: 4606 + - uid: 5264 components: - type: Transform - pos: 19.5,-75.5 + pos: -15.5,-75.5 parent: 1 - - uid: 4607 + - uid: 5279 components: - type: Transform - pos: 20.5,-67.5 + pos: -14.5,-75.5 parent: 1 - - uid: 4608 + - uid: 5295 components: - type: Transform - pos: 20.5,-68.5 + pos: -13.5,-75.5 parent: 1 - - uid: 4610 + - uid: 5312 components: - type: Transform - pos: 20.5,-70.5 + pos: -12.5,-75.5 parent: 1 - - uid: 4611 + - uid: 5316 components: - type: Transform - pos: 20.5,-75.5 + rot: 3.141592653589793 rad + pos: 7.5,-104.5 parent: 1 - - uid: 4624 + - uid: 5351 components: - type: Transform - pos: 11.5,-67.5 + pos: -21.5,-115.5 parent: 1 - - uid: 4631 + - uid: 5352 components: - type: Transform - pos: 11.5,-72.5 + pos: -21.5,-116.5 parent: 1 - - uid: 4632 + - uid: 5353 components: - type: Transform - pos: 10.5,-72.5 + pos: -21.5,-117.5 parent: 1 - - uid: 4633 + - uid: 5354 components: - type: Transform - pos: 11.5,-69.5 + pos: -21.5,-118.5 parent: 1 - - uid: 4640 + - uid: 5355 components: - type: Transform - pos: 8.5,-72.5 + pos: -21.5,-119.5 parent: 1 - - uid: 4642 + - uid: 5358 components: - type: Transform - pos: 11.5,-68.5 + pos: -19.5,-119.5 parent: 1 - - uid: 4649 + - uid: 5359 components: - type: Transform - pos: 7.5,-72.5 + pos: -18.5,-113.5 parent: 1 - - uid: 4651 + - uid: 5360 components: - type: Transform - pos: 11.5,-71.5 + pos: -18.5,-114.5 parent: 1 - - uid: 4659 + - uid: 5361 components: - type: Transform - pos: 9.5,-72.5 + pos: -18.5,-115.5 parent: 1 - - uid: 4660 + - uid: 5362 components: - type: Transform - pos: 11.5,-70.5 + pos: -18.5,-116.5 parent: 1 - - uid: 4951 + - uid: 5364 components: - type: Transform - pos: 6.5,-73.5 + pos: -18.5,-117.5 parent: 1 - - uid: 4953 + - uid: 5365 components: - type: Transform - pos: 6.5,-75.5 + pos: -18.5,-118.5 parent: 1 - - uid: 4954 + - uid: 5366 components: - type: Transform - pos: -7.5,-76.5 + pos: -18.5,-119.5 parent: 1 - - uid: 4955 + - uid: 5372 components: - type: Transform - pos: -6.5,-76.5 + pos: -16.5,-115.5 parent: 1 - - uid: 4956 + - uid: 5373 components: - type: Transform - pos: -2.5,-76.5 + pos: -16.5,-116.5 parent: 1 - - uid: 4957 + - uid: 5379 components: - type: Transform - pos: -3.5,-76.5 + pos: -16.5,-117.5 parent: 1 - - uid: 4958 + - uid: 5382 components: - type: Transform - pos: -4.5,-76.5 + pos: -16.5,-118.5 parent: 1 - - uid: 4959 + - uid: 5383 components: - type: Transform - pos: -5.5,-76.5 + pos: -16.5,-119.5 parent: 1 - - uid: 4960 + - uid: 5389 components: - type: Transform - pos: 1.5,-76.5 + pos: -14.5,-119.5 parent: 1 - - uid: 4961 + - uid: 5390 components: - type: Transform - pos: 2.5,-76.5 + pos: -13.5,-113.5 parent: 1 - - uid: 4962 + - uid: 5392 components: - type: Transform - pos: 3.5,-76.5 + pos: -13.5,-114.5 parent: 1 - - uid: 4963 + - uid: 5393 components: - type: Transform - pos: 4.5,-76.5 + pos: -13.5,-115.5 parent: 1 - - uid: 4964 + - uid: 5394 components: - type: Transform - pos: 5.5,-76.5 + pos: -13.5,-116.5 parent: 1 - - uid: 4965 + - uid: 5396 components: - type: Transform - pos: 6.5,-76.5 + pos: -13.5,-117.5 parent: 1 - - uid: 4966 + - uid: 5412 components: - type: Transform - pos: 1.5,-73.5 + pos: -13.5,-118.5 parent: 1 - - uid: 4967 + - uid: 5441 components: - type: Transform - pos: 1.5,-75.5 + pos: -17.5,-103.5 parent: 1 - - uid: 4968 + - uid: 5445 components: - type: Transform - pos: -2.5,-73.5 + pos: -18.5,-98.5 parent: 1 - - uid: 4969 + - uid: 5448 components: - type: Transform - pos: -2.5,-75.5 + pos: -18.5,-97.5 parent: 1 - - uid: 5111 + - uid: 5463 components: - type: Transform - pos: -2.5,-77.5 + pos: -8.5,-76.5 parent: 1 - - uid: 5112 + - uid: 5465 components: - type: Transform - pos: 1.5,-77.5 + pos: -9.5,-76.5 parent: 1 - - uid: 5113 + - uid: 5472 components: - type: Transform - pos: 1.5,-80.5 + pos: -17.5,-76.5 parent: 1 - - uid: 5114 + - uid: 5482 components: - type: Transform - pos: -2.5,-80.5 + pos: -17.5,-79.5 parent: 1 - - uid: 5116 + - uid: 5571 components: - type: Transform - pos: 2.5,-77.5 + pos: -18.5,-86.5 parent: 1 - - uid: 5117 + - uid: 5586 components: - type: Transform - pos: 2.5,-78.5 + pos: -18.5,-90.5 parent: 1 - - uid: 5118 + - uid: 5587 components: - type: Transform - pos: 2.5,-79.5 + pos: -18.5,-88.5 parent: 1 - - uid: 5119 + - uid: 5661 components: - type: Transform - pos: 2.5,-80.5 + pos: -17.5,-80.5 parent: 1 - - uid: 5120 + - uid: 5863 components: - type: Transform - pos: -3.5,-77.5 + pos: -29.5,-87.5 parent: 1 - - uid: 5121 + - uid: 5871 components: - type: Transform - pos: -3.5,-78.5 + pos: -29.5,-102.5 parent: 1 - - uid: 5122 + - uid: 5952 components: - type: Transform - pos: -3.5,-79.5 + rot: 3.141592653589793 rad + pos: 0.5,-117.5 parent: 1 - - uid: 5123 + - uid: 5953 components: - type: Transform - pos: -3.5,-80.5 + rot: 3.141592653589793 rad + pos: 0.5,-118.5 parent: 1 - - uid: 5139 + - uid: 5983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-80.5 + rot: 3.141592653589793 rad + pos: 4.5,-113.5 parent: 1 - - uid: 5141 + - uid: 5984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-80.5 + rot: 3.141592653589793 rad + pos: 4.5,-114.5 parent: 1 - - uid: 5142 + - uid: 6048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-80.5 + rot: 3.141592653589793 rad + pos: 6.5,-113.5 parent: 1 - - uid: 5143 + - uid: 6050 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-80.5 + pos: 22.5,-79.5 parent: 1 - - uid: 5144 + - uid: 6138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-80.5 + pos: -29.5,-95.5 parent: 1 - - uid: 5196 + - uid: 6143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-80.5 + pos: -29.5,-103.5 parent: 1 - - uid: 5197 + - uid: 6184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-80.5 + pos: 12.5,-113.5 parent: 1 - - uid: 5198 + - uid: 6206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-80.5 + pos: 18.5,-113.5 parent: 1 - - uid: 5199 + - uid: 6208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-80.5 + pos: 18.5,-115.5 parent: 1 - - uid: 5200 + - uid: 6240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-80.5 + pos: 18.5,-119.5 parent: 1 - - uid: 5201 + - uid: 6253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-80.5 + pos: 19.5,-113.5 parent: 1 - - uid: 5233 + - uid: 6254 components: - type: Transform - pos: -17.5,-75.5 + pos: 20.5,-113.5 parent: 1 - - uid: 5330 + - uid: 6280 components: - type: Transform - pos: -11.5,-75.5 + rot: 1.5707963267948966 rad + pos: -2.5,-124.5 parent: 1 - - uid: 5349 + - uid: 6288 components: - type: Transform - pos: -10.5,-75.5 + rot: 1.5707963267948966 rad + pos: -21.5,-124.5 parent: 1 - - uid: 5384 + - uid: 6303 components: - type: Transform - pos: 17.5,-62.5 + rot: 1.5707963267948966 rad + pos: -19.5,-124.5 parent: 1 - - uid: 5388 + - uid: 6310 components: - type: Transform - pos: 18.5,-62.5 + rot: 1.5707963267948966 rad + pos: -17.5,-124.5 parent: 1 - - uid: 5418 + - uid: 6375 components: - type: Transform - pos: 13.5,-62.5 + rot: 1.5707963267948966 rad + pos: -15.5,-124.5 parent: 1 - - uid: 5421 + - uid: 6380 components: - type: Transform - pos: 20.5,-69.5 + rot: 3.141592653589793 rad + pos: -22.5,-106.5 parent: 1 - - uid: 5422 + - uid: 6393 components: - type: Transform - pos: 20.5,-71.5 + rot: 3.141592653589793 rad + pos: -22.5,-104.5 parent: 1 - - uid: 5423 + - uid: 6430 components: - type: Transform - pos: 20.5,-72.5 + rot: 1.5707963267948966 rad + pos: -13.5,-124.5 parent: 1 - - uid: 5424 + - uid: 6433 components: - type: Transform - pos: 20.5,-73.5 + rot: 3.141592653589793 rad + pos: -24.5,-106.5 parent: 1 - - uid: 5425 + - uid: 6436 components: - type: Transform - pos: 20.5,-74.5 + rot: 3.141592653589793 rad + pos: -24.5,-104.5 parent: 1 - - uid: 5464 + - uid: 6440 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-76.5 + pos: -25.5,-106.5 parent: 1 - - uid: 5467 + - uid: 6448 components: - type: Transform - pos: -12.5,-80.5 + rot: 3.141592653589793 rad + pos: -25.5,-104.5 parent: 1 - - uid: 5468 + - uid: 6451 components: - type: Transform - pos: -11.5,-80.5 + rot: 3.141592653589793 rad + pos: -27.5,-104.5 parent: 1 - - uid: 5469 + - uid: 6463 components: - type: Transform - pos: -15.5,-80.5 + pos: 23.5,-110.5 parent: 1 - - uid: 5470 + - uid: 6465 components: - type: Transform - pos: -16.5,-80.5 + rot: 3.141592653589793 rad + pos: -26.5,-104.5 parent: 1 - - uid: 5480 + - uid: 6467 components: - type: Transform - pos: -17.5,-77.5 + rot: 1.5707963267948966 rad + pos: -14.5,-124.5 parent: 1 - - uid: 5493 + - uid: 6483 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-77.5 + pos: -28.5,-106.5 parent: 1 - - uid: 5494 + - uid: 6487 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-78.5 + pos: 12.5,-103.5 parent: 1 - - uid: 5495 + - uid: 6488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-80.5 + rot: 1.5707963267948966 rad + pos: -11.5,-124.5 parent: 1 - - uid: 5524 + - uid: 6491 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-79.5 + pos: -28.5,-104.5 parent: 1 - - uid: 5547 + - uid: 6495 components: - type: Transform - pos: -11.5,-84.5 + rot: 1.5707963267948966 rad + pos: -6.5,-124.5 parent: 1 - - uid: 5555 + - uid: 6496 components: - type: Transform - pos: -18.5,-87.5 + rot: 1.5707963267948966 rad + pos: -5.5,-124.5 parent: 1 - - uid: 5561 + - uid: 6497 components: - type: Transform - pos: -12.5,-84.5 + rot: 1.5707963267948966 rad + pos: -4.5,-124.5 parent: 1 - - uid: 5611 + - uid: 6500 components: - type: Transform - pos: -18.5,-85.5 + pos: 21.5,-107.5 parent: 1 - - uid: 5614 + - uid: 6501 components: - type: Transform - pos: -18.5,-92.5 + rot: 3.141592653589793 rad + pos: 21.5,-106.5 parent: 1 - - uid: 5617 + - uid: 6502 components: - type: Transform - pos: -18.5,-89.5 + pos: 20.5,-111.5 parent: 1 - - uid: 5630 + - uid: 6504 components: - type: Transform - pos: -15.5,-84.5 + pos: 21.5,-111.5 parent: 1 - - uid: 5641 + - uid: 6506 components: - type: Transform - pos: -15.5,-93.5 + rot: 3.141592653589793 rad + pos: 20.5,-106.5 parent: 1 - - uid: 5647 + - uid: 6507 components: - type: Transform - pos: -16.5,-84.5 + pos: 20.5,-107.5 parent: 1 - - uid: 5656 + - uid: 6509 components: - type: Transform - pos: -16.5,-93.5 + rot: 3.141592653589793 rad + pos: 18.5,-107.5 parent: 1 - - uid: 5669 + - uid: 6510 components: - type: Transform - pos: -17.5,-84.5 + pos: 19.5,-108.5 parent: 1 - - uid: 5757 + - uid: 6515 components: - type: Transform - pos: -18.5,-84.5 + pos: 19.5,-107.5 parent: 1 - - uid: 5768 + - uid: 6516 components: - type: Transform - pos: -18.5,-93.5 + rot: 3.141592653589793 rad + pos: 19.5,-106.5 parent: 1 - - uid: 5771 + - uid: 6518 components: - type: Transform - pos: -18.5,-80.5 + rot: 1.5707963267948966 rad + pos: -1.5,-124.5 parent: 1 - - uid: 5772 + - uid: 6520 components: - type: Transform - pos: -19.5,-80.5 + rot: 3.141592653589793 rad + pos: 18.5,-108.5 parent: 1 - - uid: 5775 + - uid: 6524 components: - type: Transform - pos: -19.5,-84.5 + rot: 3.141592653589793 rad + pos: 16.5,-108.5 parent: 1 - - uid: 5839 + - uid: 6526 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-84.5 + pos: 16.5,-107.5 parent: 1 - - uid: 5840 + - uid: 6528 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-83.5 + pos: 16.5,-106.5 parent: 1 - - uid: 5841 + - uid: 6529 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-80.5 + pos: 16.5,-104.5 parent: 1 - - uid: 5842 + - uid: 6539 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-89.5 + pos: 15.5,-106.5 parent: 1 - - uid: 5859 + - uid: 6565 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-85.5 + pos: 14.5,-111.5 parent: 1 - - uid: 5860 + - uid: 6707 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-84.5 + pos: 15.5,-111.5 parent: 1 - - uid: 5861 + - uid: 6751 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-87.5 + pos: 4.5,-125.5 parent: 1 - - uid: 5862 + - uid: 6775 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-88.5 + pos: 5.5,-124.5 parent: 1 - - uid: 5883 + - uid: 6776 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-84.5 + pos: 5.5,-125.5 parent: 1 - - uid: 5923 + - uid: 6778 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-81.5 + pos: 6.5,-124.5 parent: 1 - - uid: 5924 + - uid: 6779 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-80.5 + pos: 14.5,-104.5 parent: 1 - - uid: 5925 + - uid: 6780 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-80.5 + pos: 16.5,-111.5 parent: 1 - - uid: 5926 + - uid: 6783 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-80.5 + pos: 7.5,-122.5 parent: 1 - - uid: 5937 + - uid: 6805 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-92.5 + pos: 12.5,-109.5 parent: 1 - - uid: 5947 + - uid: 7396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-88.5 + rot: -1.5707963267948966 rad + pos: 22.5,-75.5 parent: 1 - - uid: 5950 + - uid: 7397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-100.5 + rot: -1.5707963267948966 rad + pos: 21.5,-103.5 parent: 1 - - uid: 5955 + - uid: 7399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-80.5 + rot: -1.5707963267948966 rad + pos: 16.5,-103.5 parent: 1 - - uid: 5965 + - uid: 7401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-80.5 + rot: -1.5707963267948966 rad + pos: 18.5,-103.5 parent: 1 - - uid: 5968 + - uid: 7406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-100.5 + rot: -1.5707963267948966 rad + pos: 13.5,-84.5 parent: 1 - - uid: 5969 + - uid: 7415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-80.5 + rot: -1.5707963267948966 rad + pos: 22.5,-103.5 parent: 1 - - uid: 5973 + - uid: 7417 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-81.5 + rot: -1.5707963267948966 rad + pos: 24.5,-92.5 + parent: 1 + - uid: 7423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-100.5 parent: 1 - - uid: 5974 + - uid: 7429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-98.5 + rot: -1.5707963267948966 rad + pos: 11.5,-88.5 parent: 1 - - uid: 5975 + - uid: 7430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-103.5 + rot: -1.5707963267948966 rad + pos: 23.5,-88.5 parent: 1 - - uid: 5976 + - uid: 7431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-89.5 + rot: -1.5707963267948966 rad + pos: 23.5,-84.5 parent: 1 - - uid: 5977 + - uid: 7444 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-88.5 + rot: -1.5707963267948966 rad + pos: 25.5,-92.5 parent: 1 - - uid: 5983 + - uid: 7445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-85.5 + rot: -1.5707963267948966 rad + pos: 26.5,-101.5 parent: 1 - - uid: 5985 + - uid: 7446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-99.5 + rot: -1.5707963267948966 rad + pos: 10.5,-92.5 parent: 1 - - uid: 6193 + - uid: 7447 components: - type: Transform - pos: -25.5,-77.5 + rot: -1.5707963267948966 rad + pos: 11.5,-92.5 parent: 1 - - uid: 6212 + - uid: 7448 components: - type: Transform - pos: -30.5,-77.5 + rot: -1.5707963267948966 rad + pos: 10.5,-88.5 parent: 1 - - uid: 6214 + - uid: 7449 components: - type: Transform - pos: -31.5,-77.5 + rot: -1.5707963267948966 rad + pos: 10.5,-84.5 parent: 1 - - uid: 6224 + - uid: 7450 components: - type: Transform - pos: -34.5,-85.5 + rot: -1.5707963267948966 rad + pos: 24.5,-88.5 parent: 1 - - uid: 6327 + - uid: 7458 components: - type: Transform - pos: -25.5,-87.5 + rot: -1.5707963267948966 rad + pos: 25.5,-96.5 parent: 1 - - uid: 6328 + - uid: 7459 components: - type: Transform - pos: -33.5,-77.5 + rot: -1.5707963267948966 rad + pos: 25.5,-100.5 parent: 1 - - uid: 6346 + - uid: 7460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-81.5 + rot: -1.5707963267948966 rad + pos: 23.5,-100.5 parent: 1 - - uid: 6351 + - uid: 7461 components: - type: Transform - pos: -34.5,-77.5 + rot: -1.5707963267948966 rad + pos: 24.5,-96.5 parent: 1 - - uid: 6354 + - uid: 7463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-83.5 + rot: -1.5707963267948966 rad + pos: 22.5,-84.5 parent: 1 - - uid: 6362 + - uid: 7464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-81.5 + rot: -1.5707963267948966 rad + pos: 23.5,-84.5 parent: 1 - - uid: 6370 + - uid: 7480 components: - type: Transform - pos: -28.5,-77.5 + rot: -1.5707963267948966 rad + pos: 21.5,-84.5 parent: 1 - - uid: 6379 + - uid: 7490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-83.5 + rot: -1.5707963267948966 rad + pos: 21.5,-84.5 parent: 1 - - uid: 6459 + - uid: 7519 components: - type: Transform - pos: -34.5,-87.5 + pos: 17.5,-122.5 parent: 1 - - uid: 6466 + - uid: 7537 components: - type: Transform - pos: -30.5,-87.5 + rot: 1.5707963267948966 rad + pos: -22.5,-124.5 parent: 1 - - uid: 6482 + - uid: 7542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-93.5 + rot: 1.5707963267948966 rad + pos: -23.5,-124.5 parent: 1 - - uid: 6494 + - uid: 7696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-96.5 + rot: 1.5707963267948966 rad + pos: -5.5,-121.5 parent: 1 - - uid: 6500 + - uid: 7707 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-95.5 + pos: -1.5,-121.5 parent: 1 - - uid: 6505 + - uid: 7724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-103.5 + pos: 21.5,-121.5 parent: 1 - - uid: 6506 + - uid: 7725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-96.5 + pos: 22.5,-121.5 parent: 1 - - uid: 6509 + - uid: 7726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-100.5 + pos: 20.5,-121.5 parent: 1 - - uid: 6510 + - uid: 7734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-100.5 + pos: 19.5,-121.5 parent: 1 - - uid: 6511 + - uid: 7737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-103.5 + pos: 18.5,-122.5 parent: 1 - - uid: 6513 + - uid: 7750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-95.5 + pos: 18.5,-121.5 parent: 1 - - uid: 6514 + - uid: 7792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-94.5 + pos: 14.5,-112.5 parent: 1 - - uid: 6517 + - uid: 7810 components: - type: Transform - pos: -31.5,-87.5 + pos: 16.5,-122.5 parent: 1 - - uid: 6524 + - uid: 7813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-93.5 + pos: 15.5,-122.5 parent: 1 - - uid: 6531 + - uid: 7831 components: - type: Transform - pos: -33.5,-87.5 + pos: 10.5,-120.5 parent: 1 - - uid: 7554 + - uid: 7843 components: - type: Transform - pos: -34.5,-80.5 + pos: 13.5,-112.5 parent: 1 - - uid: 7556 + - uid: 7894 components: - type: Transform - pos: -29.5,-77.5 + pos: 22.5,-119.5 parent: 1 - - uid: 7567 + - uid: 7906 components: - type: Transform - pos: -29.5,-87.5 + pos: 22.5,-118.5 parent: 1 - - uid: 10006 + - uid: 7909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-62.5 + pos: 22.5,-116.5 parent: 1 - - uid: 10224 + - uid: 7910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-66.5 + pos: 22.5,-115.5 parent: 1 - - uid: 10893 + - uid: 7912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-62.5 + pos: 22.5,-113.5 parent: 1 - - uid: 10894 + - uid: 7914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-63.5 + pos: 21.5,-119.5 parent: 1 - - uid: 10895 + - uid: 7915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-64.5 + pos: 21.5,-118.5 parent: 1 - - uid: 10896 + - uid: 7919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-65.5 + pos: 21.5,-116.5 parent: 1 - - uid: 10897 + - uid: 7920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-66.5 + pos: 21.5,-115.5 parent: 1 -- proto: WallReinforcedDiagonal - entities: - - uid: 38 + - uid: 7924 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,1.5 + pos: 21.5,-113.5 parent: 1 - - uid: 40 + - uid: 7937 components: - type: Transform - pos: 1.5,-2.5 + pos: 11.5,-120.5 parent: 1 - - uid: 42 + - uid: 7938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-2.5 + pos: 14.5,-121.5 parent: 1 - - uid: 43 + - uid: 7941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 + pos: 11.5,-113.5 parent: 1 - - uid: 3075 + - uid: 7942 components: - type: Transform - pos: 4.5,-41.5 + pos: 10.5,-113.5 parent: 1 - - uid: 3092 + - uid: 7970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-47.5 + rot: -1.5707963267948966 rad + pos: 11.5,-100.5 parent: 1 - - uid: 3093 + - uid: 7974 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-47.5 + pos: 4.5,-126.5 parent: 1 - - uid: 3094 + - uid: 7979 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-41.5 + pos: 9.5,-96.5 parent: 1 - - uid: 4286 + - uid: 7980 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-75.5 + pos: 11.5,-96.5 parent: 1 - - uid: 4468 + - uid: 7997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-73.5 + rot: 3.141592653589793 rad + pos: -0.5,-126.5 parent: 1 - - uid: 5385 + - uid: 7999 components: - type: Transform - pos: 5.5,-75.5 + rot: 3.141592653589793 rad + pos: 8.5,-120.5 parent: 1 - - uid: 5400 + - uid: 8000 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-73.5 + pos: -0.5,-125.5 parent: 1 -- proto: WallReinforcedRust - entities: - - uid: 36 + - uid: 8001 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,3.5 + pos: -1.5,-125.5 parent: 1 - - uid: 37 + - uid: 8004 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,2.5 + pos: 0.5,-126.5 parent: 1 - - uid: 50 + - uid: 8014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 + rot: 3.141592653589793 rad + pos: -1.5,-123.5 parent: 1 - - uid: 55 + - uid: 8018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 + rot: 1.5707963267948966 rad + pos: -3.5,-124.5 parent: 1 - - uid: 56 + - uid: 8020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + rot: 1.5707963267948966 rad + pos: -5.5,-123.5 parent: 1 - - uid: 58 + - uid: 8023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 + rot: 1.5707963267948966 rad + pos: -9.5,-124.5 parent: 1 - - uid: 59 + - uid: 8025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-5.5 + rot: 1.5707963267948966 rad + pos: -10.5,-124.5 parent: 1 - - uid: 61 + - uid: 8032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 + rot: 1.5707963267948966 rad + pos: -7.5,-124.5 parent: 1 - - uid: 62 + - uid: 8037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 + rot: 3.141592653589793 rad + pos: -0.5,-120.5 parent: 1 - - uid: 64 + - uid: 8040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,1.5 + rot: 1.5707963267948966 rad + pos: -8.5,-124.5 parent: 1 - - uid: 65 + - uid: 8051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,1.5 + rot: 1.5707963267948966 rad + pos: -12.5,-124.5 parent: 1 - - uid: 67 + - uid: 8068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 + rot: 1.5707963267948966 rad + pos: -16.5,-124.5 parent: 1 - - uid: 132 + - uid: 8073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,7.5 + rot: 1.5707963267948966 rad + pos: -18.5,-124.5 parent: 1 - - uid: 135 + - uid: 8075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,10.5 + rot: 1.5707963267948966 rad + pos: -20.5,-124.5 parent: 1 - - uid: 137 + - uid: 8080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,12.5 + rot: 3.141592653589793 rad + pos: 7.5,-123.5 parent: 1 - - uid: 145 + - uid: 8081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,8.5 + rot: 3.141592653589793 rad + pos: 6.5,-123.5 parent: 1 - - uid: 147 + - uid: 8086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,6.5 + rot: 3.141592653589793 rad + pos: -1.5,-120.5 parent: 1 - - uid: 175 + - uid: 8091 components: - type: Transform - pos: -7.5,1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-120.5 parent: 1 - - uid: 176 + - uid: 8092 components: - type: Transform - pos: -8.5,1.5 + rot: 1.5707963267948966 rad + pos: 13.5,-124.5 parent: 1 - - uid: 179 + - uid: 8094 components: - type: Transform - pos: -8.5,-2.5 + rot: 1.5707963267948966 rad + pos: 13.5,-122.5 parent: 1 - - uid: 233 + - uid: 8099 components: - type: Transform - pos: 7.5,1.5 + rot: 1.5707963267948966 rad + pos: -3.5,-120.5 parent: 1 - - uid: 234 + - uid: 8101 components: - type: Transform - pos: 6.5,1.5 + rot: 1.5707963267948966 rad + pos: -4.5,-120.5 parent: 1 - - uid: 418 + - uid: 8104 components: - type: Transform - pos: 1.5,-8.5 + rot: 1.5707963267948966 rad + pos: 12.5,-125.5 parent: 1 - - uid: 419 + - uid: 8110 components: - type: Transform - pos: 1.5,-9.5 + rot: 1.5707963267948966 rad + pos: 11.5,-125.5 parent: 1 - - uid: 423 + - uid: 8120 components: - type: Transform - pos: -2.5,-9.5 + rot: 1.5707963267948966 rad + pos: 10.5,-125.5 parent: 1 - - uid: 445 + - uid: 8125 components: - type: Transform - pos: 9.5,0.5 + rot: 1.5707963267948966 rad + pos: 9.5,-125.5 parent: 1 - - uid: 570 + - uid: 8129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,2.5 + rot: 1.5707963267948966 rad + pos: 8.5,-125.5 parent: 1 - - uid: 572 + - uid: 8131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-3.5 + rot: 1.5707963267948966 rad + pos: 8.5,-124.5 parent: 1 - - uid: 574 + - uid: 8132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 + rot: 1.5707963267948966 rad + pos: 8.5,-123.5 parent: 1 - - uid: 578 + - uid: 8133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-3.5 + rot: 3.141592653589793 rad + pos: 8.5,-122.5 parent: 1 - - uid: 581 + - uid: 8134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-1.5 + pos: 23.5,-115.5 parent: 1 - - uid: 583 + - uid: 8136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,0.5 + pos: 19.5,-119.5 parent: 1 - - uid: 584 + - uid: 8138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,1.5 + pos: 20.5,-116.5 parent: 1 - - uid: 587 + - uid: 8139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,2.5 + pos: 19.5,-118.5 parent: 1 - - uid: 589 + - uid: 8142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,2.5 + pos: 19.5,-116.5 parent: 1 - - uid: 781 + - uid: 8147 components: - type: Transform - pos: -29.5,-78.5 + pos: 10.5,-119.5 parent: 1 - - uid: 782 + - uid: 8155 components: - type: Transform - pos: -21.5,-87.5 + rot: 3.141592653589793 rad + pos: 7.5,-113.5 parent: 1 - - uid: 783 + - uid: 8156 components: - type: Transform - pos: -22.5,-87.5 + rot: 1.5707963267948966 rad + pos: 13.5,-125.5 parent: 1 - - uid: 806 + - uid: 8157 components: - type: Transform - pos: -29.5,-82.5 + rot: 1.5707963267948966 rad + pos: 13.5,-123.5 parent: 1 - - uid: 813 + - uid: 8162 components: - type: Transform - pos: -29.5,-81.5 + rot: 3.141592653589793 rad + pos: 3.5,-115.5 parent: 1 - - uid: 823 + - uid: 8163 components: - type: Transform - pos: -19.5,-79.5 + rot: 3.141592653589793 rad + pos: 5.5,-113.5 parent: 1 - - uid: 825 + - uid: 8164 components: - type: Transform - pos: -34.5,-84.5 + rot: 3.141592653589793 rad + pos: 3.5,-114.5 parent: 1 - - uid: 827 + - uid: 8167 components: - type: Transform - pos: -30.5,-81.5 + rot: 3.141592653589793 rad + pos: 9.5,-113.5 + parent: 1 + - uid: 8168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-116.5 parent: 1 - - uid: 830 + - uid: 8169 components: - type: Transform - pos: -26.5,-77.5 + rot: 3.141592653589793 rad + pos: 9.5,-120.5 parent: 1 - - uid: 832 + - uid: 8170 components: - type: Transform - pos: -32.5,-77.5 + rot: 3.141592653589793 rad + pos: 11.5,-112.5 parent: 1 - - uid: 833 + - uid: 8173 components: - type: Transform - pos: -27.5,-77.5 + rot: 3.141592653589793 rad + pos: 2.5,-115.5 parent: 1 - - uid: 838 + - uid: 8175 components: - type: Transform - pos: -26.5,-87.5 + pos: 23.5,-116.5 parent: 1 - - uid: 839 + - uid: 8177 components: - type: Transform - pos: -27.5,-87.5 + rot: 3.141592653589793 rad + pos: 8.5,-113.5 parent: 1 - - uid: 851 + - uid: 8178 components: - type: Transform - pos: -32.5,-87.5 + rot: 3.141592653589793 rad + pos: 1.5,-117.5 parent: 1 - - uid: 857 + - uid: 8179 components: - type: Transform - pos: -28.5,-87.5 + rot: 3.141592653589793 rad + pos: 1.5,-116.5 parent: 1 - - uid: 2023 + - uid: 8182 components: - type: Transform - pos: 1.5,-13.5 + pos: 19.5,-115.5 parent: 1 - - uid: 2027 + - uid: 8183 components: - type: Transform - pos: 1.5,-17.5 + rot: 3.141592653589793 rad + pos: -0.5,-119.5 parent: 1 - - uid: 2030 + - uid: 8186 components: - type: Transform - pos: 1.5,-20.5 + pos: 12.5,-120.5 parent: 1 - - uid: 2032 + - uid: 8187 components: - type: Transform - pos: 1.5,-22.5 + pos: 15.5,-121.5 parent: 1 - - uid: 2033 + - uid: 8188 components: - type: Transform - pos: 1.5,-23.5 + pos: 13.5,-113.5 parent: 1 - - uid: 2035 + - uid: 8189 components: - type: Transform - pos: 1.5,-25.5 + pos: 13.5,-120.5 parent: 1 - - uid: 2036 + - uid: 8194 components: - type: Transform - pos: 1.5,-26.5 + pos: 13.5,-121.5 parent: 1 - - uid: 2046 + - uid: 8195 components: - type: Transform - pos: -2.5,-33.5 + pos: 9.5,-119.5 parent: 1 - - uid: 2047 + - uid: 8197 components: - type: Transform - pos: -2.5,-32.5 + pos: 9.5,-114.5 parent: 1 - - uid: 2052 + - uid: 8199 components: - type: Transform - pos: -2.5,-27.5 + pos: 10.5,-114.5 parent: 1 - - uid: 2053 + - uid: 8203 components: - type: Transform - pos: -2.5,-17.5 + rot: 3.141592653589793 rad + pos: -0.5,-118.5 parent: 1 - - uid: 2056 + - uid: 8209 components: - type: Transform - pos: -2.5,-14.5 + pos: 20.5,-115.5 parent: 1 - - uid: 2058 + - uid: 8251 components: - type: Transform - pos: -2.5,-12.5 + rot: 1.5707963267948966 rad + pos: -5.5,-120.5 parent: 1 - - uid: 2063 + - uid: 8258 components: - type: Transform - pos: -2.5,-23.5 + rot: 1.5707963267948966 rad + pos: -6.5,-120.5 parent: 1 - - uid: 2065 + - uid: 8261 components: - type: Transform - pos: -2.5,-21.5 + pos: 15.5,-112.5 parent: 1 - - uid: 2066 + - uid: 8279 components: - type: Transform - pos: -2.5,-20.5 + rot: 1.5707963267948966 rad + pos: -7.5,-120.5 parent: 1 - - uid: 2108 + - uid: 8281 components: - type: Transform - pos: 0.5,-34.5 + rot: 1.5707963267948966 rad + pos: -8.5,-120.5 parent: 1 - - uid: 2929 + - uid: 8290 components: - type: Transform - pos: 3.5,-103.5 + rot: 1.5707963267948966 rad + pos: -9.5,-120.5 parent: 1 - - uid: 2932 + - uid: 8293 components: - type: Transform - pos: -9.5,-98.5 + rot: 1.5707963267948966 rad + pos: -10.5,-120.5 parent: 1 - - uid: 2934 + - uid: 8298 components: - type: Transform - pos: -9.5,-99.5 + rot: 1.5707963267948966 rad + pos: -11.5,-120.5 parent: 1 - - uid: 2940 + - uid: 8300 components: - type: Transform - pos: -7.5,-103.5 + rot: 1.5707963267948966 rad + pos: -12.5,-120.5 parent: 1 - - uid: 2949 + - uid: 8308 components: - type: Transform - pos: -9.5,-100.5 + rot: 1.5707963267948966 rad + pos: -13.5,-120.5 parent: 1 - - uid: 2951 + - uid: 8310 components: - type: Transform - pos: -8.5,-103.5 + rot: 1.5707963267948966 rad + pos: -14.5,-120.5 parent: 1 - - uid: 2953 + - uid: 8322 components: - type: Transform - pos: -9.5,-101.5 + pos: -13.5,-119.5 parent: 1 - - uid: 2956 + - uid: 8323 components: - type: Transform - pos: -3.5,-103.5 + pos: -14.5,-118.5 parent: 1 - - uid: 2964 + - uid: 8324 components: - type: Transform - pos: 0.5,-103.5 + pos: -14.5,-117.5 parent: 1 - - uid: 2968 + - uid: 8325 components: - type: Transform - pos: 1.5,-103.5 + pos: -14.5,-116.5 parent: 1 - - uid: 2973 + - uid: 8327 components: - type: Transform - pos: 2.5,-103.5 + rot: 1.5707963267948966 rad + pos: -16.5,-120.5 parent: 1 - - uid: 2977 + - uid: 8328 components: - type: Transform - pos: -9.5,-102.5 + rot: 1.5707963267948966 rad + pos: -17.5,-120.5 parent: 1 - - uid: 3033 + - uid: 8329 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-35.5 + pos: -14.5,-115.5 parent: 1 - - uid: 3035 + - uid: 8332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-37.5 + pos: -17.5,-112.5 parent: 1 - - uid: 3037 + - uid: 8333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-39.5 + pos: -18.5,-112.5 parent: 1 - - uid: 3038 + - uid: 8337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-39.5 + pos: -17.5,-118.5 parent: 1 - - uid: 3039 + - uid: 8339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-38.5 + rot: 1.5707963267948966 rad + pos: -21.5,-120.5 parent: 1 - - uid: 3064 + - uid: 8340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-45.5 + pos: -17.5,-116.5 parent: 1 - - uid: 3065 + - uid: 8341 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-46.5 + pos: -17.5,-114.5 parent: 1 - - uid: 3067 + - uid: 8342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-45.5 + pos: -19.5,-118.5 parent: 1 - - uid: 3068 + - uid: 8343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-43.5 + pos: -19.5,-116.5 parent: 1 - - uid: 3070 + - uid: 8344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-43.5 + pos: -22.5,-112.5 parent: 1 - - uid: 3073 + - uid: 8345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 + rot: 1.5707963267948966 rad + pos: -23.5,-120.5 parent: 1 - - uid: 3074 + - uid: 8346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-44.5 + rot: 1.5707963267948966 rad + pos: -22.5,-120.5 parent: 1 - - uid: 3076 + - uid: 8348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-40.5 + rot: 1.5707963267948966 rad + pos: -24.5,-120.5 parent: 1 - - uid: 3080 + - uid: 8349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-44.5 + pos: -22.5,-119.5 parent: 1 - - uid: 3081 + - uid: 8350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-45.5 + pos: -22.5,-118.5 parent: 1 - - uid: 3105 + - uid: 8351 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-48.5 + pos: -22.5,-117.5 parent: 1 - - uid: 3106 + - uid: 8352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-48.5 + pos: -22.5,-116.5 parent: 1 - - uid: 3108 + - uid: 8353 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-48.5 + rot: 1.5707963267948966 rad + pos: -25.5,-120.5 parent: 1 - - uid: 3109 + - uid: 8354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-48.5 + pos: -22.5,-115.5 parent: 1 - - uid: 3113 + - uid: 8355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-48.5 + pos: -22.5,-114.5 parent: 1 - - uid: 3114 + - uid: 8356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-48.5 + pos: -22.5,-113.5 parent: 1 - - uid: 3173 + - uid: 8360 components: - type: Transform - pos: 5.5,-103.5 + rot: 1.5707963267948966 rad + pos: -18.5,-120.5 parent: 1 - - uid: 3186 + - uid: 8361 components: - type: Transform - pos: 8.5,-96.5 + rot: 1.5707963267948966 rad + pos: -19.5,-120.5 parent: 1 - - uid: 3450 + - uid: 8364 components: - type: Transform - pos: 8.5,-93.5 + pos: -17.5,-119.5 parent: 1 - - uid: 3456 + - uid: 8365 components: - type: Transform - pos: 8.5,-92.5 + pos: -17.5,-117.5 parent: 1 - - uid: 3460 + - uid: 8366 components: - type: Transform - pos: 8.5,-95.5 + pos: -17.5,-115.5 parent: 1 - - uid: 3492 + - uid: 8368 components: - type: Transform - pos: -9.5,-97.5 + pos: -17.5,-113.5 parent: 1 - - uid: 5250 + - uid: 8396 components: - type: Transform - pos: -16.5,-75.5 + pos: -19.5,-117.5 parent: 1 - - uid: 5264 + - uid: 8409 components: - type: Transform - pos: -15.5,-75.5 + pos: -19.5,-115.5 parent: 1 - - uid: 5279 + - uid: 8494 components: - type: Transform - pos: -14.5,-75.5 + rot: 1.5707963267948966 rad + pos: -34.5,-85.5 parent: 1 - - uid: 5295 + - uid: 8495 components: - type: Transform - pos: -13.5,-75.5 + rot: 1.5707963267948966 rad + pos: -33.5,-85.5 parent: 1 - - uid: 5312 + - uid: 8497 components: - type: Transform - pos: -12.5,-75.5 + rot: -1.5707963267948966 rad + pos: -32.5,-87.5 parent: 1 - - uid: 5463 + - uid: 8501 components: - type: Transform - pos: -8.5,-76.5 + rot: -1.5707963267948966 rad + pos: -30.5,-87.5 parent: 1 - - uid: 5465 + - uid: 8502 components: - type: Transform - pos: -9.5,-76.5 + rot: -1.5707963267948966 rad + pos: -30.5,-85.5 parent: 1 - - uid: 5472 + - uid: 8505 components: - type: Transform - pos: -17.5,-76.5 + rot: -1.5707963267948966 rad + pos: -32.5,-85.5 parent: 1 - - uid: 5482 + - uid: 8507 components: - type: Transform - pos: -17.5,-79.5 + rot: -1.5707963267948966 rad + pos: -31.5,-85.5 parent: 1 - - uid: 5556 + - uid: 8521 components: - type: Transform - pos: -11.5,-93.5 + rot: 1.5707963267948966 rad + pos: -36.5,-76.5 parent: 1 - - uid: 5571 + - uid: 8634 components: - type: Transform - pos: -18.5,-86.5 + rot: 1.5707963267948966 rad + pos: -36.5,-75.5 parent: 1 - - uid: 5572 + - uid: 8815 components: - type: Transform - pos: -12.5,-93.5 + rot: 1.5707963267948966 rad + pos: -36.5,-77.5 parent: 1 - - uid: 5586 + - uid: 8877 components: - type: Transform - pos: -18.5,-90.5 + rot: 1.5707963267948966 rad + pos: -36.5,-14.5 parent: 1 - - uid: 5587 + - uid: 8878 components: - type: Transform - pos: -18.5,-88.5 + rot: 1.5707963267948966 rad + pos: -36.5,-15.5 parent: 1 - - uid: 5661 + - uid: 8879 components: - type: Transform - pos: -17.5,-80.5 + rot: 1.5707963267948966 rad + pos: -36.5,-16.5 parent: 1 - - uid: 5750 + - uid: 8880 components: - type: Transform - pos: -17.5,-93.5 + rot: 1.5707963267948966 rad + pos: -36.5,-17.5 parent: 1 - - uid: 5753 + - uid: 8882 components: - type: Transform - pos: -19.5,-83.5 + rot: 1.5707963267948966 rad + pos: -36.5,-18.5 parent: 1 - - uid: 5773 + - uid: 8883 components: - type: Transform - pos: -19.5,-81.5 + rot: 1.5707963267948966 rad + pos: -36.5,-19.5 parent: 1 - - uid: 5882 + - uid: 8886 components: - type: Transform - pos: 14.5,-88.5 + rot: 1.5707963267948966 rad + pos: -36.5,-20.5 parent: 1 - - uid: 5936 + - uid: 8887 components: - type: Transform - pos: 14.5,-92.5 + rot: 1.5707963267948966 rad + pos: -36.5,-21.5 parent: 1 - - uid: 5939 + - uid: 8889 components: - type: Transform - pos: 14.5,-100.5 + rot: 1.5707963267948966 rad + pos: -36.5,-22.5 parent: 1 - - uid: 5946 + - uid: 8996 components: - type: Transform - pos: 14.5,-84.5 + rot: 1.5707963267948966 rad + pos: -36.5,-23.5 parent: 1 - - uid: 5948 + - uid: 8997 components: - type: Transform - pos: 14.5,-96.5 + rot: 1.5707963267948966 rad + pos: -36.5,-24.5 parent: 1 - - uid: 5949 + - uid: 8998 components: - type: Transform - pos: 13.5,-96.5 + rot: 1.5707963267948966 rad + pos: -36.5,-25.5 parent: 1 - - uid: 5970 + - uid: 9009 components: - type: Transform - pos: 15.5,-101.5 + rot: 1.5707963267948966 rad + pos: -36.5,-26.5 parent: 1 - - uid: 5972 + - uid: 9010 components: - type: Transform - pos: 15.5,-102.5 + rot: 1.5707963267948966 rad + pos: -36.5,-27.5 parent: 1 - - uid: 5978 + - uid: 9023 components: - type: Transform - pos: 15.5,-90.5 + rot: 1.5707963267948966 rad + pos: -36.5,-28.5 parent: 1 - - uid: 5979 + - uid: 9025 components: - type: Transform - pos: 15.5,-82.5 + rot: 1.5707963267948966 rad + pos: -36.5,-29.5 parent: 1 - - uid: 5980 + - uid: 9033 components: - type: Transform - pos: 15.5,-84.5 + rot: 1.5707963267948966 rad + pos: -36.5,-30.5 parent: 1 - - uid: 5984 + - uid: 9035 components: - type: Transform - pos: 15.5,-87.5 + rot: 1.5707963267948966 rad + pos: -36.5,-31.5 parent: 1 - - uid: 6487 + - uid: 9044 components: - type: Transform - pos: 12.5,-103.5 + rot: 1.5707963267948966 rad + pos: -36.5,-32.5 parent: 1 - - uid: 6515 + - uid: 9045 components: - type: Transform - pos: 15.5,-96.5 + rot: 1.5707963267948966 rad + pos: -36.5,-33.5 parent: 1 - - uid: 6523 + - uid: 9046 components: - type: Transform - pos: 15.5,-92.5 + rot: 1.5707963267948966 rad + pos: -36.5,-34.5 parent: 1 - - uid: 10014 + - uid: 9047 components: - type: Transform - pos: 1.5,-18.5 + rot: 1.5707963267948966 rad + pos: -36.5,-35.5 parent: 1 - - uid: 10092 + - uid: 9048 components: - type: Transform - pos: 1.5,-19.5 + rot: 1.5707963267948966 rad + pos: -36.5,-36.5 parent: 1 -- proto: WallRockBasalt - entities: - - uid: 814 + - uid: 9049 components: - type: Transform - pos: -9.5,-111.5 + rot: 1.5707963267948966 rad + pos: -36.5,-37.5 parent: 1 - - uid: 820 + - uid: 9050 components: - type: Transform - pos: -26.5,-94.5 + rot: 1.5707963267948966 rad + pos: -36.5,-38.5 parent: 1 - - uid: 7534 + - uid: 9051 components: - type: Transform - pos: -9.5,-35.5 + rot: 1.5707963267948966 rad + pos: -36.5,-39.5 parent: 1 - - uid: 7535 + - uid: 9052 components: - type: Transform - pos: -14.5,-58.5 + rot: 1.5707963267948966 rad + pos: -36.5,-40.5 parent: 1 - - uid: 7555 + - uid: 9053 components: - type: Transform - pos: -8.5,-35.5 + rot: 1.5707963267948966 rad + pos: -36.5,-41.5 parent: 1 - - uid: 7583 + - uid: 9054 components: - type: Transform - pos: -7.5,-35.5 + rot: 1.5707963267948966 rad + pos: -36.5,-42.5 parent: 1 - - uid: 10091 + - uid: 9055 components: - type: Transform - pos: 18.5,-103.5 + rot: 1.5707963267948966 rad + pos: -36.5,-43.5 parent: 1 - - uid: 10196 + - uid: 9056 components: - type: Transform - pos: -27.5,-94.5 + rot: 1.5707963267948966 rad + pos: -36.5,-44.5 parent: 1 - - uid: 10197 + - uid: 9057 components: - type: Transform - pos: -27.5,-93.5 + rot: 1.5707963267948966 rad + pos: -36.5,-45.5 parent: 1 - - uid: 10198 + - uid: 9058 components: - type: Transform - pos: -32.5,-126.5 + rot: 1.5707963267948966 rad + pos: -36.5,-46.5 parent: 1 - - uid: 10235 + - uid: 9059 components: - type: Transform - pos: -2.5,-107.5 + rot: 1.5707963267948966 rad + pos: -36.5,-47.5 parent: 1 - - uid: 10236 + - uid: 9060 components: - type: Transform - pos: -12.5,-67.5 + rot: 1.5707963267948966 rad + pos: -36.5,-48.5 parent: 1 - - uid: 10274 + - uid: 9061 components: - type: Transform - pos: -14.5,-57.5 + rot: 1.5707963267948966 rad + pos: -36.5,-49.5 parent: 1 -- proto: WallRockBasaltBananium - entities: - - uid: 755 + - uid: 9062 components: - type: Transform - pos: -18.5,-13.5 + rot: 1.5707963267948966 rad + pos: -36.5,-50.5 parent: 1 - - uid: 759 + - uid: 9063 components: - type: Transform - pos: -21.5,-13.5 + rot: 1.5707963267948966 rad + pos: -36.5,-51.5 parent: 1 - - uid: 2617 + - uid: 9064 components: - type: Transform - pos: -21.5,-14.5 + rot: 1.5707963267948966 rad + pos: -36.5,-52.5 parent: 1 - - uid: 2636 + - uid: 9065 components: - type: Transform - pos: -21.5,-12.5 + rot: 1.5707963267948966 rad + pos: -36.5,-53.5 parent: 1 - - uid: 3414 + - uid: 9114 components: - type: Transform - pos: -20.5,-12.5 + rot: 1.5707963267948966 rad + pos: -36.5,-54.5 parent: 1 - - uid: 3415 + - uid: 9115 components: - type: Transform - pos: -19.5,-12.5 + rot: 1.5707963267948966 rad + pos: -36.5,-55.5 parent: 1 - - uid: 3416 + - uid: 9116 components: - type: Transform - pos: -18.5,-12.5 + rot: 1.5707963267948966 rad + pos: -36.5,-56.5 parent: 1 - - uid: 3417 + - uid: 9117 components: - type: Transform - pos: -17.5,-14.5 + rot: 1.5707963267948966 rad + pos: -36.5,-57.5 parent: 1 - - uid: 4297 + - uid: 9118 components: - type: Transform - pos: -15.5,-13.5 + rot: 1.5707963267948966 rad + pos: -36.5,-58.5 parent: 1 - - uid: 4299 + - uid: 9119 components: - type: Transform - pos: -15.5,-16.5 + rot: 1.5707963267948966 rad + pos: -36.5,-59.5 parent: 1 - - uid: 4300 + - uid: 9120 components: - type: Transform - pos: -15.5,-18.5 + rot: 1.5707963267948966 rad + pos: -36.5,-60.5 parent: 1 - - uid: 4304 + - uid: 9121 components: - type: Transform - pos: -15.5,-22.5 + rot: 1.5707963267948966 rad + pos: -36.5,-61.5 parent: 1 - - uid: 4312 + - uid: 9122 components: - type: Transform - pos: -15.5,-25.5 + rot: 1.5707963267948966 rad + pos: -36.5,-62.5 parent: 1 - - uid: 4313 + - uid: 9123 components: - type: Transform - pos: -15.5,-27.5 + rot: 1.5707963267948966 rad + pos: -36.5,-63.5 parent: 1 - - uid: 4314 + - uid: 9124 components: - type: Transform - pos: -15.5,-28.5 + rot: 1.5707963267948966 rad + pos: -36.5,-64.5 parent: 1 - - uid: 4315 + - uid: 9125 components: - type: Transform - pos: -15.5,-29.5 + rot: 1.5707963267948966 rad + pos: -36.5,-65.5 parent: 1 - - uid: 4316 + - uid: 9126 components: - type: Transform - pos: -15.5,-30.5 + rot: 1.5707963267948966 rad + pos: -36.5,-66.5 parent: 1 - - uid: 4317 + - uid: 9127 components: - type: Transform - pos: -15.5,-32.5 + rot: 1.5707963267948966 rad + pos: -36.5,-67.5 parent: 1 - - uid: 4319 + - uid: 9128 components: - type: Transform - pos: -15.5,-33.5 + rot: 1.5707963267948966 rad + pos: -36.5,-68.5 parent: 1 - - uid: 4320 + - uid: 9129 components: - type: Transform - pos: -15.5,-34.5 + rot: 1.5707963267948966 rad + pos: -36.5,-69.5 parent: 1 - - uid: 4323 + - uid: 9130 components: - type: Transform - pos: -16.5,-18.5 + rot: 1.5707963267948966 rad + pos: -36.5,-70.5 parent: 1 - - uid: 4324 + - uid: 9131 components: - type: Transform - pos: -16.5,-22.5 + rot: 1.5707963267948966 rad + pos: -36.5,-71.5 parent: 1 - - uid: 4325 + - uid: 9132 components: - type: Transform - pos: -16.5,-25.5 + rot: 1.5707963267948966 rad + pos: -36.5,-72.5 parent: 1 - - uid: 4326 + - uid: 9133 components: - type: Transform - pos: -16.5,-27.5 + rot: 1.5707963267948966 rad + pos: -36.5,-73.5 parent: 1 - - uid: 4327 + - uid: 9134 components: - type: Transform - pos: -16.5,-30.5 + rot: 1.5707963267948966 rad + pos: -36.5,-74.5 parent: 1 - - uid: 4340 + - uid: 9453 components: - type: Transform - pos: -16.5,-32.5 + rot: -1.5707963267948966 rad + pos: -32.5,-91.5 parent: 1 - - uid: 4453 + - uid: 9454 components: - type: Transform - pos: -17.5,-18.5 + rot: -1.5707963267948966 rad + pos: -32.5,-92.5 parent: 1 - - uid: 4454 + - uid: 9455 components: - type: Transform - pos: -17.5,-22.5 + rot: -1.5707963267948966 rad + pos: -32.5,-93.5 parent: 1 - - uid: 4455 + - uid: 9456 components: - type: Transform - pos: -17.5,-23.5 + rot: -1.5707963267948966 rad + pos: -32.5,-94.5 parent: 1 - - uid: 4457 + - uid: 9554 components: - type: Transform - pos: -17.5,-25.5 + rot: 3.141592653589793 rad + pos: -30.5,-104.5 parent: 1 - - uid: 4458 + - uid: 9556 components: - type: Transform - pos: -17.5,-27.5 + rot: 3.141592653589793 rad + pos: -30.5,-106.5 parent: 1 - - uid: 4459 + - uid: 9562 components: - type: Transform - pos: -17.5,-30.5 + rot: 3.141592653589793 rad + pos: -29.5,-104.5 parent: 1 - - uid: 4460 + - uid: 9564 components: - type: Transform - pos: -17.5,-32.5 + rot: 3.141592653589793 rad + pos: -29.5,-106.5 parent: 1 - - uid: 4465 + - uid: 9669 components: - type: Transform - pos: -18.5,-18.5 + rot: 1.5707963267948966 rad + pos: -38.5,-14.5 parent: 1 - - uid: 4470 + - uid: 9670 components: - type: Transform - pos: -18.5,-22.5 + rot: 1.5707963267948966 rad + pos: -38.5,-15.5 parent: 1 - - uid: 4476 + - uid: 9671 components: - type: Transform - pos: -18.5,-23.5 + rot: 1.5707963267948966 rad + pos: -38.5,-16.5 parent: 1 - - uid: 4478 + - uid: 9672 components: - type: Transform - pos: -18.5,-25.5 + rot: 1.5707963267948966 rad + pos: -38.5,-17.5 parent: 1 - - uid: 4483 + - uid: 9673 components: - type: Transform - pos: -18.5,-27.5 + rot: 1.5707963267948966 rad + pos: -38.5,-18.5 parent: 1 - - uid: 4489 + - uid: 9674 components: - type: Transform - pos: -18.5,-30.5 + rot: 1.5707963267948966 rad + pos: -38.5,-19.5 parent: 1 - - uid: 4491 + - uid: 9675 components: - type: Transform - pos: -18.5,-32.5 + rot: 1.5707963267948966 rad + pos: -38.5,-20.5 parent: 1 - - uid: 4500 + - uid: 9676 components: - type: Transform - pos: -18.5,-33.5 + rot: 1.5707963267948966 rad + pos: -38.5,-21.5 parent: 1 - - uid: 4505 + - uid: 9677 components: - type: Transform - pos: -18.5,-34.5 + rot: 1.5707963267948966 rad + pos: -38.5,-22.5 parent: 1 - - uid: 4508 + - uid: 9678 components: - type: Transform - pos: -19.5,-18.5 + rot: 1.5707963267948966 rad + pos: -38.5,-23.5 parent: 1 - - uid: 4511 + - uid: 9679 components: - type: Transform - pos: -19.5,-22.5 + rot: 1.5707963267948966 rad + pos: -38.5,-24.5 parent: 1 - - uid: 4513 + - uid: 9680 components: - type: Transform - pos: -19.5,-24.5 + rot: 1.5707963267948966 rad + pos: -38.5,-25.5 parent: 1 - - uid: 4515 + - uid: 9681 components: - type: Transform - pos: -19.5,-25.5 + rot: 1.5707963267948966 rad + pos: -38.5,-26.5 parent: 1 - - uid: 4517 + - uid: 9682 components: - type: Transform - pos: -19.5,-27.5 + rot: 1.5707963267948966 rad + pos: -38.5,-27.5 parent: 1 - - uid: 4522 + - uid: 9683 components: - type: Transform - pos: -19.5,-30.5 + rot: 1.5707963267948966 rad + pos: -38.5,-28.5 parent: 1 - - uid: 4531 + - uid: 9684 components: - type: Transform - pos: -20.5,-18.5 + rot: 1.5707963267948966 rad + pos: -38.5,-29.5 parent: 1 - - uid: 4532 + - uid: 9685 components: - type: Transform - pos: -20.5,-19.5 + rot: 1.5707963267948966 rad + pos: -38.5,-30.5 parent: 1 - - uid: 4533 + - uid: 9686 components: - type: Transform - pos: -20.5,-22.5 + rot: 1.5707963267948966 rad + pos: -38.5,-31.5 parent: 1 - - uid: 4535 + - uid: 9687 components: - type: Transform - pos: -20.5,-24.5 + rot: 1.5707963267948966 rad + pos: -38.5,-32.5 parent: 1 - - uid: 4536 + - uid: 9688 components: - type: Transform - pos: -20.5,-25.5 + rot: 1.5707963267948966 rad + pos: -38.5,-33.5 parent: 1 - - uid: 4537 + - uid: 9689 components: - type: Transform - pos: -20.5,-27.5 + rot: 1.5707963267948966 rad + pos: -38.5,-34.5 parent: 1 - - uid: 4538 + - uid: 9690 components: - type: Transform - pos: -20.5,-30.5 + rot: 1.5707963267948966 rad + pos: -38.5,-35.5 parent: 1 - - uid: 4577 + - uid: 9691 components: - type: Transform - pos: -20.5,-35.5 + rot: 1.5707963267948966 rad + pos: -38.5,-36.5 parent: 1 - - uid: 4578 + - uid: 9749 components: - type: Transform - pos: -20.5,-37.5 + rot: 1.5707963267948966 rad + pos: -38.5,-37.5 parent: 1 - - uid: 4579 + - uid: 9780 components: - type: Transform - pos: -20.5,-38.5 + rot: 1.5707963267948966 rad + pos: -38.5,-38.5 parent: 1 - - uid: 4581 + - uid: 9781 components: - type: Transform - pos: -20.5,-40.5 + rot: 1.5707963267948966 rad + pos: -38.5,-39.5 parent: 1 - - uid: 4584 + - uid: 9782 components: - type: Transform - pos: -20.5,-43.5 + rot: 1.5707963267948966 rad + pos: -38.5,-40.5 parent: 1 - - uid: 4586 + - uid: 9783 components: - type: Transform - pos: -20.5,-45.5 + rot: 1.5707963267948966 rad + pos: -38.5,-41.5 parent: 1 - - uid: 4591 + - uid: 9784 components: - type: Transform - pos: -20.5,-48.5 + rot: 1.5707963267948966 rad + pos: -38.5,-42.5 parent: 1 - - uid: 4592 + - uid: 9785 components: - type: Transform - pos: -19.5,-35.5 + rot: 1.5707963267948966 rad + pos: -38.5,-43.5 parent: 1 - - uid: 4596 + - uid: 9786 components: - type: Transform - pos: -19.5,-48.5 + rot: 1.5707963267948966 rad + pos: -38.5,-44.5 parent: 1 - - uid: 4599 + - uid: 9787 components: - type: Transform - pos: -18.5,-35.5 + rot: 1.5707963267948966 rad + pos: -38.5,-45.5 parent: 1 - - uid: 4604 + - uid: 9788 components: - type: Transform - pos: -18.5,-37.5 + rot: 1.5707963267948966 rad + pos: -38.5,-46.5 parent: 1 - - uid: 4609 + - uid: 9789 components: - type: Transform - pos: -18.5,-38.5 + rot: 1.5707963267948966 rad + pos: -38.5,-47.5 parent: 1 - - uid: 4685 + - uid: 9790 components: - type: Transform - pos: -18.5,-41.5 + rot: 1.5707963267948966 rad + pos: -38.5,-48.5 parent: 1 - - uid: 4687 + - uid: 9791 components: - type: Transform - pos: -19.5,-40.5 + rot: 1.5707963267948966 rad + pos: -38.5,-49.5 parent: 1 - - uid: 4689 + - uid: 9792 components: - type: Transform - pos: -19.5,-41.5 + rot: 1.5707963267948966 rad + pos: -38.5,-50.5 parent: 1 - - uid: 4690 + - uid: 9793 components: - type: Transform - pos: -19.5,-42.5 + rot: 1.5707963267948966 rad + pos: -38.5,-51.5 parent: 1 - - uid: 4691 + - uid: 9794 components: - type: Transform - pos: -19.5,-43.5 + rot: 1.5707963267948966 rad + pos: -38.5,-52.5 parent: 1 - - uid: 4692 + - uid: 9795 components: - type: Transform - pos: -19.5,-45.5 + rot: 1.5707963267948966 rad + pos: -38.5,-53.5 parent: 1 - - uid: 4696 + - uid: 9796 components: - type: Transform - pos: -18.5,-43.5 + rot: 1.5707963267948966 rad + pos: -38.5,-54.5 parent: 1 - - uid: 4701 + - uid: 9797 components: - type: Transform - pos: -18.5,-45.5 + rot: 1.5707963267948966 rad + pos: -38.5,-55.5 parent: 1 - - uid: 4705 + - uid: 9798 components: - type: Transform - pos: -18.5,-46.5 + rot: 1.5707963267948966 rad + pos: -38.5,-56.5 parent: 1 - - uid: 4710 + - uid: 9799 components: - type: Transform - pos: -18.5,-47.5 + rot: 1.5707963267948966 rad + pos: -38.5,-57.5 parent: 1 - - uid: 4712 + - uid: 9800 components: - type: Transform - pos: -18.5,-48.5 + rot: 1.5707963267948966 rad + pos: -38.5,-58.5 parent: 1 - - uid: 4713 + - uid: 9801 components: - type: Transform - pos: -17.5,-37.5 + rot: 1.5707963267948966 rad + pos: -38.5,-59.5 parent: 1 - - uid: 4714 + - uid: 9802 components: - type: Transform - pos: -17.5,-38.5 + rot: 1.5707963267948966 rad + pos: -38.5,-60.5 parent: 1 - - uid: 4716 + - uid: 9803 components: - type: Transform - pos: -17.5,-40.5 + rot: 1.5707963267948966 rad + pos: -38.5,-61.5 parent: 1 - - uid: 4717 + - uid: 9804 components: - type: Transform - pos: -17.5,-43.5 + rot: 1.5707963267948966 rad + pos: -38.5,-62.5 parent: 1 - - uid: 4719 + - uid: 9805 components: - type: Transform - pos: -17.5,-48.5 + rot: 1.5707963267948966 rad + pos: -38.5,-63.5 parent: 1 - - uid: 4723 + - uid: 9806 components: - type: Transform - pos: -16.5,-37.5 + rot: 1.5707963267948966 rad + pos: -38.5,-64.5 parent: 1 - - uid: 4725 + - uid: 9893 components: - type: Transform - pos: -16.5,-38.5 + rot: 1.5707963267948966 rad + pos: -38.5,-65.5 parent: 1 - - uid: 4732 + - uid: 9894 components: - type: Transform - pos: -16.5,-40.5 + rot: 1.5707963267948966 rad + pos: -38.5,-66.5 parent: 1 - - uid: 4734 + - uid: 9895 components: - type: Transform - pos: -16.5,-43.5 + rot: 1.5707963267948966 rad + pos: -38.5,-67.5 parent: 1 - - uid: 4743 + - uid: 9896 components: - type: Transform - pos: -16.5,-48.5 + rot: 1.5707963267948966 rad + pos: -38.5,-68.5 parent: 1 - - uid: 4744 + - uid: 9897 components: - type: Transform - pos: -15.5,-35.5 + rot: 1.5707963267948966 rad + pos: -38.5,-69.5 parent: 1 - - uid: 4745 + - uid: 9898 components: - type: Transform - pos: -15.5,-37.5 + rot: 1.5707963267948966 rad + pos: -38.5,-70.5 parent: 1 - - uid: 4746 + - uid: 9899 components: - type: Transform - pos: -15.5,-38.5 + rot: 1.5707963267948966 rad + pos: -38.5,-71.5 parent: 1 - - uid: 5033 + - uid: 9900 components: - type: Transform - pos: -15.5,-40.5 + rot: 1.5707963267948966 rad + pos: -38.5,-72.5 parent: 1 - - uid: 5045 + - uid: 9901 components: - type: Transform - pos: -15.5,-43.5 + rot: 1.5707963267948966 rad + pos: -38.5,-73.5 parent: 1 - - uid: 5093 + - uid: 9902 components: - type: Transform - pos: -15.5,-48.5 + rot: 1.5707963267948966 rad + pos: -38.5,-74.5 parent: 1 - - uid: 5774 + - uid: 9903 components: - type: Transform - pos: -16.5,-14.5 + rot: 1.5707963267948966 rad + pos: -38.5,-75.5 parent: 1 - - uid: 6144 + - uid: 9904 components: - type: Transform - pos: -15.5,-14.5 + rot: 1.5707963267948966 rad + pos: -38.5,-76.5 parent: 1 - - uid: 6145 + - uid: 9905 components: - type: Transform - pos: -15.5,-12.5 + rot: 1.5707963267948966 rad + pos: -38.5,-77.5 parent: 1 - - uid: 7480 + - uid: 9906 components: - type: Transform - pos: -21.5,-18.5 + rot: 1.5707963267948966 rad + pos: -38.5,-78.5 parent: 1 - - uid: 7484 + - uid: 9907 components: - type: Transform - pos: -21.5,-22.5 + rot: 1.5707963267948966 rad + pos: -38.5,-79.5 parent: 1 - - uid: 7487 + - uid: 9908 components: - type: Transform - pos: -21.5,-25.5 + rot: 1.5707963267948966 rad + pos: -38.5,-80.5 parent: 1 - - uid: 7489 + - uid: 9909 components: - type: Transform - pos: -21.5,-27.5 + rot: 1.5707963267948966 rad + pos: -38.5,-81.5 parent: 1 - - uid: 7490 + - uid: 9910 components: - type: Transform - pos: -21.5,-28.5 + rot: 1.5707963267948966 rad + pos: -38.5,-82.5 parent: 1 - - uid: 7491 + - uid: 9911 components: - type: Transform - pos: -21.5,-29.5 + rot: 1.5707963267948966 rad + pos: -38.5,-83.5 parent: 1 - - uid: 7492 + - uid: 9912 components: - type: Transform - pos: -21.5,-30.5 + rot: 1.5707963267948966 rad + pos: -38.5,-84.5 parent: 1 - - uid: 7494 + - uid: 9913 components: - type: Transform - pos: -21.5,-32.5 + rot: 1.5707963267948966 rad + pos: -38.5,-85.5 parent: 1 - - uid: 7495 + - uid: 9914 components: - type: Transform - pos: -21.5,-33.5 + rot: 1.5707963267948966 rad + pos: -38.5,-86.5 parent: 1 - - uid: 7496 + - uid: 9915 components: - type: Transform - pos: -21.5,-34.5 + rot: 1.5707963267948966 rad + pos: -38.5,-87.5 parent: 1 - - uid: 7497 + - uid: 10014 components: - type: Transform - pos: -21.5,-35.5 + pos: 1.5,-18.5 parent: 1 - - uid: 7499 + - uid: 10092 components: - type: Transform - pos: -21.5,-37.5 + pos: 1.5,-19.5 parent: 1 - - uid: 7500 + - uid: 10204 components: - type: Transform - pos: -21.5,-38.5 + rot: 1.5707963267948966 rad + pos: -37.5,-87.5 parent: 1 - - uid: 7502 + - uid: 10217 components: - type: Transform - pos: -21.5,-40.5 + pos: 24.5,-107.5 parent: 1 - - uid: 7503 + - uid: 10227 components: - type: Transform - pos: -21.5,-41.5 + pos: 24.5,-109.5 parent: 1 - - uid: 7504 + - uid: 10233 components: - type: Transform - pos: -21.5,-42.5 + pos: 24.5,-110.5 parent: 1 - - uid: 7505 + - uid: 10234 components: - type: Transform - pos: -21.5,-43.5 + pos: 24.5,-111.5 parent: 1 - - uid: 7507 + - uid: 10235 components: - type: Transform - pos: -21.5,-45.5 + pos: 24.5,-112.5 parent: 1 - - uid: 7508 + - uid: 10236 components: - type: Transform - pos: -21.5,-46.5 + pos: 24.5,-113.5 parent: 1 - - uid: 7509 + - uid: 10238 components: - type: Transform - pos: -21.5,-47.5 + pos: 24.5,-115.5 parent: 1 - - uid: 7510 + - uid: 10239 components: - type: Transform - pos: -21.5,-48.5 + pos: 24.5,-116.5 parent: 1 - - uid: 7682 + - uid: 10241 components: - type: Transform - pos: -26.5,-113.5 + pos: 24.5,-118.5 parent: 1 - - uid: 7683 + - uid: 10242 components: - type: Transform - pos: -26.5,-114.5 + pos: 24.5,-119.5 parent: 1 - - uid: 7684 + - uid: 10244 components: - type: Transform - pos: -26.5,-115.5 + pos: 24.5,-121.5 parent: 1 - - uid: 7685 + - uid: 10249 components: - type: Transform - pos: -26.5,-116.5 + rot: 3.141592653589793 rad + pos: 25.5,-104.5 parent: 1 - - uid: 7686 + - uid: 10251 components: - type: Transform - pos: -26.5,-117.5 + pos: 25.5,-112.5 parent: 1 - - uid: 7687 + - uid: 10252 components: - type: Transform - pos: -26.5,-118.5 + pos: 25.5,-113.5 parent: 1 - - uid: 7688 + - uid: 10253 components: - type: Transform - pos: -26.5,-119.5 + pos: 45.5,-121.5 parent: 1 - - uid: 7691 + - uid: 10254 components: - type: Transform - pos: -25.5,-113.5 + pos: 25.5,-115.5 parent: 1 - - uid: 7697 + - uid: 10255 components: - type: Transform - pos: -25.5,-119.5 + pos: 25.5,-116.5 parent: 1 - - uid: 7700 + - uid: 10256 components: - type: Transform - pos: -24.5,-113.5 + pos: 45.5,-109.5 parent: 1 - - uid: 7706 + - uid: 10266 components: - type: Transform - pos: -24.5,-119.5 + pos: 25.5,-118.5 parent: 1 - - uid: 7710 + - uid: 10268 components: - type: Transform - pos: -23.5,-114.5 + pos: 25.5,-119.5 parent: 1 - - uid: 7711 + - uid: 10275 components: - type: Transform - pos: -23.5,-115.5 + pos: 25.5,-121.5 parent: 1 - - uid: 7712 + - uid: 10276 components: - type: Transform - pos: -23.5,-116.5 + pos: 26.5,-76.5 parent: 1 - - uid: 7713 + - uid: 10277 components: - type: Transform - pos: -23.5,-117.5 + pos: 26.5,-77.5 parent: 1 - - uid: 7714 + - uid: 10279 components: - type: Transform - pos: -23.5,-118.5 + pos: 26.5,-79.5 parent: 1 - - uid: 7727 + - uid: 10280 components: - type: Transform - pos: -21.5,-113.5 + rot: 3.141592653589793 rad + pos: 26.5,-104.5 parent: 1 - - uid: 7728 + - uid: 10281 components: - type: Transform - pos: -21.5,-114.5 + pos: 26.5,-108.5 parent: 1 - - uid: 7729 + - uid: 10282 components: - type: Transform - pos: -21.5,-115.5 + pos: 26.5,-109.5 parent: 1 - - uid: 7730 + - uid: 10283 components: - type: Transform - pos: -21.5,-116.5 + pos: 26.5,-110.5 parent: 1 - - uid: 7731 + - uid: 10284 components: - type: Transform - pos: -21.5,-117.5 + pos: 26.5,-112.5 parent: 1 - - uid: 7732 + - uid: 10286 components: - type: Transform - pos: -21.5,-118.5 + pos: 26.5,-113.5 parent: 1 - - uid: 7733 + - uid: 10291 components: - type: Transform - pos: -21.5,-119.5 + pos: 26.5,-115.5 parent: 1 - - uid: 7736 + - uid: 10292 components: - type: Transform - pos: -20.5,-113.5 + pos: 26.5,-116.5 parent: 1 - - uid: 7742 + - uid: 10293 components: - type: Transform - pos: -20.5,-119.5 + pos: 45.5,-108.5 parent: 1 - - uid: 7745 + - uid: 10294 components: - type: Transform - pos: -19.5,-113.5 + pos: 40.5,-115.5 parent: 1 - - uid: 7751 + - uid: 10295 components: - type: Transform - pos: -19.5,-119.5 + pos: 40.5,-116.5 parent: 1 - - uid: 7754 + - uid: 10305 components: - type: Transform - pos: -18.5,-113.5 + pos: 26.5,-121.5 parent: 1 - - uid: 7755 + - uid: 10315 components: - type: Transform - pos: -18.5,-114.5 + rot: 3.141592653589793 rad + pos: 28.5,-91.5 parent: 1 - - uid: 7756 + - uid: 10316 components: - type: Transform - pos: -18.5,-115.5 + rot: 3.141592653589793 rad + pos: 28.5,-106.5 parent: 1 - - uid: 7757 + - uid: 10317 components: - type: Transform - pos: -18.5,-116.5 + rot: 3.141592653589793 rad + pos: 28.5,-92.5 parent: 1 - - uid: 7758 + - uid: 10532 components: - type: Transform - pos: -18.5,-117.5 + rot: 3.141592653589793 rad + pos: 27.5,-97.5 parent: 1 - - uid: 7759 + - uid: 10533 components: - type: Transform - pos: -18.5,-118.5 + rot: 3.141592653589793 rad + pos: 27.5,-98.5 parent: 1 - - uid: 7760 + - uid: 10534 components: - type: Transform - pos: -18.5,-119.5 + rot: 3.141592653589793 rad + pos: 27.5,-99.5 parent: 1 - - uid: 7772 + - uid: 10535 components: - type: Transform - pos: -16.5,-113.5 + rot: 3.141592653589793 rad + pos: 27.5,-100.5 parent: 1 - - uid: 7773 + - uid: 10586 components: - type: Transform - pos: -16.5,-114.5 + rot: 3.141592653589793 rad + pos: 27.5,-101.5 parent: 1 - - uid: 7774 + - uid: 10587 components: - type: Transform - pos: -16.5,-115.5 + rot: 3.141592653589793 rad + pos: 27.5,-102.5 parent: 1 - - uid: 7775 + - uid: 10588 components: - type: Transform - pos: -16.5,-116.5 + rot: 3.141592653589793 rad + pos: 27.5,-103.5 parent: 1 - - uid: 7776 + - uid: 10589 components: - type: Transform - pos: -16.5,-117.5 + rot: 3.141592653589793 rad + pos: 27.5,-104.5 parent: 1 - - uid: 7777 + - uid: 10590 components: - type: Transform - pos: -16.5,-118.5 + pos: 27.5,-112.5 parent: 1 - - uid: 7778 + - uid: 10591 components: - type: Transform - pos: -16.5,-119.5 + pos: 27.5,-113.5 parent: 1 - - uid: 7787 + - uid: 10593 components: - type: Transform - pos: -15.5,-119.5 + pos: 27.5,-115.5 parent: 1 - - uid: 7796 + - uid: 10594 components: - type: Transform - pos: -14.5,-119.5 + pos: 27.5,-116.5 parent: 1 - - uid: 7799 + - uid: 10595 components: - type: Transform - pos: -13.5,-113.5 + pos: 27.5,-118.5 parent: 1 - - uid: 7800 + - uid: 10596 components: - type: Transform - pos: -13.5,-114.5 + pos: 27.5,-119.5 parent: 1 - - uid: 7801 + - uid: 10598 components: - type: Transform - pos: -13.5,-115.5 + pos: 27.5,-121.5 parent: 1 - - uid: 7802 + - uid: 10600 components: - type: Transform - pos: -13.5,-116.5 + rot: 3.141592653589793 rad + pos: 28.5,-89.5 parent: 1 - - uid: 7803 + - uid: 10601 components: - type: Transform - pos: -13.5,-117.5 + rot: 3.141592653589793 rad + pos: 28.5,-90.5 parent: 1 - - uid: 7804 + - uid: 10602 components: - type: Transform - pos: -13.5,-118.5 + rot: 3.141592653589793 rad + pos: 28.5,-94.5 parent: 1 - - uid: 7817 + - uid: 10603 components: - type: Transform - pos: -11.5,-113.5 + rot: 3.141592653589793 rad + pos: 28.5,-93.5 parent: 1 - - uid: 7818 + - uid: 10605 components: - type: Transform - pos: -11.5,-114.5 + rot: 3.141592653589793 rad + pos: 28.5,-97.5 parent: 1 - - uid: 7819 + - uid: 10606 components: - type: Transform - pos: -11.5,-115.5 + pos: 28.5,-109.5 parent: 1 - - uid: 7820 + - uid: 10607 components: - type: Transform - pos: -11.5,-116.5 + pos: 28.5,-110.5 parent: 1 - - uid: 7821 + - uid: 10608 components: - type: Transform - pos: -11.5,-117.5 + pos: 28.5,-111.5 parent: 1 - - uid: 7822 + - uid: 10609 components: - type: Transform - pos: -11.5,-118.5 + pos: 28.5,-112.5 parent: 1 - - uid: 7823 + - uid: 10610 components: - type: Transform - pos: -11.5,-119.5 + pos: 28.5,-113.5 parent: 1 - - uid: 7826 + - uid: 10612 components: - type: Transform - pos: -10.5,-113.5 + pos: 28.5,-115.5 parent: 1 - - uid: 7829 + - uid: 10613 components: - type: Transform - pos: -10.5,-116.5 + pos: 28.5,-116.5 parent: 1 - - uid: 7832 + - uid: 10614 components: - type: Transform - pos: -10.5,-119.5 + pos: 45.5,-118.5 parent: 1 - - uid: 7836 + - uid: 10615 components: - type: Transform - pos: -9.5,-114.5 + pos: 28.5,-118.5 parent: 1 - - uid: 7837 + - uid: 10616 components: - type: Transform - pos: -9.5,-115.5 + pos: 28.5,-119.5 parent: 1 - - uid: 7839 + - uid: 10617 components: - type: Transform - pos: -9.5,-117.5 + pos: 45.5,-107.5 parent: 1 - - uid: 7840 + - uid: 10618 components: - type: Transform - pos: -9.5,-118.5 + pos: 28.5,-121.5 parent: 1 - - uid: 7853 + - uid: 10620 components: - type: Transform - pos: -7.5,-113.5 + rot: 3.141592653589793 rad + pos: 29.5,-89.5 parent: 1 - - uid: 7854 + - uid: 10622 components: - type: Transform - pos: -7.5,-114.5 + rot: 3.141592653589793 rad + pos: 28.5,-95.5 parent: 1 - - uid: 7855 + - uid: 10624 components: - type: Transform - pos: -7.5,-115.5 + rot: 3.141592653589793 rad + pos: 30.5,-96.5 parent: 1 - - uid: 7856 + - uid: 10625 components: - type: Transform - pos: -7.5,-116.5 + rot: 3.141592653589793 rad + pos: 30.5,-97.5 parent: 1 - - uid: 7857 + - uid: 10626 components: - type: Transform - pos: -7.5,-117.5 + rot: 3.141592653589793 rad + pos: 31.5,-93.5 parent: 1 - - uid: 7858 + - uid: 10627 components: - type: Transform - pos: -7.5,-118.5 + pos: 29.5,-112.5 parent: 1 - - uid: 7859 + - uid: 10628 components: - type: Transform - pos: -7.5,-119.5 + pos: 29.5,-113.5 parent: 1 - - uid: 7868 + - uid: 10630 components: - type: Transform - pos: -6.5,-119.5 + pos: 44.5,-118.5 parent: 1 - - uid: 7877 + - uid: 10631 components: - type: Transform - pos: -5.5,-119.5 + pos: 44.5,-119.5 parent: 1 - - uid: 7889 + - uid: 10632 components: - type: Transform - pos: -3.5,-113.5 + pos: 45.5,-119.5 parent: 1 - - uid: 7890 + - uid: 10633 components: - type: Transform - pos: -3.5,-114.5 + pos: 29.5,-118.5 parent: 1 - - uid: 7891 + - uid: 10634 components: - type: Transform - pos: -3.5,-115.5 + pos: 29.5,-119.5 parent: 1 - - uid: 7892 + - uid: 10636 components: - type: Transform - pos: -3.5,-116.5 + pos: 29.5,-121.5 parent: 1 - - uid: 7893 + - uid: 10638 components: - type: Transform - pos: -3.5,-117.5 + rot: 3.141592653589793 rad + pos: 30.5,-89.5 parent: 1 - - uid: 7894 + - uid: 10640 components: - type: Transform - pos: -3.5,-118.5 + pos: 27.5,-107.5 parent: 1 - - uid: 7895 + - uid: 10641 components: - type: Transform - pos: -3.5,-119.5 + rot: 3.141592653589793 rad + pos: 29.5,-106.5 parent: 1 - - uid: 7898 + - uid: 10642 components: - type: Transform - pos: -2.5,-113.5 + rot: 3.141592653589793 rad + pos: 30.5,-101.5 parent: 1 - - uid: 7901 + - uid: 10643 components: - type: Transform - pos: -2.5,-116.5 + rot: 3.141592653589793 rad + pos: 30.5,-104.5 parent: 1 - - uid: 7904 + - uid: 10644 components: - type: Transform - pos: -2.5,-119.5 + rot: 3.141592653589793 rad + pos: 31.5,-91.5 parent: 1 - - uid: 7907 + - uid: 10645 components: - type: Transform - pos: -1.5,-113.5 + rot: 3.141592653589793 rad + pos: 30.5,-99.5 parent: 1 - - uid: 7910 + - uid: 10646 components: - type: Transform - pos: -1.5,-116.5 + rot: 3.141592653589793 rad + pos: 31.5,-97.5 parent: 1 - - uid: 7913 + - uid: 10647 components: - type: Transform - pos: -1.5,-119.5 + pos: 30.5,-107.5 parent: 1 - - uid: 7925 + - uid: 10648 components: - type: Transform - pos: 0.5,-113.5 + pos: 30.5,-108.5 parent: 1 - - uid: 7926 + - uid: 10649 components: - type: Transform - pos: 0.5,-114.5 + pos: 30.5,-109.5 parent: 1 - - uid: 7927 + - uid: 10650 components: - type: Transform - pos: 0.5,-115.5 + pos: 30.5,-110.5 parent: 1 - - uid: 7928 + - uid: 10651 components: - type: Transform - pos: 0.5,-116.5 + pos: 30.5,-112.5 parent: 1 - - uid: 7929 + - uid: 10652 components: - type: Transform - pos: 0.5,-117.5 + pos: 30.5,-113.5 parent: 1 - - uid: 7930 + - uid: 10654 components: - type: Transform - pos: 0.5,-118.5 + pos: 30.5,-115.5 parent: 1 - - uid: 7931 + - uid: 10655 components: - type: Transform - pos: 0.5,-119.5 + pos: 30.5,-116.5 parent: 1 - - uid: 7934 + - uid: 10656 components: - type: Transform - pos: 1.5,-113.5 + pos: 30.5,-118.5 parent: 1 - - uid: 7940 + - uid: 10657 components: - type: Transform - pos: 1.5,-119.5 + pos: 30.5,-119.5 parent: 1 - - uid: 7943 + - uid: 10659 components: - type: Transform - pos: 2.5,-113.5 + pos: 30.5,-121.5 parent: 1 - - uid: 7952 + - uid: 10661 components: - type: Transform - pos: 4.5,-113.5 + rot: 3.141592653589793 rad + pos: 31.5,-89.5 parent: 1 - - uid: 7953 + - uid: 10663 components: - type: Transform - pos: 4.5,-114.5 + pos: 29.5,-107.5 parent: 1 - - uid: 7954 + - uid: 10699 components: - type: Transform - pos: 4.5,-115.5 + rot: 3.141592653589793 rad + pos: 30.5,-100.5 parent: 1 - - uid: 7958 + - uid: 10700 components: - type: Transform - pos: 2.5,-119.5 + rot: 3.141592653589793 rad + pos: 31.5,-101.5 parent: 1 - - uid: 7964 + - uid: 10701 components: - type: Transform - pos: 4.5,-116.5 + rot: 3.141592653589793 rad + pos: 31.5,-106.5 parent: 1 - - uid: 7965 + - uid: 10753 components: - type: Transform - pos: 4.5,-117.5 + pos: 31.5,-113.5 parent: 1 - - uid: 7966 + - uid: 10755 components: - type: Transform - pos: 4.5,-118.5 + pos: 31.5,-115.5 parent: 1 - - uid: 7967 + - uid: 10756 components: - type: Transform - pos: 4.5,-119.5 + pos: 31.5,-116.5 parent: 1 - - uid: 7973 + - uid: 10757 components: - type: Transform - pos: 5.5,-116.5 + pos: 45.5,-116.5 parent: 1 - - uid: 7979 + - uid: 10758 components: - type: Transform - pos: 6.5,-113.5 + pos: 31.5,-118.5 parent: 1 - - uid: 7980 + - uid: 10759 components: - type: Transform - pos: 6.5,-114.5 + pos: 31.5,-119.5 parent: 1 - - uid: 7981 + - uid: 10761 components: - type: Transform - pos: 6.5,-115.5 + pos: 31.5,-121.5 parent: 1 - - uid: 7982 + - uid: 10763 components: - type: Transform - pos: 6.5,-116.5 + rot: 3.141592653589793 rad + pos: 32.5,-89.5 parent: 1 - - uid: 7983 + - uid: 10765 components: - type: Transform - pos: 6.5,-117.5 + rot: 3.141592653589793 rad + pos: 30.5,-106.5 parent: 1 - - uid: 7984 + - uid: 10766 components: - type: Transform - pos: 6.5,-118.5 + rot: 3.141592653589793 rad + pos: 32.5,-106.5 parent: 1 - - uid: 7985 + - uid: 10768 components: - type: Transform - pos: 6.5,-119.5 + pos: 32.5,-113.5 parent: 1 - - uid: 7997 + - uid: 10770 components: - type: Transform - pos: 8.5,-113.5 + pos: 32.5,-115.5 parent: 1 - - uid: 7998 + - uid: 10771 components: - type: Transform - pos: 8.5,-114.5 + pos: 32.5,-116.5 parent: 1 - - uid: 7999 + - uid: 10772 components: - type: Transform - pos: 8.5,-115.5 + pos: 45.5,-115.5 parent: 1 - - uid: 8000 + - uid: 10773 components: - type: Transform - pos: 8.5,-116.5 + pos: 36.5,-119.5 parent: 1 - - uid: 8001 + - uid: 10774 components: - type: Transform - pos: 8.5,-117.5 + pos: 36.5,-118.5 parent: 1 - - uid: 8002 + - uid: 10776 components: - type: Transform - pos: 8.5,-118.5 + pos: 32.5,-121.5 parent: 1 - - uid: 8003 + - uid: 10777 components: - type: Transform - pos: 8.5,-119.5 + rot: 3.141592653589793 rad + pos: 33.5,-77.5 parent: 1 - - uid: 8006 + - uid: 10778 components: - type: Transform - pos: 9.5,-113.5 + rot: 3.141592653589793 rad + pos: 33.5,-78.5 parent: 1 - - uid: 8009 + - uid: 10779 components: - type: Transform - pos: 9.5,-116.5 + rot: 3.141592653589793 rad + pos: 33.5,-79.5 parent: 1 - - uid: 8012 + - uid: 10780 components: - type: Transform - pos: 9.5,-119.5 + rot: 3.141592653589793 rad + pos: 33.5,-88.5 parent: 1 - - uid: 8015 + - uid: 10781 components: - type: Transform - pos: 10.5,-113.5 + rot: 3.141592653589793 rad + pos: 33.5,-89.5 parent: 1 - - uid: 8018 + - uid: 10784 components: - type: Transform - pos: 10.5,-116.5 + rot: 3.141592653589793 rad + pos: 33.5,-93.5 parent: 1 - - uid: 8021 + - uid: 10785 components: - type: Transform - pos: 10.5,-119.5 + rot: 3.141592653589793 rad + pos: 33.5,-106.5 parent: 1 - - uid: 8033 + - uid: 10786 components: - type: Transform - pos: 12.5,-113.5 + pos: 45.5,-120.5 parent: 1 - - uid: 8034 + - uid: 10787 components: - type: Transform - pos: 12.5,-114.5 + pos: 33.5,-113.5 parent: 1 - - uid: 8035 + - uid: 10789 components: - type: Transform - pos: 12.5,-115.5 + pos: 33.5,-115.5 parent: 1 - - uid: 8036 + - uid: 10790 components: - type: Transform - pos: 12.5,-116.5 + pos: 33.5,-116.5 parent: 1 - - uid: 8040 + - uid: 10791 components: - type: Transform - pos: 12.5,-119.5 + pos: 33.5,-118.5 parent: 1 - - uid: 8043 + - uid: 10792 components: - type: Transform - pos: 13.5,-113.5 + pos: 33.5,-119.5 parent: 1 - - uid: 8046 + - uid: 10794 components: - type: Transform - pos: 13.5,-116.5 + pos: 33.5,-121.5 parent: 1 - - uid: 8048 + - uid: 10795 components: - type: Transform - pos: 13.5,-119.5 + rot: 3.141592653589793 rad + pos: 34.5,-77.5 parent: 1 - - uid: 8051 + - uid: 10796 components: - type: Transform - pos: 14.5,-113.5 + rot: 3.141592653589793 rad + pos: 45.5,-86.5 parent: 1 - - uid: 8054 + - uid: 10797 components: - type: Transform - pos: 14.5,-116.5 + rot: 3.141592653589793 rad + pos: 45.5,-87.5 parent: 1 - - uid: 8055 + - uid: 10801 components: - type: Transform - pos: 14.5,-117.5 + rot: 3.141592653589793 rad + pos: 34.5,-91.5 parent: 1 - - uid: 8056 + - uid: 10802 components: - type: Transform - pos: 14.5,-118.5 + rot: 3.141592653589793 rad + pos: 29.5,-97.5 parent: 1 - - uid: 8057 + - uid: 10804 components: - type: Transform - pos: 14.5,-119.5 + rot: 3.141592653589793 rad + pos: 31.5,-104.5 parent: 1 - - uid: 8069 + - uid: 10806 components: - type: Transform - pos: 16.5,-113.5 + rot: 3.141592653589793 rad + pos: 34.5,-106.5 parent: 1 - - uid: 8078 + - uid: 10807 components: - type: Transform - pos: 17.5,-113.5 + pos: 45.5,-117.5 parent: 1 - - uid: 8087 + - uid: 10808 components: - type: Transform - pos: 18.5,-113.5 + pos: 34.5,-113.5 parent: 1 - - uid: 8088 + - uid: 10809 components: - type: Transform - pos: 18.5,-114.5 + pos: 44.5,-113.5 parent: 1 - - uid: 8089 + - uid: 10810 components: - type: Transform - pos: 18.5,-115.5 + pos: 34.5,-115.5 parent: 1 - - uid: 8090 + - uid: 10811 components: - type: Transform - pos: 18.5,-116.5 + pos: 34.5,-116.5 parent: 1 - - uid: 8091 + - uid: 10812 components: - type: Transform - pos: 18.5,-117.5 + pos: 45.5,-113.5 parent: 1 - - uid: 8092 + - uid: 10813 components: - type: Transform - pos: 18.5,-118.5 + pos: 34.5,-118.5 parent: 1 - - uid: 8093 + - uid: 10814 components: - type: Transform - pos: 18.5,-119.5 + pos: 34.5,-119.5 parent: 1 - - uid: 8096 + - uid: 10816 components: - type: Transform - pos: 19.5,-113.5 + pos: 34.5,-121.5 parent: 1 - - uid: 8111 + - uid: 10817 components: - type: Transform - pos: 20.5,-113.5 + rot: 3.141592653589793 rad + pos: 35.5,-77.5 parent: 1 - - uid: 8131 + - uid: 10818 components: - type: Transform - pos: -2.5,-122.5 + rot: 3.141592653589793 rad + pos: 44.5,-77.5 parent: 1 - - uid: 8132 + - uid: 10819 components: - type: Transform - pos: -2.5,-123.5 + rot: 3.141592653589793 rad + pos: 35.5,-79.5 parent: 1 - - uid: 8133 + - uid: 10820 components: - type: Transform - pos: -2.5,-124.5 + rot: 3.141592653589793 rad + pos: 35.5,-88.5 parent: 1 - - uid: 8134 + - uid: 10821 components: - type: Transform - pos: -2.5,-125.5 + rot: 3.141592653589793 rad + pos: 35.5,-89.5 parent: 1 - - uid: 8135 + - uid: 10825 components: - type: Transform - pos: -2.5,-126.5 + rot: 3.141592653589793 rad + pos: 35.5,-91.5 parent: 1 - - uid: 8136 + - uid: 10828 components: - type: Transform - pos: -2.5,-127.5 + rot: 3.141592653589793 rad + pos: 29.5,-99.5 parent: 1 - - uid: 8137 + - uid: 10830 components: - type: Transform - pos: -21.5,-122.5 + rot: 3.141592653589793 rad + pos: 32.5,-104.5 parent: 1 - - uid: 8138 + - uid: 10831 components: - type: Transform - pos: -21.5,-123.5 + rot: 3.141592653589793 rad + pos: 32.5,-101.5 parent: 1 - - uid: 8139 + - uid: 10832 components: - type: Transform - pos: -21.5,-124.5 + rot: 3.141592653589793 rad + pos: 32.5,-91.5 parent: 1 - - uid: 8140 + - uid: 10833 components: - type: Transform - pos: -21.5,-125.5 + rot: 3.141592653589793 rad + pos: 33.5,-95.5 parent: 1 - - uid: 8141 + - uid: 10834 components: - type: Transform - pos: -20.5,-126.5 + rot: 3.141592653589793 rad + pos: 35.5,-106.5 parent: 1 - - uid: 8142 + - uid: 10865 components: - type: Transform - pos: -20.5,-127.5 + pos: 45.5,-114.5 parent: 1 - - uid: 8143 + - uid: 10866 components: - type: Transform - pos: -19.5,-125.5 + pos: 35.5,-113.5 parent: 1 - - uid: 8144 + - uid: 11106 components: - type: Transform - pos: -19.5,-124.5 + pos: 35.5,-115.5 parent: 1 - - uid: 8145 + - uid: 11107 components: - type: Transform - pos: -19.5,-123.5 + pos: 35.5,-116.5 parent: 1 - - uid: 8146 + - uid: 11108 components: - type: Transform - pos: -19.5,-122.5 + pos: 45.5,-112.5 parent: 1 - - uid: 8147 + - uid: 11109 components: - type: Transform - pos: -18.5,-127.5 + pos: 35.5,-118.5 parent: 1 - - uid: 8148 + - uid: 11110 components: - type: Transform - pos: -18.5,-126.5 + pos: 35.5,-119.5 parent: 1 - - uid: 8149 + - uid: 11112 components: - type: Transform - pos: -17.5,-125.5 + pos: 35.5,-121.5 parent: 1 - - uid: 8150 + - uid: 11113 components: - type: Transform - pos: -17.5,-124.5 + rot: 3.141592653589793 rad + pos: 36.5,-77.5 parent: 1 - - uid: 8151 + - uid: 11114 components: - type: Transform - pos: -17.5,-123.5 + rot: 3.141592653589793 rad + pos: 45.5,-85.5 parent: 1 - - uid: 8152 + - uid: 11115 components: - type: Transform - pos: -17.5,-122.5 + rot: 3.141592653589793 rad + pos: 45.5,-84.5 parent: 1 - - uid: 8153 + - uid: 11117 components: - type: Transform - pos: -15.5,-127.5 + rot: 3.141592653589793 rad + pos: 36.5,-89.5 parent: 1 - - uid: 8154 + - uid: 11119 components: - type: Transform - pos: -15.5,-126.5 + rot: 3.141592653589793 rad + pos: 36.5,-91.5 parent: 1 - - uid: 8155 + - uid: 11120 components: - type: Transform - pos: -15.5,-125.5 + rot: 3.141592653589793 rad + pos: 30.5,-91.5 parent: 1 - - uid: 8156 + - uid: 11243 components: - type: Transform - pos: -15.5,-124.5 + rot: 3.141592653589793 rad + pos: 29.5,-100.5 parent: 1 - - uid: 8157 + - uid: 11244 components: - type: Transform - pos: -15.5,-123.5 + rot: 3.141592653589793 rad + pos: 32.5,-102.5 parent: 1 - - uid: 8158 + - uid: 11245 components: - type: Transform - pos: -15.5,-122.5 + rot: 3.141592653589793 rad + pos: 32.5,-93.5 parent: 1 - - uid: 8159 + - uid: 11246 components: - type: Transform - pos: -14.5,-122.5 + rot: 3.141592653589793 rad + pos: 32.5,-95.5 parent: 1 - - uid: 8160 + - uid: 11271 components: - type: Transform - pos: -13.5,-122.5 + rot: 3.141592653589793 rad + pos: 32.5,-94.5 parent: 1 - - uid: 8161 + - uid: 11272 components: - type: Transform - pos: -13.5,-123.5 + rot: 3.141592653589793 rad + pos: 36.5,-106.5 parent: 1 - - uid: 8162 + - uid: 11281 components: - type: Transform - pos: -13.5,-124.5 + pos: 36.5,-113.5 parent: 1 - - uid: 8163 + - uid: 11283 components: - type: Transform - pos: -13.5,-125.5 + pos: 36.5,-115.5 parent: 1 - - uid: 8164 + - uid: 11284 components: - type: Transform - pos: -13.5,-126.5 + pos: 36.5,-116.5 parent: 1 - - uid: 8165 + - uid: 11285 components: - type: Transform - pos: -13.5,-127.5 + pos: 45.5,-111.5 parent: 1 - - uid: 8166 + - uid: 11286 components: - type: Transform - pos: -14.5,-124.5 + pos: 32.5,-119.5 parent: 1 - - uid: 8167 + - uid: 11287 components: - type: Transform - pos: -11.5,-122.5 + pos: 32.5,-118.5 parent: 1 - - uid: 8168 + - uid: 11419 components: - type: Transform - pos: -10.5,-122.5 + pos: 36.5,-121.5 parent: 1 - - uid: 8169 + - uid: 11423 components: - type: Transform - pos: -9.5,-122.5 + rot: 3.141592653589793 rad + pos: 37.5,-77.5 parent: 1 - - uid: 8170 + - uid: 11424 components: - type: Transform - pos: -11.5,-123.5 + rot: 3.141592653589793 rad + pos: 45.5,-77.5 parent: 1 - - uid: 8171 + - uid: 11425 components: - type: Transform - pos: -11.5,-124.5 + rot: 3.141592653589793 rad + pos: 37.5,-79.5 parent: 1 - - uid: 8172 + - uid: 11427 components: - type: Transform - pos: -11.5,-125.5 + rot: 3.141592653589793 rad + pos: 37.5,-89.5 parent: 1 - - uid: 8173 + - uid: 11430 components: - type: Transform - pos: -10.5,-125.5 + rot: 3.141592653589793 rad + pos: 37.5,-91.5 parent: 1 - - uid: 8174 + - uid: 11431 components: - type: Transform - pos: -9.5,-125.5 + rot: 3.141592653589793 rad + pos: 30.5,-93.5 parent: 1 - - uid: 8175 + - uid: 11432 components: - type: Transform - pos: -9.5,-126.5 + rot: 3.141592653589793 rad + pos: 30.5,-95.5 parent: 1 - - uid: 8176 + - uid: 11433 components: - type: Transform - pos: -9.5,-127.5 + rot: 3.141592653589793 rad + pos: 30.5,-94.5 parent: 1 - - uid: 8177 + - uid: 11434 components: - type: Transform - pos: -11.5,-127.5 + rot: 3.141592653589793 rad + pos: 32.5,-103.5 parent: 1 - - uid: 8178 + - uid: 11435 components: - type: Transform - pos: -10.5,-127.5 + rot: 3.141592653589793 rad + pos: 33.5,-91.5 parent: 1 - - uid: 8179 + - uid: 11436 components: - type: Transform - pos: -6.5,-122.5 + rot: 3.141592653589793 rad + pos: 32.5,-98.5 parent: 1 - - uid: 8180 + - uid: 11437 components: - type: Transform - pos: -6.5,-123.5 + rot: 3.141592653589793 rad + pos: 32.5,-97.5 parent: 1 - - uid: 8181 + - uid: 11438 components: - type: Transform - pos: -6.5,-124.5 + rot: 3.141592653589793 rad + pos: 32.5,-99.5 parent: 1 - - uid: 8182 + - uid: 11439 components: - type: Transform - pos: -6.5,-125.5 + rot: 3.141592653589793 rad + pos: 37.5,-106.5 parent: 1 - - uid: 8183 + - uid: 11448 components: - type: Transform - pos: -6.5,-126.5 + pos: 37.5,-113.5 parent: 1 - - uid: 8184 + - uid: 11450 components: - type: Transform - pos: -6.5,-127.5 + pos: 37.5,-115.5 parent: 1 - - uid: 8185 + - uid: 11451 components: - type: Transform - pos: -5.5,-124.5 + pos: 37.5,-116.5 parent: 1 - - uid: 8186 + - uid: 11452 components: - type: Transform - pos: -4.5,-124.5 + pos: 45.5,-110.5 parent: 1 - - uid: 8187 + - uid: 11453 components: - type: Transform - pos: -4.5,-122.5 + pos: 37.5,-118.5 parent: 1 - - uid: 8188 + - uid: 11454 components: - type: Transform - pos: -4.5,-123.5 + pos: 37.5,-119.5 parent: 1 - - uid: 8189 + - uid: 11456 components: - type: Transform - pos: -4.5,-125.5 + pos: 37.5,-121.5 parent: 1 - - uid: 8190 + - uid: 11707 components: - type: Transform - pos: -4.5,-126.5 + rot: 3.141592653589793 rad + pos: 38.5,-77.5 parent: 1 - - uid: 8191 + - uid: 11708 components: - type: Transform - pos: -4.5,-127.5 + rot: 3.141592653589793 rad + pos: 45.5,-78.5 parent: 1 - - uid: 8192 + - uid: 11709 components: - type: Transform - pos: -1.5,-127.5 + rot: 3.141592653589793 rad + pos: 38.5,-79.5 parent: 1 - - uid: 8193 + - uid: 11711 components: - type: Transform - pos: -0.5,-127.5 + rot: 3.141592653589793 rad + pos: 38.5,-89.5 parent: 1 - - uid: 8194 + - uid: 11715 components: - type: Transform - pos: -1.5,-124.5 + pos: -22.5,-111.5 parent: 1 - - uid: 8195 + - uid: 11718 components: - type: Transform - pos: -0.5,-124.5 + rot: 3.141592653589793 rad + pos: 38.5,-102.5 parent: 1 - - uid: 8196 + - uid: 11720 components: - type: Transform - pos: -0.5,-122.5 + rot: 3.141592653589793 rad + pos: 38.5,-104.5 parent: 1 - - uid: 8197 + - uid: 11721 components: - type: Transform - pos: -1.5,-122.5 + rot: 3.141592653589793 rad + pos: 38.5,-106.5 parent: 1 - - uid: 8198 + - uid: 11730 components: - type: Transform - pos: 1.5,-122.5 + pos: 38.5,-113.5 parent: 1 - - uid: 8199 + - uid: 11732 components: - type: Transform - pos: 1.5,-123.5 + pos: 38.5,-115.5 parent: 1 - - uid: 8200 + - uid: 11733 components: - type: Transform - pos: 1.5,-124.5 + pos: 38.5,-116.5 parent: 1 - - uid: 8201 + - uid: 11734 components: - type: Transform - pos: 1.5,-125.5 + pos: 38.5,-118.5 parent: 1 - - uid: 8202 + - uid: 11735 components: - type: Transform - pos: 1.5,-126.5 + pos: 38.5,-119.5 parent: 1 - - uid: 8203 + - uid: 11737 components: - type: Transform - pos: 1.5,-127.5 + pos: 38.5,-121.5 parent: 1 - - uid: 8204 + - uid: 11738 components: - type: Transform - pos: 2.5,-122.5 + rot: 3.141592653589793 rad + pos: 39.5,-77.5 parent: 1 - - uid: 8205 + - uid: 11739 components: - type: Transform - pos: 3.5,-122.5 + rot: 3.141592653589793 rad + pos: 45.5,-79.5 parent: 1 - - uid: 8206 + - uid: 11740 components: - type: Transform - pos: 2.5,-124.5 + rot: 3.141592653589793 rad + pos: 39.5,-79.5 parent: 1 - - uid: 8207 + - uid: 11754 components: - type: Transform - pos: 6.5,-122.5 + rot: -1.5707963267948966 rad + pos: 27.5,-84.5 parent: 1 - - uid: 8208 + - uid: 11756 components: - type: Transform - pos: 3.5,-123.5 + rot: -1.5707963267948966 rad + pos: 27.5,-80.5 parent: 1 - - uid: 8209 + - uid: 11761 components: - type: Transform - pos: 3.5,-125.5 + rot: 3.141592653589793 rad + pos: 42.5,-87.5 parent: 1 - - uid: 8210 + - uid: 11763 components: - type: Transform - pos: 3.5,-126.5 + rot: 3.141592653589793 rad + pos: 39.5,-89.5 parent: 1 - - uid: 8211 + - uid: 11764 components: - type: Transform - pos: 3.5,-127.5 + rot: 3.141592653589793 rad + pos: 39.5,-90.5 parent: 1 - - uid: 8212 + - uid: 11767 components: - type: Transform - pos: 5.5,-122.5 + rot: 3.141592653589793 rad + pos: 39.5,-91.5 parent: 1 - - uid: 8213 + - uid: 11769 components: - type: Transform - pos: 5.5,-123.5 + rot: 3.141592653589793 rad + pos: 39.5,-98.5 parent: 1 - - uid: 8214 + - uid: 11770 components: - type: Transform - pos: 5.5,-124.5 + rot: 3.141592653589793 rad + pos: 39.5,-99.5 parent: 1 - - uid: 8215 + - uid: 11771 components: - type: Transform - pos: 5.5,-125.5 + rot: 3.141592653589793 rad + pos: 39.5,-100.5 parent: 1 - - uid: 8216 + - uid: 11773 components: - type: Transform - pos: 5.5,-126.5 + rot: 3.141592653589793 rad + pos: 39.5,-102.5 parent: 1 - - uid: 8217 + - uid: 11774 components: - type: Transform - pos: 5.5,-127.5 + rot: 3.141592653589793 rad + pos: 39.5,-103.5 parent: 1 - - uid: 8218 + - uid: 11775 components: - type: Transform - pos: 6.5,-127.5 + rot: 3.141592653589793 rad + pos: 39.5,-104.5 parent: 1 - - uid: 8219 + - uid: 11776 components: - type: Transform - pos: 7.5,-127.5 + rot: 3.141592653589793 rad + pos: 39.5,-106.5 parent: 1 - - uid: 8220 + - uid: 11784 components: - type: Transform - pos: 6.5,-124.5 + pos: 39.5,-113.5 parent: 1 - - uid: 8221 + - uid: 11785 components: - type: Transform - pos: 7.5,-124.5 + pos: 44.5,-121.5 parent: 1 - - uid: 8222 + - uid: 11786 components: - type: Transform - pos: 7.5,-122.5 + pos: 39.5,-115.5 parent: 1 - - uid: 8223 + - uid: 11787 components: - type: Transform - pos: 9.5,-127.5 + pos: 39.5,-116.5 parent: 1 - - uid: 8224 + - uid: 11788 components: - type: Transform - pos: 11.5,-127.5 + pos: 44.5,-116.5 parent: 1 - - uid: 8225 + - uid: 11789 components: - type: Transform - pos: 13.5,-127.5 + pos: 39.5,-118.5 parent: 1 -- proto: WallRockBasaltIndestructible - entities: - - uid: 289 + - uid: 11790 components: - type: Transform - pos: -23.5,-27.5 + pos: 39.5,-119.5 parent: 1 - - uid: 290 + - uid: 11792 components: - type: Transform - pos: -23.5,-26.5 + pos: 39.5,-121.5 parent: 1 - - uid: 291 + - uid: 11793 components: - type: Transform - pos: -23.5,-25.5 + rot: 3.141592653589793 rad + pos: 40.5,-77.5 parent: 1 - - uid: 292 + - uid: 11794 components: - type: Transform - pos: -23.5,-23.5 + rot: 3.141592653589793 rad + pos: 45.5,-80.5 parent: 1 - - uid: 293 + - uid: 11804 components: - type: Transform - pos: -23.5,-21.5 + rot: 3.141592653589793 rad + pos: 40.5,-79.5 parent: 1 - - uid: 294 + - uid: 11808 components: - type: Transform - pos: -23.5,-19.5 + rot: -1.5707963267948966 rad + pos: 28.5,-84.5 parent: 1 - - uid: 295 + - uid: 11809 components: - type: Transform - pos: -23.5,-17.5 + rot: -1.5707963267948966 rad + pos: 27.5,-81.5 parent: 1 - - uid: 296 + - uid: 11810 components: - type: Transform - pos: -23.5,-15.5 + rot: -1.5707963267948966 rad + pos: 28.5,-80.5 parent: 1 - - uid: 297 + - uid: 11815 components: - type: Transform - pos: -23.5,-13.5 + rot: 3.141592653589793 rad + pos: 40.5,-89.5 parent: 1 - - uid: 298 + - uid: 11816 components: - type: Transform - pos: -23.5,-11.5 + rot: 3.141592653589793 rad + pos: 40.5,-90.5 parent: 1 - - uid: 299 + - uid: 11817 components: - type: Transform - pos: -23.5,-9.5 + pos: 40.5,-91.5 parent: 1 - - uid: 300 + - uid: 11818 components: - type: Transform - pos: -23.5,-7.5 + rot: 3.141592653589793 rad + pos: 40.5,-93.5 parent: 1 - - uid: 301 + - uid: 11820 components: - type: Transform - pos: -23.5,-5.5 + rot: 3.141592653589793 rad + pos: 40.5,-96.5 parent: 1 - - uid: 302 + - uid: 11822 components: - type: Transform - pos: -23.5,-3.5 + rot: 3.141592653589793 rad + pos: 40.5,-98.5 parent: 1 - - uid: 303 + - uid: 11828 components: - type: Transform - pos: -23.5,-1.5 + rot: 3.141592653589793 rad + pos: 40.5,-104.5 parent: 1 - - uid: 304 + - uid: 11829 components: - type: Transform - pos: -23.5,0.5 + rot: 3.141592653589793 rad + pos: 40.5,-106.5 parent: 1 - - uid: 305 + - uid: 11836 components: - type: Transform - pos: -23.5,2.5 + pos: 40.5,-113.5 parent: 1 - - uid: 306 + - uid: 11837 components: - type: Transform - pos: -23.5,4.5 + pos: 26.5,-119.5 parent: 1 - - uid: 307 + - uid: 11838 components: - type: Transform - pos: -23.5,6.5 + pos: 26.5,-118.5 parent: 1 - - uid: 308 + - uid: 11839 components: - type: Transform - pos: -23.5,8.5 + pos: 44.5,-115.5 parent: 1 - - uid: 309 + - uid: 11840 components: - type: Transform - pos: -23.5,10.5 + pos: 40.5,-118.5 parent: 1 - - uid: 310 + - uid: 11841 components: - type: Transform - pos: -23.5,12.5 + pos: 40.5,-119.5 parent: 1 - - uid: 311 + - uid: 11843 components: - type: Transform - pos: -23.5,14.5 + pos: 40.5,-121.5 parent: 1 - - uid: 312 + - uid: 11844 components: - type: Transform - pos: -23.5,16.5 + rot: 3.141592653589793 rad + pos: 41.5,-77.5 parent: 1 - - uid: 313 + - uid: 11845 components: - type: Transform - pos: -23.5,18.5 + rot: 3.141592653589793 rad + pos: 45.5,-81.5 parent: 1 - - uid: 314 + - uid: 11846 components: - type: Transform - pos: -23.5,20.5 + rot: 3.141592653589793 rad + pos: 41.5,-79.5 parent: 1 - - uid: 315 + - uid: 11847 components: - type: Transform - pos: -23.5,22.5 + rot: 3.141592653589793 rad + pos: -32.5,-103.5 parent: 1 - - uid: 316 + - uid: 11848 components: - type: Transform - pos: -23.5,24.5 + rot: 3.141592653589793 rad + pos: -32.5,-104.5 parent: 1 - - uid: 317 + - uid: 11862 components: - type: Transform - pos: -23.5,26.5 + rot: -1.5707963267948966 rad + pos: 23.5,-80.5 parent: 1 - - uid: 318 + - uid: 11877 components: - type: Transform - pos: -23.5,28.5 + rot: 3.141592653589793 rad + pos: 41.5,-93.5 parent: 1 - - uid: 319 + - uid: 11881 components: - type: Transform - pos: -23.5,30.5 + pos: -14.5,-111.5 parent: 1 - - uid: 320 + - uid: 11883 components: - type: Transform - pos: -23.5,32.5 + rot: 3.141592653589793 rad + pos: 41.5,-98.5 parent: 1 - - uid: 321 + - uid: 11891 components: - type: Transform - pos: -23.5,34.5 + rot: 3.141592653589793 rad + pos: 41.5,-104.5 parent: 1 - - uid: 322 + - uid: 11892 components: - type: Transform - pos: -23.5,36.5 + rot: 3.141592653589793 rad + pos: 41.5,-106.5 parent: 1 - - uid: 324 + - uid: 11897 components: - type: Transform - pos: -23.5,38.5 + pos: 41.5,-113.5 parent: 1 - - uid: 325 + - uid: 11898 components: - type: Transform - pos: -24.5,-60.5 + pos: 20.5,-119.5 parent: 1 - - uid: 326 + - uid: 11899 components: - type: Transform - pos: -24.5,-58.5 + pos: 41.5,-115.5 parent: 1 - - uid: 327 + - uid: 11900 components: - type: Transform - pos: -24.5,-56.5 + pos: 41.5,-116.5 parent: 1 - - uid: 328 + - uid: 11902 components: - type: Transform - pos: -24.5,-54.5 + pos: 41.5,-118.5 parent: 1 - - uid: 329 + - uid: 11912 components: - type: Transform - pos: -24.5,-52.5 + pos: 41.5,-119.5 parent: 1 - - uid: 330 + - uid: 11914 components: - type: Transform - pos: -24.5,-50.5 + pos: 41.5,-121.5 parent: 1 - - uid: 331 + - uid: 11915 components: - type: Transform - pos: -24.5,-48.5 + rot: 3.141592653589793 rad + pos: 42.5,-77.5 parent: 1 - - uid: 332 + - uid: 11916 components: - type: Transform - pos: -24.5,-46.5 + rot: -1.5707963267948966 rad + pos: 22.5,-80.5 parent: 1 - - uid: 333 + - uid: 11922 components: - type: Transform - pos: -24.5,-44.5 + rot: 3.141592653589793 rad + pos: 45.5,-82.5 parent: 1 - - uid: 334 + - uid: 11923 components: - type: Transform - pos: -24.5,-42.5 + rot: 3.141592653589793 rad + pos: 42.5,-79.5 parent: 1 - - uid: 335 + - uid: 11924 components: - type: Transform - pos: -24.5,-40.5 + rot: 3.141592653589793 rad + pos: 42.5,-88.5 parent: 1 - - uid: 336 + - uid: 11925 components: - type: Transform - pos: -24.5,-38.5 + rot: 3.141592653589793 rad + pos: 42.5,-89.5 parent: 1 - - uid: 337 + - uid: 11926 components: - type: Transform - pos: -24.5,-36.5 + rot: 3.141592653589793 rad + pos: 42.5,-90.5 parent: 1 - - uid: 338 + - uid: 11927 components: - type: Transform - pos: -24.5,-34.5 + rot: 3.141592653589793 rad + pos: 42.5,-91.5 parent: 1 - - uid: 339 + - uid: 11928 components: - type: Transform - pos: -24.5,-32.5 + rot: 3.141592653589793 rad + pos: 42.5,-92.5 parent: 1 - - uid: 340 + - uid: 11932 components: - type: Transform - pos: -24.5,-30.5 + rot: 3.141592653589793 rad + pos: 42.5,-93.5 parent: 1 - - uid: 341 + - uid: 11934 components: - type: Transform - pos: -24.5,-28.5 + rot: 3.141592653589793 rad + pos: 42.5,-94.5 parent: 1 - - uid: 342 + - uid: 11941 components: - type: Transform - pos: -24.5,-26.5 + rot: 3.141592653589793 rad + pos: 42.5,-95.5 parent: 1 - - uid: 343 + - uid: 11942 components: - type: Transform - pos: -24.5,-24.5 + rot: 3.141592653589793 rad + pos: 42.5,-96.5 parent: 1 - - uid: 344 + - uid: 11943 components: - type: Transform - pos: -24.5,-22.5 + rot: 3.141592653589793 rad + pos: 42.5,-97.5 parent: 1 - - uid: 345 + - uid: 11944 components: - type: Transform - pos: -24.5,-20.5 + rot: 3.141592653589793 rad + pos: 42.5,-98.5 parent: 1 - - uid: 346 + - uid: 11950 components: - type: Transform - pos: -24.5,-18.5 + rot: 3.141592653589793 rad + pos: 42.5,-104.5 parent: 1 - - uid: 347 + - uid: 11951 components: - type: Transform - pos: -24.5,-16.5 + rot: 3.141592653589793 rad + pos: 42.5,-106.5 parent: 1 - - uid: 348 + - uid: 11955 components: - type: Transform - pos: -24.5,-14.5 + pos: 42.5,-113.5 parent: 1 - - uid: 349 + - uid: 11956 components: - type: Transform - pos: -24.5,-12.5 + pos: 20.5,-118.5 parent: 1 - - uid: 350 + - uid: 11966 components: - type: Transform - pos: -24.5,-10.5 + pos: 42.5,-115.5 parent: 1 - - uid: 351 + - uid: 11967 components: - type: Transform - pos: -24.5,-8.5 + pos: 42.5,-116.5 parent: 1 - - uid: 352 + - uid: 11969 components: - type: Transform - pos: -24.5,-6.5 + pos: 42.5,-118.5 parent: 1 - - uid: 353 + - uid: 11970 components: - type: Transform - pos: -24.5,-3.5 + rot: -1.5707963267948966 rad + pos: 21.5,-80.5 parent: 1 - - uid: 354 + - uid: 11976 components: - type: Transform - pos: -24.5,-1.5 + pos: 42.5,-119.5 parent: 1 - - uid: 355 + - uid: 11978 components: - type: Transform - pos: -24.5,0.5 + pos: 42.5,-121.5 parent: 1 - - uid: 356 + - uid: 11979 components: - type: Transform - pos: -24.5,2.5 + rot: 3.141592653589793 rad + pos: 43.5,-77.5 parent: 1 - - uid: 357 + - uid: 11980 components: - type: Transform - pos: -24.5,4.5 + rot: 3.141592653589793 rad + pos: 45.5,-83.5 parent: 1 - - uid: 358 + - uid: 11981 components: - type: Transform - pos: -24.5,5.5 + rot: 3.141592653589793 rad + pos: 43.5,-79.5 parent: 1 - - uid: 359 + - uid: 11989 components: - type: Transform - pos: -24.5,7.5 + rot: 3.141592653589793 rad + pos: 43.5,-80.5 parent: 1 - - uid: 360 + - uid: 11993 components: - type: Transform - pos: -24.5,9.5 + rot: 3.141592653589793 rad + pos: 43.5,-81.5 parent: 1 - - uid: 361 + - uid: 11994 components: - type: Transform - pos: -24.5,11.5 + rot: 3.141592653589793 rad + pos: 43.5,-82.5 parent: 1 - - uid: 362 + - uid: 11995 components: - type: Transform - pos: -24.5,13.5 + rot: 3.141592653589793 rad + pos: 43.5,-83.5 parent: 1 - - uid: 363 + - uid: 11996 components: - type: Transform - pos: -24.5,15.5 + rot: 3.141592653589793 rad + pos: 43.5,-84.5 parent: 1 - - uid: 364 + - uid: 11997 components: - type: Transform - pos: -24.5,17.5 + rot: 3.141592653589793 rad + pos: 43.5,-85.5 parent: 1 - - uid: 365 + - uid: 11998 components: - type: Transform - pos: -24.5,19.5 + rot: 3.141592653589793 rad + pos: 43.5,-86.5 parent: 1 - - uid: 366 + - uid: 11999 components: - type: Transform - pos: -24.5,21.5 + rot: 3.141592653589793 rad + pos: 43.5,-87.5 parent: 1 - - uid: 367 + - uid: 12000 components: - type: Transform - pos: -24.5,23.5 + rot: 3.141592653589793 rad + pos: 43.5,-88.5 parent: 1 - - uid: 368 + - uid: 12001 components: - type: Transform - pos: -24.5,25.5 + rot: 3.141592653589793 rad + pos: 43.5,-89.5 parent: 1 - - uid: 369 + - uid: 12002 components: - type: Transform - pos: -24.5,27.5 + rot: 3.141592653589793 rad + pos: 43.5,-90.5 parent: 1 - - uid: 370 + - uid: 12003 components: - type: Transform - pos: -24.5,29.5 + rot: 3.141592653589793 rad + pos: 43.5,-91.5 parent: 1 - - uid: 371 + - uid: 12004 components: - type: Transform - pos: -24.5,31.5 + rot: 3.141592653589793 rad + pos: 43.5,-92.5 parent: 1 - - uid: 372 + - uid: 12005 components: - type: Transform - pos: -24.5,33.5 + rot: 3.141592653589793 rad + pos: 43.5,-93.5 parent: 1 - - uid: 373 + - uid: 12006 components: - type: Transform - pos: -24.5,35.5 + rot: 3.141592653589793 rad + pos: 43.5,-94.5 parent: 1 - - uid: 374 + - uid: 12007 components: - type: Transform - pos: -24.5,37.5 + rot: 3.141592653589793 rad + pos: 43.5,-95.5 parent: 1 - - uid: 375 + - uid: 12008 components: - type: Transform - pos: -25.5,-61.5 + rot: 3.141592653589793 rad + pos: 43.5,-96.5 parent: 1 - - uid: 376 + - uid: 12009 components: - type: Transform - pos: -25.5,-59.5 + rot: 3.141592653589793 rad + pos: 43.5,-97.5 parent: 1 - - uid: 377 + - uid: 12010 components: - type: Transform - pos: -25.5,-57.5 + rot: 3.141592653589793 rad + pos: 43.5,-98.5 parent: 1 - - uid: 378 + - uid: 12020 components: - type: Transform - pos: -25.5,-55.5 + rot: 3.141592653589793 rad + pos: 43.5,-99.5 parent: 1 - - uid: 379 + - uid: 12021 components: - type: Transform - pos: -25.5,-53.5 + rot: 3.141592653589793 rad + pos: 43.5,-100.5 parent: 1 - - uid: 380 + - uid: 12022 components: - type: Transform - pos: -25.5,-51.5 + rot: 3.141592653589793 rad + pos: 43.5,-101.5 parent: 1 - - uid: 381 + - uid: 12024 components: - type: Transform - pos: -25.5,-49.5 + rot: -1.5707963267948966 rad + pos: 17.5,-80.5 parent: 1 - - uid: 382 + - uid: 12026 components: - type: Transform - pos: -25.5,-47.5 + rot: 3.141592653589793 rad + pos: 43.5,-102.5 parent: 1 - - uid: 383 + - uid: 12031 components: - type: Transform - pos: -25.5,-45.5 + rot: 3.141592653589793 rad + pos: 43.5,-103.5 parent: 1 - - uid: 384 + - uid: 12032 components: - type: Transform - pos: -25.5,-43.5 + rot: 3.141592653589793 rad + pos: 43.5,-104.5 parent: 1 - - uid: 385 + - uid: 12033 components: - type: Transform - pos: -25.5,-41.5 + rot: 3.141592653589793 rad + pos: 43.5,-106.5 parent: 1 - - uid: 386 + - uid: 12042 components: - type: Transform - pos: -25.5,-39.5 + pos: 43.5,-113.5 parent: 1 - - uid: 387 + - uid: 12044 components: - type: Transform - pos: -25.5,-37.5 + pos: 43.5,-115.5 parent: 1 - - uid: 388 + - uid: 12045 components: - type: Transform - pos: -25.5,-35.5 + pos: 43.5,-116.5 parent: 1 - - uid: 389 + - uid: 12046 components: - type: Transform - pos: -25.5,-33.5 + pos: 43.5,-118.5 parent: 1 - - uid: 390 + - uid: 12047 components: - type: Transform - pos: -25.5,-31.5 + pos: 43.5,-119.5 parent: 1 - - uid: 391 + - uid: 12048 components: - type: Transform - pos: -25.5,-29.5 + pos: 43.5,-121.5 parent: 1 - - uid: 392 + - uid: 12050 components: - type: Transform - pos: -25.5,-27.5 + pos: -12.5,-103.5 parent: 1 - - uid: 393 + - uid: 12062 components: - type: Transform - pos: -25.5,-25.5 + rot: 3.141592653589793 rad + pos: 34.5,-93.5 parent: 1 - - uid: 394 + - uid: 12064 components: - type: Transform - pos: -25.5,-23.5 + rot: 3.141592653589793 rad + pos: 34.5,-95.5 parent: 1 - - uid: 395 + - uid: 12074 components: - type: Transform - pos: -25.5,-21.5 + rot: 3.141592653589793 rad + pos: 34.5,-97.5 parent: 1 - - uid: 396 + - uid: 12075 components: - type: Transform - pos: -25.5,-19.5 + rot: 3.141592653589793 rad + pos: 34.5,-98.5 parent: 1 - - uid: 397 + - uid: 12076 components: - type: Transform - pos: -25.5,-17.5 + rot: 3.141592653589793 rad + pos: 34.5,-99.5 parent: 1 - - uid: 398 + - uid: 12079 components: - type: Transform - pos: -25.5,-15.5 + rot: 3.141592653589793 rad + pos: 34.5,-101.5 parent: 1 - - uid: 399 + - uid: 12085 components: - type: Transform - pos: -25.5,-13.5 + rot: 3.141592653589793 rad + pos: 34.5,-103.5 parent: 1 - - uid: 400 + - uid: 12086 components: - type: Transform - pos: -25.5,-11.5 + rot: 3.141592653589793 rad + pos: 34.5,-104.5 parent: 1 - - uid: 401 + - uid: 12087 components: - type: Transform - pos: -25.5,-9.5 + rot: 3.141592653589793 rad + pos: 35.5,-93.5 parent: 1 - - uid: 402 + - uid: 12089 components: - type: Transform - pos: -25.5,-7.5 + rot: 3.141592653589793 rad + pos: 35.5,-95.5 parent: 1 - - uid: 403 + - uid: 12090 components: - type: Transform - pos: -25.5,-5.5 + rot: 3.141592653589793 rad + pos: 35.5,-97.5 parent: 1 - - uid: 404 + - uid: 12092 components: - type: Transform - pos: -25.5,-3.5 + rot: 3.141592653589793 rad + pos: 35.5,-99.5 parent: 1 - - uid: 405 + - uid: 12093 components: - type: Transform - pos: -25.5,-1.5 + rot: 3.141592653589793 rad + pos: 35.5,-101.5 parent: 1 - - uid: 406 + - uid: 12096 components: - type: Transform - pos: -25.5,0.5 + rot: 3.141592653589793 rad + pos: 35.5,-103.5 parent: 1 - - uid: 407 + - uid: 12097 components: - type: Transform - pos: -25.5,2.5 + rot: 3.141592653589793 rad + pos: 35.5,-104.5 parent: 1 - - uid: 408 + - uid: 12098 components: - type: Transform - pos: -25.5,4.5 + rot: 3.141592653589793 rad + pos: 36.5,-97.5 parent: 1 - - uid: 409 + - uid: 12100 components: - type: Transform - pos: -25.5,6.5 + rot: 3.141592653589793 rad + pos: 36.5,-99.5 parent: 1 - - uid: 410 + - uid: 12101 components: - type: Transform - pos: -25.5,8.5 + rot: 3.141592653589793 rad + pos: 36.5,-101.5 parent: 1 - - uid: 411 + - uid: 12102 components: - type: Transform - pos: -25.5,10.5 + rot: 3.141592653589793 rad + pos: 36.5,-102.5 parent: 1 - - uid: 412 + - uid: 12103 components: - type: Transform - pos: -25.5,12.5 + rot: 3.141592653589793 rad + pos: 36.5,-103.5 parent: 1 - - uid: 413 + - uid: 12104 components: - type: Transform - pos: -25.5,14.5 + rot: 3.141592653589793 rad + pos: 36.5,-104.5 parent: 1 - - uid: 414 + - uid: 12105 components: - type: Transform - pos: -25.5,16.5 + rot: 3.141592653589793 rad + pos: 37.5,-92.5 parent: 1 - - uid: 415 + - uid: 12106 components: - type: Transform - pos: -25.5,18.5 + rot: 3.141592653589793 rad + pos: 37.5,-93.5 parent: 1 - - uid: 416 + - uid: 12107 components: - type: Transform - pos: -25.5,20.5 + rot: 3.141592653589793 rad + pos: 37.5,-94.5 parent: 1 - - uid: 450 + - uid: 12108 components: - type: Transform - pos: -25.5,23.5 + rot: 3.141592653589793 rad + pos: 37.5,-95.5 parent: 1 - - uid: 451 + - uid: 12109 components: - type: Transform - pos: -25.5,25.5 + rot: 3.141592653589793 rad + pos: 37.5,-96.5 parent: 1 - - uid: 452 + - uid: 12110 components: - type: Transform - pos: -25.5,27.5 + rot: 3.141592653589793 rad + pos: 37.5,-97.5 parent: 1 - - uid: 453 + - uid: 12111 components: - type: Transform - pos: -25.5,29.5 + pos: -19.5,-111.5 parent: 1 - - uid: 454 + - uid: 12112 components: - type: Transform - pos: -25.5,31.5 + rot: 3.141592653589793 rad + pos: 37.5,-99.5 parent: 1 - - uid: 455 + - uid: 12113 components: - type: Transform - pos: -25.5,32.5 + rot: 3.141592653589793 rad + pos: 37.5,-100.5 parent: 1 - - uid: 456 + - uid: 12114 components: - type: Transform - pos: -25.5,34.5 + rot: 3.141592653589793 rad + pos: 37.5,-101.5 parent: 1 - - uid: 457 + - uid: 12115 components: - type: Transform - pos: -25.5,36.5 + rot: 3.141592653589793 rad + pos: 37.5,-102.5 parent: 1 - - uid: 458 + - uid: 12117 components: - type: Transform - pos: -25.5,38.5 + rot: 3.141592653589793 rad + pos: 37.5,-104.5 parent: 1 - - uid: 459 + - uid: 12130 components: - type: Transform - pos: -26.5,-60.5 + rot: 3.141592653589793 rad + pos: 40.5,-95.5 parent: 1 - - uid: 460 + - uid: 12137 components: - type: Transform - pos: -26.5,-58.5 + rot: 3.141592653589793 rad + pos: 38.5,-96.5 parent: 1 - - uid: 461 + - uid: 12140 components: - type: Transform - pos: -26.5,-56.5 + rot: 3.141592653589793 rad + pos: 39.5,-93.5 parent: 1 - - uid: 462 + - uid: 12141 components: - type: Transform - pos: -26.5,-54.5 + pos: -15.5,-111.5 parent: 1 - - uid: 463 + - uid: 12142 components: - type: Transform - pos: -26.5,-53.5 + rot: 3.141592653589793 rad + pos: 39.5,-95.5 parent: 1 - - uid: 464 + - uid: 12143 components: - type: Transform - pos: -26.5,-52.5 + rot: 3.141592653589793 rad + pos: 39.5,-96.5 parent: 1 - - uid: 465 + - uid: 12145 components: - type: Transform - pos: -26.5,-51.5 + rot: 3.141592653589793 rad + pos: 38.5,-95.5 parent: 1 - - uid: 466 + - uid: 12146 components: - type: Transform - pos: -26.5,-50.5 + rot: 3.141592653589793 rad + pos: 12.5,-111.5 parent: 1 - - uid: 467 + - uid: 12147 components: - type: Transform - pos: -26.5,-49.5 + rot: 3.141592653589793 rad + pos: 13.5,-111.5 parent: 1 - - uid: 468 + - uid: 12148 components: - type: Transform - pos: -26.5,-48.5 + rot: 3.141592653589793 rad + pos: 14.5,-105.5 parent: 1 - - uid: 469 + - uid: 12149 components: - type: Transform - pos: -26.5,-47.5 + rot: 3.141592653589793 rad + pos: 14.5,-106.5 parent: 1 - - uid: 470 + - uid: 12150 components: - type: Transform - pos: -26.5,-46.5 + rot: 3.141592653589793 rad + pos: 14.5,-109.5 parent: 1 - - uid: 471 + - uid: 12151 components: - type: Transform - pos: -26.5,-45.5 + rot: 3.141592653589793 rad + pos: 44.5,-106.5 parent: 1 - - uid: 472 + - uid: 12152 components: - type: Transform - pos: -26.5,-44.5 + rot: 3.141592653589793 rad + pos: 15.5,-109.5 parent: 1 - - uid: 473 + - uid: 12153 components: - type: Transform - pos: -26.5,-43.5 + rot: 3.141592653589793 rad + pos: 16.5,-109.5 parent: 1 - - uid: 474 + - uid: 12154 components: - type: Transform - pos: -26.5,-42.5 + rot: 3.141592653589793 rad + pos: 17.5,-104.5 parent: 1 - - uid: 475 + - uid: 12156 components: - type: Transform - pos: -26.5,-41.5 + rot: 3.141592653589793 rad + pos: 18.5,-110.5 parent: 1 - - uid: 476 + - uid: 12157 components: - type: Transform - pos: -26.5,-40.5 + rot: 3.141592653589793 rad + pos: 18.5,-111.5 parent: 1 - - uid: 477 + - uid: 12158 components: - type: Transform - pos: -26.5,-39.5 + pos: 19.5,-109.5 parent: 1 - - uid: 478 + - uid: 12159 components: - type: Transform - pos: -26.5,-38.5 + pos: 19.5,-110.5 parent: 1 - - uid: 479 + - uid: 12160 components: - type: Transform - pos: -26.5,-37.5 + pos: 19.5,-111.5 parent: 1 - - uid: 480 + - uid: 12161 components: - type: Transform - pos: -26.5,-36.5 + rot: 3.141592653589793 rad + pos: 18.5,-104.5 parent: 1 - - uid: 481 + - uid: 12162 components: - type: Transform - pos: -26.5,-35.5 + rot: 3.141592653589793 rad + pos: 45.5,-106.5 parent: 1 - - uid: 482 + - uid: 12163 components: - type: Transform - pos: -26.5,-34.5 + rot: 3.141592653589793 rad + pos: 18.5,-109.5 parent: 1 - - uid: 483 + - uid: 12164 components: - type: Transform - pos: -26.5,-33.5 + rot: 3.141592653589793 rad + pos: 20.5,-104.5 parent: 1 - - uid: 484 + - uid: 12165 components: - type: Transform - pos: -26.5,-32.5 + rot: 3.141592653589793 rad + pos: 21.5,-104.5 parent: 1 - - uid: 485 + - uid: 12166 components: - type: Transform - pos: -26.5,-31.5 + pos: 21.5,-109.5 parent: 1 - - uid: 486 + - uid: 12167 components: - type: Transform - pos: -26.5,-30.5 + pos: 21.5,-110.5 parent: 1 - - uid: 487 + - uid: 12168 components: - type: Transform - pos: -26.5,-29.5 + rot: 3.141592653589793 rad + pos: 22.5,-104.5 parent: 1 - - uid: 488 + - uid: 12169 components: - type: Transform - pos: -26.5,-28.5 + rot: 3.141592653589793 rad + pos: 22.5,-106.5 parent: 1 - - uid: 489 + - uid: 12170 components: - type: Transform - pos: -26.5,-27.5 + pos: 22.5,-107.5 parent: 1 - - uid: 490 + - uid: 12171 components: - type: Transform - pos: -26.5,-26.5 + rot: 3.141592653589793 rad + pos: 23.5,-104.5 parent: 1 - - uid: 491 + - uid: 12172 components: - type: Transform - pos: -26.5,-25.5 + rot: 3.141592653589793 rad + pos: 23.5,-106.5 parent: 1 - - uid: 492 + - uid: 12182 components: - type: Transform - pos: -26.5,-24.5 + pos: 23.5,-107.5 parent: 1 - - uid: 493 + - uid: 12183 components: - type: Transform - pos: -26.5,-23.5 + rot: 3.141592653589793 rad + pos: 24.5,-104.5 parent: 1 - - uid: 494 + - uid: 12184 components: - type: Transform - pos: -26.5,-22.5 + rot: 3.141592653589793 rad + pos: 24.5,-106.5 parent: 1 - - uid: 495 + - uid: 12185 components: - type: Transform - pos: -26.5,-21.5 + rot: 3.141592653589793 rad + pos: 25.5,-106.5 parent: 1 - - uid: 496 + - uid: 12189 components: - type: Transform - pos: -26.5,-20.5 + rot: -1.5707963267948966 rad + pos: 36.5,-87.5 parent: 1 - - uid: 497 + - uid: 12190 components: - type: Transform - pos: -26.5,-19.5 + rot: -1.5707963267948966 rad + pos: 39.5,-87.5 parent: 1 - - uid: 498 + - uid: 12191 components: - type: Transform - pos: -26.5,-18.5 + rot: -1.5707963267948966 rad + pos: 41.5,-85.5 parent: 1 - - uid: 499 + - uid: 12193 components: - type: Transform - pos: -26.5,-17.5 + pos: 25.5,-107.5 parent: 1 - - uid: 500 + - uid: 12194 components: - type: Transform - pos: -26.5,-16.5 + rot: 3.141592653589793 rad + pos: 26.5,-106.5 parent: 1 - - uid: 501 + - uid: 12195 components: - type: Transform - pos: -26.5,-15.5 + pos: 26.5,-107.5 parent: 1 - - uid: 502 + - uid: 12199 components: - type: Transform - pos: -26.5,-14.5 + rot: 3.141592653589793 rad + pos: -8.5,-109.5 parent: 1 - - uid: 503 + - uid: 12201 components: - type: Transform - pos: -26.5,-13.5 + rot: 1.5707963267948966 rad + pos: -8.5,-110.5 parent: 1 - - uid: 504 + - uid: 12202 components: - type: Transform - pos: -26.5,-12.5 + rot: 3.141592653589793 rad + pos: -8.5,-111.5 parent: 1 - - uid: 505 + - uid: 12205 components: - type: Transform - pos: -26.5,-11.5 + rot: 3.141592653589793 rad + pos: -7.5,-111.5 parent: 1 - - uid: 506 + - uid: 12207 components: - type: Transform - pos: -26.5,-10.5 + rot: 3.141592653589793 rad + pos: -6.5,-111.5 parent: 1 - - uid: 507 + - uid: 12208 components: - type: Transform - pos: -26.5,-9.5 + rot: 3.141592653589793 rad + pos: -5.5,-109.5 parent: 1 - - uid: 508 + - uid: 12209 components: - type: Transform - pos: -26.5,-8.5 + rot: 3.141592653589793 rad + pos: -5.5,-111.5 parent: 1 - - uid: 509 + - uid: 12210 components: - type: Transform - pos: -26.5,-7.5 + rot: 3.141592653589793 rad + pos: -4.5,-109.5 parent: 1 - - uid: 510 + - uid: 12212 components: - type: Transform - pos: -26.5,-6.5 + rot: 3.141592653589793 rad + pos: -3.5,-109.5 parent: 1 - - uid: 511 + - uid: 12214 components: - type: Transform - pos: -26.5,-5.5 + rot: 3.141592653589793 rad + pos: -2.5,-109.5 parent: 1 - - uid: 512 + - uid: 12215 components: - type: Transform - pos: -26.5,-4.5 + rot: 3.141592653589793 rad + pos: -1.5,-109.5 parent: 1 - - uid: 513 + - uid: 12216 components: - type: Transform - pos: -26.5,-3.5 + rot: 3.141592653589793 rad + pos: -1.5,-111.5 parent: 1 - - uid: 514 + - uid: 12217 components: - type: Transform - pos: -26.5,-2.5 + rot: 3.141592653589793 rad + pos: -0.5,-109.5 parent: 1 - - uid: 515 + - uid: 12220 components: - type: Transform - pos: -26.5,-1.5 + rot: 3.141592653589793 rad + pos: 0.5,-111.5 parent: 1 - - uid: 516 + - uid: 12221 components: - type: Transform - pos: -26.5,-0.5 + rot: 3.141592653589793 rad + pos: 1.5,-109.5 parent: 1 - - uid: 517 + - uid: 12223 components: - type: Transform - pos: -26.5,0.5 + rot: 3.141592653589793 rad + pos: 1.5,-111.5 parent: 1 - - uid: 518 + - uid: 12225 components: - type: Transform - pos: -26.5,2.5 + rot: 3.141592653589793 rad + pos: 2.5,-111.5 parent: 1 - - uid: 519 + - uid: 12226 components: - type: Transform - pos: -26.5,3.5 + rot: 3.141592653589793 rad + pos: 3.5,-109.5 parent: 1 - - uid: 520 + - uid: 12237 components: - type: Transform - pos: -26.5,4.5 + rot: 3.141592653589793 rad + pos: 4.5,-109.5 parent: 1 - - uid: 521 + - uid: 12239 components: - type: Transform - pos: -26.5,5.5 + rot: 3.141592653589793 rad + pos: 5.5,-108.5 parent: 1 - - uid: 522 + - uid: 12241 components: - type: Transform - pos: -26.5,6.5 + rot: 3.141592653589793 rad + pos: 5.5,-109.5 parent: 1 - - uid: 523 + - uid: 12242 components: - type: Transform - pos: -26.5,7.5 + rot: 3.141592653589793 rad + pos: 7.5,-108.5 parent: 1 - - uid: 524 + - uid: 12243 components: - type: Transform - pos: -26.5,8.5 + rot: -1.5707963267948966 rad + pos: 40.5,-87.5 parent: 1 - - uid: 525 + - uid: 12244 components: - type: Transform - pos: -26.5,9.5 + rot: -1.5707963267948966 rad + pos: 41.5,-86.5 parent: 1 - - uid: 526 + - uid: 12245 components: - type: Transform - pos: -26.5,10.5 + rot: -1.5707963267948966 rad + pos: 41.5,-87.5 parent: 1 - - uid: 527 + - uid: 12247 components: - type: Transform - pos: -26.5,11.5 + rot: 3.141592653589793 rad + pos: 7.5,-109.5 parent: 1 - - uid: 528 + - uid: 12297 components: - type: Transform - pos: -26.5,12.5 + rot: -1.5707963267948966 rad + pos: 31.5,-86.5 parent: 1 - - uid: 529 + - uid: 12298 components: - type: Transform - pos: -26.5,13.5 + rot: -1.5707963267948966 rad + pos: 29.5,-87.5 parent: 1 - - uid: 530 + - uid: 12299 components: - type: Transform - pos: -26.5,14.5 + rot: -1.5707963267948966 rad + pos: 35.5,-87.5 parent: 1 - - uid: 531 + - uid: 12354 components: - type: Transform - pos: -26.5,15.5 + rot: -1.5707963267948966 rad + pos: 34.5,-87.5 parent: 1 - - uid: 532 + - uid: 12453 components: - type: Transform - pos: -26.5,16.5 + rot: 1.5707963267948966 rad + pos: -36.5,-79.5 parent: 1 - - uid: 533 + - uid: 12454 components: - type: Transform - pos: -21.5,-111.5 + rot: 1.5707963267948966 rad + pos: -36.5,-78.5 parent: 1 - - uid: 534 + - uid: 12462 components: - type: Transform - pos: -40.5,-8.5 + rot: -1.5707963267948966 rad + pos: 28.5,-87.5 parent: 1 - - uid: 537 + - uid: 12469 components: - type: Transform - pos: -21.5,-107.5 + rot: 1.5707963267948966 rad + pos: -36.5,-80.5 parent: 1 - - uid: 538 + - uid: 12470 components: - type: Transform - pos: -21.5,-106.5 + rot: 1.5707963267948966 rad + pos: -36.5,-81.5 parent: 1 - - uid: 539 + - uid: 12471 components: - type: Transform - pos: -21.5,-105.5 + rot: 1.5707963267948966 rad + pos: -36.5,-82.5 parent: 1 - - uid: 540 + - uid: 12472 components: - type: Transform - pos: -21.5,-104.5 + rot: 1.5707963267948966 rad + pos: -36.5,-83.5 parent: 1 - - uid: 541 + - uid: 12473 components: - type: Transform - pos: -21.5,-103.5 + rot: 1.5707963267948966 rad + pos: -36.5,-84.5 parent: 1 - - uid: 542 + - uid: 12474 components: - type: Transform - pos: -21.5,-102.5 + rot: 1.5707963267948966 rad + pos: -36.5,-85.5 parent: 1 - - uid: 543 + - uid: 12476 components: - type: Transform - pos: -28.5,9.5 + rot: 1.5707963267948966 rad + pos: -36.5,-87.5 parent: 1 - - uid: 544 + - uid: 12482 components: - type: Transform - pos: -28.5,8.5 + rot: 1.5707963267948966 rad + pos: -35.5,-85.5 parent: 1 - - uid: 545 + - uid: 12484 components: - type: Transform - pos: -28.5,4.5 + rot: 1.5707963267948966 rad + pos: -35.5,-87.5 parent: 1 - - uid: 546 + - uid: 12487 components: - type: Transform - pos: -21.5,-98.5 + rot: 1.5707963267948966 rad + pos: -34.5,-87.5 parent: 1 - - uid: 547 + - uid: 12489 components: - type: Transform - pos: -21.5,-97.5 + rot: 1.5707963267948966 rad + pos: -33.5,-87.5 parent: 1 - - uid: 548 + - uid: 12492 components: - type: Transform - pos: -21.5,-96.5 + rot: -1.5707963267948966 rad + pos: -32.5,-88.5 parent: 1 - - uid: 549 + - uid: 12493 components: - type: Transform - pos: -21.5,-95.5 + rot: -1.5707963267948966 rad + pos: -32.5,-89.5 parent: 1 - - uid: 550 + - uid: 12494 components: - type: Transform - pos: -21.5,-94.5 + rot: -1.5707963267948966 rad + pos: -32.5,-90.5 parent: 1 - - uid: 551 + - uid: 12495 components: - type: Transform - pos: -26.5,32.5 + rot: -1.5707963267948966 rad + pos: -32.5,-95.5 parent: 1 - - uid: 552 + - uid: 12496 components: - type: Transform - pos: -27.5,-54.5 + rot: -1.5707963267948966 rad + pos: -32.5,-96.5 parent: 1 - - uid: 553 + - uid: 12506 components: - type: Transform - pos: -27.5,-50.5 + rot: -1.5707963267948966 rad + pos: -32.5,-97.5 parent: 1 - - uid: 554 + - uid: 12507 components: - type: Transform - pos: -27.5,-48.5 + rot: -1.5707963267948966 rad + pos: -32.5,-98.5 parent: 1 - - uid: 555 + - uid: 12508 components: - type: Transform - pos: -27.5,-35.5 + rot: -1.5707963267948966 rad + pos: -32.5,-99.5 parent: 1 - - uid: 556 + - uid: 12509 components: - type: Transform - pos: -27.5,-29.5 + rot: 3.141592653589793 rad + pos: -32.5,-100.5 parent: 1 - - uid: 559 + - uid: 12523 components: - type: Transform - pos: -21.5,-74.5 + rot: -1.5707963267948966 rad + pos: -30.5,-88.5 parent: 1 - - uid: 560 + - uid: 12524 components: - type: Transform - pos: -21.5,-73.5 + rot: -1.5707963267948966 rad + pos: -30.5,-89.5 parent: 1 - - uid: 562 + - uid: 12525 components: - type: Transform - pos: -21.5,-72.5 + rot: -1.5707963267948966 rad + pos: -30.5,-90.5 parent: 1 - - uid: 563 + - uid: 12526 components: - type: Transform - pos: -21.5,-71.5 + rot: -1.5707963267948966 rad + pos: -30.5,-91.5 parent: 1 - - uid: 564 + - uid: 12527 components: - type: Transform - pos: -21.5,-70.5 + rot: -1.5707963267948966 rad + pos: -30.5,-92.5 parent: 1 - - uid: 565 + - uid: 12528 components: - type: Transform - pos: -21.5,-69.5 + rot: -1.5707963267948966 rad + pos: -30.5,-93.5 parent: 1 - - uid: 566 + - uid: 12529 components: - type: Transform - pos: -21.5,-68.5 + rot: -1.5707963267948966 rad + pos: -30.5,-94.5 parent: 1 - - uid: 567 + - uid: 12530 components: - type: Transform - pos: -21.5,-67.5 + rot: -1.5707963267948966 rad + pos: -30.5,-95.5 parent: 1 - - uid: 568 + - uid: 12531 components: - type: Transform - pos: -21.5,-66.5 + rot: -1.5707963267948966 rad + pos: -30.5,-96.5 parent: 1 - - uid: 684 + - uid: 12532 components: - type: Transform - pos: -21.5,-65.5 + rot: -1.5707963267948966 rad + pos: -30.5,-97.5 parent: 1 - - uid: 685 + - uid: 12533 components: - type: Transform - pos: -21.5,-64.5 + rot: -1.5707963267948966 rad + pos: -30.5,-98.5 parent: 1 - - uid: 686 + - uid: 12534 components: - type: Transform - pos: -21.5,-63.5 + rot: -1.5707963267948966 rad + pos: -30.5,-99.5 parent: 1 - - uid: 687 + - uid: 12535 components: - type: Transform - pos: -21.5,-62.5 + rot: 3.141592653589793 rad + pos: -30.5,-100.5 parent: 1 - - uid: 689 + - uid: 12536 components: - type: Transform - pos: -22.5,-103.5 + rot: 3.141592653589793 rad + pos: -32.5,-106.5 parent: 1 - - uid: 690 + - uid: 12537 components: - type: Transform - pos: -28.5,6.5 + rot: 3.141592653589793 rad + pos: -30.5,-102.5 parent: 1 - - uid: 691 + - uid: 12538 components: - type: Transform - pos: -28.5,-9.5 + rot: 3.141592653589793 rad + pos: -30.5,-103.5 parent: 1 - - uid: 692 + - uid: 12539 components: - type: Transform - pos: -28.5,-11.5 + rot: 3.141592653589793 rad + pos: -31.5,-106.5 parent: 1 - - uid: 693 + - uid: 12568 components: - type: Transform - pos: -22.5,-95.5 + rot: 1.5707963267948966 rad + pos: 41.5,-80.5 parent: 1 - - uid: 694 + - uid: 12569 components: - type: Transform - pos: -28.5,-21.5 + rot: 1.5707963267948966 rad + pos: 42.5,-80.5 parent: 1 - - uid: 696 + - uid: 12571 components: - type: Transform - pos: -22.5,-89.5 + rot: 1.5707963267948966 rad + pos: 32.5,-80.5 parent: 1 - - uid: 698 + - uid: 12572 components: - type: Transform - pos: -27.5,-49.5 + rot: 1.5707963267948966 rad + pos: 33.5,-80.5 parent: 1 - - uid: 699 + - uid: 12573 components: - type: Transform - pos: -27.5,-46.5 + rot: 1.5707963267948966 rad + pos: 37.5,-80.5 parent: 1 - - uid: 700 + - uid: 12949 components: - type: Transform - pos: -27.5,-36.5 + rot: 3.141592653589793 rad + pos: 45.5,-88.5 parent: 1 - - uid: 701 + - uid: 12950 components: - type: Transform - pos: -27.5,-38.5 + rot: 3.141592653589793 rad + pos: 45.5,-89.5 parent: 1 - - uid: 702 + - uid: 12951 components: - type: Transform - pos: -28.5,38.5 + rot: 3.141592653589793 rad + pos: 45.5,-90.5 parent: 1 - - uid: 703 + - uid: 12952 components: - type: Transform - pos: -22.5,-74.5 + rot: 3.141592653589793 rad + pos: 45.5,-91.5 parent: 1 - - uid: 704 + - uid: 12953 components: - type: Transform - pos: -22.5,-72.5 + rot: 3.141592653589793 rad + pos: 45.5,-92.5 parent: 1 - - uid: 705 + - uid: 12954 components: - type: Transform - pos: -22.5,-62.5 + rot: 3.141592653589793 rad + pos: 45.5,-93.5 parent: 1 - - uid: 707 + - uid: 12955 components: - type: Transform - pos: -23.5,-108.5 + rot: 3.141592653589793 rad + pos: 45.5,-94.5 parent: 1 - - uid: 708 + - uid: 12956 components: - type: Transform - pos: -23.5,-106.5 + rot: 3.141592653589793 rad + pos: 45.5,-95.5 parent: 1 - - uid: 709 + - uid: 12957 components: - type: Transform - pos: -23.5,-104.5 + rot: 3.141592653589793 rad + pos: 45.5,-96.5 parent: 1 - - uid: 710 + - uid: 12958 components: - type: Transform - pos: -22.5,-70.5 + rot: 3.141592653589793 rad + pos: 45.5,-97.5 parent: 1 - - uid: 711 + - uid: 12959 components: - type: Transform - pos: -22.5,-68.5 + rot: 3.141592653589793 rad + pos: 45.5,-98.5 parent: 1 - - uid: 712 + - uid: 12960 components: - type: Transform - pos: -22.5,-66.5 + rot: 3.141592653589793 rad + pos: 45.5,-99.5 parent: 1 - - uid: 713 + - uid: 12961 components: - type: Transform - pos: -22.5,-64.5 + rot: 3.141592653589793 rad + pos: 45.5,-100.5 parent: 1 - - uid: 714 + - uid: 12962 components: - type: Transform - pos: -23.5,-103.5 + rot: 3.141592653589793 rad + pos: 45.5,-101.5 parent: 1 - - uid: 715 + - uid: 12963 components: - type: Transform - pos: -23.5,-101.5 + rot: 3.141592653589793 rad + pos: 45.5,-102.5 parent: 1 - - uid: 716 + - uid: 12964 components: - type: Transform - pos: -28.5,-8.5 + rot: 3.141592653589793 rad + pos: 45.5,-103.5 parent: 1 - - uid: 717 + - uid: 12965 components: - type: Transform - pos: -28.5,-13.5 + rot: 3.141592653589793 rad + pos: 45.5,-105.5 parent: 1 - - uid: 718 + - uid: 12966 components: - type: Transform - pos: -28.5,-19.5 + rot: 3.141592653589793 rad + pos: 45.5,-104.5 parent: 1 - - uid: 719 +- proto: WallRockBasalt + entities: + - uid: 186 components: - type: Transform - pos: -28.5,-17.5 + pos: -33.5,0.5 parent: 1 - - uid: 721 + - uid: 187 components: - type: Transform - pos: -23.5,-89.5 + pos: -33.5,-0.5 parent: 1 - - uid: 727 + - uid: 188 components: - type: Transform - pos: -28.5,32.5 + pos: -21.5,4.5 parent: 1 - - uid: 729 + - uid: 189 components: - type: Transform - pos: -23.5,-73.5 + pos: -21.5,5.5 parent: 1 - - uid: 730 + - uid: 191 components: - type: Transform - pos: -23.5,-71.5 + pos: -14.5,-3.5 parent: 1 - - uid: 731 + - uid: 201 components: - type: Transform - pos: -23.5,-69.5 + pos: -32.5,2.5 parent: 1 - - uid: 732 + - uid: 202 components: - type: Transform - pos: -23.5,-67.5 + pos: -32.5,6.5 parent: 1 - - uid: 733 + - uid: 294 components: - type: Transform - pos: -23.5,-65.5 + pos: -15.5,-2.5 parent: 1 - - uid: 734 + - uid: 295 components: - type: Transform - pos: -23.5,-63.5 + pos: -13.5,-3.5 parent: 1 - - uid: 737 + - uid: 297 components: - type: Transform - pos: -24.5,-107.5 + pos: -14.5,-2.5 parent: 1 - - uid: 738 + - uid: 298 components: - type: Transform - pos: -24.5,-105.5 + pos: -25.5,6.5 parent: 1 - - uid: 739 + - uid: 305 components: - type: Transform - pos: -24.5,-103.5 + pos: -12.5,-111.5 parent: 1 - - uid: 740 + - uid: 306 components: - type: Transform - pos: -24.5,-101.5 + pos: -32.5,7.5 parent: 1 - - uid: 741 + - uid: 307 components: - type: Transform - pos: -28.5,-5.5 + pos: -32.5,5.5 parent: 1 - - uid: 742 + - uid: 308 components: - type: Transform - pos: -28.5,-6.5 + pos: -15.5,-3.5 parent: 1 - - uid: 743 + - uid: 309 components: - type: Transform - pos: -28.5,-15.5 + pos: -11.5,-111.5 parent: 1 - - uid: 746 + - uid: 347 components: - type: Transform - pos: -16.5,-13.5 + pos: -13.5,-2.5 parent: 1 - - uid: 747 + - uid: 348 components: - type: Transform - pos: -28.5,31.5 + pos: -24.5,6.5 parent: 1 - - uid: 748 + - uid: 357 components: - type: Transform - pos: -28.5,36.5 + pos: -32.5,4.5 parent: 1 - - uid: 750 + - uid: 358 components: - type: Transform - pos: -24.5,-73.5 + pos: -31.5,4.5 parent: 1 - - uid: 751 + - uid: 359 components: - type: Transform - pos: -24.5,-72.5 + pos: -29.5,7.5 parent: 1 - - uid: 752 + - uid: 397 components: - type: Transform - pos: -24.5,-89.5 + pos: -26.5,7.5 parent: 1 - - uid: 753 + - uid: 398 components: - type: Transform - pos: -24.5,-88.5 + pos: -31.5,6.5 parent: 1 - - uid: 754 + - uid: 399 components: - type: Transform - pos: -17.5,-13.5 + pos: -17.5,-1.5 parent: 1 - - uid: 756 + - uid: 400 components: - type: Transform - pos: -19.5,-13.5 + pos: -17.5,-0.5 parent: 1 - - uid: 757 + - uid: 401 components: - type: Transform - pos: -20.5,-13.5 + pos: -16.5,-0.5 parent: 1 - - uid: 758 + - uid: 402 components: - type: Transform - pos: -20.5,-14.5 + pos: -24.5,5.5 parent: 1 - - uid: 761 + - uid: 403 components: - type: Transform - pos: -24.5,-71.5 + pos: -19.5,7.5 parent: 1 - - uid: 762 + - uid: 404 components: - type: Transform - pos: -24.5,-70.5 + pos: -23.5,6.5 parent: 1 - - uid: 763 + - uid: 405 components: - type: Transform - pos: -24.5,-69.5 + pos: -24.5,4.5 parent: 1 - - uid: 764 + - uid: 406 components: - type: Transform - pos: -24.5,-68.5 + pos: -23.5,5.5 parent: 1 - - uid: 765 + - uid: 501 components: - type: Transform - pos: -24.5,-67.5 + pos: -13.5,-110.5 parent: 1 - - uid: 766 + - uid: 513 components: - type: Transform - pos: -24.5,-66.5 + pos: -22.5,6.5 parent: 1 - - uid: 767 + - uid: 514 components: - type: Transform - pos: -24.5,-65.5 + pos: -22.5,4.5 parent: 1 - - uid: 768 + - uid: 515 components: - type: Transform - pos: -24.5,-62.5 + pos: -22.5,2.5 parent: 1 - - uid: 769 + - uid: 516 components: - type: Transform - pos: -25.5,-100.5 + pos: -27.5,7.5 parent: 1 - - uid: 770 + - uid: 517 components: - type: Transform - pos: -26.5,-70.5 + pos: -31.5,7.5 parent: 1 - - uid: 771 + - uid: 518 components: - type: Transform - pos: -25.5,-97.5 + pos: -23.5,4.5 parent: 1 - - uid: 773 + - uid: 519 components: - type: Transform - pos: -27.5,-106.5 + pos: -22.5,5.5 parent: 1 - - uid: 774 + - uid: 520 components: - type: Transform - pos: -27.5,-101.5 + pos: -31.5,5.5 parent: 1 - - uid: 775 + - uid: 525 components: - type: Transform - pos: -40.5,-7.5 + pos: -27.5,-3.5 parent: 1 - - uid: 776 + - uid: 544 components: - type: Transform - pos: -26.5,-106.5 + pos: -20.5,-0.5 parent: 1 - - uid: 777 + - uid: 545 components: - type: Transform - pos: 24.5,-31.5 + pos: -25.5,5.5 parent: 1 - - uid: 778 + - uid: 691 components: - type: Transform - pos: 24.5,-32.5 + pos: -23.5,8.5 parent: 1 - - uid: 780 + - uid: 692 components: - type: Transform - pos: -26.5,-63.5 + pos: -19.5,8.5 parent: 1 - - uid: 784 + - uid: 741 components: - type: Transform - pos: -28.5,28.5 + pos: -20.5,8.5 parent: 1 - - uid: 785 + - uid: 743 components: - type: Transform - pos: -27.5,-66.5 + pos: -22.5,7.5 parent: 1 - - uid: 787 + - uid: 809 components: - type: Transform - pos: -27.5,-73.5 + pos: -12.5,-110.5 parent: 1 - - uid: 788 + - uid: 812 components: - type: Transform - pos: -28.5,-105.5 + pos: -11.5,-107.5 parent: 1 - - uid: 789 + - uid: 815 components: - type: Transform - pos: -27.5,-63.5 + pos: -11.5,-108.5 parent: 1 - - uid: 790 + - uid: 855 components: - type: Transform - pos: 22.5,-98.5 + pos: -11.5,-109.5 parent: 1 - - uid: 791 + - uid: 856 components: - type: Transform - pos: 20.5,-100.5 + pos: 18.5,-45.5 parent: 1 - - uid: 793 + - uid: 884 components: - type: Transform - pos: -28.5,-73.5 + pos: -26.5,-109.5 parent: 1 - - uid: 794 + - uid: 928 components: - type: Transform - pos: 19.5,-103.5 + pos: 17.5,-46.5 parent: 1 - - uid: 795 + - uid: 930 components: - type: Transform - pos: 21.5,-99.5 + pos: -10.5,-111.5 parent: 1 - - uid: 796 + - uid: 931 components: - type: Transform - pos: -28.5,-68.5 + pos: -9.5,-7.5 parent: 1 - - uid: 797 + - uid: 932 components: - type: Transform - pos: -28.5,-69.5 + pos: -18.5,-17.5 parent: 1 - - uid: 798 + - uid: 933 components: - type: Transform - pos: -28.5,-67.5 + pos: -19.5,-16.5 parent: 1 - - uid: 799 + - uid: 936 components: - type: Transform - pos: 16.5,-102.5 + pos: -15.5,-19.5 parent: 1 - - uid: 800 + - uid: 937 components: - type: Transform - pos: 16.5,-99.5 + pos: -15.5,-20.5 parent: 1 - - uid: 801 + - uid: 938 components: - type: Transform - pos: 22.5,-110.5 + pos: -14.5,-20.5 parent: 1 - - uid: 802 + - uid: 939 components: - type: Transform - pos: 21.5,-109.5 + pos: -17.5,8.5 parent: 1 - - uid: 803 + - uid: 940 components: - type: Transform - pos: 21.5,-104.5 + pos: -9.5,-8.5 parent: 1 - - uid: 804 + - uid: 941 components: - type: Transform - pos: 20.5,-108.5 + pos: -15.5,-9.5 parent: 1 - - uid: 805 + - uid: 942 components: - type: Transform - pos: 18.5,-106.5 + pos: -17.5,-8.5 parent: 1 - - uid: 808 + - uid: 943 components: - type: Transform - pos: 13.5,-109.5 + pos: -22.5,-13.5 parent: 1 - - uid: 809 + - uid: 945 components: - type: Transform - pos: 10.5,-108.5 + pos: -31.5,-9.5 parent: 1 - - uid: 810 + - uid: 946 components: - type: Transform - pos: 11.5,-108.5 + pos: -30.5,-7.5 parent: 1 - - uid: 811 + - uid: 947 components: - type: Transform - pos: 12.5,-108.5 + pos: -10.5,-8.5 parent: 1 - - uid: 812 + - uid: 950 components: - type: Transform - pos: 13.5,-107.5 + pos: -22.5,-11.5 parent: 1 - - uid: 815 + - uid: 951 components: - type: Transform - pos: 13.5,-108.5 + pos: -17.5,-13.5 parent: 1 - - uid: 816 + - uid: 962 components: - type: Transform - pos: 22.5,-109.5 + pos: -31.5,-7.5 parent: 1 - - uid: 817 + - uid: 966 components: - type: Transform - pos: 22.5,-108.5 + pos: -31.5,-8.5 parent: 1 - - uid: 818 + - uid: 967 components: - type: Transform - pos: 22.5,-107.5 + pos: -32.5,-8.5 parent: 1 - - uid: 819 + - uid: 969 components: - type: Transform - pos: 10.5,-109.5 + pos: -24.5,-8.5 parent: 1 - - uid: 822 + - uid: 970 components: - type: Transform - pos: 9.5,-111.5 + pos: -32.5,-7.5 parent: 1 - - uid: 824 + - uid: 973 components: - type: Transform - pos: 9.5,-109.5 + pos: -32.5,-10.5 parent: 1 - - uid: 828 + - uid: 974 components: - type: Transform - pos: 9.5,-105.5 + pos: -28.5,-15.5 parent: 1 - - uid: 829 + - uid: 975 components: - type: Transform - pos: 8.5,-111.5 + pos: -22.5,8.5 parent: 1 - - uid: 834 + - uid: 977 components: - type: Transform - pos: 8.5,-106.5 + pos: -31.5,-12.5 parent: 1 - - uid: 835 + - uid: 980 components: - type: Transform - pos: 8.5,-105.5 + pos: -28.5,-8.5 parent: 1 - - uid: 836 + - uid: 981 components: - type: Transform - pos: 7.5,-111.5 + pos: -14.5,-9.5 parent: 1 - - uid: 837 + - uid: 982 components: - type: Transform - pos: 7.5,-110.5 + pos: -28.5,-13.5 parent: 1 - - uid: 840 + - uid: 983 components: - type: Transform - pos: 7.5,-107.5 + pos: -31.5,-10.5 parent: 1 - - uid: 841 + - uid: 984 components: - type: Transform - pos: 7.5,-106.5 + pos: -14.5,-5.5 parent: 1 - - uid: 842 + - uid: 986 components: - type: Transform - pos: 7.5,-105.5 + pos: -29.5,-10.5 parent: 1 - - uid: 843 + - uid: 991 components: - type: Transform - pos: 6.5,-111.5 + pos: -23.5,3.5 parent: 1 - - uid: 844 + - uid: 994 components: - type: Transform - pos: 6.5,-110.5 + pos: -32.5,-9.5 parent: 1 - - uid: 847 + - uid: 995 components: - type: Transform - pos: 6.5,-107.5 + pos: -16.5,-7.5 parent: 1 - - uid: 848 + - uid: 996 components: - type: Transform - pos: 6.5,-106.5 + pos: -28.5,-7.5 parent: 1 - - uid: 849 + - uid: 998 components: - type: Transform - pos: 6.5,-105.5 + pos: -21.5,-107.5 parent: 1 - - uid: 853 + - uid: 1023 components: - type: Transform - pos: 5.5,-107.5 + pos: -23.5,-108.5 parent: 1 - - uid: 854 + - uid: 1026 components: - type: Transform - pos: 5.5,-106.5 + pos: -32.5,-11.5 parent: 1 - - uid: 855 + - uid: 1027 components: - type: Transform - pos: 5.5,-105.5 + pos: -12.5,-7.5 parent: 1 - - uid: 856 + - uid: 1028 components: - type: Transform - pos: 4.5,-111.5 + pos: -14.5,-7.5 parent: 1 - - uid: 858 + - uid: 1031 components: - type: Transform - pos: 5.5,-111.5 + pos: -24.5,-107.5 parent: 1 - - uid: 860 + - uid: 1244 components: - type: Transform - pos: 4.5,-108.5 + pos: -21.5,8.5 parent: 1 - - uid: 861 + - uid: 1296 components: - type: Transform - pos: 4.5,-107.5 + pos: -18.5,7.5 parent: 1 - - uid: 862 + - uid: 1297 components: - type: Transform - pos: 4.5,-106.5 + pos: -23.5,2.5 parent: 1 - - uid: 863 + - uid: 1298 components: - type: Transform - pos: 4.5,-105.5 + pos: 4.5,-108.5 parent: 1 - - uid: 864 + - uid: 1313 components: - type: Transform - pos: 3.5,-111.5 + pos: -28.5,9.5 parent: 1 - - uid: 866 + - uid: 1314 components: - type: Transform - pos: 23.5,-112.5 + pos: -27.5,9.5 parent: 1 - - uid: 867 + - uid: 1315 components: - type: Transform - pos: 3.5,-108.5 + pos: -33.5,5.5 parent: 1 - - uid: 868 + - uid: 1316 components: - type: Transform - pos: 3.5,-107.5 + pos: -22.5,3.5 parent: 1 - - uid: 869 + - uid: 1317 components: - type: Transform - pos: 3.5,-106.5 + pos: -24.5,8.5 parent: 1 - - uid: 870 + - uid: 1318 components: - type: Transform - pos: 23.5,-116.5 + pos: -30.5,7.5 parent: 1 - - uid: 871 + - uid: 1320 components: - type: Transform - pos: 23.5,-115.5 + pos: -28.5,7.5 parent: 1 - - uid: 872 + - uid: 1331 components: - type: Transform - pos: 2.5,-109.5 + pos: -9.5,2.5 parent: 1 - - uid: 873 + - uid: 1332 components: - type: Transform - pos: 2.5,-108.5 + pos: -19.5,6.5 parent: 1 - - uid: 874 + - uid: 1333 components: - type: Transform - pos: 2.5,-107.5 + pos: -9.5,4.5 parent: 1 - - uid: 875 + - uid: 1334 components: - type: Transform - pos: -40.5,-10.5 + pos: 4.5,-107.5 parent: 1 - - uid: 876 + - uid: 1335 components: - type: Transform - pos: -40.5,-9.5 + pos: -8.5,4.5 parent: 1 - - uid: 877 + - uid: 1348 components: - type: Transform - pos: 23.5,-113.5 + pos: -17.5,6.5 parent: 1 - - uid: 878 + - uid: 1349 components: - type: Transform - pos: 1.5,-108.5 + pos: -19.5,1.5 parent: 1 - - uid: 880 + - uid: 1350 components: - type: Transform - pos: 23.5,-101.5 + pos: -18.5,2.5 parent: 1 - - uid: 881 + - uid: 1361 components: - type: Transform - pos: 0.5,-109.5 + pos: 4.5,-106.5 parent: 1 - - uid: 882 + - uid: 1380 components: - type: Transform - pos: 0.5,-108.5 + pos: 4.5,-105.5 parent: 1 - - uid: 883 + - uid: 1382 components: - type: Transform - pos: -0.5,-111.5 + pos: -9.5,3.5 parent: 1 - - uid: 885 + - uid: 1383 components: - type: Transform - pos: -40.5,-6.5 + pos: -9.5,6.5 parent: 1 - - uid: 886 + - uid: 1384 components: - type: Transform - pos: -0.5,-108.5 + pos: -9.5,7.5 parent: 1 - - uid: 887 + - uid: 1393 components: - type: Transform - pos: 23.5,-111.5 + pos: 3.5,-108.5 parent: 1 - - uid: 888 + - uid: 1394 components: - type: Transform - pos: 23.5,-109.5 + pos: 3.5,-107.5 parent: 1 - - uid: 889 + - uid: 1395 components: - type: Transform - pos: -1.5,-109.5 + pos: 3.5,-106.5 parent: 1 - - uid: 890 + - uid: 1397 components: - type: Transform - pos: -1.5,-108.5 + pos: -30.5,0.5 parent: 1 - - uid: 891 + - uid: 1398 components: - type: Transform - pos: -2.5,-111.5 + pos: -32.5,0.5 parent: 1 - - uid: 894 + - uid: 1399 components: - type: Transform - pos: -40.5,-2.5 + pos: -32.5,-0.5 parent: 1 - - uid: 895 + - uid: 1408 components: - type: Transform - pos: -3.5,-111.5 + pos: 2.5,-108.5 parent: 1 - - uid: 896 + - uid: 1409 components: - type: Transform - pos: 23.5,-14.5 + pos: 2.5,-107.5 parent: 1 - - uid: 899 + - uid: 1411 components: - type: Transform - pos: -3.5,-107.5 + pos: -30.5,-0.5 parent: 1 - - uid: 900 + - uid: 1412 components: - type: Transform - pos: -4.5,-111.5 + pos: -31.5,0.5 parent: 1 - - uid: 903 + - uid: 1425 components: - type: Transform - pos: -4.5,-108.5 + pos: -26.5,-1.5 parent: 1 - - uid: 904 + - uid: 1426 components: - type: Transform - pos: -4.5,-107.5 + pos: -25.5,-1.5 parent: 1 - - uid: 905 + - uid: 1491 components: - type: Transform - pos: -4.5,-106.5 + pos: 1.5,-108.5 parent: 1 - - uid: 906 + - uid: 1493 components: - type: Transform - pos: 23.5,-4.5 + pos: 0.5,-108.5 parent: 1 - - uid: 908 + - uid: 1495 components: - type: Transform - pos: -40.5,-12.5 + pos: -0.5,-108.5 parent: 1 - - uid: 909 + - uid: 1501 components: - type: Transform - pos: -5.5,-108.5 + pos: -1.5,-108.5 parent: 1 - - uid: 910 + - uid: 1505 components: - type: Transform - pos: -5.5,-107.5 + pos: -3.5,-107.5 parent: 1 - - uid: 911 + - uid: 1508 components: - type: Transform - pos: -5.5,-106.5 + pos: -4.5,-108.5 parent: 1 - - uid: 912 + - uid: 1509 components: - type: Transform - pos: -5.5,-105.5 + pos: -4.5,-107.5 parent: 1 - - uid: 915 + - uid: 1510 components: - type: Transform - pos: -6.5,-109.5 + pos: -4.5,-106.5 parent: 1 - - uid: 916 + - uid: 1511 components: - type: Transform - pos: -6.5,-108.5 + pos: -5.5,-108.5 parent: 1 - - uid: 917 + - uid: 1512 components: - type: Transform - pos: -6.5,-107.5 + pos: -5.5,-107.5 parent: 1 - - uid: 918 + - uid: 1513 components: - type: Transform - pos: -6.5,-106.5 + pos: -5.5,-106.5 parent: 1 - - uid: 919 + - uid: 1516 components: - type: Transform - pos: -6.5,-105.5 + pos: -5.5,-105.5 parent: 1 - - uid: 920 + - uid: 1541 components: - type: Transform - pos: -40.5,-27.5 + pos: -12.5,-107.5 parent: 1 - - uid: 921 + - uid: 1546 components: - type: Transform - pos: -40.5,-29.5 + pos: 17.5,-47.5 parent: 1 - - uid: 923 + - uid: 1547 components: - type: Transform - pos: -7.5,-108.5 + pos: 20.5,-47.5 parent: 1 - - uid: 924 + - uid: 1549 components: - type: Transform - pos: -7.5,-107.5 + pos: 17.5,-45.5 parent: 1 - - uid: 925 + - uid: 1550 components: - type: Transform - pos: -7.5,-106.5 + pos: -10.5,-107.5 parent: 1 - - uid: 926 + - uid: 1710 components: - type: Transform - pos: -7.5,-105.5 + pos: 19.5,-45.5 parent: 1 - - uid: 927 + - uid: 1717 components: - type: Transform - pos: -8.5,-111.5 + pos: -12.5,-109.5 parent: 1 - - uid: 930 + - uid: 1718 components: - type: Transform - pos: -8.5,-108.5 + pos: -12.5,-108.5 parent: 1 - - uid: 931 + - uid: 1729 components: - type: Transform - pos: -8.5,-107.5 + pos: -5.5,-4.5 parent: 1 - - uid: 932 + - uid: 1736 components: - type: Transform - pos: -8.5,-106.5 + pos: -28.5,-9.5 parent: 1 - - uid: 933 + - uid: 1756 components: - type: Transform - pos: -8.5,-105.5 + pos: -25.5,-15.5 parent: 1 - - uid: 934 + - uid: 1757 components: - type: Transform - pos: -28.5,19.5 + pos: -13.5,-109.5 parent: 1 - - uid: 935 + - uid: 1758 components: - type: Transform - pos: -40.5,-28.5 + pos: -13.5,-108.5 parent: 1 - - uid: 938 + - uid: 1759 components: - type: Transform - pos: -9.5,-108.5 + pos: -13.5,-107.5 parent: 1 - - uid: 939 + - uid: 1761 components: - type: Transform - pos: -9.5,-107.5 + pos: -14.5,-109.5 parent: 1 - - uid: 940 + - uid: 1762 components: - type: Transform - pos: -9.5,-106.5 + pos: -14.5,-108.5 parent: 1 - - uid: 941 + - uid: 1763 components: - type: Transform - pos: -9.5,-105.5 + pos: -14.5,-107.5 parent: 1 - - uid: 943 + - uid: 1766 components: - type: Transform - pos: -10.5,-110.5 + pos: -15.5,-108.5 parent: 1 - - uid: 946 + - uid: 1767 components: - type: Transform - pos: -10.5,-107.5 + pos: -15.5,-107.5 parent: 1 - - uid: 947 + - uid: 1771 components: - type: Transform - pos: -10.5,-106.5 + pos: -16.5,-108.5 parent: 1 - - uid: 948 + - uid: 1772 components: - type: Transform - pos: -28.5,21.5 + pos: -16.5,-107.5 parent: 1 - - uid: 949 + - uid: 1774 components: - type: Transform - pos: -28.5,18.5 + pos: -17.5,-108.5 parent: 1 - - uid: 951 + - uid: 1775 components: - type: Transform - pos: -11.5,-110.5 + pos: -17.5,-107.5 parent: 1 - - uid: 952 + - uid: 1791 components: - type: Transform - pos: -40.5,-31.5 + pos: -18.5,-107.5 parent: 1 - - uid: 953 + - uid: 1828 components: - type: Transform - pos: -40.5,-34.5 + pos: -19.5,-108.5 parent: 1 - - uid: 954 + - uid: 1830 components: - type: Transform - pos: -40.5,-33.5 + pos: -19.5,-107.5 parent: 1 - - uid: 955 + - uid: 1857 components: - type: Transform - pos: -40.5,-32.5 + pos: -20.5,-108.5 parent: 1 - - uid: 956 + - uid: 1860 components: - type: Transform - pos: -28.5,15.5 + pos: -20.5,-107.5 parent: 1 - - uid: 957 + - uid: 1873 components: - type: Transform - pos: -28.5,14.5 + pos: -26.5,-12.5 parent: 1 - - uid: 958 + - uid: 1874 components: - type: Transform - pos: -28.5,1.5 + pos: -30.5,-12.5 parent: 1 - - uid: 959 + - uid: 1876 components: - type: Transform - pos: -28.5,16.5 + pos: -29.5,-7.5 parent: 1 - - uid: 960 + - uid: 1894 components: - type: Transform - pos: -11.5,-101.5 + pos: -11.5,-17.5 parent: 1 - - uid: 961 + - uid: 1895 components: - type: Transform - pos: -28.5,20.5 + pos: -11.5,-16.5 parent: 1 - - uid: 962 + - uid: 1896 components: - type: Transform - pos: -11.5,-99.5 + pos: -8.5,-17.5 parent: 1 - - uid: 963 + - uid: 1897 components: - type: Transform - pos: -11.5,-98.5 + pos: -10.5,-12.5 parent: 1 - - uid: 964 + - uid: 1898 components: - type: Transform - pos: -40.5,-35.5 + pos: -8.5,-12.5 parent: 1 - - uid: 965 + - uid: 1899 components: - type: Transform - pos: -40.5,-30.5 + pos: -12.5,-17.5 parent: 1 - - uid: 966 + - uid: 1900 components: - type: Transform - pos: -12.5,-109.5 + pos: -11.5,-19.5 parent: 1 - - uid: 967 + - uid: 1901 components: - type: Transform - pos: -12.5,-108.5 + pos: -9.5,-20.5 parent: 1 - - uid: 968 + - uid: 1902 components: - type: Transform - pos: -40.5,-37.5 + pos: -8.5,-15.5 parent: 1 - - uid: 970 + - uid: 1903 components: - type: Transform - pos: -12.5,-105.5 + pos: -11.5,-18.5 parent: 1 - - uid: 971 + - uid: 1907 components: - type: Transform - pos: -28.5,13.5 + pos: -9.5,-18.5 parent: 1 - - uid: 972 + - uid: 1908 components: - type: Transform - pos: -28.5,2.5 + pos: -9.5,-13.5 parent: 1 - - uid: 973 + - uid: 1909 components: - type: Transform - pos: -28.5,0.5 + pos: -9.5,-16.5 parent: 1 - - uid: 974 + - uid: 1910 components: - type: Transform - pos: -28.5,-0.5 + pos: -12.5,-15.5 parent: 1 - - uid: 975 + - uid: 1911 components: - type: Transform - pos: -28.5,-3.5 + pos: -12.5,-18.5 parent: 1 - - uid: 976 + - uid: 1912 components: - type: Transform - pos: -28.5,17.5 + pos: -9.5,-19.5 parent: 1 - - uid: 977 + - uid: 1915 components: - type: Transform - pos: -28.5,3.5 + pos: -11.5,-13.5 parent: 1 - - uid: 978 + - uid: 1918 components: - type: Transform - pos: -40.5,-39.5 + pos: -8.5,-16.5 parent: 1 - - uid: 979 + - uid: 1919 components: - type: Transform - pos: -40.5,-38.5 + pos: -9.5,-17.5 parent: 1 - - uid: 980 + - uid: 1920 components: - type: Transform - pos: -13.5,-109.5 + pos: -12.5,-13.5 parent: 1 - - uid: 981 + - uid: 1922 components: - type: Transform - pos: -13.5,-108.5 + pos: -8.5,-14.5 parent: 1 - - uid: 982 + - uid: 2101 components: - type: Transform - pos: -13.5,-107.5 + pos: -9.5,-14.5 parent: 1 - - uid: 983 + - uid: 2102 components: - type: Transform - pos: -13.5,-106.5 + pos: -12.5,-14.5 parent: 1 - - uid: 984 + - uid: 2103 components: - type: Transform - pos: -13.5,-105.5 + pos: -12.5,-16.5 parent: 1 - - uid: 985 + - uid: 2116 components: - type: Transform - pos: -28.5,-2.5 + pos: -11.5,-14.5 parent: 1 - - uid: 986 + - uid: 2117 components: - type: Transform - pos: -13.5,-103.5 + pos: -11.5,-15.5 parent: 1 - - uid: 987 + - uid: 2118 components: - type: Transform - pos: -13.5,-102.5 + pos: -9.5,-15.5 parent: 1 - - uid: 988 + - uid: 2119 components: - type: Transform - pos: -28.5,-1.5 + pos: -11.5,-12.5 parent: 1 - - uid: 989 + - uid: 2121 components: - type: Transform - pos: -13.5,-100.5 + pos: -12.5,-12.5 parent: 1 - - uid: 990 + - uid: 2122 components: - type: Transform - pos: -13.5,-99.5 + pos: -10.5,-13.5 parent: 1 - - uid: 991 + - uid: 2123 components: - type: Transform - pos: -28.5,5.5 + pos: -8.5,-11.5 parent: 1 - - uid: 992 + - uid: 2124 components: - type: Transform - pos: -40.5,-36.5 + pos: -8.5,-13.5 parent: 1 - - uid: 993 + - uid: 2125 components: - type: Transform - pos: -40.5,-42.5 + pos: -8.5,-10.5 parent: 1 - - uid: 994 + - uid: 2128 components: - type: Transform - pos: -14.5,-109.5 + pos: -6.5,-16.5 parent: 1 - - uid: 995 + - uid: 2129 components: - type: Transform - pos: -14.5,-108.5 + pos: -7.5,-17.5 parent: 1 - - uid: 996 + - uid: 2130 components: - type: Transform - pos: -14.5,-107.5 + pos: -6.5,-12.5 parent: 1 - - uid: 997 + - uid: 2131 components: - type: Transform - pos: -14.5,-106.5 + pos: -7.5,-13.5 parent: 1 - - uid: 998 + - uid: 2136 components: - type: Transform - pos: -14.5,-105.5 + pos: -6.5,-13.5 parent: 1 - - uid: 999 + - uid: 2240 components: - type: Transform - pos: -14.5,-104.5 + pos: -5.5,-17.5 parent: 1 - - uid: 1000 + - uid: 2245 components: - type: Transform - pos: -14.5,-103.5 + pos: -5.5,-16.5 parent: 1 - - uid: 1001 + - uid: 2277 components: - type: Transform - pos: -14.5,-102.5 + pos: -5.5,-12.5 parent: 1 - - uid: 1002 + - uid: 2279 components: - type: Transform - pos: -14.5,-101.5 + pos: -8.5,-18.5 parent: 1 - - uid: 1003 + - uid: 2285 components: - type: Transform - pos: -14.5,-100.5 + pos: -4.5,-15.5 parent: 1 - - uid: 1004 + - uid: 2359 components: - type: Transform - pos: -14.5,-99.5 + pos: -6.5,-14.5 parent: 1 - - uid: 1005 + - uid: 2360 components: - type: Transform - pos: -40.5,-41.5 + pos: -6.5,-17.5 parent: 1 - - uid: 1006 + - uid: 2388 components: - type: Transform - pos: -40.5,-40.5 + pos: -6.5,-15.5 parent: 1 - - uid: 1007 + - uid: 2389 components: - type: Transform - pos: -40.5,-43.5 + pos: -7.5,-12.5 parent: 1 - - uid: 1008 + - uid: 2412 components: - type: Transform - pos: -15.5,-108.5 + pos: -8.5,-20.5 parent: 1 - - uid: 1009 + - uid: 2413 components: - type: Transform - pos: -15.5,-107.5 + pos: -5.5,-14.5 parent: 1 - - uid: 1010 + - uid: 2435 components: - type: Transform - pos: -15.5,-106.5 + pos: -7.5,-14.5 parent: 1 - - uid: 1011 + - uid: 2628 components: - type: Transform - pos: -15.5,-105.5 + pos: -28.5,-6.5 parent: 1 - - uid: 1012 + - uid: 2629 components: - type: Transform - pos: -15.5,-104.5 + pos: -27.5,-5.5 parent: 1 - - uid: 1013 + - uid: 2630 components: - type: Transform - pos: -15.5,-103.5 + pos: -27.5,-6.5 parent: 1 - - uid: 1014 + - uid: 2631 components: - type: Transform - pos: -15.5,-102.5 + pos: -24.5,-1.5 parent: 1 - - uid: 1015 + - uid: 2632 components: - type: Transform - pos: -15.5,-101.5 + pos: -11.5,7.5 parent: 1 - - uid: 1016 + - uid: 2633 components: - type: Transform - pos: -15.5,-100.5 + pos: -14.5,10.5 parent: 1 - - uid: 1017 + - uid: 2634 components: - type: Transform - pos: -15.5,-99.5 + pos: -14.5,8.5 parent: 1 - - uid: 1018 + - uid: 2636 components: - type: Transform - pos: -15.5,-98.5 + pos: -10.5,6.5 parent: 1 - - uid: 1019 + - uid: 2637 components: - type: Transform - pos: -16.5,-111.5 + pos: -9.5,10.5 parent: 1 - - uid: 1020 + - uid: 2639 components: - type: Transform - pos: -40.5,-45.5 + pos: -25.5,-5.5 parent: 1 - - uid: 1021 + - uid: 2652 components: - type: Transform - pos: -40.5,-44.5 + pos: -25.5,-4.5 parent: 1 - - uid: 1022 + - uid: 2655 components: - type: Transform - pos: -16.5,-108.5 + pos: -16.5,-27.5 parent: 1 - - uid: 1023 + - uid: 2658 components: - type: Transform - pos: -16.5,-107.5 + pos: -25.5,-6.5 parent: 1 - - uid: 1024 + - uid: 2666 components: - type: Transform - pos: -16.5,-106.5 + pos: -30.5,-2.5 parent: 1 - - uid: 1025 + - uid: 2675 components: - type: Transform - pos: -16.5,-105.5 + pos: -13.5,10.5 parent: 1 - - uid: 1026 + - uid: 2682 components: - type: Transform - pos: -16.5,-104.5 + pos: -13.5,9.5 parent: 1 - - uid: 1027 + - uid: 2683 components: - type: Transform - pos: -17.5,-108.5 + pos: -16.5,8.5 parent: 1 - - uid: 1028 + - uid: 2706 components: - type: Transform - pos: -17.5,-107.5 + pos: -13.5,8.5 parent: 1 - - uid: 1029 + - uid: 2707 components: - type: Transform - pos: -17.5,-106.5 + pos: -9.5,8.5 parent: 1 - - uid: 1030 + - uid: 2709 components: - type: Transform - pos: -17.5,-105.5 + pos: -24.5,-4.5 parent: 1 - - uid: 1031 + - uid: 2710 components: - type: Transform - pos: -17.5,-104.5 + pos: -24.5,-6.5 parent: 1 - - uid: 1032 + - uid: 2711 components: - type: Transform - pos: -17.5,-103.5 + pos: -24.5,-5.5 parent: 1 - - uid: 1033 + - uid: 2712 components: - type: Transform - pos: -17.5,-102.5 + pos: -31.5,-3.5 parent: 1 - - uid: 1034 + - uid: 2713 components: - type: Transform - pos: -17.5,-101.5 + pos: -31.5,-5.5 parent: 1 - - uid: 1035 + - uid: 2714 components: - type: Transform - pos: -17.5,-100.5 + pos: -10.5,10.5 parent: 1 - - uid: 1036 + - uid: 2715 components: - type: Transform - pos: -16.5,-103.5 + pos: -14.5,9.5 parent: 1 - - uid: 1037 + - uid: 2730 components: - type: Transform - pos: -16.5,-102.5 + pos: -15.5,9.5 parent: 1 - - uid: 1038 + - uid: 2731 components: - type: Transform - pos: -16.5,-101.5 + pos: -9.5,9.5 parent: 1 - - uid: 1039 + - uid: 2733 components: - type: Transform - pos: -16.5,-100.5 + pos: -29.5,-5.5 parent: 1 - - uid: 1040 + - uid: 2734 components: - type: Transform - pos: -16.5,-99.5 + pos: -29.5,-6.5 parent: 1 - - uid: 1041 + - uid: 2735 components: - type: Transform - pos: -16.5,-98.5 + pos: -28.5,-5.5 parent: 1 - - uid: 1042 + - uid: 2736 components: - type: Transform - pos: -17.5,-111.5 + pos: -31.5,-4.5 parent: 1 - - uid: 1043 + - uid: 2737 components: - type: Transform - pos: -40.5,-46.5 + pos: -31.5,-6.5 parent: 1 - - uid: 1044 + - uid: 2738 components: - type: Transform - pos: -40.5,-47.5 + pos: -30.5,-5.5 parent: 1 - - uid: 1045 + - uid: 2739 components: - type: Transform - pos: -17.5,-99.5 + pos: -12.5,10.5 parent: 1 - - uid: 1046 + - uid: 2754 components: - type: Transform - pos: -17.5,-98.5 + pos: -11.5,10.5 parent: 1 - - uid: 1047 + - uid: 2755 components: - type: Transform - pos: -18.5,-111.5 + pos: -10.5,8.5 parent: 1 - - uid: 1048 + - uid: 2757 components: - type: Transform - pos: -40.5,-48.5 + pos: -32.5,-5.5 parent: 1 - - uid: 1049 + - uid: 2758 components: - type: Transform - pos: -40.5,-51.5 + pos: -32.5,-6.5 parent: 1 - - uid: 1050 + - uid: 2759 components: - type: Transform - pos: -40.5,-50.5 + pos: -30.5,-3.5 parent: 1 - - uid: 1051 + - uid: 2760 components: - type: Transform - pos: -18.5,-107.5 + pos: -33.5,-2.5 parent: 1 - - uid: 1052 + - uid: 2761 components: - type: Transform - pos: -18.5,-106.5 + pos: -30.5,-6.5 parent: 1 - - uid: 1053 + - uid: 2762 components: - type: Transform - pos: -18.5,-105.5 + pos: -33.5,-3.5 parent: 1 - - uid: 1054 + - uid: 2763 components: - type: Transform - pos: -18.5,-104.5 + pos: -33.5,-5.5 parent: 1 - - uid: 1055 + - uid: 2778 components: - type: Transform - pos: -18.5,-103.5 + pos: -29.5,-1.5 parent: 1 - - uid: 1056 + - uid: 2779 components: - type: Transform - pos: -18.5,-102.5 + pos: -29.5,-4.5 parent: 1 - - uid: 1057 + - uid: 2780 components: - type: Transform - pos: -18.5,-101.5 + pos: -32.5,-3.5 parent: 1 - - uid: 1058 + - uid: 2781 components: - type: Transform - pos: -18.5,-100.5 + pos: -32.5,-2.5 parent: 1 - - uid: 1059 + - uid: 2782 components: - type: Transform - pos: -18.5,-99.5 + pos: -31.5,-2.5 parent: 1 - - uid: 1060 + - uid: 2783 components: - type: Transform - pos: -18.5,-98.5 + pos: -33.5,-4.5 parent: 1 - - uid: 1061 + - uid: 2784 components: - type: Transform - pos: -40.5,-53.5 + pos: -8.5,3.5 parent: 1 - - uid: 1062 + - uid: 2785 components: - type: Transform - pos: -40.5,-52.5 + pos: -15.5,8.5 parent: 1 - - uid: 1063 + - uid: 2786 components: - type: Transform - pos: -40.5,-49.5 + pos: -11.5,9.5 parent: 1 - - uid: 1064 + - uid: 2787 components: - type: Transform - pos: -19.5,-108.5 + pos: -31.5,-0.5 parent: 1 - - uid: 1065 + - uid: 2852 components: - type: Transform - pos: -19.5,-107.5 + pos: -6.5,-10.5 parent: 1 - - uid: 1066 + - uid: 2853 components: - type: Transform - pos: -19.5,-106.5 + pos: -4.5,-14.5 parent: 1 - - uid: 1067 + - uid: 2854 components: - type: Transform - pos: -19.5,-105.5 + pos: -7.5,-10.5 parent: 1 - - uid: 1068 + - uid: 2855 components: - type: Transform - pos: -19.5,-104.5 + pos: -9.5,-10.5 parent: 1 - - uid: 1069 + - uid: 2856 components: - type: Transform - pos: -19.5,-103.5 + pos: -9.5,-11.5 parent: 1 - - uid: 1070 + - uid: 2857 components: - type: Transform - pos: -19.5,-102.5 + pos: -10.5,-11.5 parent: 1 - - uid: 1071 + - uid: 2858 components: - type: Transform - pos: -19.5,-101.5 + pos: -9.5,-12.5 parent: 1 - - uid: 1072 + - uid: 2863 components: - type: Transform - pos: -19.5,-100.5 + pos: -5.5,-15.5 parent: 1 - - uid: 1073 + - uid: 2864 components: - type: Transform - pos: -19.5,-99.5 + pos: -5.5,-11.5 parent: 1 - - uid: 1074 + - uid: 2865 components: - type: Transform - pos: -19.5,-98.5 + pos: 4.5,-104.5 parent: 1 - - uid: 1075 + - uid: 2866 components: - type: Transform - pos: -20.5,-111.5 + pos: -5.5,-13.5 parent: 1 - - uid: 1076 + - uid: 2874 components: - type: Transform - pos: -40.5,-54.5 + pos: -7.5,-15.5 parent: 1 - - uid: 1077 + - uid: 2875 components: - type: Transform - pos: -40.5,-55.5 + pos: -6.5,-20.5 parent: 1 - - uid: 1078 + - uid: 2876 components: - type: Transform - pos: -20.5,-108.5 + pos: -4.5,-19.5 parent: 1 - - uid: 1079 + - uid: 2877 components: - type: Transform - pos: -20.5,-107.5 + pos: -3.5,-13.5 parent: 1 - - uid: 1080 + - uid: 2878 components: - type: Transform - pos: -20.5,-106.5 + pos: -4.5,-16.5 parent: 1 - - uid: 1081 + - uid: 2879 components: - type: Transform - pos: -20.5,-105.5 + pos: -3.5,-14.5 parent: 1 - - uid: 1082 + - uid: 2880 components: - type: Transform - pos: -20.5,-104.5 + pos: -4.5,-17.5 parent: 1 - - uid: 1083 + - uid: 2884 components: - type: Transform - pos: -20.5,-103.5 + pos: -5.5,-19.5 parent: 1 - - uid: 1084 + - uid: 2892 components: - type: Transform - pos: -20.5,-102.5 + pos: -5.5,-20.5 parent: 1 - - uid: 1085 + - uid: 2893 components: - type: Transform - pos: -20.5,-100.5 + pos: -3.5,-12.5 parent: 1 - - uid: 1086 + - uid: 2895 components: - type: Transform - pos: -20.5,-99.5 + pos: -4.5,-13.5 parent: 1 - - uid: 1087 + - uid: 2897 components: - type: Transform - pos: -20.5,-98.5 + pos: -4.5,-18.5 parent: 1 - - uid: 1088 + - uid: 2904 components: - type: Transform - pos: -28.5,-62.5 + pos: -3.5,-16.5 parent: 1 - - uid: 1089 + - uid: 2909 components: - type: Transform - pos: -28.5,-64.5 + pos: -3.5,-15.5 parent: 1 - - uid: 1090 + - uid: 2913 components: - type: Transform - pos: -28.5,-65.5 + pos: -3.5,-18.5 parent: 1 - - uid: 1091 + - uid: 2919 components: - type: Transform - pos: -28.5,-63.5 + pos: -4.5,-11.5 parent: 1 - - uid: 1092 + - uid: 2921 components: - type: Transform - pos: -28.5,-88.5 + pos: -4.5,-12.5 parent: 1 - - uid: 1093 + - uid: 2922 components: - type: Transform - pos: -26.5,31.5 + pos: -3.5,-17.5 parent: 1 - - uid: 1094 + - uid: 2925 components: - type: Transform - pos: -26.5,29.5 + pos: -5.5,-18.5 parent: 1 - - uid: 1095 + - uid: 2926 components: - type: Transform - pos: -26.5,35.5 + pos: -7.5,-20.5 parent: 1 - - uid: 1096 + - uid: 2928 components: - type: Transform - pos: -26.5,34.5 + pos: -7.5,-11.5 parent: 1 - - uid: 1097 + - uid: 2930 components: - type: Transform - pos: -27.5,-60.5 + pos: -10.5,-17.5 parent: 1 - - uid: 1098 + - uid: 2931 components: - type: Transform - pos: -27.5,-59.5 + pos: -10.5,-19.5 parent: 1 - - uid: 1099 + - uid: 2933 components: - type: Transform - pos: -27.5,-57.5 + pos: -10.5,-20.5 parent: 1 - - uid: 1100 + - uid: 2935 components: - type: Transform - pos: -27.5,-56.5 + pos: -10.5,-18.5 parent: 1 - - uid: 1101 + - uid: 2936 components: - type: Transform - pos: -27.5,-53.5 + pos: -7.5,-19.5 parent: 1 - - uid: 1102 + - uid: 2937 components: - type: Transform - pos: -27.5,-52.5 + pos: -8.5,-19.5 parent: 1 - - uid: 1103 + - uid: 2940 components: - type: Transform - pos: -27.5,-44.5 + pos: -6.5,-19.5 parent: 1 - - uid: 1104 + - uid: 2945 components: - type: Transform - pos: -26.5,38.5 + pos: -7.5,-16.5 parent: 1 - - uid: 1105 + - uid: 2946 components: - type: Transform - pos: -27.5,-43.5 + pos: -7.5,-18.5 parent: 1 - - uid: 1106 + - uid: 2947 components: - type: Transform - pos: -26.5,27.5 + pos: -6.5,-11.5 parent: 1 - - uid: 1107 + - uid: 2950 components: - type: Transform - pos: -26.5,28.5 + pos: -6.5,-18.5 parent: 1 - - uid: 1108 + - uid: 3482 components: - type: Transform - pos: -26.5,30.5 + pos: -5.5,-104.5 parent: 1 - - uid: 1109 + - uid: 3496 components: - type: Transform - pos: -19.5,-93.5 + pos: -18.5,-16.5 parent: 1 - - uid: 1110 + - uid: 3497 components: - type: Transform - pos: -26.5,36.5 + pos: -22.5,-17.5 parent: 1 - - uid: 1111 + - uid: 3499 components: - type: Transform - pos: -26.5,37.5 + pos: -13.5,-19.5 parent: 1 - - uid: 1112 + - uid: 3500 components: - type: Transform - pos: -19.5,-90.5 + pos: -13.5,12.5 parent: 1 - - uid: 1113 + - uid: 3502 components: - type: Transform - pos: -27.5,-61.5 + pos: -24.5,-14.5 parent: 1 - - uid: 1114 + - uid: 3566 components: - type: Transform - pos: -19.5,-88.5 + pos: -25.5,-14.5 parent: 1 - - uid: 1118 + - uid: 3568 components: - type: Transform - pos: -26.5,24.5 + pos: -21.5,-12.5 parent: 1 - - uid: 1119 + - uid: 3752 components: - type: Transform - pos: -26.5,23.5 + pos: -22.5,-10.5 parent: 1 - - uid: 1120 + - uid: 3754 components: - type: Transform - pos: -26.5,26.5 + pos: -22.5,-18.5 parent: 1 - - uid: 1121 + - uid: 4475 components: - type: Transform - pos: -26.5,25.5 + pos: -13.5,-13.5 parent: 1 - - uid: 1122 + - uid: 4488 components: - type: Transform - pos: 22.5,-77.5 + pos: -15.5,-18.5 parent: 1 - - uid: 1123 + - uid: 4493 components: - type: Transform - pos: 22.5,-78.5 + pos: -13.5,-11.5 parent: 1 - - uid: 1124 + - uid: 4546 components: - type: Transform - pos: 22.5,-79.5 + pos: -10.5,-4.5 parent: 1 - - uid: 1125 + - uid: 4547 components: - type: Transform - pos: 22.5,-80.5 + pos: -9.5,-4.5 parent: 1 - - uid: 1126 + - uid: 4689 components: - type: Transform - pos: 22.5,-81.5 + pos: -14.5,-13.5 parent: 1 - - uid: 1127 + - uid: 4690 components: - type: Transform - pos: 22.5,-82.5 + pos: -16.5,-17.5 parent: 1 - - uid: 1128 + - uid: 4691 components: - type: Transform - pos: 22.5,-83.5 + pos: -16.5,-19.5 parent: 1 - - uid: 1129 + - uid: 4692 components: - type: Transform - pos: 22.5,-84.5 + pos: -15.5,-15.5 parent: 1 - - uid: 1130 + - uid: 4696 components: - type: Transform - pos: 22.5,-85.5 + pos: -16.5,-18.5 parent: 1 - - uid: 1131 + - uid: 4701 components: - type: Transform - pos: 22.5,-86.5 + pos: -14.5,-14.5 parent: 1 - - uid: 1132 + - uid: 4712 components: - type: Transform - pos: 22.5,-87.5 + pos: -13.5,-17.5 parent: 1 - - uid: 1133 + - uid: 4713 components: - type: Transform - pos: 22.5,-88.5 + pos: -12.5,-20.5 parent: 1 - - uid: 1134 + - uid: 4714 components: - type: Transform - pos: 22.5,-89.5 + pos: -15.5,-13.5 parent: 1 - - uid: 1135 + - uid: 4716 components: - type: Transform - pos: 22.5,-90.5 + pos: -16.5,-16.5 parent: 1 - - uid: 1136 + - uid: 4719 components: - type: Transform - pos: 22.5,-91.5 + pos: -13.5,-20.5 parent: 1 - - uid: 1139 + - uid: 4743 components: - type: Transform - pos: 22.5,-92.5 + pos: -14.5,-19.5 parent: 1 - - uid: 1140 + - uid: 4744 components: - type: Transform - pos: 22.5,-93.5 + pos: -17.5,-18.5 parent: 1 - - uid: 1141 + - uid: 4745 components: - type: Transform - pos: 22.5,-94.5 + pos: -13.5,-16.5 parent: 1 - - uid: 1142 + - uid: 4746 components: - type: Transform - pos: 22.5,-95.5 + pos: -13.5,-12.5 parent: 1 - - uid: 1143 + - uid: 4974 components: - type: Transform - pos: 22.5,-96.5 + pos: -13.5,-14.5 parent: 1 - - uid: 1144 + - uid: 5033 components: - type: Transform - pos: 22.5,-97.5 + pos: -14.5,-16.5 parent: 1 - - uid: 1145 + - uid: 5045 components: - type: Transform - pos: 21.5,-77.5 + pos: -15.5,-17.5 parent: 1 - - uid: 1146 + - uid: 5093 components: - type: Transform - pos: 21.5,-78.5 + pos: -12.5,-19.5 parent: 1 - - uid: 1147 + - uid: 5160 components: - type: Transform - pos: 21.5,-79.5 + pos: -11.5,-20.5 parent: 1 - - uid: 1148 + - uid: 5161 components: - type: Transform - pos: 21.5,-80.5 + pos: -14.5,-18.5 parent: 1 - - uid: 1149 + - uid: 5162 components: - type: Transform - pos: 21.5,-81.5 + pos: -17.5,-16.5 parent: 1 - - uid: 1150 + - uid: 5163 components: - type: Transform - pos: 21.5,-82.5 + pos: -17.5,-17.5 parent: 1 - - uid: 1151 + - uid: 5169 components: - type: Transform - pos: 21.5,-83.5 + pos: -16.5,-14.5 parent: 1 - - uid: 1152 + - uid: 5170 components: - type: Transform - pos: 21.5,-84.5 + pos: -8.5,-3.5 parent: 1 - - uid: 1153 + - uid: 5172 components: - type: Transform - pos: 21.5,-85.5 + pos: -17.5,-15.5 parent: 1 - - uid: 1154 + - uid: 5175 components: - type: Transform - pos: 21.5,-86.5 + pos: -17.5,-14.5 parent: 1 - - uid: 1155 + - uid: 5178 components: - type: Transform - pos: 21.5,-87.5 + pos: -15.5,-16.5 parent: 1 - - uid: 1156 + - uid: 5181 components: - type: Transform - pos: 21.5,-88.5 + pos: -13.5,-15.5 parent: 1 - - uid: 1174 + - uid: 5182 components: - type: Transform - pos: 21.5,-89.5 + pos: -13.5,-10.5 parent: 1 - - uid: 1175 + - uid: 5183 components: - type: Transform - pos: 21.5,-90.5 + pos: -15.5,-14.5 parent: 1 - - uid: 1176 + - uid: 5321 components: - type: Transform - pos: 21.5,-91.5 + pos: -9.5,-3.5 parent: 1 - - uid: 1177 + - uid: 5331 components: - type: Transform - pos: 21.5,-92.5 + pos: -12.5,-4.5 parent: 1 - - uid: 1178 + - uid: 5332 components: - type: Transform - pos: 21.5,-93.5 + pos: -12.5,-6.5 parent: 1 - - uid: 1179 + - uid: 5333 components: - type: Transform - pos: 21.5,-94.5 + pos: -12.5,-5.5 parent: 1 - - uid: 1180 + - uid: 5334 components: - type: Transform - pos: 21.5,-95.5 + pos: -11.5,-6.5 parent: 1 - - uid: 1181 + - uid: 5336 components: - type: Transform - pos: 21.5,-96.5 + pos: 12.5,-45.5 parent: 1 - - uid: 1182 + - uid: 5337 components: - type: Transform - pos: 21.5,-97.5 + pos: -16.5,-1.5 parent: 1 - - uid: 1183 + - uid: 5338 components: - type: Transform - pos: 20.5,-77.5 + pos: -11.5,-5.5 parent: 1 - - uid: 1184 + - uid: 5339 components: - type: Transform - pos: 20.5,-78.5 + pos: -10.5,-5.5 parent: 1 - - uid: 1185 + - uid: 5341 components: - type: Transform - pos: 20.5,-79.5 + pos: -22.5,-14.5 parent: 1 - - uid: 1186 + - uid: 5342 components: - type: Transform - pos: 20.5,-80.5 + pos: -10.5,-6.5 parent: 1 - - uid: 1187 + - uid: 5343 components: - type: Transform - pos: 20.5,-81.5 + pos: 12.5,-42.5 parent: 1 - - uid: 1188 + - uid: 5348 components: - type: Transform - pos: 20.5,-82.5 + pos: 13.5,-42.5 parent: 1 - - uid: 1189 + - uid: 5374 components: - type: Transform - pos: 20.5,-83.5 + pos: -28.5,-1.5 parent: 1 - - uid: 1190 + - uid: 5375 components: - type: Transform - pos: 20.5,-84.5 + pos: -10.5,4.5 parent: 1 - - uid: 1191 + - uid: 5376 components: - type: Transform - pos: 20.5,-85.5 + pos: -7.5,6.5 parent: 1 - - uid: 1192 + - uid: 5377 components: - type: Transform - pos: 20.5,-86.5 + pos: -12.5,7.5 parent: 1 - - uid: 1193 + - uid: 5378 components: - type: Transform - pos: 20.5,-87.5 + pos: -8.5,8.5 parent: 1 - - uid: 1194 + - uid: 5407 components: - type: Transform - pos: 20.5,-88.5 + pos: -17.5,-7.5 parent: 1 - - uid: 1195 + - uid: 5414 components: - type: Transform - pos: 20.5,-89.5 + pos: -17.5,9.5 parent: 1 - - uid: 1196 + - uid: 5426 components: - type: Transform - pos: 20.5,-90.5 + pos: 12.5,-47.5 parent: 1 - - uid: 1197 + - uid: 5427 components: - type: Transform - pos: 20.5,-91.5 + pos: -11.5,-8.5 parent: 1 - - uid: 1198 + - uid: 5429 components: - type: Transform - pos: 20.5,-92.5 + pos: -7.5,-6.5 parent: 1 - - uid: 1199 + - uid: 5431 components: - type: Transform - pos: 20.5,-93.5 + pos: -8.5,12.5 parent: 1 - - uid: 1200 + - uid: 5432 components: - type: Transform - pos: 20.5,-94.5 + pos: 17.5,-49.5 parent: 1 - - uid: 1201 + - uid: 5433 components: - type: Transform - pos: 20.5,-95.5 + pos: 13.5,-40.5 parent: 1 - - uid: 1202 + - uid: 5434 components: - type: Transform - pos: 20.5,-96.5 + pos: 13.5,-43.5 parent: 1 - - uid: 1203 + - uid: 5437 components: - type: Transform - pos: 20.5,-97.5 + pos: -35.5,-10.5 parent: 1 - - uid: 1204 + - uid: 5438 components: - type: Transform - pos: 19.5,-77.5 + pos: -14.5,11.5 parent: 1 - - uid: 1205 + - uid: 5449 components: - type: Transform - pos: 19.5,-78.5 + pos: -33.5,-11.5 parent: 1 - - uid: 1206 + - uid: 5487 components: - type: Transform - pos: 19.5,-79.5 + pos: 13.5,-44.5 parent: 1 - - uid: 1207 + - uid: 5489 components: - type: Transform - pos: 19.5,-83.5 + pos: -24.5,-17.5 parent: 1 - - uid: 1208 + - uid: 5491 components: - type: Transform - pos: 19.5,-84.5 + pos: -14.5,-11.5 parent: 1 - - uid: 1209 + - uid: 5500 components: - type: Transform - pos: 19.5,-85.5 + pos: -23.5,-13.5 parent: 1 - - uid: 1210 + - uid: 5502 components: - type: Transform - pos: 19.5,-86.5 + pos: -6.5,5.5 parent: 1 - - uid: 1211 + - uid: 5505 components: - type: Transform - pos: 19.5,-87.5 + pos: -6.5,3.5 parent: 1 - - uid: 1212 + - uid: 5506 components: - type: Transform - pos: 19.5,-88.5 + pos: -23.5,-14.5 parent: 1 - - uid: 1213 + - uid: 5526 components: - type: Transform - pos: 19.5,-90.5 + pos: 12.5,-44.5 parent: 1 - - uid: 1214 + - uid: 5543 components: - type: Transform - pos: 19.5,-91.5 + pos: -19.5,-12.5 parent: 1 - - uid: 1215 + - uid: 5544 components: - type: Transform - pos: 19.5,-92.5 + pos: -19.5,-13.5 parent: 1 - - uid: 1216 + - uid: 5546 components: - type: Transform - pos: 19.5,-94.5 + pos: -18.5,-12.5 parent: 1 - - uid: 1217 + - uid: 5557 components: - type: Transform - pos: 18.5,-77.5 + pos: -5.5,3.5 parent: 1 - - uid: 1218 + - uid: 5558 components: - type: Transform - pos: 18.5,-78.5 + pos: -6.5,2.5 parent: 1 - - uid: 1219 + - uid: 5560 components: - type: Transform - pos: -26.5,22.5 + pos: -10.5,11.5 parent: 1 - - uid: 1220 + - uid: 5575 components: - type: Transform - pos: -26.5,21.5 + pos: -5.5,4.5 parent: 1 - - uid: 1221 + - uid: 5579 components: - type: Transform - pos: -26.5,20.5 + pos: -5.5,2.5 parent: 1 - - uid: 1222 + - uid: 5580 components: - type: Transform - pos: 17.5,-81.5 + pos: -5.5,5.5 parent: 1 - - uid: 1223 + - uid: 5581 components: - type: Transform - pos: 17.5,-82.5 + pos: -10.5,12.5 parent: 1 - - uid: 1224 + - uid: 5582 components: - type: Transform - pos: -28.5,10.5 + pos: -11.5,13.5 parent: 1 - - uid: 1225 + - uid: 5584 components: - type: Transform - pos: -26.5,19.5 + pos: -5.5,-3.5 parent: 1 - - uid: 1226 + - uid: 5592 components: - type: Transform - pos: 16.5,-81.5 + pos: -8.5,13.5 parent: 1 - - uid: 1227 + - uid: 5597 components: - type: Transform - pos: 16.5,-82.5 + pos: -15.5,11.5 parent: 1 - - uid: 1228 + - uid: 5604 components: - type: Transform - pos: -26.5,18.5 + pos: -14.5,12.5 parent: 1 - - uid: 1229 + - uid: 5609 components: - type: Transform - pos: 16.5,-84.5 + pos: -13.5,11.5 parent: 1 - - uid: 1230 + - uid: 5610 components: - type: Transform - pos: 16.5,-85.5 + pos: -29.5,-16.5 parent: 1 - - uid: 1231 + - uid: 5637 components: - type: Transform - pos: 16.5,-88.5 + pos: -5.5,-5.5 parent: 1 - - uid: 1232 + - uid: 5643 components: - type: Transform - pos: 16.5,-89.5 + pos: -6.5,-7.5 parent: 1 - - uid: 1233 + - uid: 5645 components: - type: Transform - pos: 17.5,-94.5 + pos: -18.5,-14.5 parent: 1 - - uid: 1234 + - uid: 5646 components: - type: Transform - pos: 17.5,-95.5 + pos: -34.5,-9.5 parent: 1 - - uid: 1235 + - uid: 5662 components: - type: Transform - pos: 16.5,-79.5 + pos: -35.5,-9.5 parent: 1 - - uid: 1236 + - uid: 5663 components: - type: Transform - pos: 16.5,-80.5 + pos: -34.5,-8.5 parent: 1 - - uid: 1237 + - uid: 5665 components: - type: Transform - pos: 16.5,-90.5 + pos: -34.5,-7.5 parent: 1 - - uid: 1238 + - uid: 5696 components: - type: Transform - pos: 16.5,-92.5 + pos: -35.5,-8.5 parent: 1 - - uid: 1239 + - uid: 5698 components: - type: Transform - pos: 16.5,-93.5 + pos: -33.5,-6.5 parent: 1 - - uid: 1240 + - uid: 5699 components: - type: Transform - pos: 16.5,-94.5 + pos: -17.5,10.5 parent: 1 - - uid: 1241 + - uid: 5700 components: - type: Transform - pos: 16.5,-95.5 + pos: 13.5,-48.5 parent: 1 - - uid: 1242 + - uid: 5701 components: - type: Transform - pos: 16.5,-96.5 + pos: 11.5,-44.5 parent: 1 - - uid: 1243 + - uid: 5702 components: - type: Transform - pos: 15.5,-79.5 + pos: -27.5,-1.5 parent: 1 - - uid: 1244 + - uid: 5703 components: - type: Transform - pos: -28.5,-4.5 + pos: -12.5,8.5 parent: 1 - - uid: 1245 + - uid: 5704 components: - type: Transform - pos: -28.5,11.5 + pos: -8.5,9.5 parent: 1 - - uid: 1246 + - uid: 5708 components: - type: Transform - pos: -26.5,17.5 + pos: -7.5,7.5 parent: 1 - - uid: 1247 + - uid: 5709 components: - type: Transform - pos: 14.5,-79.5 + pos: -8.5,2.5 parent: 1 - - uid: 1248 + - uid: 5710 components: - type: Transform - pos: -28.5,12.5 + pos: -9.5,5.5 parent: 1 - - uid: 1249 + - uid: 5711 components: - type: Transform - pos: 13.5,-78.5 + pos: 12.5,-43.5 parent: 1 - - uid: 1250 + - uid: 5712 components: - type: Transform - pos: 13.5,-79.5 + pos: 12.5,-41.5 parent: 1 - - uid: 1251 + - uid: 5713 components: - type: Transform - pos: 12.5,-79.5 + pos: 13.5,-47.5 parent: 1 - - uid: 1252 + - uid: 5714 components: - type: Transform - pos: 11.5,-79.5 + pos: 13.5,-45.5 parent: 1 - - uid: 1253 + - uid: 5716 components: - type: Transform - pos: 10.5,-79.5 + pos: -32.5,-12.5 parent: 1 - - uid: 1254 + - uid: 5717 components: - type: Transform - pos: -27.5,-32.5 + pos: -32.5,-13.5 parent: 1 - - uid: 1255 + - uid: 5718 components: - type: Transform - pos: -27.5,-33.5 + pos: -30.5,-14.5 parent: 1 - - uid: 1256 + - uid: 5719 components: - type: Transform - pos: -27.5,-31.5 + pos: -31.5,1.5 parent: 1 - - uid: 1257 + - uid: 5720 components: - type: Transform - pos: -27.5,-34.5 + pos: -7.5,5.5 parent: 1 - - uid: 1258 + - uid: 5721 components: - type: Transform - pos: -27.5,-28.5 + pos: -8.5,6.5 parent: 1 - - uid: 1259 + - uid: 5722 components: - type: Transform - pos: -27.5,-26.5 + pos: -19.5,9.5 parent: 1 - - uid: 1260 + - uid: 5756 components: - type: Transform - pos: -27.5,-30.5 + pos: -27.5,-10.5 parent: 1 - - uid: 1261 + - uid: 5774 components: - type: Transform - pos: -20.5,-97.5 + pos: -27.5,-11.5 parent: 1 - - uid: 1262 + - uid: 5786 components: - type: Transform - pos: -20.5,-96.5 + pos: -7.5,8.5 parent: 1 - - uid: 1265 + - uid: 5787 components: - type: Transform - pos: -40.5,-58.5 + pos: -10.5,5.5 parent: 1 - - uid: 1266 + - uid: 5788 components: - type: Transform - pos: -19.5,-97.5 + pos: -25.5,8.5 parent: 1 - - uid: 1268 + - uid: 5789 components: - type: Transform - pos: -40.5,-57.5 + pos: -25.5,-11.5 parent: 1 - - uid: 1269 + - uid: 5790 components: - type: Transform - pos: -18.5,-97.5 + pos: -28.5,-12.5 parent: 1 - - uid: 1270 + - uid: 5791 components: - type: Transform - pos: 13.5,-61.5 + pos: -29.5,-14.5 parent: 1 - - uid: 1271 + - uid: 5792 components: - type: Transform - pos: -18.5,-94.5 + pos: -31.5,-13.5 parent: 1 - - uid: 1272 + - uid: 5793 components: - type: Transform - pos: 14.5,-58.5 + pos: -34.5,-10.5 parent: 1 - - uid: 1273 + - uid: 5794 components: - type: Transform - pos: 13.5,-60.5 + pos: -18.5,9.5 parent: 1 - - uid: 1274 + - uid: 5795 components: - type: Transform - pos: 14.5,-57.5 + pos: -18.5,10.5 parent: 1 - - uid: 1275 + - uid: 5796 components: - type: Transform - pos: -17.5,-97.5 + pos: -21.5,9.5 parent: 1 - - uid: 1276 + - uid: 5798 components: - type: Transform - pos: 18.5,-60.5 + pos: -25.5,2.5 parent: 1 - - uid: 1277 + - uid: 5799 components: - type: Transform - pos: 19.5,-57.5 + pos: -31.5,2.5 parent: 1 - - uid: 1278 + - uid: 5800 components: - type: Transform - pos: -17.5,-94.5 + pos: -19.5,10.5 parent: 1 - - uid: 1279 + - uid: 5831 components: - type: Transform - pos: 13.5,-59.5 + pos: -20.5,10.5 parent: 1 - - uid: 1280 + - uid: 5835 components: - type: Transform - pos: 17.5,-56.5 + pos: -12.5,12.5 parent: 1 - - uid: 1281 + - uid: 5836 components: - type: Transform - pos: 13.5,-58.5 + pos: -33.5,-12.5 parent: 1 - - uid: 1282 + - uid: 5838 components: - type: Transform - pos: 20.5,-51.5 + pos: -34.5,-12.5 parent: 1 - - uid: 1283 + - uid: 5839 components: - type: Transform - pos: 20.5,-52.5 + pos: -33.5,-13.5 parent: 1 - - uid: 1284 + - uid: 5840 components: - type: Transform - pos: 20.5,-53.5 + pos: -33.5,-10.5 parent: 1 - - uid: 1285 + - uid: 5842 components: - type: Transform - pos: 20.5,-54.5 + pos: -11.5,-113.5 parent: 1 - - uid: 1286 + - uid: 5843 components: - type: Transform - pos: 20.5,-56.5 + pos: -11.5,-114.5 parent: 1 - - uid: 1287 + - uid: 5846 components: - type: Transform - pos: -16.5,-97.5 + pos: -11.5,-115.5 parent: 1 - - uid: 1288 + - uid: 5854 components: - type: Transform - pos: 20.5,-57.5 + pos: -34.5,-11.5 parent: 1 - - uid: 1289 + - uid: 5855 components: - type: Transform - pos: 20.5,-58.5 + pos: -12.5,11.5 parent: 1 - - uid: 1290 + - uid: 5856 components: - type: Transform - pos: -16.5,-94.5 + pos: -11.5,-116.5 parent: 1 - - uid: 1291 + - uid: 5857 components: - type: Transform - pos: 20.5,-59.5 + pos: -11.5,11.5 parent: 1 - - uid: 1292 + - uid: 5858 components: - type: Transform - pos: 20.5,-61.5 + pos: -12.5,13.5 parent: 1 - - uid: 1293 + - uid: 5859 components: - type: Transform - pos: 19.5,-54.5 + pos: -10.5,13.5 parent: 1 - - uid: 1294 + - uid: 5860 components: - type: Transform - pos: -28.5,-61.5 + pos: -11.5,-117.5 parent: 1 - - uid: 1295 + - uid: 5861 components: - type: Transform - pos: -27.5,-4.5 + pos: -11.5,-118.5 parent: 1 - - uid: 1296 + - uid: 5862 components: - type: Transform - pos: -27.5,0.5 + pos: -11.5,-119.5 parent: 1 - - uid: 1297 + - uid: 5866 components: - type: Transform - pos: -27.5,2.5 + pos: -10.5,-113.5 parent: 1 - - uid: 1298 + - uid: 5868 components: - type: Transform - pos: -27.5,3.5 + pos: -10.5,-116.5 parent: 1 - - uid: 1299 + - uid: 5869 components: - type: Transform - pos: -27.5,11.5 + pos: -10.5,-119.5 parent: 1 - - uid: 1300 + - uid: 5879 components: - type: Transform - pos: -27.5,13.5 + pos: -9.5,-117.5 parent: 1 - - uid: 1301 + - uid: 5880 components: - type: Transform - pos: -27.5,14.5 + pos: -9.5,-118.5 parent: 1 - - uid: 1302 + - uid: 5881 components: - type: Transform - pos: -15.5,-97.5 + pos: -7.5,-113.5 parent: 1 - - uid: 1303 + - uid: 5883 components: - type: Transform - pos: -15.5,-96.5 + pos: -7.5,-118.5 parent: 1 - - uid: 1304 + - uid: 5918 components: - type: Transform - pos: -27.5,21.5 + pos: -7.5,-119.5 parent: 1 - - uid: 1305 + - uid: 5919 components: - type: Transform - pos: -15.5,-94.5 + pos: -6.5,-119.5 parent: 1 - - uid: 1306 + - uid: 5920 components: - type: Transform - pos: -27.5,25.5 + pos: -5.5,-119.5 parent: 1 - - uid: 1307 + - uid: 5921 components: - type: Transform - pos: -27.5,26.5 + pos: -3.5,-113.5 parent: 1 - - uid: 1308 + - uid: 5923 components: - type: Transform - pos: -27.5,27.5 + pos: -3.5,-119.5 parent: 1 - - uid: 1309 + - uid: 5924 components: - type: Transform - pos: -27.5,32.5 + pos: -2.5,-113.5 parent: 1 - - uid: 1310 + - uid: 5928 components: - type: Transform - pos: -27.5,33.5 + pos: -2.5,-119.5 parent: 1 - - uid: 1311 + - uid: 5930 components: - type: Transform - pos: -27.5,38.5 + pos: -1.5,-113.5 parent: 1 - - uid: 1312 + - uid: 5932 components: - type: Transform - pos: -28.5,-57.5 + pos: -1.5,-119.5 parent: 1 - - uid: 1313 + - uid: 5933 components: - type: Transform - pos: -27.5,-5.5 + pos: 0.5,-113.5 parent: 1 - - uid: 1314 + - uid: 5934 components: - type: Transform - pos: -27.5,7.5 + pos: 0.5,-114.5 parent: 1 - - uid: 1315 + - uid: 5935 components: - type: Transform - pos: -27.5,-3.5 + pos: 0.5,-115.5 parent: 1 - - uid: 1316 + - uid: 5936 components: - type: Transform - pos: -27.5,1.5 + pos: 0.5,-116.5 parent: 1 - - uid: 1317 + - uid: 5939 components: - type: Transform - pos: -27.5,8.5 + pos: -20.5,9.5 parent: 1 - - uid: 1318 + - uid: 5940 components: - type: Transform - pos: -27.5,4.5 + pos: 13.5,-41.5 parent: 1 - - uid: 1319 + - uid: 5941 components: - type: Transform - pos: -14.5,-97.5 + pos: -33.5,-9.5 parent: 1 - - uid: 1320 + - uid: 5942 components: - type: Transform - pos: -27.5,5.5 + pos: -27.5,-13.5 parent: 1 - - uid: 1321 + - uid: 5943 components: - type: Transform - pos: -27.5,15.5 + pos: -15.5,-4.5 parent: 1 - - uid: 1322 + - uid: 5946 components: - type: Transform - pos: -27.5,20.5 + pos: -14.5,-6.5 parent: 1 - - uid: 1323 + - uid: 5947 components: - type: Transform - pos: -27.5,24.5 + pos: -13.5,-6.5 parent: 1 - - uid: 1324 + - uid: 5948 components: - type: Transform - pos: -27.5,30.5 + pos: -27.5,-15.5 parent: 1 - - uid: 1325 + - uid: 5949 components: - type: Transform - pos: -27.5,31.5 + pos: -29.5,-12.5 parent: 1 - - uid: 1326 + - uid: 5950 components: - type: Transform - pos: -27.5,34.5 + pos: -31.5,-11.5 parent: 1 - - uid: 1327 + - uid: 5951 components: - type: Transform - pos: -28.5,-53.5 + pos: -24.5,10.5 parent: 1 - - uid: 1328 + - uid: 5957 components: - type: Transform - pos: -28.5,-54.5 + pos: -12.5,-8.5 parent: 1 - - uid: 1329 + - uid: 5959 components: - type: Transform - pos: -28.5,-58.5 + pos: -13.5,-4.5 parent: 1 - - uid: 1330 + - uid: 5960 components: - type: Transform - pos: -28.5,-56.5 + pos: -30.5,-13.5 parent: 1 - - uid: 1331 + - uid: 5961 components: - type: Transform - pos: -27.5,-6.5 + pos: -29.5,-11.5 parent: 1 - - uid: 1332 + - uid: 5968 components: - type: Transform - pos: -27.5,-2.5 + pos: -30.5,-11.5 parent: 1 - - uid: 1333 + - uid: 5970 components: - type: Transform - pos: -27.5,6.5 + pos: -24.5,-9.5 parent: 1 - - uid: 1334 + - uid: 5971 components: - type: Transform - pos: -27.5,10.5 + pos: -26.5,-7.5 parent: 1 - - uid: 1335 + - uid: 5976 components: - type: Transform - pos: -27.5,9.5 + pos: 1.5,-113.5 parent: 1 - - uid: 1336 + - uid: 5977 components: - type: Transform - pos: -27.5,17.5 + pos: 8.5,-112.5 parent: 1 - - uid: 1337 + - uid: 5978 components: - type: Transform - pos: -27.5,16.5 + pos: 2.5,-113.5 parent: 1 - - uid: 1338 + - uid: 5997 components: - type: Transform - pos: -13.5,-95.5 + pos: 9.5,-112.5 parent: 1 - - uid: 1339 + - uid: 6042 components: - type: Transform - pos: -27.5,12.5 + pos: 10.5,-112.5 parent: 1 - - uid: 1340 + - uid: 6084 components: - type: Transform - pos: -27.5,19.5 + pos: -25.5,7.5 parent: 1 - - uid: 1341 + - uid: 6085 components: - type: Transform - pos: -27.5,23.5 + pos: -33.5,1.5 parent: 1 - - uid: 1342 + - uid: 6086 components: - type: Transform - pos: -27.5,29.5 + pos: -32.5,-1.5 parent: 1 - - uid: 1343 + - uid: 6093 components: - type: Transform - pos: -27.5,35.5 + pos: -18.5,8.5 parent: 1 - - uid: 1344 + - uid: 6318 components: - type: Transform - pos: -27.5,36.5 + pos: -7.5,-5.5 parent: 1 - - uid: 1345 + - uid: 6320 components: - type: Transform - pos: -27.5,37.5 + pos: -15.5,-5.5 parent: 1 - - uid: 1346 + - uid: 6321 components: - type: Transform - pos: -28.5,-55.5 + pos: 13.5,-46.5 parent: 1 - - uid: 1347 + - uid: 6323 components: - type: Transform - pos: -27.5,28.5 + pos: -17.5,-19.5 parent: 1 - - uid: 1348 + - uid: 6324 components: - type: Transform - pos: -27.5,-11.5 + pos: -9.5,12.5 parent: 1 - - uid: 1349 + - uid: 6360 components: - type: Transform - pos: -27.5,-7.5 + pos: -11.5,12.5 parent: 1 - - uid: 1350 + - uid: 6368 components: - type: Transform - pos: -27.5,-1.5 + pos: 18.5,-49.5 parent: 1 - - uid: 1351 + - uid: 6369 components: - type: Transform - pos: -28.5,-52.5 + pos: -25.5,-7.5 parent: 1 - - uid: 1352 + - uid: 6381 components: - type: Transform - pos: -27.5,18.5 + pos: -22.5,-107.5 parent: 1 - - uid: 1353 + - uid: 6396 components: - type: Transform - pos: -27.5,22.5 + pos: 12.5,-46.5 parent: 1 - - uid: 1354 + - uid: 6399 components: - type: Transform - pos: -12.5,-96.5 + pos: 11.5,-45.5 parent: 1 - - uid: 1355 + - uid: 6418 components: - type: Transform - pos: -12.5,-95.5 + pos: -23.5,-107.5 parent: 1 - - uid: 1356 + - uid: 6425 components: - type: Transform - pos: -12.5,-94.5 + pos: -21.5,-17.5 parent: 1 - - uid: 1357 + - uid: 6438 components: - type: Transform - pos: -28.5,-60.5 + pos: -25.5,-107.5 parent: 1 - - uid: 1358 + - uid: 6449 components: - type: Transform - pos: -28.5,-59.5 + pos: -27.5,-107.5 parent: 1 - - uid: 1359 + - uid: 6457 components: - type: Transform - pos: -40.5,-56.5 + pos: -26.5,-107.5 parent: 1 - - uid: 1360 + - uid: 6484 components: - type: Transform - pos: -40.5,-59.5 + pos: -28.5,-107.5 parent: 1 - - uid: 1361 + - uid: 6806 components: - type: Transform - pos: -12.5,-51.5 + pos: 19.5,-49.5 parent: 1 - - uid: 1380 + - uid: 6807 components: - type: Transform - pos: -12.5,-50.5 + pos: -8.5,11.5 parent: 1 - - uid: 1381 + - uid: 6808 components: - type: Transform - pos: -12.5,-49.5 + pos: -23.5,10.5 parent: 1 - - uid: 1382 + - uid: 6810 components: - type: Transform - pos: -27.5,-12.5 + pos: -24.5,9.5 parent: 1 - - uid: 1383 + - uid: 6811 components: - type: Transform - pos: -27.5,-8.5 + pos: -9.5,13.5 parent: 1 - - uid: 1384 + - uid: 6814 components: - type: Transform - pos: -27.5,-0.5 + pos: -18.5,-13.5 parent: 1 - - uid: 1385 + - uid: 6816 components: - type: Transform - pos: -28.5,-42.5 + pos: -23.5,-8.5 parent: 1 - - uid: 1386 + - uid: 6817 components: - type: Transform - pos: -28.5,-45.5 + pos: -23.5,-7.5 parent: 1 - - uid: 1387 + - uid: 6819 components: - type: Transform - pos: -28.5,-48.5 + pos: 18.5,-44.5 parent: 1 - - uid: 1388 + - uid: 6820 components: - type: Transform - pos: -11.5,-97.5 + pos: -7.5,-3.5 parent: 1 - - uid: 1389 + - uid: 6842 components: - type: Transform - pos: -11.5,-96.5 + pos: -6.5,-4.5 parent: 1 - - uid: 1390 + - uid: 6844 components: - type: Transform - pos: -11.5,-95.5 + pos: 18.5,-46.5 parent: 1 - - uid: 1391 + - uid: 6861 components: - type: Transform - pos: -11.5,-94.5 + pos: -20.5,-18.5 parent: 1 - - uid: 1392 + - uid: 6862 components: - type: Transform - pos: -13.5,-53.5 + pos: 19.5,-40.5 parent: 1 - - uid: 1393 + - uid: 6863 components: - type: Transform - pos: -13.5,-52.5 + pos: 18.5,-39.5 parent: 1 - - uid: 1394 + - uid: 6864 components: - type: Transform - pos: -13.5,-51.5 + pos: -20.5,-19.5 parent: 1 - - uid: 1395 + - uid: 6865 components: - type: Transform - pos: -13.5,-50.5 + pos: -21.5,-16.5 parent: 1 - - uid: 1396 + - uid: 6866 components: - type: Transform - pos: -13.5,-49.5 + pos: -25.5,10.5 parent: 1 - - uid: 1397 + - uid: 6869 components: - type: Transform - pos: -27.5,-13.5 + pos: -25.5,-8.5 parent: 1 - - uid: 1398 + - uid: 6870 components: - type: Transform - pos: -27.5,-14.5 + pos: -27.5,-12.5 parent: 1 - - uid: 1399 + - uid: 6871 components: - type: Transform - pos: -27.5,-15.5 + pos: 20.5,-44.5 parent: 1 - - uid: 1400 + - uid: 6874 components: - type: Transform - pos: -28.5,-41.5 + pos: -17.5,-10.5 parent: 1 - - uid: 1401 + - uid: 6875 components: - type: Transform - pos: -28.5,-50.5 + pos: -25.5,-16.5 parent: 1 - - uid: 1402 + - uid: 6876 components: - type: Transform - pos: -28.5,-49.5 + pos: -7.5,9.5 parent: 1 - - uid: 1403 + - uid: 6878 components: - type: Transform - pos: -28.5,-27.5 + pos: -22.5,-7.5 parent: 1 - - uid: 1404 + - uid: 6879 components: - type: Transform - pos: -28.5,-44.5 + pos: -15.5,10.5 parent: 1 - - uid: 1405 + - uid: 6880 components: - type: Transform - pos: -28.5,-47.5 + pos: 18.5,-40.5 parent: 1 - - uid: 1406 + - uid: 7216 components: - type: Transform - pos: -14.5,-53.5 + pos: 20.5,-40.5 parent: 1 - - uid: 1407 + - uid: 7217 components: - type: Transform - pos: -14.5,-52.5 + pos: 18.5,-43.5 parent: 1 - - uid: 1408 + - uid: 7218 components: - type: Transform - pos: -14.5,-51.5 + pos: 19.5,-44.5 parent: 1 - - uid: 1409 + - uid: 7221 components: - type: Transform - pos: -14.5,-50.5 + pos: -27.5,-14.5 parent: 1 - - uid: 1410 + - uid: 7222 components: - type: Transform - pos: -14.5,-49.5 + pos: -28.5,-14.5 parent: 1 - - uid: 1411 + - uid: 7223 components: - type: Transform - pos: -27.5,-10.5 + pos: 19.5,-43.5 parent: 1 - - uid: 1412 + - uid: 7224 components: - type: Transform - pos: -27.5,-9.5 + pos: 20.5,-43.5 parent: 1 - - uid: 1413 + - uid: 7227 components: - type: Transform - pos: -28.5,-38.5 + pos: -25.5,-17.5 parent: 1 - - uid: 1414 + - uid: 7228 components: - type: Transform - pos: -28.5,-51.5 + pos: -23.5,-17.5 parent: 1 - - uid: 1415 + - uid: 7229 components: - type: Transform - pos: -28.5,-28.5 + pos: -14.5,6.5 parent: 1 - - uid: 1416 + - uid: 7230 components: - type: Transform - pos: -28.5,-30.5 + pos: -21.5,-15.5 parent: 1 - - uid: 1417 + - uid: 7231 components: - type: Transform - pos: -28.5,-29.5 + pos: -24.5,-16.5 parent: 1 - - uid: 1418 + - uid: 7233 components: - type: Transform - pos: -28.5,-46.5 + pos: -7.5,11.5 parent: 1 - - uid: 1419 + - uid: 7234 components: - type: Transform - pos: -15.5,-53.5 + pos: -7.5,10.5 parent: 1 - - uid: 1420 + - uid: 7235 components: - type: Transform - pos: -15.5,-52.5 + pos: -6.5,10.5 parent: 1 - - uid: 1421 + - uid: 7236 components: - type: Transform - pos: -15.5,-51.5 + pos: -15.5,-12.5 parent: 1 - - uid: 1422 + - uid: 7237 components: - type: Transform - pos: -15.5,-50.5 + pos: -23.5,-10.5 parent: 1 - - uid: 1423 + - uid: 7238 components: - type: Transform - pos: -15.5,-49.5 + pos: -15.5,-8.5 parent: 1 - - uid: 1424 + - uid: 7239 components: - type: Transform - pos: -27.5,-21.5 + pos: -20.5,-13.5 parent: 1 - - uid: 1425 + - uid: 7240 components: - type: Transform - pos: -27.5,-17.5 + pos: -22.5,-8.5 parent: 1 - - uid: 1426 + - uid: 7241 components: - type: Transform - pos: -27.5,-16.5 + pos: -16.5,-13.5 parent: 1 - - uid: 1427 + - uid: 7244 components: - type: Transform - pos: -28.5,-40.5 + pos: -23.5,-11.5 parent: 1 - - uid: 1428 + - uid: 7245 components: - type: Transform - pos: -28.5,-39.5 + pos: -7.5,12.5 parent: 1 - - uid: 1429 + - uid: 7246 components: - type: Transform - pos: -28.5,-37.5 + pos: -17.5,-6.5 parent: 1 - - uid: 1430 + - uid: 7247 components: - type: Transform - pos: -28.5,-34.5 + pos: -18.5,-9.5 parent: 1 - - uid: 1431 + - uid: 7248 components: - type: Transform - pos: -28.5,-31.5 + pos: -33.5,-8.5 parent: 1 - - uid: 1432 + - uid: 7249 components: - type: Transform - pos: -28.5,-32.5 + pos: -18.5,-15.5 parent: 1 - - uid: 1433 + - uid: 7250 components: - type: Transform - pos: -28.5,-33.5 + pos: -8.5,-4.5 parent: 1 - - uid: 1434 + - uid: 7251 components: - type: Transform - pos: -28.5,-43.5 + pos: -25.5,-13.5 parent: 1 - - uid: 1435 + - uid: 7252 components: - type: Transform - pos: -16.5,-53.5 + pos: -21.5,-19.5 parent: 1 - - uid: 1436 + - uid: 7253 components: - type: Transform - pos: -16.5,-52.5 + pos: -16.5,-12.5 parent: 1 - - uid: 1437 + - uid: 7254 components: - type: Transform - pos: -16.5,-51.5 + pos: -26.5,-13.5 parent: 1 - - uid: 1438 + - uid: 7255 components: - type: Transform - pos: -16.5,-50.5 + pos: 16.5,-44.5 parent: 1 - - uid: 1439 + - uid: 7256 components: - type: Transform - pos: -16.5,-49.5 + pos: -21.5,-14.5 parent: 1 - - uid: 1440 + - uid: 7257 components: - type: Transform - pos: -27.5,-22.5 + pos: -29.5,-13.5 parent: 1 - - uid: 1441 + - uid: 7258 components: - type: Transform - pos: -27.5,-20.5 + pos: -19.5,-17.5 parent: 1 - - uid: 1442 + - uid: 7259 components: - type: Transform - pos: -28.5,-35.5 + pos: -22.5,10.5 parent: 1 - - uid: 1443 + - uid: 7260 components: - type: Transform - pos: -28.5,-36.5 + pos: -19.5,-18.5 parent: 1 - - uid: 1444 + - uid: 7261 components: - type: Transform - pos: -28.5,-22.5 + pos: -27.5,-16.5 parent: 1 - - uid: 1445 + - uid: 7262 components: - type: Transform - pos: -28.5,-23.5 + pos: 19.5,-46.5 parent: 1 - - uid: 1446 + - uid: 7263 components: - type: Transform - pos: -28.5,-25.5 + pos: -16.5,-8.5 parent: 1 - - uid: 1447 + - uid: 7264 components: - type: Transform - pos: -28.5,-26.5 + pos: -16.5,9.5 parent: 1 - - uid: 1448 + - uid: 7265 components: - type: Transform - pos: -17.5,-53.5 + pos: -21.5,-7.5 parent: 1 - - uid: 1449 + - uid: 7266 components: - type: Transform - pos: -17.5,-52.5 + pos: -19.5,-9.5 parent: 1 - - uid: 1450 + - uid: 7267 components: - type: Transform - pos: -17.5,-51.5 + pos: -6.5,-5.5 parent: 1 - - uid: 1451 + - uid: 7268 components: - type: Transform - pos: -17.5,-50.5 + pos: -19.5,-10.5 parent: 1 - - uid: 1452 + - uid: 7269 components: - type: Transform - pos: -17.5,-49.5 + pos: -6.5,7.5 parent: 1 - - uid: 1453 + - uid: 7270 components: - type: Transform - pos: -27.5,-19.5 + pos: -20.5,-9.5 parent: 1 - - uid: 1454 + - uid: 7271 components: - type: Transform - pos: -27.5,-23.5 + pos: -5.5,10.5 parent: 1 - - uid: 1455 + - uid: 7273 components: - type: Transform - pos: -27.5,-18.5 + pos: -21.5,-13.5 parent: 1 - - uid: 1456 + - uid: 7274 components: - type: Transform - pos: -28.5,-24.5 + pos: -6.5,-6.5 parent: 1 - - uid: 1457 + - uid: 7275 components: - type: Transform - pos: -18.5,-53.5 + pos: -9.5,11.5 parent: 1 - - uid: 1458 + - uid: 7277 components: - type: Transform - pos: -18.5,-52.5 + pos: -19.5,2.5 parent: 1 - - uid: 1459 + - uid: 7278 components: - type: Transform - pos: -18.5,-51.5 + pos: -17.5,1.5 parent: 1 - - uid: 1460 + - uid: 7279 components: - type: Transform - pos: -18.5,-50.5 + pos: -18.5,6.5 parent: 1 - - uid: 1461 + - uid: 7280 components: - type: Transform - pos: -18.5,-49.5 + pos: -16.5,10.5 parent: 1 - - uid: 1462 + - uid: 7282 components: - type: Transform - pos: -18.5,-79.5 + pos: -16.5,6.5 parent: 1 - - uid: 1463 + - uid: 7283 components: - type: Transform - pos: -27.5,-25.5 + pos: -18.5,1.5 parent: 1 - - uid: 1464 + - uid: 7284 components: - type: Transform - pos: -40.5,-60.5 + pos: -19.5,3.5 parent: 1 - - uid: 1466 + - uid: 7285 components: - type: Transform - pos: -27.5,-24.5 + pos: -20.5,1.5 parent: 1 - - uid: 1467 + - uid: 7287 components: - type: Transform - pos: -19.5,-53.5 + pos: -6.5,8.5 parent: 1 - - uid: 1469 + - uid: 7288 components: - type: Transform - pos: -19.5,-52.5 + pos: 18.5,-48.5 parent: 1 - - uid: 1470 + - uid: 7289 components: - type: Transform - pos: -19.5,-51.5 + pos: -24.5,1.5 parent: 1 - - uid: 1471 + - uid: 7290 components: - type: Transform - pos: -19.5,-50.5 + pos: -15.5,3.5 parent: 1 - - uid: 1472 + - uid: 7291 components: - type: Transform - pos: -19.5,-49.5 + pos: -19.5,5.5 parent: 1 - - uid: 1473 + - uid: 7292 components: - type: Transform - pos: -27.5,-27.5 + pos: -23.5,1.5 parent: 1 - - uid: 1474 + - uid: 7341 components: - type: Transform - pos: -20.5,-53.5 + pos: -22.5,1.5 parent: 1 - - uid: 1475 + - uid: 7342 components: - type: Transform - pos: -20.5,-52.5 + pos: -25.5,1.5 parent: 1 - - uid: 1476 + - uid: 7343 components: - type: Transform - pos: -20.5,-51.5 + pos: -16.5,5.5 parent: 1 - - uid: 1477 + - uid: 7344 components: - type: Transform - pos: -20.5,-50.5 + pos: -15.5,6.5 parent: 1 - - uid: 1478 + - uid: 7345 components: - type: Transform - pos: -20.5,-49.5 + pos: -22.5,0.5 parent: 1 - - uid: 1479 + - uid: 7346 components: - type: Transform - pos: 21.5,-38.5 + pos: -27.5,0.5 parent: 1 - - uid: 1480 + - uid: 7347 components: - type: Transform - pos: 17.5,-51.5 + pos: -25.5,-0.5 parent: 1 - - uid: 1481 + - uid: 7348 components: - type: Transform - pos: 17.5,-52.5 + pos: -17.5,0.5 parent: 1 - - uid: 1482 + - uid: 7349 components: - type: Transform - pos: 17.5,-53.5 + pos: -18.5,3.5 parent: 1 - - uid: 1483 + - uid: 7350 components: - type: Transform - pos: 17.5,-54.5 + pos: -27.5,-0.5 parent: 1 - - uid: 1484 + - uid: 7352 components: - type: Transform - pos: 18.5,-54.5 + pos: -28.5,0.5 parent: 1 - - uid: 1485 + - uid: 7355 components: - type: Transform - pos: 16.5,-54.5 + pos: -24.5,0.5 parent: 1 - - uid: 1486 + - uid: 7358 components: - type: Transform - pos: 15.5,-54.5 + pos: -10.5,7.5 parent: 1 - - uid: 1487 + - uid: 7359 components: - type: Transform - pos: 14.5,-51.5 + pos: -20.5,3.5 parent: 1 - - uid: 1488 + - uid: 7362 components: - type: Transform - pos: 14.5,-52.5 + pos: -14.5,-4.5 parent: 1 - - uid: 1489 + - uid: 7453 components: - type: Transform - pos: 14.5,-53.5 + pos: -6.5,-3.5 parent: 1 - - uid: 1490 + - uid: 7471 components: - type: Transform - pos: 14.5,-54.5 + pos: -8.5,10.5 parent: 1 - - uid: 1491 + - uid: 7478 components: - type: Transform - pos: 20.5,-48.5 + pos: -28.5,-10.5 parent: 1 - - uid: 1492 + - uid: 7479 components: - type: Transform - pos: 20.5,-47.5 + pos: -17.5,-12.5 parent: 1 - - uid: 1493 + - uid: 7483 components: - type: Transform - pos: 20.5,-46.5 + pos: -6.5,11.5 parent: 1 - - uid: 1494 + - uid: 7486 components: - type: Transform - pos: 20.5,-42.5 + pos: -20.5,-17.5 parent: 1 - - uid: 1495 + - uid: 7488 components: - type: Transform - pos: 20.5,-41.5 + pos: 19.5,-48.5 parent: 1 - - uid: 1496 + - uid: 7493 components: - type: Transform - pos: 20.5,-38.5 + pos: 14.5,-44.5 parent: 1 - - uid: 1497 + - uid: 7498 components: - type: Transform - pos: 20.5,-37.5 + pos: -15.5,-10.5 parent: 1 - - uid: 1498 + - uid: 7512 components: - type: Transform - pos: 20.5,-36.5 + pos: -16.5,-5.5 parent: 1 - - uid: 1499 + - uid: 7513 components: - type: Transform - pos: 20.5,-45.5 + pos: -34.5,-6.5 parent: 1 - - uid: 1500 + - uid: 7516 components: - type: Transform - pos: 19.5,-45.5 + pos: -35.5,-7.5 parent: 1 - - uid: 1501 + - uid: 7517 components: - type: Transform - pos: 19.5,-42.5 + pos: -34.5,-5.5 parent: 1 - - uid: 1502 + - uid: 7518 components: - type: Transform - pos: 19.5,-41.5 + pos: -6.5,6.5 parent: 1 - - uid: 1503 + - uid: 7683 components: - type: Transform - pos: 19.5,-38.5 + pos: -13.5,5.5 parent: 1 - - uid: 1504 + - uid: 7684 components: - type: Transform - pos: 18.5,-45.5 + pos: -28.5,-0.5 parent: 1 - - uid: 1505 + - uid: 7802 components: - type: Transform - pos: 18.5,-42.5 + pos: -29.5,0.5 parent: 1 - - uid: 1506 + - uid: 7803 components: - type: Transform - pos: 18.5,-41.5 + pos: -26.5,1.5 parent: 1 - - uid: 1507 + - uid: 7804 components: - type: Transform - pos: 18.5,-38.5 + pos: -11.5,8.5 parent: 1 - - uid: 1508 + - uid: 7817 components: - type: Transform - pos: 17.5,-48.5 + pos: -11.5,6.5 parent: 1 - - uid: 1509 + - uid: 7836 components: - type: Transform - pos: 17.5,-47.5 + pos: -30.5,-1.5 parent: 1 - - uid: 1510 + - uid: 7837 components: - type: Transform - pos: 17.5,-46.5 + pos: -29.5,-0.5 parent: 1 - - uid: 1511 + - uid: 7839 components: - type: Transform - pos: 17.5,-45.5 + pos: -26.5,0.5 parent: 1 - - uid: 1512 + - uid: 7840 components: - type: Transform - pos: 17.5,-42.5 + pos: -10.5,9.5 parent: 1 - - uid: 1513 + - uid: 7853 components: - type: Transform - pos: 17.5,-41.5 + pos: -18.5,-31.5 parent: 1 - - uid: 1514 + - uid: 7864 components: - type: Transform - pos: -40.5,-63.5 + pos: -20.5,6.5 parent: 1 - - uid: 1515 + - uid: 7865 components: - type: Transform - pos: 17.5,-38.5 + pos: -5.5,8.5 parent: 1 - - uid: 1516 + - uid: 7866 components: - type: Transform - pos: 16.5,-48.5 + pos: -13.5,6.5 parent: 1 - - uid: 1517 + - uid: 7867 components: - type: Transform - pos: 16.5,-42.5 + pos: -15.5,7.5 parent: 1 - - uid: 1518 + - uid: 7873 components: - type: Transform - pos: 16.5,-41.5 + pos: -24.5,-15.5 parent: 1 - - uid: 1519 + - uid: 7877 components: - type: Transform - pos: 16.5,-38.5 + pos: -18.5,5.5 parent: 1 - - uid: 1520 + - uid: 7878 components: - type: Transform - pos: -40.5,-62.5 + pos: -20.5,5.5 parent: 1 - - uid: 1521 + - uid: 7879 components: - type: Transform - pos: -12.5,-47.5 + pos: -19.5,4.5 parent: 1 - - uid: 1522 + - uid: 7881 components: - type: Transform - pos: -13.5,-48.5 + pos: -20.5,4.5 parent: 1 - - uid: 1523 + - uid: 7883 components: - type: Transform - pos: -13.5,-47.5 + pos: -17.5,3.5 parent: 1 - - uid: 1524 + - uid: 7897 components: - type: Transform - pos: -14.5,-48.5 + pos: -16.5,4.5 parent: 1 - - uid: 1525 + - uid: 7898 components: - type: Transform - pos: -14.5,-47.5 + pos: -23.5,0.5 parent: 1 - - uid: 1526 + - uid: 7899 components: - type: Transform - pos: 9.5,-76.5 + pos: -21.5,0.5 parent: 1 - - uid: 1527 + - uid: 7917 components: - type: Transform - pos: 10.5,-76.5 + pos: -10.5,-7.5 parent: 1 - - uid: 1528 + - uid: 7918 components: - type: Transform - pos: 11.5,-76.5 + pos: 18.5,-47.5 parent: 1 - - uid: 1529 + - uid: 7921 components: - type: Transform - pos: 12.5,-76.5 + pos: 16.5,-49.5 parent: 1 - - uid: 1530 + - uid: 7935 components: - type: Transform - pos: -15.5,-47.5 + pos: 6.5,-112.5 parent: 1 - - uid: 1531 + - uid: 7936 components: - type: Transform - pos: 14.5,-76.5 + pos: -21.5,1.5 parent: 1 - - uid: 1532 + - uid: 7939 components: - type: Transform - pos: 15.5,-76.5 + pos: -24.5,-0.5 parent: 1 - - uid: 1533 + - uid: 7985 components: - type: Transform - pos: 16.5,-76.5 + pos: -13.5,4.5 parent: 1 - - uid: 1534 + - uid: 7990 components: - type: Transform - pos: 17.5,-76.5 + pos: -14.5,4.5 parent: 1 - - uid: 1535 + - uid: 7991 components: - type: Transform - pos: 18.5,-76.5 + pos: -13.5,3.5 parent: 1 - - uid: 1536 + - uid: 7992 components: - type: Transform - pos: 19.5,-76.5 + pos: 5.5,-112.5 parent: 1 - - uid: 1537 + - uid: 7994 components: - type: Transform - pos: 20.5,-76.5 + pos: -14.5,3.5 parent: 1 - - uid: 1538 + - uid: 7995 components: - type: Transform - pos: 21.5,-76.5 + pos: -16.5,2.5 parent: 1 - - uid: 1539 + - uid: 8002 components: - type: Transform - pos: 15.5,-48.5 + pos: 3.5,-112.5 parent: 1 - - uid: 1540 + - uid: 8010 components: - type: Transform - pos: 15.5,-42.5 + pos: 4.5,-112.5 parent: 1 - - uid: 1541 + - uid: 8019 components: - type: Transform - pos: 15.5,-41.5 + pos: 2.5,-112.5 parent: 1 - - uid: 1542 + - uid: 8027 components: - type: Transform - pos: 15.5,-38.5 + pos: 1.5,-112.5 parent: 1 - - uid: 1543 + - uid: 8036 components: - type: Transform - pos: 14.5,-48.5 + pos: 0.5,-112.5 parent: 1 - - uid: 1544 + - uid: 8085 components: - type: Transform - pos: 14.5,-47.5 + pos: -0.5,-112.5 parent: 1 - - uid: 1545 + - uid: 8090 components: - type: Transform - pos: 14.5,-46.5 + pos: -1.5,-112.5 parent: 1 - - uid: 1546 + - uid: 8095 components: - type: Transform - pos: 14.5,-45.5 + pos: -2.5,-112.5 parent: 1 - - uid: 1547 + - uid: 8100 components: - type: Transform - pos: 14.5,-43.5 + pos: -3.5,-112.5 parent: 1 - - uid: 1548 + - uid: 8165 components: - type: Transform - pos: 14.5,-42.5 + pos: 3.5,-113.5 parent: 1 - - uid: 1549 + - uid: 8174 components: - type: Transform - pos: 14.5,-41.5 + pos: 2.5,-114.5 parent: 1 - - uid: 1550 + - uid: 8180 components: - type: Transform - pos: 14.5,-40.5 + pos: 1.5,-115.5 parent: 1 - - uid: 1551 + - uid: 8181 components: - type: Transform - pos: 14.5,-38.5 + pos: 1.5,-114.5 parent: 1 - - uid: 1552 + - uid: 8204 components: - type: Transform - pos: 14.5,-37.5 + pos: -0.5,-117.5 parent: 1 - - uid: 1553 + - uid: 8205 components: - type: Transform - pos: 14.5,-36.5 + pos: -0.5,-116.5 parent: 1 - - uid: 1554 + - uid: 8206 components: - type: Transform - pos: 20.5,-35.5 + pos: -0.5,-115.5 parent: 1 - - uid: 1555 + - uid: 8207 components: - type: Transform - pos: 19.5,-35.5 + pos: -0.5,-114.5 parent: 1 - - uid: 1556 + - uid: 8208 components: - type: Transform - pos: 18.5,-35.5 + pos: -0.5,-113.5 parent: 1 - - uid: 1557 + - uid: 8210 components: - type: Transform - pos: 17.5,-35.5 + pos: -1.5,-118.5 parent: 1 - - uid: 1558 + - uid: 8212 components: - type: Transform - pos: 16.5,-35.5 + pos: -1.5,-115.5 parent: 1 - - uid: 1559 + - uid: 8213 components: - type: Transform - pos: 15.5,-35.5 + pos: -1.5,-114.5 parent: 1 - - uid: 1560 + - uid: 8215 components: - type: Transform - pos: 14.5,-35.5 + pos: -4.5,-112.5 parent: 1 - - uid: 1562 + - uid: 8246 components: - type: Transform - pos: -19.5,-14.5 + pos: -2.5,-114.5 parent: 1 - - uid: 1564 + - uid: 8247 components: - type: Transform - pos: -18.5,-14.5 + pos: -4.5,-119.5 parent: 1 - - uid: 1566 + - uid: 8257 components: - type: Transform - pos: 22.5,-75.5 + pos: -5.5,-112.5 parent: 1 - - uid: 1567 + - uid: 8260 components: - type: Transform - pos: 22.5,-74.5 + pos: 7.5,-112.5 parent: 1 - - uid: 1568 + - uid: 8264 components: - type: Transform - pos: 22.5,-73.5 + pos: -5.5,-118.5 parent: 1 - - uid: 1569 + - uid: 8270 components: - type: Transform - pos: 22.5,-72.5 + pos: -6.5,-118.5 parent: 1 - - uid: 1570 + - uid: 8278 components: - type: Transform - pos: 22.5,-71.5 + pos: -6.5,-112.5 parent: 1 - - uid: 1571 + - uid: 8280 components: - type: Transform - pos: 22.5,-70.5 + pos: -7.5,-112.5 parent: 1 - - uid: 1572 + - uid: 8289 components: - type: Transform - pos: 22.5,-69.5 + pos: -8.5,-112.5 parent: 1 - - uid: 1573 + - uid: 8291 components: - type: Transform - pos: 22.5,-68.5 + pos: -6.5,-113.5 parent: 1 - - uid: 1574 + - uid: 8292 components: - type: Transform - pos: 22.5,-67.5 + pos: -9.5,-112.5 parent: 1 - - uid: 1575 + - uid: 8294 components: - type: Transform - pos: 21.5,-75.5 + pos: -8.5,-119.5 parent: 1 - - uid: 1576 + - uid: 8295 components: - type: Transform - pos: 21.5,-74.5 + pos: -8.5,-118.5 parent: 1 - - uid: 1577 + - uid: 8297 components: - type: Transform - pos: 21.5,-73.5 + pos: -10.5,-112.5 parent: 1 - - uid: 1578 + - uid: 8299 components: - type: Transform - pos: 21.5,-72.5 + pos: -11.5,-112.5 parent: 1 - - uid: 1579 + - uid: 8302 components: - type: Transform - pos: 21.5,-71.5 + pos: -9.5,-119.5 parent: 1 - - uid: 1580 + - uid: 8304 components: - type: Transform - pos: 21.5,-70.5 + pos: -9.5,-113.5 parent: 1 - - uid: 1581 + - uid: 8305 components: - type: Transform - pos: 21.5,-69.5 + pos: -10.5,-118.5 parent: 1 - - uid: 1582 + - uid: 8307 components: - type: Transform - pos: 21.5,-68.5 + pos: -12.5,-112.5 parent: 1 - - uid: 1583 + - uid: 8309 components: - type: Transform - pos: 21.5,-67.5 + pos: -10.5,-117.5 parent: 1 - - uid: 1586 + - uid: 8313 components: - type: Transform - pos: -16.5,-47.5 + pos: -12.5,-119.5 parent: 1 - - uid: 1591 + - uid: 8314 components: - type: Transform - pos: 20.5,-33.5 + pos: -12.5,-118.5 parent: 1 - - uid: 1592 + - uid: 8315 components: - type: Transform - pos: 20.5,-30.5 + pos: -12.5,-117.5 parent: 1 - - uid: 1593 + - uid: 8317 components: - type: Transform - pos: 20.5,-28.5 + pos: -12.5,-116.5 parent: 1 - - uid: 1594 + - uid: 8318 components: - type: Transform - pos: 20.5,-27.5 + pos: -12.5,-115.5 parent: 1 - - uid: 1595 + - uid: 8320 components: - type: Transform - pos: 20.5,-25.5 + pos: -12.5,-114.5 parent: 1 - - uid: 1596 + - uid: 8321 components: - type: Transform - pos: 20.5,-24.5 + pos: -12.5,-113.5 parent: 1 - - uid: 1597 + - uid: 8358 components: - type: Transform - pos: 20.5,-23.5 + pos: -25.5,9.5 parent: 1 - - uid: 1598 + - uid: 8363 components: - type: Transform - pos: 20.5,-22.5 + pos: -29.5,-9.5 parent: 1 - - uid: 1599 + - uid: 8394 components: - type: Transform - pos: 20.5,-20.5 + pos: -15.5,2.5 parent: 1 - - uid: 1600 + - uid: 8395 components: - type: Transform - pos: 20.5,-19.5 + pos: -17.5,2.5 parent: 1 - - uid: 1601 + - uid: 8414 components: - type: Transform - pos: 20.5,-18.5 + pos: -33.5,-7.5 parent: 1 - - uid: 1602 + - uid: 8415 components: - type: Transform - pos: 20.5,-17.5 + pos: -6.5,9.5 parent: 1 - - uid: 1603 + - uid: 8418 components: - type: Transform - pos: 19.5,-33.5 + pos: -20.5,-15.5 parent: 1 - - uid: 1604 + - uid: 8425 components: - type: Transform - pos: -17.5,-47.5 + pos: -20.5,-16.5 parent: 1 - - uid: 1605 + - uid: 8427 components: - type: Transform - pos: 19.5,-30.5 + pos: -22.5,9.5 parent: 1 - - uid: 1606 + - uid: 8428 components: - type: Transform - pos: 19.5,-28.5 + pos: 15.5,-49.5 parent: 1 - - uid: 1607 + - uid: 8429 components: - type: Transform - pos: 19.5,-27.5 + pos: -20.5,-14.5 parent: 1 - - uid: 1608 + - uid: 8430 components: - type: Transform - pos: 19.5,-25.5 + pos: -22.5,-9.5 parent: 1 - - uid: 1609 + - uid: 8431 components: - type: Transform - pos: 19.5,-17.5 + pos: -5.5,7.5 parent: 1 - - uid: 1610 + - uid: 8432 components: - type: Transform - pos: 18.5,-33.5 + pos: -8.5,-8.5 parent: 1 - - uid: 1611 + - uid: 8458 components: - type: Transform - pos: 18.5,-30.5 + pos: -8.5,-6.5 parent: 1 - - uid: 1612 + - uid: 8470 components: - type: Transform - pos: 18.5,-28.5 + pos: -24.5,-13.5 parent: 1 - - uid: 1613 + - uid: 8473 components: - type: Transform - pos: 18.5,-27.5 + pos: -5.5,6.5 parent: 1 - - uid: 1614 + - uid: 8475 components: - type: Transform - pos: 18.5,-25.5 + pos: -20.5,-12.5 parent: 1 - - uid: 1615 + - uid: 8477 components: - type: Transform - pos: 18.5,-17.5 + pos: -26.5,10.5 parent: 1 - - uid: 1616 + - uid: 8478 components: - type: Transform - pos: 17.5,-33.5 + pos: -27.5,10.5 parent: 1 - - uid: 1617 + - uid: 8491 components: - type: Transform - pos: 17.5,-31.5 + pos: -27.5,-8.5 parent: 1 - - uid: 1618 + - uid: 8496 components: - type: Transform - pos: 17.5,-28.5 + pos: -21.5,-8.5 parent: 1 - - uid: 1619 + - uid: 8504 components: - type: Transform - pos: 17.5,-27.5 + pos: -23.5,-6.5 parent: 1 - - uid: 1620 + - uid: 8508 components: - type: Transform - pos: 17.5,-25.5 + pos: -15.5,5.5 parent: 1 - - uid: 1621 + - uid: 8509 components: - type: Transform - pos: 17.5,-24.5 + pos: -18.5,4.5 parent: 1 - - uid: 1622 + - uid: 8510 components: - type: Transform - pos: -19.5,-38.5 + pos: -16.5,3.5 parent: 1 - - uid: 1623 + - uid: 8511 components: - type: Transform - pos: 17.5,-23.5 + pos: -20.5,0.5 parent: 1 - - uid: 1624 + - uid: 8512 components: - type: Transform - pos: 17.5,-22.5 + pos: -25.5,0.5 parent: 1 - - uid: 1625 + - uid: 8519 components: - type: Transform - pos: 17.5,-20.5 + pos: -20.5,-1.5 parent: 1 - - uid: 1626 + - uid: 8526 components: - type: Transform - pos: 17.5,-19.5 + pos: -18.5,-3.5 parent: 1 - - uid: 1627 + - uid: 8527 components: - type: Transform - pos: 17.5,-18.5 + pos: -18.5,-1.5 parent: 1 - - uid: 1628 + - uid: 8528 components: - type: Transform - pos: 17.5,-17.5 + pos: -22.5,-2.5 parent: 1 - - uid: 1629 + - uid: 8875 components: - type: Transform - pos: 16.5,-33.5 + pos: -16.5,-4.5 parent: 1 - - uid: 1630 + - uid: 8876 components: - type: Transform - pos: 16.5,-32.5 + pos: -19.5,-6.5 parent: 1 - - uid: 1631 + - uid: 8892 components: - type: Transform - pos: 16.5,-31.5 + pos: -19.5,-1.5 parent: 1 - - uid: 1632 + - uid: 8893 components: - type: Transform - pos: 16.5,-30.5 + pos: -22.5,-1.5 parent: 1 - - uid: 1633 + - uid: 8894 components: - type: Transform - pos: 16.5,-25.5 + pos: -22.5,-3.5 parent: 1 - - uid: 1634 + - uid: 8895 components: - type: Transform - pos: 16.5,-20.5 + pos: -27.5,-2.5 parent: 1 - - uid: 1635 + - uid: 8896 components: - type: Transform - pos: 15.5,-33.5 + pos: -23.5,-3.5 parent: 1 - - uid: 1636 + - uid: 8897 components: - type: Transform - pos: 15.5,-30.5 + pos: -23.5,-2.5 parent: 1 - - uid: 1637 + - uid: 8905 components: - type: Transform - pos: 15.5,-28.5 + pos: -26.5,9.5 parent: 1 - - uid: 1638 + - uid: 8906 components: - type: Transform - pos: 15.5,-27.5 + pos: -29.5,9.5 parent: 1 - - uid: 1639 + - uid: 8907 components: - type: Transform - pos: 15.5,-25.5 + pos: -27.5,5.5 parent: 1 - - uid: 1640 + - uid: 8908 components: - type: Transform - pos: 15.5,-20.5 + pos: -27.5,6.5 parent: 1 - - uid: 1641 + - uid: 8909 components: - type: Transform - pos: 14.5,-33.5 + pos: -30.5,3.5 parent: 1 - - uid: 1642 + - uid: 8910 components: - type: Transform - pos: 14.5,-32.5 + pos: -30.5,2.5 parent: 1 - - uid: 1643 + - uid: 8911 components: - type: Transform - pos: 14.5,-31.5 + pos: -33.5,3.5 parent: 1 - - uid: 1644 + - uid: 8920 components: - type: Transform - pos: 14.5,-30.5 + pos: -21.5,-2.5 parent: 1 - - uid: 1645 + - uid: 8921 components: - type: Transform - pos: 14.5,-28.5 + pos: -21.5,-0.5 parent: 1 - - uid: 1646 + - uid: 8923 components: - type: Transform - pos: 14.5,-27.5 + pos: -20.5,-3.5 parent: 1 - - uid: 1647 + - uid: 8924 components: - type: Transform - pos: 14.5,-25.5 + pos: -19.5,-2.5 parent: 1 - - uid: 1648 + - uid: 8925 components: - type: Transform - pos: 14.5,-24.5 + pos: -18.5,-2.5 parent: 1 - - uid: 1649 + - uid: 8926 components: - type: Transform - pos: 14.5,-23.5 + pos: -19.5,-3.5 parent: 1 - - uid: 1650 + - uid: 8927 components: - type: Transform - pos: 14.5,-22.5 + pos: -18.5,-0.5 parent: 1 - - uid: 1651 + - uid: 8928 components: - type: Transform - pos: 14.5,-20.5 + pos: -26.5,-4.5 parent: 1 - - uid: 1652 + - uid: 8929 components: - type: Transform - pos: 14.5,-19.5 + pos: -27.5,4.5 parent: 1 - - uid: 1653 + - uid: 8930 components: - type: Transform - pos: 14.5,-18.5 + pos: -26.5,5.5 parent: 1 - - uid: 1654 + - uid: 8931 components: - type: Transform - pos: 14.5,-17.5 + pos: -27.5,3.5 parent: 1 - - uid: 1655 + - uid: 8932 components: - type: Transform - pos: 14.5,-49.5 + pos: -26.5,3.5 parent: 1 - - uid: 1656 + - uid: 8933 components: - type: Transform - pos: -40.5,-61.5 + pos: -27.5,2.5 parent: 1 - - uid: 1657 + - uid: 8934 components: - type: Transform - pos: -40.5,-64.5 + pos: -28.5,2.5 parent: 1 - - uid: 1658 + - uid: 8935 components: - type: Transform - pos: -40.5,-67.5 + pos: -29.5,3.5 parent: 1 - - uid: 1659 + - uid: 8936 components: - type: Transform - pos: 24.5,27.5 + pos: -33.5,4.5 parent: 1 - - uid: 1660 + - uid: 8937 components: - type: Transform - pos: -40.5,-66.5 + pos: -28.5,8.5 parent: 1 - - uid: 1661 + - uid: 8946 components: - type: Transform - pos: -40.5,-65.5 + pos: -21.5,-1.5 parent: 1 - - uid: 1662 + - uid: 8947 components: - type: Transform - pos: 24.5,28.5 + pos: -21.5,-3.5 parent: 1 - - uid: 1663 + - uid: 8949 components: - type: Transform - pos: -40.5,-69.5 + pos: -20.5,-2.5 parent: 1 - - uid: 1664 + - uid: 8950 components: - type: Transform - pos: -40.5,-68.5 + pos: -25.5,-2.5 parent: 1 - - uid: 1665 + - uid: 8951 components: - type: Transform - pos: 24.5,29.5 + pos: -26.5,-2.5 parent: 1 - - uid: 1666 + - uid: 8952 components: - type: Transform - pos: 14.5,-60.5 + pos: -26.5,-3.5 parent: 1 - - uid: 1667 + - uid: 8953 components: - type: Transform - pos: 14.5,-61.5 + pos: -26.5,-5.5 parent: 1 - - uid: 1668 + - uid: 8954 components: - type: Transform - pos: -19.5,-47.5 + pos: -26.5,-6.5 parent: 1 - - uid: 1669 + - uid: 8955 components: - type: Transform - pos: -19.5,-37.5 + pos: -26.5,6.5 parent: 1 - - uid: 1670 + - uid: 8956 components: - type: Transform - pos: -20.5,-47.5 + pos: -30.5,5.5 parent: 1 - - uid: 1671 + - uid: 8957 components: - type: Transform - pos: 14.5,-56.5 + pos: -26.5,4.5 parent: 1 - - uid: 1672 + - uid: 8958 components: - type: Transform - pos: 22.5,-49.5 + pos: -26.5,2.5 parent: 1 - - uid: 1673 + - uid: 8959 components: - type: Transform - pos: 22.5,-50.5 + pos: -28.5,5.5 parent: 1 - - uid: 1674 + - uid: 8960 components: - type: Transform - pos: 22.5,-51.5 + pos: -29.5,2.5 parent: 1 - - uid: 1675 + - uid: 8961 components: - type: Transform - pos: 22.5,-52.5 + pos: -25.5,4.5 parent: 1 - - uid: 1676 + - uid: 8962 components: - type: Transform - pos: 22.5,-53.5 + pos: -32.5,3.5 parent: 1 - - uid: 1677 + - uid: 8963 components: - type: Transform - pos: 22.5,-54.5 + pos: -31.5,8.5 parent: 1 - - uid: 1678 + - uid: 8964 components: - type: Transform - pos: 22.5,-55.5 + pos: -27.5,8.5 parent: 1 - - uid: 1679 + - uid: 8977 components: - type: Transform - pos: 22.5,-56.5 + pos: -19.5,-0.5 parent: 1 - - uid: 1680 + - uid: 8978 components: - type: Transform - pos: 22.5,-57.5 + pos: -24.5,-2.5 parent: 1 - - uid: 1681 + - uid: 8979 components: - type: Transform - pos: 22.5,-58.5 + pos: -25.5,-3.5 parent: 1 - - uid: 1682 + - uid: 8980 components: - type: Transform - pos: 22.5,-59.5 + pos: -24.5,-3.5 parent: 1 - - uid: 1683 + - uid: 8981 components: - type: Transform - pos: 22.5,-60.5 + pos: -21.5,7.5 parent: 1 - - uid: 1684 + - uid: 8982 components: - type: Transform - pos: 22.5,-61.5 + pos: -20.5,7.5 parent: 1 - - uid: 1685 + - uid: 8995 components: - type: Transform - pos: 21.5,-49.5 + pos: -17.5,7.5 parent: 1 - - uid: 1686 + - uid: 9029 components: - type: Transform - pos: 21.5,-50.5 + pos: -16.5,7.5 parent: 1 - - uid: 1687 + - uid: 9034 components: - type: Transform - pos: 21.5,-51.5 + pos: -30.5,4.5 parent: 1 - - uid: 1688 + - uid: 9036 components: - type: Transform - pos: 21.5,-52.5 + pos: -29.5,5.5 parent: 1 - - uid: 1689 + - uid: 9037 components: - type: Transform - pos: 21.5,-53.5 + pos: -28.5,4.5 parent: 1 - - uid: 1690 + - uid: 9038 components: - type: Transform - pos: 21.5,-54.5 + pos: -28.5,1.5 parent: 1 - - uid: 1691 + - uid: 9039 components: - type: Transform - pos: 21.5,-55.5 + pos: -25.5,3.5 parent: 1 - - uid: 1692 + - uid: 9040 components: - type: Transform - pos: 21.5,-56.5 + pos: -30.5,8.5 parent: 1 - - uid: 1693 + - uid: 9041 components: - type: Transform - pos: 21.5,-57.5 + pos: -29.5,8.5 parent: 1 - - uid: 1694 + - uid: 9042 components: - type: Transform - pos: 21.5,-58.5 + pos: -26.5,8.5 parent: 1 - - uid: 1695 + - uid: 9043 components: - type: Transform - pos: 21.5,-59.5 + pos: -32.5,1.5 parent: 1 - - uid: 1696 + - uid: 9135 components: - type: Transform - pos: 21.5,-60.5 + pos: -32.5,-14.5 parent: 1 - - uid: 1697 + - uid: 9136 components: - type: Transform - pos: 21.5,-61.5 + pos: -30.5,-15.5 parent: 1 - - uid: 1698 + - uid: 9137 components: - type: Transform - pos: 15.5,-61.5 + pos: -32.5,-15.5 parent: 1 - - uid: 1699 + - uid: 9138 components: - type: Transform - pos: 13.5,-56.5 + pos: -33.5,-16.5 parent: 1 - - uid: 1700 + - uid: 9141 components: - type: Transform - pos: 19.5,-56.5 + pos: -18.5,-4.5 parent: 1 - - uid: 1701 + - uid: 9142 components: - type: Transform - pos: 18.5,-61.5 + pos: -17.5,-4.5 parent: 1 - - uid: 1702 + - uid: 9144 components: - type: Transform - pos: 18.5,-56.5 + pos: -31.5,-15.5 parent: 1 - - uid: 1703 + - uid: 9145 components: - type: Transform - pos: 13.5,-57.5 + pos: -32.5,-16.5 parent: 1 - - uid: 1704 + - uid: 9146 components: - type: Transform - pos: 17.5,-61.5 + pos: -30.5,-16.5 parent: 1 - - uid: 1705 + - uid: 9147 components: - type: Transform - pos: 16.5,-61.5 + pos: -33.5,-15.5 parent: 1 - - uid: 1706 + - uid: 9148 components: - type: Transform - pos: 20.5,-49.5 + pos: -33.5,-14.5 parent: 1 - - uid: 1707 + - uid: 9149 components: - type: Transform - pos: 20.5,-50.5 + pos: -35.5,-11.5 parent: 1 - - uid: 1708 + - uid: 9150 components: - type: Transform - pos: 20.5,-55.5 + pos: -35.5,-12.5 parent: 1 - - uid: 1709 + - uid: 9151 components: - type: Transform - pos: 20.5,-60.5 + pos: -34.5,-13.5 parent: 1 - - uid: 1710 + - uid: 9153 components: - type: Transform - pos: 19.5,-49.5 + pos: -17.5,-5.5 parent: 1 - - uid: 1711 + - uid: 9155 components: - type: Transform - pos: 19.5,-50.5 + pos: -31.5,-16.5 parent: 1 - - uid: 1712 + - uid: 9156 components: - type: Transform - pos: 13.5,-55.5 + pos: -13.5,-7.5 parent: 1 - - uid: 1713 + - uid: 9157 components: - type: Transform - pos: 19.5,-51.5 + pos: -13.5,-5.5 parent: 1 - - uid: 1714 + - uid: 9158 components: - type: Transform - pos: 19.5,-52.5 + pos: -13.5,-8.5 parent: 1 - - uid: 1715 + - uid: 9159 components: - type: Transform - pos: 19.5,-53.5 + pos: -36.5,-10.5 parent: 1 - - uid: 1716 + - uid: 9160 components: - type: Transform - pos: 19.5,-55.5 + pos: -34.5,-15.5 parent: 1 - - uid: 1717 + - uid: 9161 components: - type: Transform - pos: 18.5,-49.5 + pos: -36.5,-9.5 parent: 1 - - uid: 1718 + - uid: 9162 components: - type: Transform - pos: 17.5,-49.5 + pos: -36.5,-11.5 parent: 1 - - uid: 1719 + - uid: 9167 components: - type: Transform - pos: 17.5,-50.5 + pos: -5.5,9.5 parent: 1 - - uid: 1720 + - uid: 9565 components: - type: Transform - pos: -40.5,-70.5 + pos: -29.5,-107.5 parent: 1 - - uid: 1721 + - uid: 9635 components: - type: Transform - pos: 18.5,-50.5 + pos: -20.5,-6.5 parent: 1 - - uid: 1722 + - uid: 9666 components: - type: Transform - pos: 18.5,-51.5 + pos: -20.5,-5.5 parent: 1 - - uid: 1723 + - uid: 9667 components: - type: Transform - pos: 18.5,-52.5 + pos: -18.5,-5.5 parent: 1 - - uid: 1724 + - uid: 9668 components: - type: Transform - pos: 18.5,-53.5 + pos: -20.5,-4.5 parent: 1 - - uid: 1725 + - uid: 9919 components: - type: Transform - pos: 18.5,-55.5 + pos: -23.5,-5.5 parent: 1 - - uid: 1726 + - uid: 9920 components: - type: Transform - pos: 19.5,-61.5 + pos: -21.5,10.5 parent: 1 - - uid: 1727 + - uid: 9977 components: - type: Transform - pos: 17.5,-55.5 + pos: -23.5,9.5 parent: 1 - - uid: 1728 + - uid: 9978 components: - type: Transform - pos: -40.5,-72.5 + pos: -22.5,-6.5 parent: 1 - - uid: 1729 + - uid: 9979 components: - type: Transform - pos: 16.5,-49.5 + pos: 19.5,-42.5 parent: 1 - - uid: 1730 + - uid: 9980 components: - type: Transform - pos: 16.5,-50.5 + pos: 18.5,-42.5 parent: 1 - - uid: 1731 + - uid: 10010 components: - type: Transform - pos: 16.5,-51.5 + pos: 20.5,-42.5 parent: 1 - - uid: 1732 + - uid: 10011 components: - type: Transform - pos: 16.5,-52.5 + pos: 14.5,-46.5 parent: 1 - - uid: 1733 + - uid: 10012 components: - type: Transform - pos: 16.5,-53.5 + pos: 14.5,-45.5 parent: 1 - - uid: 1734 + - uid: 10013 components: - type: Transform - pos: -40.5,-71.5 + pos: 15.5,-48.5 parent: 1 - - uid: 1735 + - uid: 10017 components: - type: Transform - pos: 16.5,-55.5 + pos: 14.5,-47.5 parent: 1 - - uid: 1736 + - uid: 10018 components: - type: Transform - pos: 15.5,-49.5 + pos: 16.5,-48.5 parent: 1 - - uid: 1737 + - uid: 10019 components: - type: Transform - pos: -40.5,-74.5 + pos: 14.5,-48.5 parent: 1 - - uid: 1738 + - uid: 10049 components: - type: Transform - pos: 15.5,-50.5 + pos: 20.5,-48.5 parent: 1 - - uid: 1739 + - uid: 10050 components: - type: Transform - pos: 15.5,-51.5 + pos: 17.5,-48.5 parent: 1 - - uid: 1740 + - uid: 10051 components: - type: Transform - pos: 15.5,-52.5 + pos: 21.5,-47.5 parent: 1 - - uid: 1741 + - uid: 10053 components: - type: Transform - pos: 15.5,-53.5 + pos: 16.5,-47.5 parent: 1 - - uid: 1742 + - uid: 10056 components: - type: Transform - pos: 15.5,-55.5 + pos: 19.5,-47.5 parent: 1 - - uid: 1743 + - uid: 10057 components: - type: Transform - pos: 24.5,30.5 + pos: 21.5,-46.5 parent: 1 - - uid: 1744 + - uid: 10058 components: - type: Transform - pos: 7.5,-49.5 + pos: 21.5,-45.5 parent: 1 - - uid: 1745 + - uid: 10059 components: - type: Transform - pos: 7.5,-50.5 + pos: 21.5,-42.5 parent: 1 - - uid: 1746 + - uid: 10060 components: - type: Transform - pos: 7.5,-51.5 + pos: 21.5,-44.5 parent: 1 - - uid: 1747 + - uid: 10061 components: - type: Transform - pos: 7.5,-52.5 + pos: 21.5,-43.5 parent: 1 - - uid: 1748 + - uid: 10062 components: - type: Transform - pos: 7.5,-53.5 + pos: 21.5,-41.5 parent: 1 - - uid: 1749 + - uid: 10063 components: - type: Transform - pos: 7.5,-54.5 + pos: 14.5,-49.5 parent: 1 - - uid: 1750 + - uid: 10064 components: - type: Transform - pos: 23.5,-122.5 + pos: 20.5,-46.5 parent: 1 - - uid: 1751 + - uid: 10065 components: - type: Transform - pos: -8.5,-75.5 + pos: -20.5,-10.5 parent: 1 - - uid: 1752 + - uid: 10066 components: - type: Transform - pos: -8.5,-74.5 + pos: -20.5,-8.5 parent: 1 - - uid: 1753 + - uid: 10088 components: - type: Transform - pos: -8.5,-73.5 + pos: -20.5,-7.5 parent: 1 - - uid: 1754 + - uid: 10089 components: - type: Transform - pos: -8.5,-72.5 + pos: -23.5,-9.5 parent: 1 - - uid: 1755 + - uid: 10090 components: - type: Transform - pos: -8.5,-71.5 + pos: -21.5,-10.5 parent: 1 - - uid: 1756 + - uid: 10095 components: - type: Transform - pos: -8.5,-70.5 + pos: -20.5,-11.5 parent: 1 - - uid: 1757 + - uid: 10096 components: - type: Transform - pos: -8.5,-69.5 + pos: -21.5,-11.5 parent: 1 - - uid: 1758 + - uid: 10097 components: - type: Transform - pos: -8.5,-68.5 + pos: -26.5,-9.5 parent: 1 - - uid: 1759 + - uid: 10098 components: - type: Transform - pos: -8.5,-67.5 + pos: -27.5,-9.5 parent: 1 - - uid: 1760 + - uid: 10099 components: - type: Transform - pos: -8.5,-66.5 + pos: -29.5,-8.5 parent: 1 - - uid: 1761 + - uid: 10100 components: - type: Transform - pos: -8.5,-65.5 + pos: -24.5,-12.5 parent: 1 - - uid: 1762 + - uid: 10101 components: - type: Transform - pos: -8.5,-64.5 + pos: -26.5,-11.5 parent: 1 - - uid: 1763 + - uid: 10102 components: - type: Transform - pos: -8.5,-63.5 + pos: -25.5,-12.5 parent: 1 - - uid: 1764 + - uid: 10103 components: - type: Transform - pos: -8.5,-62.5 + pos: -26.5,-10.5 parent: 1 - - uid: 1765 + - uid: 10104 components: - type: Transform - pos: -8.5,-61.5 + pos: -16.5,-10.5 parent: 1 - - uid: 1766 + - uid: 10105 components: - type: Transform - pos: -8.5,-60.5 + pos: -18.5,-10.5 parent: 1 - - uid: 1767 + - uid: 10109 components: - type: Transform - pos: -8.5,-59.5 + pos: -17.5,-9.5 parent: 1 - - uid: 1768 + - uid: 10110 components: - type: Transform - pos: -8.5,-58.5 + pos: -15.5,-11.5 parent: 1 - - uid: 1769 + - uid: 10127 components: - type: Transform - pos: -8.5,-56.5 + pos: -16.5,-11.5 parent: 1 - - uid: 1770 + - uid: 10128 components: - type: Transform - pos: -8.5,-55.5 + pos: -16.5,-9.5 parent: 1 - - uid: 1771 + - uid: 10129 components: - type: Transform - pos: -8.5,-54.5 + pos: 16.5,-45.5 parent: 1 - - uid: 1772 + - uid: 10130 components: - type: Transform - pos: -8.5,-53.5 + pos: 15.5,-46.5 parent: 1 - - uid: 1773 + - uid: 10131 components: - type: Transform - pos: -8.5,-52.5 + pos: 16.5,-46.5 parent: 1 - - uid: 1774 + - uid: 10132 components: - type: Transform - pos: -8.5,-51.5 + pos: 16.5,-39.5 parent: 1 - - uid: 1775 + - uid: 10133 components: - type: Transform - pos: -8.5,-50.5 + pos: 15.5,-39.5 parent: 1 - - uid: 1776 + - uid: 10135 components: - type: Transform - pos: -8.5,-49.5 + pos: 17.5,-39.5 parent: 1 - - uid: 1777 + - uid: 10136 components: - type: Transform - pos: -9.5,-75.5 + pos: 15.5,-40.5 parent: 1 - - uid: 1778 + - uid: 10137 components: - type: Transform - pos: -9.5,-74.5 + pos: -14.5,-10.5 parent: 1 - - uid: 1779 + - uid: 10138 components: - type: Transform - pos: -9.5,-73.5 + pos: 17.5,-44.5 parent: 1 - - uid: 1780 + - uid: 10139 components: - type: Transform - pos: -9.5,-72.5 + pos: 15.5,-44.5 parent: 1 - - uid: 1781 + - uid: 10140 components: - type: Transform - pos: -9.5,-71.5 + pos: 16.5,-40.5 parent: 1 - - uid: 1782 + - uid: 10141 components: - type: Transform - pos: -9.5,-55.5 + pos: 15.5,-47.5 parent: 1 - - uid: 1783 + - uid: 10142 components: - type: Transform - pos: -9.5,-54.5 + pos: 15.5,-45.5 parent: 1 - - uid: 1784 + - uid: 10143 components: - type: Transform - pos: -9.5,-53.5 + pos: 17.5,-40.5 parent: 1 - - uid: 1785 + - uid: 10144 components: - type: Transform - pos: -9.5,-52.5 + pos: 16.5,-43.5 parent: 1 - - uid: 1786 + - uid: 10176 components: - type: Transform - pos: -40.5,-73.5 + pos: 15.5,-43.5 parent: 1 - - uid: 1787 + - uid: 10179 components: - type: Transform - pos: -40.5,-75.5 + pos: 17.5,-43.5 parent: 1 - - uid: 1788 + - uid: 10194 components: - type: Transform - pos: 24.5,33.5 + pos: -14.5,-8.5 parent: 1 - - uid: 1789 + - uid: 10195 components: - type: Transform - pos: -10.5,-74.5 + pos: 16.5,-42.5 parent: 1 - - uid: 1790 + - uid: 10196 components: - type: Transform - pos: -10.5,-73.5 + pos: 14.5,-43.5 parent: 1 - - uid: 1791 + - uid: 10197 components: - type: Transform - pos: -10.5,-72.5 + pos: 17.5,-42.5 parent: 1 - - uid: 1792 + - uid: 10198 components: - type: Transform - pos: 14.5,-50.5 + pos: 14.5,-42.5 parent: 1 - - uid: 1793 + - uid: 10199 components: - type: Transform - pos: 14.5,-55.5 + pos: 15.5,-42.5 parent: 1 - - uid: 1794 + - uid: 10200 components: - type: Transform - pos: 13.5,-49.5 + pos: 20.5,-41.5 parent: 1 - - uid: 1795 + - uid: 10201 components: - type: Transform - pos: 13.5,-50.5 + pos: 19.5,-41.5 parent: 1 - - uid: 1796 + - uid: 10202 components: - type: Transform - pos: 13.5,-51.5 + pos: 16.5,-41.5 parent: 1 - - uid: 1797 + - uid: 10698 components: - type: Transform - pos: 13.5,-52.5 + pos: -24.5,-108.5 parent: 1 - - uid: 1798 + - uid: 10788 components: - type: Transform - pos: 13.5,-53.5 + pos: 44.5,-112.5 parent: 1 - - uid: 1799 + - uid: 10803 components: - type: Transform - pos: 13.5,-54.5 + pos: -25.5,-109.5 parent: 1 - - uid: 1800 + - uid: 10805 components: - type: Transform - pos: 12.5,-49.5 + pos: -25.5,-108.5 parent: 1 - - uid: 1801 + - uid: 10835 components: - type: Transform - pos: 12.5,-50.5 + pos: 35.5,-107.5 parent: 1 - - uid: 1802 + - uid: 11275 components: - type: Transform - pos: -10.5,-54.5 + pos: 36.5,-107.5 parent: 1 - - uid: 1803 + - uid: 11276 components: - type: Transform - pos: -10.5,-53.5 + pos: 36.5,-108.5 parent: 1 - - uid: 1804 + - uid: 11277 components: - type: Transform - pos: 23.5,-123.5 + pos: 36.5,-109.5 parent: 1 - - uid: 1805 + - uid: 11282 components: - type: Transform - pos: 24.5,32.5 + pos: 44.5,-111.5 parent: 1 - - uid: 1806 + - uid: 11440 components: - type: Transform - pos: 23.5,-121.5 + pos: 37.5,-107.5 parent: 1 - - uid: 1807 + - uid: 11443 components: - type: Transform - pos: 24.5,34.5 + pos: 37.5,-108.5 parent: 1 - - uid: 1808 + - uid: 11444 components: - type: Transform - pos: 12.5,-51.5 + pos: 37.5,-109.5 parent: 1 - - uid: 1809 + - uid: 11445 components: - type: Transform - pos: -11.5,-74.5 + pos: 37.5,-110.5 parent: 1 - - uid: 1810 + - uid: 11449 components: - type: Transform - pos: -11.5,-73.5 + pos: 44.5,-108.5 parent: 1 - - uid: 1811 + - uid: 11714 components: - type: Transform - pos: -11.5,-72.5 + pos: -18.5,-110.5 parent: 1 - - uid: 1812 + - uid: 11716 components: - type: Transform - pos: 12.5,-52.5 + pos: -22.5,-110.5 parent: 1 - - uid: 1813 + - uid: 11717 components: - type: Transform - pos: 12.5,-53.5 + pos: -21.5,-110.5 parent: 1 - - uid: 1814 + - uid: 11722 components: - type: Transform - pos: 12.5,-54.5 + pos: 38.5,-107.5 parent: 1 - - uid: 1815 + - uid: 11723 components: - type: Transform - pos: 11.5,-49.5 + pos: 38.5,-108.5 parent: 1 - - uid: 1816 + - uid: 11724 components: - type: Transform - pos: 11.5,-50.5 + pos: 38.5,-109.5 parent: 1 - - uid: 1817 + - uid: 11727 components: - type: Transform - pos: 11.5,-51.5 + pos: 38.5,-110.5 parent: 1 - - uid: 1818 + - uid: 11728 components: - type: Transform - pos: 11.5,-52.5 + pos: 38.5,-111.5 parent: 1 - - uid: 1819 + - uid: 11729 components: - type: Transform - pos: 11.5,-53.5 + pos: 38.5,-112.5 parent: 1 - - uid: 1820 + - uid: 11731 components: - type: Transform - pos: 11.5,-54.5 + pos: 44.5,-109.5 parent: 1 - - uid: 1821 + - uid: 11768 components: - type: Transform - pos: -11.5,-55.5 + pos: -17.5,-110.5 parent: 1 - - uid: 1822 + - uid: 11772 components: - type: Transform - pos: 24.5,36.5 + pos: -18.5,-108.5 parent: 1 - - uid: 1823 + - uid: 11777 components: - type: Transform - pos: 23.5,-120.5 + pos: 39.5,-107.5 parent: 1 - - uid: 1824 + - uid: 11778 components: - type: Transform - pos: 24.5,35.5 + pos: 39.5,-108.5 parent: 1 - - uid: 1825 + - uid: 11779 components: - type: Transform - pos: 10.5,-49.5 + pos: 39.5,-109.5 parent: 1 - - uid: 1826 + - uid: 11781 components: - type: Transform - pos: 23.5,-119.5 + pos: 39.5,-110.5 parent: 1 - - uid: 1827 + - uid: 11782 components: - type: Transform - pos: 24.5,37.5 + pos: 39.5,-111.5 parent: 1 - - uid: 1828 + - uid: 11783 components: - type: Transform - pos: -11.5,-49.5 + pos: 39.5,-112.5 parent: 1 - - uid: 1829 + - uid: 11821 components: - type: Transform - pos: 10.5,-50.5 + pos: -15.5,-110.5 parent: 1 - - uid: 1830 + - uid: 11823 components: - type: Transform - pos: -12.5,-74.5 + pos: -22.5,-108.5 parent: 1 - - uid: 1831 + - uid: 11824 components: - type: Transform - pos: -12.5,-73.5 + pos: -21.5,-108.5 parent: 1 - - uid: 1832 + - uid: 11825 components: - type: Transform - pos: 10.5,-51.5 + pos: -23.5,-110.5 parent: 1 - - uid: 1833 + - uid: 11826 components: - type: Transform - pos: 10.5,-52.5 + pos: -24.5,-109.5 parent: 1 - - uid: 1834 + - uid: 11827 components: - type: Transform - pos: 10.5,-53.5 + pos: -27.5,-108.5 parent: 1 - - uid: 1835 + - uid: 11830 components: - type: Transform - pos: -12.5,-69.5 + pos: 40.5,-107.5 parent: 1 - - uid: 1836 + - uid: 11831 components: - type: Transform - pos: -12.5,-68.5 + pos: 40.5,-108.5 parent: 1 - - uid: 1837 + - uid: 11835 components: - type: Transform - pos: 10.5,-54.5 + pos: 40.5,-112.5 parent: 1 - - uid: 1838 + - uid: 11880 components: - type: Transform - pos: -12.5,-66.5 + pos: -14.5,-110.5 parent: 1 - - uid: 1839 + - uid: 11884 components: - type: Transform - pos: 9.5,-49.5 + pos: -19.5,-109.5 parent: 1 - - uid: 1840 + - uid: 11887 components: - type: Transform - pos: -12.5,-64.5 + pos: -17.5,-109.5 parent: 1 - - uid: 1841 + - uid: 11888 components: - type: Transform - pos: 9.5,-50.5 + pos: -18.5,-109.5 parent: 1 - - uid: 1842 + - uid: 11889 components: - type: Transform - pos: -12.5,-62.5 + pos: -16.5,-109.5 parent: 1 - - uid: 1843 + - uid: 11890 components: - type: Transform - pos: -12.5,-61.5 + pos: -15.5,-109.5 parent: 1 - - uid: 1844 + - uid: 11893 components: - type: Transform - pos: -12.5,-60.5 + pos: 42.5,-107.5 parent: 1 - - uid: 1845 + - uid: 11895 components: - type: Transform - pos: -12.5,-59.5 + pos: 41.5,-107.5 parent: 1 - - uid: 1846 + - uid: 11901 components: - type: Transform - pos: 9.5,-51.5 + pos: 44.5,-107.5 parent: 1 - - uid: 1847 + - uid: 11945 components: - type: Transform - pos: 9.5,-52.5 + pos: -22.5,-109.5 parent: 1 - - uid: 1848 + - uid: 11946 components: - type: Transform - pos: 23.5,-118.5 + pos: -20.5,-109.5 parent: 1 - - uid: 1849 + - uid: 11947 components: - type: Transform - pos: 24.5,38.5 + pos: -21.5,-109.5 parent: 1 - - uid: 1850 + - uid: 11948 components: - type: Transform - pos: 23.5,-127.5 + pos: -23.5,-109.5 parent: 1 - - uid: 1851 + - uid: 11949 components: - type: Transform - pos: 9.5,-53.5 + pos: -27.5,-109.5 parent: 1 - - uid: 1852 + - uid: 12034 components: - type: Transform - pos: 9.5,-54.5 + pos: 43.5,-107.5 parent: 1 - - uid: 1853 + - uid: 12056 components: - type: Transform - pos: 8.5,-49.5 + pos: -26.5,-108.5 parent: 1 - - uid: 1854 + - uid: 12091 components: - type: Transform - pos: 8.5,-50.5 + pos: -20.5,-110.5 parent: 1 - - uid: 1855 + - uid: 12099 components: - type: Transform - pos: 8.5,-51.5 + pos: -19.5,-110.5 parent: 1 - - uid: 1856 + - uid: 12138 components: - type: Transform - pos: 8.5,-52.5 + pos: -16.5,-110.5 parent: 1 - - uid: 1857 + - uid: 12196 components: - type: Transform - pos: -13.5,-74.5 + pos: 20.5,-45.5 parent: 1 - - uid: 1858 + - uid: 12197 components: - type: Transform - pos: 8.5,-53.5 + pos: -9.5,-110.5 parent: 1 - - uid: 1859 + - uid: 12198 components: - type: Transform - pos: 8.5,-54.5 + pos: -9.5,-111.5 parent: 1 - - uid: 1860 + - uid: 12211 components: - type: Transform - pos: 20.5,-44.5 + pos: -3.5,-108.5 parent: 1 - - uid: 1861 + - uid: 12213 components: - type: Transform - pos: -13.5,-70.5 + pos: -2.5,-108.5 parent: 1 - - uid: 1862 + - uid: 12464 components: - type: Transform - pos: -13.5,-69.5 + pos: 17.5,-41.5 parent: 1 - - uid: 1863 + - uid: 12465 components: - type: Transform - pos: -13.5,-68.5 + pos: 14.5,-40.5 parent: 1 - - uid: 1864 + - uid: 12466 components: - type: Transform - pos: 20.5,-43.5 + pos: 18.5,-41.5 parent: 1 - - uid: 1865 + - uid: 12467 components: - type: Transform - pos: -13.5,-66.5 + pos: 14.5,-41.5 parent: 1 - - uid: 1866 + - uid: 12468 components: - type: Transform - pos: -13.5,-65.5 + pos: 15.5,-41.5 parent: 1 - - uid: 1867 + - uid: 12475 components: - type: Transform - pos: -13.5,-64.5 + pos: -26.5,-8.5 parent: 1 - - uid: 1868 + - uid: 12483 components: - type: Transform - pos: -13.5,-63.5 + pos: -23.5,-12.5 parent: 1 - - uid: 1869 + - uid: 12486 components: - type: Transform - pos: -13.5,-62.5 + pos: -19.5,-8.5 parent: 1 - - uid: 1870 +- proto: WallRockBasaltBananium + entities: + - uid: 302 components: - type: Transform - pos: -13.5,-61.5 + pos: -24.5,2.5 parent: 1 - - uid: 1871 + - uid: 2646 components: - type: Transform - pos: -13.5,-60.5 + pos: -15.5,-30.5 parent: 1 - - uid: 1872 + - uid: 2671 components: - type: Transform - pos: -13.5,-59.5 + pos: -18.5,-30.5 parent: 1 - - uid: 1873 + - uid: 2687 components: - type: Transform - pos: -13.5,-58.5 + pos: -20.5,-27.5 parent: 1 - - uid: 1874 + - uid: 5715 components: - type: Transform - pos: 20.5,-40.5 + pos: -24.5,3.5 parent: 1 - - uid: 1875 + - uid: 6843 components: - type: Transform - pos: 20.5,-39.5 + pos: -23.5,-23.5 parent: 1 - - uid: 1876 + - uid: 7887 components: - type: Transform - pos: -13.5,-112.5 + pos: -16.5,-31.5 parent: 1 - - uid: 1877 + - uid: 7928 components: - type: Transform - pos: 23.5,-128.5 + pos: -12.5,-34.5 parent: 1 - - uid: 1878 + - uid: 8469 components: - type: Transform - pos: 19.5,-48.5 + pos: -22.5,-25.5 parent: 1 - - uid: 1879 +- proto: WallRockBasaltCoal + entities: + - uid: 523 components: - type: Transform - pos: 19.5,-47.5 + pos: -32.5,-4.5 parent: 1 - - uid: 1880 + - uid: 524 components: - type: Transform - pos: 19.5,-46.5 + pos: -27.5,1.5 parent: 1 - - uid: 1881 + - uid: 2833 components: - type: Transform - pos: 19.5,-44.5 + pos: -15.5,-6.5 parent: 1 - - uid: 1882 + - uid: 4326 components: - type: Transform - pos: 19.5,-43.5 + pos: -15.5,-7.5 parent: 1 - - uid: 1883 + - uid: 7225 components: - type: Transform - pos: 19.5,-40.5 + pos: -16.5,-6.5 parent: 1 - - uid: 1884 + - uid: 8649 components: - type: Transform - pos: -14.5,-74.5 + pos: -16.5,-20.5 parent: 1 - - uid: 1885 + - uid: 8778 components: - type: Transform - pos: 19.5,-39.5 + pos: -8.5,7.5 parent: 1 - - uid: 1886 + - uid: 8891 components: - type: Transform - pos: 19.5,-37.5 + pos: -21.5,6.5 parent: 1 - - uid: 1887 + - uid: 8916 components: - type: Transform - pos: 19.5,-36.5 + pos: -28.5,-11.5 parent: 1 - - uid: 1888 + - uid: 8917 components: - type: Transform - pos: -14.5,-70.5 + pos: -30.5,-4.5 parent: 1 - - uid: 1889 + - uid: 8922 components: - type: Transform - pos: -14.5,-69.5 + pos: -31.5,-1.5 parent: 1 - - uid: 1890 + - uid: 8941 components: - type: Transform - pos: -14.5,-68.5 + pos: -16.5,-15.5 parent: 1 - - uid: 1891 + - uid: 8942 components: - type: Transform - pos: 18.5,-48.5 + pos: -29.5,-15.5 parent: 1 - - uid: 1892 + - uid: 8943 components: - type: Transform - pos: 18.5,-47.5 + pos: -31.5,-14.5 parent: 1 - - uid: 1893 + - uid: 8948 components: - type: Transform - pos: 18.5,-46.5 + pos: -26.5,-0.5 parent: 1 - - uid: 1894 + - uid: 8969 components: - type: Transform - pos: -14.5,-64.5 + pos: -22.5,-12.5 parent: 1 - - uid: 1895 + - uid: 8970 components: - type: Transform - pos: -14.5,-63.5 + pos: -21.5,-9.5 parent: 1 - - uid: 1896 + - uid: 8971 components: - type: Transform - pos: -14.5,-62.5 + pos: -24.5,-7.5 parent: 1 - - uid: 1897 + - uid: 8972 components: - type: Transform - pos: -14.5,-61.5 + pos: -21.5,-18.5 parent: 1 - - uid: 1898 + - uid: 8974 components: - type: Transform - pos: -14.5,-60.5 + pos: -14.5,7.5 parent: 1 - - uid: 1899 + - uid: 8975 components: - type: Transform - pos: -14.5,-59.5 + pos: -12.5,9.5 parent: 1 - - uid: 1900 + - uid: 8976 components: - type: Transform - pos: -14.5,-55.5 + pos: -31.5,3.5 parent: 1 - - uid: 1901 +- proto: WallRockBasaltIndestructible + entities: + - uid: 192 components: - type: Transform - pos: -14.5,-54.5 + pos: -4.5,-32.5 parent: 1 - - uid: 1902 + - uid: 193 components: - type: Transform - pos: -15.5,-74.5 + pos: -4.5,-30.5 parent: 1 - - uid: 1903 + - uid: 194 components: - type: Transform - pos: -15.5,-73.5 + pos: -5.5,-31.5 parent: 1 - - uid: 1904 + - uid: 196 components: - type: Transform - pos: -15.5,-70.5 + pos: -28.5,-122.5 parent: 1 - - uid: 1905 + - uid: 197 components: - type: Transform - pos: -15.5,-69.5 + pos: -10.5,-44.5 parent: 1 - - uid: 1906 + - uid: 198 components: - type: Transform - pos: -15.5,-68.5 + pos: -8.5,-35.5 parent: 1 - - uid: 1907 + - uid: 199 components: - type: Transform - pos: -15.5,-65.5 + pos: -30.5,-17.5 parent: 1 - - uid: 1908 + - uid: 200 components: - type: Transform - pos: -15.5,-64.5 + pos: -27.5,-17.5 parent: 1 - - uid: 1909 + - uid: 289 components: - type: Transform - pos: -15.5,-63.5 + pos: -23.5,-27.5 parent: 1 - - uid: 1910 + - uid: 290 components: - type: Transform - pos: -15.5,-62.5 + pos: -23.5,-26.5 parent: 1 - - uid: 1911 + - uid: 291 components: - type: Transform - pos: -15.5,-61.5 + pos: -23.5,-25.5 parent: 1 - - uid: 1912 + - uid: 293 components: - type: Transform - pos: -15.5,-56.5 + pos: -23.5,-21.5 parent: 1 - - uid: 1913 + - uid: 296 components: - type: Transform - pos: -15.5,-55.5 + pos: -9.5,-43.5 parent: 1 - - uid: 1914 + - uid: 304 components: - type: Transform - pos: -15.5,-54.5 + pos: -28.5,-16.5 parent: 1 - - uid: 1915 + - uid: 310 components: - type: Transform - pos: -16.5,-74.5 + pos: -23.5,12.5 parent: 1 - - uid: 1916 + - uid: 311 components: - type: Transform - pos: -16.5,-70.5 + pos: -23.5,14.5 parent: 1 - - uid: 1917 + - uid: 312 components: - type: Transform - pos: -16.5,-69.5 + pos: -23.5,16.5 parent: 1 - - uid: 1918 + - uid: 313 components: - type: Transform - pos: -16.5,-64.5 + pos: -23.5,18.5 parent: 1 - - uid: 1919 + - uid: 314 components: - type: Transform - pos: -16.5,-63.5 + pos: -23.5,20.5 parent: 1 - - uid: 1920 + - uid: 315 components: - type: Transform - pos: -16.5,-62.5 + pos: -23.5,22.5 parent: 1 - - uid: 1921 + - uid: 316 components: - type: Transform - pos: 23.5,-124.5 + pos: -23.5,24.5 parent: 1 - - uid: 1922 + - uid: 317 components: - type: Transform - pos: -16.5,-57.5 + pos: -23.5,26.5 parent: 1 - - uid: 1923 + - uid: 318 components: - type: Transform - pos: -16.5,-56.5 + pos: -23.5,28.5 parent: 1 - - uid: 1998 + - uid: 319 components: - type: Transform - pos: -16.5,-55.5 + pos: -23.5,30.5 parent: 1 - - uid: 2028 + - uid: 320 components: - type: Transform - pos: 23.5,-126.5 + pos: -23.5,32.5 parent: 1 - - uid: 2029 + - uid: 321 components: - type: Transform - pos: 23.5,-117.5 + pos: -23.5,34.5 parent: 1 - - uid: 2049 + - uid: 322 components: - type: Transform - pos: 23.5,-125.5 + pos: -23.5,36.5 parent: 1 - - uid: 2050 + - uid: 324 components: - type: Transform - pos: 24.5,-23.5 + pos: -23.5,38.5 parent: 1 - - uid: 2081 + - uid: 325 components: - type: Transform - pos: -16.5,-54.5 + pos: -24.5,-60.5 parent: 1 - - uid: 2093 + - uid: 326 components: - type: Transform - pos: 24.5,-24.5 + pos: -24.5,-58.5 parent: 1 - - uid: 2094 + - uid: 327 components: - type: Transform - pos: -17.5,-71.5 + pos: -24.5,-56.5 parent: 1 - - uid: 2095 + - uid: 328 components: - type: Transform - pos: -17.5,-70.5 + pos: -24.5,-54.5 parent: 1 - - uid: 2096 + - uid: 329 components: - type: Transform - pos: -17.5,-69.5 + pos: -24.5,-52.5 parent: 1 - - uid: 2097 + - uid: 330 components: - type: Transform - pos: -17.5,-68.5 + pos: -24.5,-50.5 parent: 1 - - uid: 2098 + - uid: 331 components: - type: Transform - pos: -17.5,-65.5 + pos: -24.5,-48.5 parent: 1 - - uid: 2099 + - uid: 332 components: - type: Transform - pos: -17.5,-64.5 + pos: -24.5,-46.5 parent: 1 - - uid: 2100 + - uid: 333 components: - type: Transform - pos: -17.5,-63.5 + pos: -24.5,-44.5 parent: 1 - - uid: 2101 + - uid: 334 components: - type: Transform - pos: -17.5,-58.5 + pos: -24.5,-42.5 parent: 1 - - uid: 2102 + - uid: 335 components: - type: Transform - pos: -17.5,-57.5 + pos: -24.5,-40.5 parent: 1 - - uid: 2103 + - uid: 336 components: - type: Transform - pos: -17.5,-56.5 + pos: -24.5,-38.5 parent: 1 - - uid: 2104 + - uid: 337 components: - type: Transform - pos: -17.5,-55.5 + pos: -24.5,-36.5 parent: 1 - - uid: 2105 + - uid: 338 components: - type: Transform - pos: -17.5,-54.5 + pos: -24.5,-34.5 parent: 1 - - uid: 2112 + - uid: 339 components: - type: Transform - pos: -18.5,-71.5 + pos: -24.5,-32.5 parent: 1 - - uid: 2113 + - uid: 340 components: - type: Transform - pos: -18.5,-70.5 + pos: -24.5,-30.5 parent: 1 - - uid: 2114 + - uid: 341 components: - type: Transform - pos: -18.5,-69.5 + pos: -24.5,-28.5 parent: 1 - - uid: 2115 + - uid: 342 components: - type: Transform - pos: -18.5,-68.5 + pos: -24.5,-26.5 parent: 1 - - uid: 2116 + - uid: 343 components: - type: Transform - pos: -18.5,-67.5 + pos: -24.5,-24.5 parent: 1 - - uid: 2117 + - uid: 344 components: - type: Transform - pos: -18.5,-66.5 + pos: -24.5,-22.5 parent: 1 - - uid: 2118 + - uid: 345 components: - type: Transform - pos: -18.5,-65.5 + pos: -24.5,-20.5 parent: 1 - - uid: 2119 + - uid: 350 components: - type: Transform - pos: -18.5,-64.5 + pos: -11.5,-53.5 parent: 1 - - uid: 2121 + - uid: 351 components: - type: Transform - pos: -18.5,-63.5 + pos: -11.5,-59.5 parent: 1 - - uid: 2122 + - uid: 352 components: - type: Transform - pos: -18.5,-62.5 + pos: -7.5,-34.5 parent: 1 - - uid: 2123 + - uid: 353 components: - type: Transform - pos: -18.5,-60.5 + pos: -10.5,-36.5 parent: 1 - - uid: 2124 + - uid: 354 components: - type: Transform - pos: -18.5,-59.5 + pos: -29.5,-17.5 parent: 1 - - uid: 2125 + - uid: 355 components: - type: Transform - pos: -18.5,-56.5 + pos: -28.5,-17.5 parent: 1 - - uid: 2126 + - uid: 360 components: - type: Transform - pos: -18.5,-55.5 + pos: -3.5,-30.5 parent: 1 - - uid: 2127 + - uid: 361 components: - type: Transform - pos: -18.5,-54.5 + pos: -24.5,11.5 parent: 1 - - uid: 2128 + - uid: 362 components: - type: Transform - pos: -18.5,-58.5 + pos: -24.5,13.5 parent: 1 - - uid: 2129 + - uid: 363 components: - type: Transform - pos: -18.5,-57.5 + pos: -24.5,15.5 parent: 1 - - uid: 2130 + - uid: 364 components: - type: Transform - pos: -19.5,-73.5 + pos: -24.5,17.5 parent: 1 - - uid: 2131 + - uid: 365 components: - type: Transform - pos: -19.5,-72.5 + pos: -24.5,19.5 parent: 1 - - uid: 2132 + - uid: 366 components: - type: Transform - pos: -19.5,-71.5 + pos: -24.5,21.5 parent: 1 - - uid: 2133 + - uid: 367 components: - type: Transform - pos: -19.5,-70.5 + pos: -24.5,23.5 parent: 1 - - uid: 2134 + - uid: 368 components: - type: Transform - pos: -19.5,-69.5 + pos: -24.5,25.5 parent: 1 - - uid: 2135 + - uid: 369 components: - type: Transform - pos: -19.5,-68.5 + pos: -24.5,27.5 parent: 1 - - uid: 2136 + - uid: 370 components: - type: Transform - pos: -19.5,-67.5 + pos: -24.5,29.5 parent: 1 - - uid: 2137 + - uid: 371 components: - type: Transform - pos: -19.5,-66.5 + pos: -24.5,31.5 parent: 1 - - uid: 2138 + - uid: 372 components: - type: Transform - pos: -19.5,-65.5 + pos: -24.5,33.5 parent: 1 - - uid: 2139 + - uid: 373 components: - type: Transform - pos: -19.5,-64.5 + pos: -24.5,35.5 parent: 1 - - uid: 2140 + - uid: 374 components: - type: Transform - pos: -19.5,-63.5 + pos: -24.5,37.5 parent: 1 - - uid: 2141 + - uid: 375 components: - type: Transform - pos: -19.5,-62.5 + pos: -25.5,-61.5 parent: 1 - - uid: 2142 + - uid: 376 components: - type: Transform - pos: -19.5,-61.5 + pos: -25.5,-59.5 parent: 1 - - uid: 2143 + - uid: 377 components: - type: Transform - pos: -19.5,-60.5 + pos: -25.5,-57.5 parent: 1 - - uid: 2144 + - uid: 378 components: - type: Transform - pos: -19.5,-59.5 + pos: -25.5,-55.5 parent: 1 - - uid: 2145 + - uid: 379 components: - type: Transform - pos: -19.5,-58.5 + pos: -25.5,-53.5 parent: 1 - - uid: 2146 + - uid: 380 components: - type: Transform - pos: -19.5,-57.5 + pos: -25.5,-51.5 parent: 1 - - uid: 2147 + - uid: 381 components: - type: Transform - pos: -19.5,-56.5 + pos: -25.5,-49.5 parent: 1 - - uid: 2148 + - uid: 382 components: - type: Transform - pos: -19.5,-55.5 + pos: -25.5,-47.5 parent: 1 - - uid: 2149 + - uid: 383 components: - type: Transform - pos: -19.5,-54.5 + pos: -25.5,-45.5 parent: 1 - - uid: 2150 + - uid: 384 components: - type: Transform - pos: -10.5,-102.5 + pos: -25.5,-43.5 parent: 1 - - uid: 2151 + - uid: 385 components: - type: Transform - pos: -20.5,-74.5 + pos: -25.5,-41.5 parent: 1 - - uid: 2152 + - uid: 386 components: - type: Transform - pos: -20.5,-73.5 + pos: -25.5,-39.5 parent: 1 - - uid: 2153 + - uid: 387 components: - type: Transform - pos: -20.5,-72.5 + pos: -25.5,-37.5 parent: 1 - - uid: 2154 + - uid: 388 components: - type: Transform - pos: -20.5,-71.5 + pos: -25.5,-35.5 parent: 1 - - uid: 2155 + - uid: 389 components: - type: Transform - pos: -20.5,-70.5 + pos: -25.5,-33.5 parent: 1 - - uid: 2156 + - uid: 390 components: - type: Transform - pos: -20.5,-69.5 + pos: -25.5,-31.5 parent: 1 - - uid: 2157 + - uid: 391 components: - type: Transform - pos: -20.5,-68.5 + pos: -25.5,-29.5 parent: 1 - - uid: 2158 + - uid: 392 components: - type: Transform - pos: -20.5,-67.5 + pos: -25.5,-27.5 parent: 1 - - uid: 2159 + - uid: 393 components: - type: Transform - pos: -20.5,-66.5 + pos: -25.5,-25.5 parent: 1 - - uid: 2160 + - uid: 394 components: - type: Transform - pos: -20.5,-65.5 + pos: -25.5,-23.5 parent: 1 - - uid: 2161 + - uid: 395 components: - type: Transform - pos: -20.5,-64.5 + pos: -25.5,-21.5 parent: 1 - - uid: 2162 + - uid: 396 components: - type: Transform - pos: -20.5,-63.5 + pos: -25.5,-19.5 parent: 1 - - uid: 2163 + - uid: 407 components: - type: Transform - pos: -20.5,-62.5 + pos: -6.5,-32.5 parent: 1 - - uid: 2164 + - uid: 408 components: - type: Transform - pos: -20.5,-61.5 + pos: -4.5,-31.5 parent: 1 - - uid: 2165 + - uid: 409 components: - type: Transform - pos: -20.5,-60.5 + pos: -9.5,-35.5 parent: 1 - - uid: 2166 + - uid: 410 components: - type: Transform - pos: -20.5,-59.5 + pos: -11.5,-63.5 parent: 1 - - uid: 2167 + - uid: 412 components: - type: Transform - pos: -20.5,-58.5 + pos: -25.5,12.5 parent: 1 - - uid: 2168 + - uid: 413 components: - type: Transform - pos: -20.5,-57.5 + pos: -25.5,14.5 parent: 1 - - uid: 2169 + - uid: 414 components: - type: Transform - pos: -20.5,-56.5 + pos: -25.5,16.5 parent: 1 - - uid: 2170 + - uid: 415 components: - type: Transform - pos: -20.5,-55.5 + pos: -25.5,18.5 parent: 1 - - uid: 2171 + - uid: 416 components: - type: Transform - pos: -20.5,-54.5 + pos: -25.5,20.5 parent: 1 - - uid: 2173 + - uid: 450 components: - type: Transform - pos: 5.5,-37.5 + pos: -25.5,23.5 parent: 1 - - uid: 2174 + - uid: 451 components: - type: Transform - pos: 5.5,-36.5 + pos: -25.5,25.5 parent: 1 - - uid: 2175 + - uid: 452 components: - type: Transform - pos: 4.5,-36.5 + pos: -25.5,27.5 parent: 1 - - uid: 2176 + - uid: 453 components: - type: Transform - pos: 22.5,-48.5 + pos: -25.5,29.5 parent: 1 - - uid: 2177 + - uid: 454 components: - type: Transform - pos: 22.5,-47.5 + pos: -25.5,31.5 parent: 1 - - uid: 2178 + - uid: 455 components: - type: Transform - pos: 22.5,-46.5 + pos: -25.5,32.5 parent: 1 - - uid: 2179 + - uid: 456 components: - type: Transform - pos: 22.5,-45.5 + pos: -25.5,34.5 parent: 1 - - uid: 2180 + - uid: 457 components: - type: Transform - pos: 22.5,-44.5 + pos: -25.5,36.5 parent: 1 - - uid: 2181 + - uid: 458 components: - type: Transform - pos: 22.5,-43.5 + pos: -25.5,38.5 parent: 1 - - uid: 2182 + - uid: 459 components: - type: Transform - pos: 22.5,-42.5 + pos: -26.5,-60.5 parent: 1 - - uid: 2183 + - uid: 460 components: - type: Transform - pos: 22.5,-41.5 + pos: -26.5,-58.5 parent: 1 - - uid: 2184 + - uid: 461 components: - type: Transform - pos: 22.5,-40.5 + pos: -26.5,-56.5 parent: 1 - - uid: 2185 + - uid: 462 components: - type: Transform - pos: 22.5,-39.5 + pos: -26.5,-54.5 parent: 1 - - uid: 2186 + - uid: 463 components: - type: Transform - pos: 22.5,-38.5 + pos: -26.5,-53.5 parent: 1 - - uid: 2187 + - uid: 464 components: - type: Transform - pos: 22.5,-37.5 + pos: -26.5,-52.5 parent: 1 - - uid: 2188 + - uid: 465 components: - type: Transform - pos: 22.5,-36.5 + pos: -26.5,-51.5 parent: 1 - - uid: 2189 + - uid: 466 components: - type: Transform - pos: 21.5,-48.5 + pos: -26.5,-50.5 parent: 1 - - uid: 2190 + - uid: 467 components: - type: Transform - pos: 21.5,-47.5 + pos: -26.5,-49.5 parent: 1 - - uid: 2191 + - uid: 468 components: - type: Transform - pos: 21.5,-46.5 + pos: -26.5,-48.5 parent: 1 - - uid: 2192 + - uid: 469 components: - type: Transform - pos: 21.5,-45.5 + pos: -26.5,-47.5 parent: 1 - - uid: 2193 + - uid: 470 components: - type: Transform - pos: 21.5,-44.5 + pos: -26.5,-46.5 parent: 1 - - uid: 2194 + - uid: 471 components: - type: Transform - pos: 21.5,-43.5 + pos: -26.5,-45.5 parent: 1 - - uid: 2195 + - uid: 472 components: - type: Transform - pos: 21.5,-42.5 + pos: -26.5,-44.5 parent: 1 - - uid: 2196 + - uid: 473 components: - type: Transform - pos: 21.5,-41.5 + pos: -26.5,-43.5 parent: 1 - - uid: 2197 + - uid: 474 components: - type: Transform - pos: 21.5,-40.5 + pos: -26.5,-42.5 parent: 1 - - uid: 2198 + - uid: 475 components: - type: Transform - pos: 21.5,-39.5 + pos: -26.5,-41.5 parent: 1 - - uid: 2199 + - uid: 476 components: - type: Transform - pos: 8.5,-104.5 + pos: -26.5,-40.5 parent: 1 - - uid: 2200 + - uid: 477 components: - type: Transform - pos: 21.5,-37.5 + pos: -26.5,-39.5 parent: 1 - - uid: 2201 + - uid: 478 components: - type: Transform - pos: 21.5,-36.5 + pos: -26.5,-38.5 parent: 1 - - uid: 2202 + - uid: 479 components: - type: Transform - pos: 9.5,-104.5 + pos: -26.5,-37.5 parent: 1 - - uid: 2203 + - uid: 480 components: - type: Transform - pos: 18.5,-44.5 + pos: -26.5,-36.5 parent: 1 - - uid: 2204 + - uid: 481 components: - type: Transform - pos: 18.5,-43.5 + pos: -26.5,-35.5 parent: 1 - - uid: 2205 + - uid: 482 components: - type: Transform - pos: 4.5,-104.5 + pos: -26.5,-34.5 parent: 1 - - uid: 2206 + - uid: 483 components: - type: Transform - pos: 18.5,-40.5 + pos: -26.5,-33.5 parent: 1 - - uid: 2207 + - uid: 484 components: - type: Transform - pos: 18.5,-39.5 + pos: -26.5,-32.5 parent: 1 - - uid: 2208 + - uid: 485 components: - type: Transform - pos: 6.5,-104.5 + pos: -26.5,-31.5 parent: 1 - - uid: 2209 + - uid: 486 components: - type: Transform - pos: 18.5,-37.5 + pos: -26.5,-30.5 parent: 1 - - uid: 2210 + - uid: 487 components: - type: Transform - pos: 18.5,-36.5 + pos: -26.5,-29.5 parent: 1 - - uid: 2211 + - uid: 488 components: - type: Transform - pos: 17.5,-44.5 + pos: -26.5,-28.5 parent: 1 - - uid: 2212 + - uid: 489 components: - type: Transform - pos: 17.5,-43.5 + pos: -26.5,-27.5 parent: 1 - - uid: 2213 + - uid: 490 components: - type: Transform - pos: 17.5,-40.5 + pos: -26.5,-26.5 parent: 1 - - uid: 2214 + - uid: 491 components: - type: Transform - pos: 17.5,-39.5 + pos: -26.5,-25.5 parent: 1 - - uid: 2215 + - uid: 492 components: - type: Transform - pos: 17.5,-37.5 + pos: -26.5,-24.5 parent: 1 - - uid: 2216 + - uid: 493 components: - type: Transform - pos: 17.5,-36.5 + pos: -26.5,-23.5 parent: 1 - - uid: 2217 + - uid: 494 components: - type: Transform - pos: 16.5,-47.5 + pos: -26.5,-22.5 parent: 1 - - uid: 2218 + - uid: 495 components: - type: Transform - pos: 16.5,-46.5 + pos: -26.5,-21.5 parent: 1 - - uid: 2219 + - uid: 496 components: - type: Transform - pos: 16.5,-45.5 + pos: -26.5,-20.5 parent: 1 - - uid: 2220 + - uid: 497 components: - type: Transform - pos: 16.5,-44.5 + pos: -26.5,-19.5 parent: 1 - - uid: 2221 + - uid: 498 components: - type: Transform - pos: 16.5,-43.5 + pos: -26.5,-18.5 parent: 1 - - uid: 2222 + - uid: 502 components: - type: Transform - pos: 16.5,-40.5 + pos: -9.5,-41.5 parent: 1 - - uid: 2223 + - uid: 503 components: - type: Transform - pos: 16.5,-39.5 + pos: -10.5,-46.5 parent: 1 - - uid: 2224 + - uid: 504 components: - type: Transform - pos: 16.5,-37.5 + pos: -11.5,-39.5 parent: 1 - - uid: 2225 + - uid: 505 components: - type: Transform - pos: 16.5,-36.5 + pos: -12.5,-47.5 parent: 1 - - uid: 2226 + - uid: 526 components: - type: Transform - pos: 15.5,-47.5 + pos: -11.5,-38.5 parent: 1 - - uid: 2227 + - uid: 527 components: - type: Transform - pos: -28.5,-94.5 + pos: -26.5,11.5 parent: 1 - - uid: 2228 + - uid: 528 components: - type: Transform - pos: -28.5,-91.5 + pos: -26.5,12.5 parent: 1 - - uid: 2229 + - uid: 529 components: - type: Transform - pos: 15.5,-45.5 + pos: -26.5,13.5 parent: 1 - - uid: 2230 + - uid: 530 components: - type: Transform - pos: 15.5,-44.5 + pos: -26.5,14.5 parent: 1 - - uid: 2231 + - uid: 531 components: - type: Transform - pos: -28.5,-93.5 + pos: -26.5,15.5 parent: 1 - - uid: 2232 + - uid: 532 components: - type: Transform - pos: 15.5,-43.5 + pos: -26.5,16.5 parent: 1 - - uid: 2233 + - uid: 533 components: - type: Transform - pos: 15.5,-40.5 + pos: -9.5,-44.5 parent: 1 - - uid: 2234 + - uid: 534 components: - type: Transform - pos: 15.5,-39.5 + pos: -40.5,-8.5 parent: 1 - - uid: 2235 + - uid: 537 components: - type: Transform - pos: 15.5,-37.5 + pos: -12.5,-56.5 parent: 1 - - uid: 2236 + - uid: 538 components: - type: Transform - pos: 15.5,-46.5 + pos: -33.5,-125.5 parent: 1 - - uid: 2237 + - uid: 539 components: - type: Transform - pos: 15.5,-36.5 + pos: -30.5,-123.5 parent: 1 - - uid: 2238 + - uid: 540 components: - type: Transform - pos: 14.5,-44.5 + pos: -33.5,-106.5 parent: 1 - - uid: 2239 + - uid: 551 components: - type: Transform - pos: 14.5,-39.5 + pos: -26.5,32.5 parent: 1 - - uid: 2240 + - uid: 552 components: - type: Transform - pos: 13.5,-48.5 + pos: -27.5,-54.5 parent: 1 - - uid: 2241 + - uid: 553 components: - type: Transform - pos: 13.5,-47.5 + pos: -27.5,-50.5 parent: 1 - - uid: 2242 + - uid: 554 components: - type: Transform - pos: 13.5,-46.5 + pos: -27.5,-48.5 parent: 1 - - uid: 2243 + - uid: 555 components: - type: Transform - pos: 13.5,-45.5 + pos: -27.5,-35.5 parent: 1 - - uid: 2244 + - uid: 556 components: - type: Transform - pos: 12.5,-48.5 + pos: -27.5,-29.5 parent: 1 - - uid: 2245 + - uid: 559 components: - type: Transform - pos: 12.5,-47.5 + pos: -12.5,-65.5 parent: 1 - - uid: 2246 + - uid: 560 components: - type: Transform - pos: 12.5,-46.5 + pos: -11.5,-50.5 parent: 1 - - uid: 2247 + - uid: 563 components: - type: Transform - pos: 12.5,-45.5 + pos: -21.5,-71.5 parent: 1 - - uid: 2248 + - uid: 564 components: - type: Transform - pos: 11.5,-48.5 + pos: -21.5,-70.5 parent: 1 - - uid: 2249 + - uid: 565 components: - type: Transform - pos: 11.5,-47.5 + pos: -21.5,-69.5 parent: 1 - - uid: 2250 + - uid: 566 components: - type: Transform - pos: 11.5,-46.5 + pos: -21.5,-68.5 parent: 1 - - uid: 2251 + - uid: 567 components: - type: Transform - pos: 11.5,-45.5 + pos: -21.5,-67.5 parent: 1 - - uid: 2252 + - uid: 568 components: - type: Transform - pos: 10.5,-48.5 + pos: -21.5,-66.5 parent: 1 - - uid: 2253 + - uid: 684 components: - type: Transform - pos: 10.5,-47.5 + pos: -21.5,-65.5 parent: 1 - - uid: 2254 + - uid: 685 components: - type: Transform - pos: 10.5,-46.5 + pos: -21.5,-64.5 parent: 1 - - uid: 2255 + - uid: 686 components: - type: Transform - pos: 24.5,-7.5 + pos: -21.5,-63.5 parent: 1 - - uid: 2256 + - uid: 687 components: - type: Transform - pos: -28.5,-92.5 + pos: -21.5,-62.5 parent: 1 - - uid: 2257 + - uid: 694 components: - type: Transform - pos: 10.5,-45.5 + pos: -28.5,-21.5 parent: 1 - - uid: 2259 + - uid: 698 components: - type: Transform - pos: 9.5,-48.5 + pos: -27.5,-49.5 parent: 1 - - uid: 2260 + - uid: 699 components: - type: Transform - pos: 9.5,-47.5 + pos: -27.5,-46.5 parent: 1 - - uid: 2261 + - uid: 700 components: - type: Transform - pos: 9.5,-46.5 + pos: -27.5,-36.5 parent: 1 - - uid: 2262 + - uid: 701 components: - type: Transform - pos: 9.5,-45.5 + pos: -27.5,-38.5 parent: 1 - - uid: 2263 + - uid: 702 components: - type: Transform - pos: 13.5,-44.5 + pos: -28.5,38.5 parent: 1 - - uid: 2264 + - uid: 705 components: - type: Transform - pos: 13.5,-43.5 + pos: -22.5,-62.5 parent: 1 - - uid: 2265 + - uid: 707 components: - type: Transform - pos: 13.5,-42.5 + pos: -9.5,-42.5 parent: 1 - - uid: 2266 + - uid: 708 components: - type: Transform - pos: 13.5,-41.5 + pos: -11.5,-58.5 parent: 1 - - uid: 2267 + - uid: 709 components: - type: Transform - pos: 13.5,-40.5 + pos: -9.5,-38.5 parent: 1 - - uid: 2268 + - uid: 710 components: - type: Transform - pos: 13.5,-39.5 + pos: -22.5,-70.5 parent: 1 - - uid: 2269 + - uid: 711 components: - type: Transform - pos: 13.5,-38.5 + pos: -22.5,-68.5 parent: 1 - - uid: 2270 + - uid: 712 components: - type: Transform - pos: 13.5,-37.5 + pos: -22.5,-66.5 parent: 1 - - uid: 2271 + - uid: 713 components: - type: Transform - pos: 13.5,-36.5 + pos: -22.5,-64.5 parent: 1 - - uid: 2272 + - uid: 716 components: - type: Transform - pos: 8.5,-48.5 + pos: -10.5,-37.5 parent: 1 - - uid: 2273 + - uid: 717 components: - type: Transform - pos: 8.5,-47.5 + pos: -12.5,-55.5 parent: 1 - - uid: 2274 + - uid: 718 components: - type: Transform - pos: 8.5,-46.5 + pos: -28.5,-19.5 parent: 1 - - uid: 2275 + - uid: 719 components: - type: Transform - pos: 8.5,-45.5 + pos: -9.5,-48.5 parent: 1 - - uid: 2276 + - uid: 722 components: - type: Transform - pos: 12.5,-44.5 + rot: 1.5707963267948966 rad + pos: -32.5,-82.5 parent: 1 - - uid: 2277 + - uid: 723 components: - type: Transform - pos: 12.5,-43.5 + pos: -11.5,-52.5 parent: 1 - - uid: 2278 + - uid: 724 components: - type: Transform - pos: 12.5,-42.5 + rot: 1.5707963267948966 rad + pos: -31.5,-81.5 parent: 1 - - uid: 2279 + - uid: 725 components: - type: Transform - pos: 12.5,-41.5 + rot: 1.5707963267948966 rad + pos: -26.5,-82.5 parent: 1 - - uid: 2280 + - uid: 726 components: - type: Transform - pos: 12.5,-40.5 + rot: 1.5707963267948966 rad + pos: -26.5,-83.5 parent: 1 - - uid: 2281 + - uid: 727 components: - type: Transform - pos: 12.5,-39.5 + pos: -28.5,32.5 parent: 1 - - uid: 2282 + - uid: 729 components: - type: Transform - pos: 12.5,-38.5 + pos: -10.5,-48.5 parent: 1 - - uid: 2283 + - uid: 730 components: - type: Transform - pos: 12.5,-37.5 + pos: -23.5,-71.5 parent: 1 - - uid: 2284 + - uid: 731 components: - type: Transform - pos: 12.5,-36.5 + pos: -23.5,-69.5 parent: 1 - - uid: 2285 + - uid: 732 components: - type: Transform - pos: 11.5,-44.5 + pos: -23.5,-67.5 parent: 1 - - uid: 2286 + - uid: 733 components: - type: Transform - pos: 11.5,-43.5 + pos: -23.5,-65.5 parent: 1 - - uid: 2287 + - uid: 734 components: - type: Transform - pos: 11.5,-42.5 + pos: -23.5,-63.5 parent: 1 - - uid: 2288 + - uid: 737 components: - type: Transform - pos: 11.5,-41.5 + pos: -10.5,-45.5 parent: 1 - - uid: 2289 + - uid: 738 components: - type: Transform - pos: 11.5,-40.5 + pos: -10.5,-43.5 parent: 1 - - uid: 2290 + - uid: 740 components: - type: Transform - pos: 11.5,-39.5 + rot: 1.5707963267948966 rad + pos: -29.5,-80.5 parent: 1 - - uid: 2291 + - uid: 747 components: - type: Transform - pos: 11.5,-38.5 + pos: -28.5,31.5 parent: 1 - - uid: 2292 + - uid: 748 components: - type: Transform - pos: 11.5,-37.5 + pos: -28.5,36.5 parent: 1 - - uid: 2293 + - uid: 750 components: - type: Transform - pos: 11.5,-36.5 + pos: -11.5,-48.5 parent: 1 - - uid: 2294 + - uid: 752 components: - type: Transform - pos: 20.5,-34.5 + rot: 1.5707963267948966 rad + pos: -30.5,-81.5 parent: 1 - - uid: 2295 + - uid: 753 components: - type: Transform - pos: 20.5,-32.5 + rot: 1.5707963267948966 rad + pos: -33.5,-83.5 parent: 1 - - uid: 2296 + - uid: 761 components: - type: Transform - pos: 20.5,-31.5 + pos: -24.5,-71.5 parent: 1 - - uid: 2297 + - uid: 762 components: - type: Transform - pos: 10.5,-44.5 + pos: -24.5,-70.5 parent: 1 - - uid: 2298 + - uid: 763 components: - type: Transform - pos: 10.5,-43.5 + pos: -24.5,-69.5 parent: 1 - - uid: 2299 + - uid: 764 components: - type: Transform - pos: 10.5,-42.5 + pos: -24.5,-68.5 parent: 1 - - uid: 2300 + - uid: 765 components: - type: Transform - pos: 10.5,-41.5 + pos: -24.5,-67.5 parent: 1 - - uid: 2301 + - uid: 766 components: - type: Transform - pos: 10.5,-40.5 + pos: -24.5,-66.5 parent: 1 - - uid: 2302 + - uid: 767 components: - type: Transform - pos: 10.5,-39.5 + pos: -24.5,-65.5 parent: 1 - - uid: 2303 + - uid: 768 components: - type: Transform - pos: 10.5,-38.5 + pos: -24.5,-62.5 parent: 1 - - uid: 2304 + - uid: 769 components: - type: Transform - pos: 10.5,-37.5 + pos: -31.5,-124.5 parent: 1 - - uid: 2305 + - uid: 770 components: - type: Transform - pos: 10.5,-36.5 + pos: -26.5,-70.5 parent: 1 - - uid: 2306 + - uid: 771 components: - type: Transform - pos: 20.5,-29.5 + pos: -12.5,-67.5 parent: 1 - - uid: 2307 + - uid: 772 components: - type: Transform - pos: 20.5,-21.5 + rot: 1.5707963267948966 rad + pos: -31.5,-83.5 parent: 1 - - uid: 2308 + - uid: 773 components: - type: Transform - pos: 20.5,-26.5 + pos: -10.5,-47.5 parent: 1 - - uid: 2309 + - uid: 774 components: - type: Transform - pos: 19.5,-34.5 + rot: 1.5707963267948966 rad + pos: -26.5,-81.5 parent: 1 - - uid: 2310 + - uid: 775 components: - type: Transform - pos: 9.5,-44.5 + pos: -40.5,-7.5 parent: 1 - - uid: 2311 + - uid: 777 components: - type: Transform - pos: 9.5,-43.5 + pos: 24.5,-31.5 parent: 1 - - uid: 2312 + - uid: 778 components: - type: Transform - pos: 9.5,-42.5 + pos: 24.5,-32.5 parent: 1 - - uid: 2313 + - uid: 780 components: - type: Transform - pos: 9.5,-41.5 + pos: -26.5,-63.5 parent: 1 - - uid: 2314 + - uid: 781 components: - type: Transform - pos: 9.5,-40.5 + rot: 1.5707963267948966 rad + pos: -27.5,-83.5 parent: 1 - - uid: 2315 + - uid: 783 components: - type: Transform - pos: 9.5,-39.5 + rot: 1.5707963267948966 rad + pos: -32.5,-81.5 parent: 1 - - uid: 2316 + - uid: 784 components: - type: Transform - pos: 9.5,-38.5 + pos: -28.5,28.5 parent: 1 - - uid: 2317 + - uid: 785 components: - type: Transform - pos: 9.5,-37.5 + pos: -27.5,-66.5 parent: 1 - - uid: 2318 + - uid: 786 components: - type: Transform - pos: 9.5,-36.5 + rot: 1.5707963267948966 rad + pos: -31.5,-82.5 parent: 1 - - uid: 2319 + - uid: 789 components: - type: Transform - pos: 19.5,-32.5 + pos: -27.5,-63.5 parent: 1 - - uid: 2320 + - uid: 792 components: - type: Transform - pos: 19.5,-31.5 + rot: 1.5707963267948966 rad + pos: -26.5,-80.5 parent: 1 - - uid: 2321 + - uid: 793 components: - type: Transform - pos: 19.5,-29.5 + pos: -28.5,-73.5 parent: 1 - - uid: 2322 + - uid: 796 components: - type: Transform - pos: 19.5,-26.5 + pos: -28.5,-68.5 parent: 1 - - uid: 2323 + - uid: 797 components: - type: Transform - pos: 8.5,-44.5 + pos: -28.5,-69.5 parent: 1 - - uid: 2324 + - uid: 798 components: - type: Transform - pos: 8.5,-43.5 + pos: -28.5,-67.5 parent: 1 - - uid: 2325 + - uid: 804 components: - type: Transform - pos: 8.5,-42.5 + pos: -11.5,-56.5 parent: 1 - - uid: 2326 + - uid: 805 components: - type: Transform - pos: 8.5,-41.5 + pos: -11.5,-60.5 parent: 1 - - uid: 2327 + - uid: 808 components: - type: Transform - pos: 8.5,-40.5 + pos: -12.5,-70.5 parent: 1 - - uid: 2328 + - uid: 819 components: - type: Transform - pos: 8.5,-39.5 + pos: -9.5,-37.5 parent: 1 - - uid: 2329 + - uid: 822 components: - type: Transform - pos: 8.5,-38.5 + pos: -3.5,-29.5 parent: 1 - - uid: 2330 + - uid: 824 components: - type: Transform - pos: 8.5,-37.5 + pos: -3.5,-28.5 parent: 1 - - uid: 2331 + - uid: 825 components: - type: Transform - pos: 8.5,-36.5 + pos: -10.5,-38.5 parent: 1 - - uid: 2332 + - uid: 827 components: - type: Transform - pos: 7.5,-48.5 + pos: -4.5,-29.5 parent: 1 - - uid: 2333 + - uid: 828 components: - type: Transform - pos: 7.5,-47.5 + pos: -7.5,-33.5 parent: 1 - - uid: 2334 + - uid: 829 components: - type: Transform - pos: 7.5,-46.5 + pos: -5.5,-32.5 parent: 1 - - uid: 2335 + - uid: 830 components: - type: Transform - pos: 7.5,-45.5 + pos: -5.5,-33.5 parent: 1 - - uid: 2336 + - uid: 831 components: - type: Transform - pos: 7.5,-44.5 + pos: -6.5,-31.5 parent: 1 - - uid: 2337 + - uid: 832 components: - type: Transform - pos: 7.5,-43.5 + pos: -8.5,-34.5 parent: 1 - - uid: 2338 + - uid: 833 components: - type: Transform - pos: 7.5,-42.5 + pos: -11.5,-62.5 parent: 1 - - uid: 2339 + - uid: 834 components: - type: Transform - pos: 7.5,-41.5 + pos: -11.5,-65.5 parent: 1 - - uid: 2340 + - uid: 835 components: - type: Transform - pos: 7.5,-40.5 + pos: -11.5,-64.5 parent: 1 - - uid: 2341 + - uid: 838 components: - type: Transform - pos: 7.5,-39.5 + pos: -11.5,-61.5 parent: 1 - - uid: 2342 + - uid: 839 components: - type: Transform - pos: 7.5,-38.5 + pos: -11.5,-54.5 parent: 1 - - uid: 2343 + - uid: 840 components: - type: Transform - pos: 7.5,-37.5 + pos: -11.5,-51.5 parent: 1 - - uid: 2344 + - uid: 841 components: - type: Transform - pos: 7.5,-36.5 + pos: -12.5,-58.5 parent: 1 - - uid: 2345 + - uid: 842 components: - type: Transform - pos: 6.5,-47.5 + pos: -12.5,-63.5 parent: 1 - - uid: 2346 + - uid: 843 components: - type: Transform - pos: 6.5,-46.5 + pos: -12.5,-54.5 parent: 1 - - uid: 2347 + - uid: 844 components: - type: Transform - pos: 6.5,-45.5 + pos: -12.5,-57.5 parent: 1 - - uid: 2348 + - uid: 845 components: - type: Transform - pos: 6.5,-44.5 + rot: 1.5707963267948966 rad + pos: -27.5,-80.5 parent: 1 - - uid: 2349 + - uid: 847 components: - type: Transform - pos: 6.5,-43.5 + pos: -8.5,-42.5 parent: 1 - - uid: 2350 + - uid: 861 components: - type: Transform - pos: 6.5,-42.5 + pos: -8.5,-41.5 parent: 1 - - uid: 2351 + - uid: 862 components: - type: Transform - pos: 6.5,-41.5 + pos: -9.5,-39.5 parent: 1 - - uid: 2352 + - uid: 863 components: - type: Transform - pos: 6.5,-40.5 + pos: -10.5,-40.5 parent: 1 - - uid: 2353 + - uid: 864 components: - type: Transform - pos: 6.5,-39.5 + pos: -11.5,-44.5 parent: 1 - - uid: 2354 + - uid: 866 components: - type: Transform - pos: 6.5,-38.5 + pos: -11.5,-45.5 parent: 1 - - uid: 2355 + - uid: 867 components: - type: Transform - pos: 6.5,-37.5 + pos: -11.5,-40.5 parent: 1 - - uid: 2356 + - uid: 868 components: - type: Transform - pos: 6.5,-36.5 + pos: -10.5,-39.5 parent: 1 - - uid: 2357 + - uid: 869 components: - type: Transform - pos: 22.5,-35.5 + pos: -11.5,-47.5 parent: 1 - - uid: 2358 + - uid: 870 components: - type: Transform - pos: 21.5,-35.5 + pos: -11.5,-46.5 parent: 1 - - uid: 2359 + - uid: 871 components: - type: Transform - pos: -6.5,-104.5 + pos: -9.5,-36.5 parent: 1 - - uid: 2360 + - uid: 872 components: - type: Transform - pos: -7.5,-104.5 + pos: -7.5,-35.5 parent: 1 - - uid: 2361 + - uid: 873 components: - type: Transform - pos: -10.5,-99.5 + pos: -12.5,-48.5 parent: 1 - - uid: 2362 + - uid: 874 components: - type: Transform - pos: 13.5,-35.5 + pos: -31.5,-125.5 parent: 1 - - uid: 2363 + - uid: 875 components: - type: Transform - pos: 12.5,-35.5 + pos: -40.5,-10.5 parent: 1 - - uid: 2364 + - uid: 876 components: - type: Transform - pos: 11.5,-35.5 + pos: -40.5,-9.5 parent: 1 - - uid: 2365 + - uid: 877 components: - type: Transform - pos: 10.5,-35.5 + pos: -29.5,-122.5 parent: 1 - - uid: 2366 + - uid: 878 components: - type: Transform - pos: 9.5,-35.5 + pos: -30.5,-124.5 parent: 1 - - uid: 2367 + - uid: 881 components: - type: Transform - pos: 8.5,-35.5 + pos: -30.5,-122.5 parent: 1 - - uid: 2368 + - uid: 882 components: - type: Transform - pos: 7.5,-35.5 + pos: -29.5,-123.5 parent: 1 - - uid: 2369 + - uid: 883 components: - type: Transform - pos: 6.5,-35.5 + pos: -33.5,-104.5 parent: 1 - - uid: 2370 + - uid: 885 components: - type: Transform - pos: 5.5,-35.5 + pos: -40.5,-6.5 parent: 1 - - uid: 2371 + - uid: 886 components: - type: Transform - pos: 4.5,-35.5 + pos: -32.5,-126.5 parent: 1 - - uid: 2372 + - uid: 887 components: - type: Transform - pos: 3.5,-35.5 + pos: -32.5,-124.5 parent: 1 - - uid: 2373 + - uid: 888 components: - type: Transform - pos: -6.5,-37.5 + pos: -33.5,-124.5 parent: 1 - - uid: 2374 + - uid: 889 components: - type: Transform - pos: -6.5,-36.5 + pos: -33.5,-103.5 parent: 1 - - uid: 2375 + - uid: 890 components: - type: Transform - pos: -5.5,-36.5 + pos: -32.5,-125.5 parent: 1 - - uid: 2376 + - uid: 891 components: - type: Transform - pos: -4.5,-35.5 + rot: 1.5707963267948966 rad + pos: -30.5,-121.5 parent: 1 - - uid: 2377 + - uid: 892 components: - type: Transform - pos: -5.5,-35.5 + pos: 44.5,-76.5 parent: 1 - - uid: 2378 + - uid: 894 components: - type: Transform - pos: -6.5,-35.5 + pos: -40.5,-2.5 parent: 1 - - uid: 2379 + - uid: 896 components: - type: Transform - pos: -7.5,-47.5 + pos: 23.5,-14.5 parent: 1 - - uid: 2380 + - uid: 906 components: - type: Transform - pos: -7.5,-46.5 + pos: 23.5,-4.5 parent: 1 - - uid: 2381 + - uid: 908 components: - type: Transform - pos: -7.5,-45.5 + pos: -40.5,-12.5 parent: 1 - - uid: 2382 + - uid: 909 components: - type: Transform - pos: -7.5,-44.5 + pos: -10.5,-41.5 parent: 1 - - uid: 2383 + - uid: 910 components: - type: Transform - pos: -7.5,-43.5 + pos: -8.5,-36.5 parent: 1 - - uid: 2384 + - uid: 912 components: - type: Transform - pos: -7.5,-42.5 + pos: -9.5,-40.5 parent: 1 - - uid: 2385 + - uid: 913 components: - type: Transform - pos: -7.5,-41.5 + pos: -28.5,-123.5 parent: 1 - - uid: 2386 + - uid: 920 components: - type: Transform - pos: -7.5,-40.5 + pos: -40.5,-27.5 parent: 1 - - uid: 2387 + - uid: 921 components: - type: Transform - pos: -7.5,-39.5 + pos: -40.5,-29.5 parent: 1 - - uid: 2388 + - uid: 929 components: - type: Transform - pos: -7.5,-38.5 + pos: -14.5,-58.5 parent: 1 - - uid: 2389 + - uid: 934 components: - type: Transform - pos: -7.5,-37.5 + pos: -28.5,19.5 parent: 1 - - uid: 2390 + - uid: 935 components: - type: Transform - pos: -7.5,-36.5 + pos: -40.5,-28.5 parent: 1 - - uid: 2409 + - uid: 948 components: - type: Transform - pos: -8.5,-48.5 + pos: -28.5,21.5 parent: 1 - - uid: 2410 + - uid: 949 components: - type: Transform - pos: -8.5,-47.5 + pos: -28.5,18.5 parent: 1 - - uid: 2411 + - uid: 952 components: - type: Transform - pos: -8.5,-46.5 + pos: -40.5,-31.5 parent: 1 - - uid: 2412 + - uid: 953 components: - type: Transform - pos: -8.5,-45.5 + pos: -40.5,-34.5 parent: 1 - - uid: 2413 + - uid: 954 components: - type: Transform - pos: -8.5,-44.5 + pos: -40.5,-33.5 parent: 1 - - uid: 2435 + - uid: 955 components: - type: Transform - pos: -8.5,-40.5 + pos: -40.5,-32.5 parent: 1 - - uid: 2441 + - uid: 956 components: - type: Transform - pos: -9.5,-39.5 + pos: -28.5,15.5 parent: 1 - - uid: 2446 + - uid: 957 components: - type: Transform - pos: -8.5,-39.5 + pos: -28.5,14.5 parent: 1 - - uid: 2448 + - uid: 959 components: - type: Transform - pos: -8.5,-38.5 + pos: -28.5,16.5 parent: 1 - - uid: 2449 + - uid: 961 components: - type: Transform - pos: -8.5,-37.5 + pos: -28.5,20.5 parent: 1 - - uid: 2457 + - uid: 964 components: - type: Transform - pos: -9.5,-47.5 + pos: -40.5,-35.5 parent: 1 - - uid: 2458 + - uid: 965 components: - type: Transform - pos: -9.5,-46.5 + pos: -40.5,-30.5 parent: 1 - - uid: 2459 + - uid: 968 components: - type: Transform - pos: -9.5,-45.5 + pos: -40.5,-37.5 parent: 1 - - uid: 2460 + - uid: 971 components: - type: Transform - pos: 24.5,-18.5 + pos: -28.5,13.5 parent: 1 - - uid: 2461 + - uid: 976 components: - type: Transform - pos: 24.5,-17.5 + pos: -28.5,17.5 parent: 1 - - uid: 2462 + - uid: 978 components: - type: Transform - pos: 24.5,-16.5 + pos: -40.5,-39.5 parent: 1 - - uid: 2467 + - uid: 979 components: - type: Transform - pos: 24.5,-19.5 + pos: -40.5,-38.5 parent: 1 - - uid: 2471 + - uid: 992 components: - type: Transform - pos: 24.5,-20.5 + pos: -40.5,-36.5 parent: 1 - - uid: 2473 + - uid: 993 components: - type: Transform - pos: 24.5,-13.5 + pos: -40.5,-42.5 parent: 1 - - uid: 2476 + - uid: 1000 components: - type: Transform - pos: 24.5,-14.5 + rot: 1.5707963267948966 rad + pos: -33.5,-82.5 parent: 1 - - uid: 2477 + - uid: 1005 components: - type: Transform - pos: -10.5,-42.5 + pos: -40.5,-41.5 parent: 1 - - uid: 2479 + - uid: 1006 components: - type: Transform - pos: 24.5,-27.5 + pos: -40.5,-40.5 parent: 1 - - uid: 2481 + - uid: 1007 components: - type: Transform - pos: 24.5,-26.5 + pos: -40.5,-43.5 parent: 1 - - uid: 2482 + - uid: 1010 components: - type: Transform - pos: 24.5,-25.5 + pos: -8.5,-43.5 parent: 1 - - uid: 2483 + - uid: 1011 components: - type: Transform - pos: 24.5,-12.5 + pos: -14.5,-65.5 parent: 1 - - uid: 2484 + - uid: 1012 components: - type: Transform - pos: 24.5,-11.5 + pos: -21.5,-72.5 parent: 1 - - uid: 2485 + - uid: 1019 components: - type: Transform - pos: 24.5,-30.5 + pos: -14.5,-57.5 parent: 1 - - uid: 2486 + - uid: 1020 components: - type: Transform - pos: -10.5,-35.5 + pos: -40.5,-45.5 parent: 1 - - uid: 2488 + - uid: 1021 components: - type: Transform - pos: 24.5,-29.5 + pos: -40.5,-44.5 parent: 1 - - uid: 2489 + - uid: 1022 components: - type: Transform - pos: 24.5,-28.5 + pos: -22.5,-72.5 parent: 1 - - uid: 2490 + - uid: 1029 components: - type: Transform - pos: 24.5,-21.5 + pos: -25.5,-78.5 parent: 1 - - uid: 2491 + - uid: 1030 components: - type: Transform - pos: 24.5,-22.5 + pos: -14.5,-66.5 parent: 1 - - uid: 2492 + - uid: 1043 components: - type: Transform - pos: -11.5,-44.5 + pos: -40.5,-46.5 parent: 1 - - uid: 2493 + - uid: 1044 components: - type: Transform - pos: -11.5,-43.5 + pos: -40.5,-47.5 parent: 1 - - uid: 2494 + - uid: 1045 components: - type: Transform - pos: -11.5,-42.5 + pos: -14.5,-67.5 parent: 1 - - uid: 2496 + - uid: 1046 components: - type: Transform - pos: -11.5,-41.5 + pos: -24.5,-72.5 parent: 1 - - uid: 2505 + - uid: 1047 components: - type: Transform - pos: -11.5,-36.5 + pos: -28.5,-78.5 parent: 1 - - uid: 2506 + - uid: 1048 components: - type: Transform - pos: -11.5,-35.5 + pos: -40.5,-48.5 parent: 1 - - uid: 2507 + - uid: 1049 components: - type: Transform - pos: -12.5,-46.5 + pos: -40.5,-51.5 parent: 1 - - uid: 2508 + - uid: 1050 components: - type: Transform - pos: -12.5,-45.5 + pos: -40.5,-50.5 parent: 1 - - uid: 2509 + - uid: 1051 components: - type: Transform - pos: -12.5,-44.5 + pos: -29.5,-79.5 parent: 1 - - uid: 2510 + - uid: 1054 components: - type: Transform - pos: -12.5,-43.5 + pos: -27.5,-73.5 parent: 1 - - uid: 2512 + - uid: 1061 components: - type: Transform - pos: -12.5,-42.5 + pos: -40.5,-53.5 parent: 1 - - uid: 2513 + - uid: 1062 components: - type: Transform - pos: -12.5,-41.5 + pos: -40.5,-52.5 parent: 1 - - uid: 2514 + - uid: 1063 components: - type: Transform - pos: -12.5,-40.5 + pos: -40.5,-49.5 parent: 1 - - uid: 2515 + - uid: 1069 components: - type: Transform - pos: -12.5,-39.5 + pos: -24.5,-79.5 parent: 1 - - uid: 2516 + - uid: 1070 components: - type: Transform - pos: -12.5,-38.5 + pos: -22.5,-78.5 parent: 1 - - uid: 2517 + - uid: 1073 components: - type: Transform - pos: -12.5,-37.5 + pos: -23.5,-79.5 parent: 1 - - uid: 2518 + - uid: 1074 components: - type: Transform - pos: -12.5,-36.5 + pos: -24.5,-78.5 parent: 1 - - uid: 2520 + - uid: 1075 components: - type: Transform - pos: -12.5,-35.5 + pos: -34.5,-83.5 parent: 1 - - uid: 2523 + - uid: 1076 components: - type: Transform - pos: -10.5,-104.5 + pos: -40.5,-54.5 parent: 1 - - uid: 2525 + - uid: 1077 components: - type: Transform - pos: -13.5,-46.5 + pos: -40.5,-55.5 parent: 1 - - uid: 2526 + - uid: 1078 components: - type: Transform - pos: -13.5,-45.5 + pos: -22.5,-79.5 parent: 1 - - uid: 2528 + - uid: 1082 components: - type: Transform - pos: -13.5,-44.5 + pos: -23.5,-78.5 parent: 1 - - uid: 2529 + - uid: 1083 components: - type: Transform - pos: -13.5,-43.5 + pos: -26.5,-79.5 parent: 1 - - uid: 2530 + - uid: 1087 components: - type: Transform - pos: -13.5,-42.5 + rot: 1.5707963267948966 rad + pos: -33.5,-81.5 parent: 1 - - uid: 2531 + - uid: 1088 components: - type: Transform - pos: -13.5,-41.5 + pos: -28.5,-62.5 parent: 1 - - uid: 2532 + - uid: 1089 components: - type: Transform - pos: -13.5,-40.5 + pos: -28.5,-64.5 parent: 1 - - uid: 2533 + - uid: 1090 components: - type: Transform - pos: -13.5,-39.5 + pos: -28.5,-65.5 parent: 1 - - uid: 2534 + - uid: 1091 components: - type: Transform - pos: -13.5,-38.5 + pos: -28.5,-63.5 parent: 1 - - uid: 2535 + - uid: 1093 components: - type: Transform - pos: -13.5,-37.5 + pos: -26.5,31.5 parent: 1 - - uid: 2538 + - uid: 1094 components: - type: Transform - pos: -13.5,-36.5 + pos: -26.5,29.5 parent: 1 - - uid: 2539 + - uid: 1095 components: - type: Transform - pos: -13.5,-35.5 + pos: -26.5,35.5 parent: 1 - - uid: 2540 + - uid: 1096 components: - type: Transform - pos: -9.5,-104.5 + pos: -26.5,34.5 parent: 1 - - uid: 2543 + - uid: 1097 components: - type: Transform - pos: -10.5,-103.5 + pos: -27.5,-60.5 parent: 1 - - uid: 2547 + - uid: 1098 components: - type: Transform - pos: -14.5,-46.5 + pos: -27.5,-59.5 parent: 1 - - uid: 2549 + - uid: 1099 components: - type: Transform - pos: -14.5,-45.5 + pos: -27.5,-57.5 parent: 1 - - uid: 2550 + - uid: 1100 components: - type: Transform - pos: -14.5,-44.5 + pos: -27.5,-56.5 parent: 1 - - uid: 2552 + - uid: 1101 components: - type: Transform - pos: -14.5,-43.5 + pos: -27.5,-53.5 parent: 1 - - uid: 2553 + - uid: 1102 components: - type: Transform - pos: -14.5,-42.5 + pos: -27.5,-52.5 parent: 1 - - uid: 2554 + - uid: 1103 components: - type: Transform - pos: -14.5,-41.5 + pos: -27.5,-44.5 parent: 1 - - uid: 2555 + - uid: 1104 components: - type: Transform - pos: -14.5,-40.5 + pos: -26.5,38.5 parent: 1 - - uid: 2556 + - uid: 1105 components: - type: Transform - pos: -14.5,-39.5 + pos: -27.5,-43.5 parent: 1 - - uid: 2557 + - uid: 1106 components: - type: Transform - pos: -14.5,-38.5 + pos: -26.5,27.5 parent: 1 - - uid: 2558 + - uid: 1107 components: - type: Transform - pos: -14.5,-37.5 + pos: -26.5,28.5 parent: 1 - - uid: 2559 + - uid: 1108 components: - type: Transform - pos: -14.5,-36.5 + pos: -26.5,30.5 parent: 1 - - uid: 2560 + - uid: 1110 components: - type: Transform - pos: -14.5,-35.5 + pos: -26.5,36.5 parent: 1 - - uid: 2561 + - uid: 1111 components: - type: Transform - pos: -15.5,-46.5 + pos: -26.5,37.5 parent: 1 - - uid: 2562 + - uid: 1113 components: - type: Transform - pos: -15.5,-45.5 + pos: -27.5,-61.5 parent: 1 - - uid: 2563 + - uid: 1118 components: - type: Transform - pos: -15.5,-44.5 + pos: -26.5,24.5 parent: 1 - - uid: 2564 + - uid: 1119 components: - type: Transform - pos: -10.5,-100.5 + pos: -26.5,23.5 parent: 1 - - uid: 2565 + - uid: 1120 components: - type: Transform - pos: -15.5,-42.5 + pos: -26.5,26.5 parent: 1 - - uid: 2566 + - uid: 1121 components: - type: Transform - pos: -15.5,-41.5 + pos: -26.5,25.5 parent: 1 - - uid: 2567 + - uid: 1146 components: - type: Transform - pos: -10.5,-101.5 + rot: 1.5707963267948966 rad + pos: -33.5,-80.5 parent: 1 - - uid: 2568 + - uid: 1219 components: - type: Transform - pos: -15.5,-39.5 + pos: -26.5,22.5 parent: 1 - - uid: 2569 + - uid: 1220 components: - type: Transform - pos: -5.5,-104.5 + pos: -26.5,21.5 parent: 1 - - uid: 2570 + - uid: 1221 components: - type: Transform - pos: -15.5,-36.5 + pos: -26.5,20.5 parent: 1 - - uid: 2571 + - uid: 1224 components: - type: Transform - pos: -8.5,-104.5 + pos: -28.5,10.5 parent: 1 - - uid: 2572 + - uid: 1225 components: - type: Transform - pos: 5.5,-104.5 + pos: -26.5,19.5 parent: 1 - - uid: 2573 + - uid: 1228 components: - type: Transform - pos: -16.5,-46.5 + pos: -26.5,18.5 parent: 1 - - uid: 2574 + - uid: 1245 components: - type: Transform - pos: -16.5,-45.5 + pos: -28.5,11.5 parent: 1 - - uid: 2575 + - uid: 1246 components: - type: Transform - pos: -16.5,-44.5 + pos: -26.5,17.5 parent: 1 - - uid: 2576 + - uid: 1248 components: - type: Transform - pos: -16.5,-42.5 + pos: -28.5,12.5 parent: 1 - - uid: 2577 + - uid: 1254 components: - type: Transform - pos: -16.5,-41.5 + pos: -27.5,-32.5 parent: 1 - - uid: 2578 + - uid: 1255 components: - type: Transform - pos: -16.5,-39.5 + pos: -27.5,-33.5 parent: 1 - - uid: 2579 + - uid: 1256 components: - type: Transform - pos: -16.5,-36.5 + pos: -27.5,-31.5 parent: 1 - - uid: 2580 + - uid: 1257 components: - type: Transform - pos: -16.5,-35.5 + pos: -27.5,-34.5 parent: 1 - - uid: 2581 + - uid: 1258 components: - type: Transform - pos: -17.5,-46.5 + pos: -27.5,-28.5 parent: 1 - - uid: 2582 + - uid: 1259 components: - type: Transform - pos: -17.5,-45.5 + pos: -27.5,-26.5 parent: 1 - - uid: 2583 + - uid: 1260 components: - type: Transform - pos: -17.5,-44.5 + pos: -27.5,-30.5 parent: 1 - - uid: 2584 + - uid: 1265 components: - type: Transform - pos: -17.5,-42.5 + pos: -40.5,-58.5 parent: 1 - - uid: 2585 + - uid: 1268 components: - type: Transform - pos: -17.5,-41.5 + pos: -40.5,-57.5 parent: 1 - - uid: 2586 + - uid: 1270 components: - type: Transform - pos: -17.5,-39.5 + pos: 13.5,-61.5 parent: 1 - - uid: 2587 + - uid: 1272 components: - type: Transform - pos: -17.5,-36.5 + pos: 14.5,-58.5 parent: 1 - - uid: 2588 + - uid: 1273 components: - type: Transform - pos: -17.5,-35.5 + pos: 13.5,-60.5 parent: 1 - - uid: 2589 + - uid: 1274 components: - type: Transform - pos: -18.5,-44.5 + pos: 14.5,-57.5 parent: 1 - - uid: 2590 + - uid: 1276 components: - type: Transform - pos: -18.5,-42.5 + pos: 18.5,-60.5 parent: 1 - - uid: 2591 + - uid: 1277 components: - type: Transform - pos: -19.5,-46.5 + pos: 19.5,-57.5 parent: 1 - - uid: 2592 + - uid: 1279 components: - type: Transform - pos: -19.5,-44.5 + pos: 13.5,-59.5 parent: 1 - - uid: 2593 + - uid: 1280 components: - type: Transform - pos: -19.5,-39.5 + pos: 17.5,-56.5 parent: 1 - - uid: 2594 + - uid: 1281 components: - type: Transform - pos: -18.5,-40.5 + pos: 13.5,-58.5 parent: 1 - - uid: 2595 + - uid: 1282 components: - type: Transform - pos: -18.5,-39.5 + pos: 20.5,-51.5 parent: 1 - - uid: 2596 + - uid: 1283 components: - type: Transform - pos: -18.5,-36.5 + pos: 20.5,-52.5 parent: 1 - - uid: 2597 + - uid: 1284 components: - type: Transform - pos: -19.5,-36.5 + pos: 20.5,-53.5 parent: 1 - - uid: 2598 + - uid: 1285 components: - type: Transform - pos: -20.5,-46.5 + pos: 20.5,-54.5 parent: 1 - - uid: 2599 + - uid: 1286 components: - type: Transform - pos: -20.5,-44.5 + pos: 20.5,-56.5 parent: 1 - - uid: 2600 + - uid: 1288 components: - type: Transform - pos: -20.5,-42.5 + pos: 20.5,-57.5 parent: 1 - - uid: 2601 + - uid: 1289 components: - type: Transform - pos: -20.5,-41.5 + pos: 20.5,-58.5 parent: 1 - - uid: 2602 + - uid: 1291 components: - type: Transform - pos: -20.5,-39.5 + pos: 20.5,-59.5 parent: 1 - - uid: 2603 + - uid: 1292 components: - type: Transform - pos: -20.5,-36.5 + pos: 20.5,-61.5 parent: 1 - - uid: 2604 + - uid: 1293 components: - type: Transform - pos: -20.5,-34.5 + pos: 19.5,-54.5 parent: 1 - - uid: 2605 + - uid: 1294 components: - type: Transform - pos: -20.5,-33.5 + pos: -28.5,-61.5 parent: 1 - - uid: 2606 + - uid: 1299 components: - type: Transform - pos: -20.5,-32.5 + pos: -27.5,11.5 parent: 1 - - uid: 2607 + - uid: 1300 components: - type: Transform - pos: -20.5,-31.5 + pos: -27.5,13.5 parent: 1 - - uid: 2608 + - uid: 1301 components: - type: Transform - pos: -20.5,-29.5 + pos: -27.5,14.5 parent: 1 - - uid: 2609 + - uid: 1304 components: - type: Transform - pos: -20.5,-28.5 + pos: -27.5,21.5 parent: 1 - - uid: 2610 + - uid: 1306 components: - type: Transform - pos: -20.5,-26.5 + pos: -27.5,25.5 parent: 1 - - uid: 2611 + - uid: 1307 components: - type: Transform - pos: -20.5,-23.5 + pos: -27.5,26.5 parent: 1 - - uid: 2612 + - uid: 1308 components: - type: Transform - pos: -20.5,-21.5 + pos: -27.5,27.5 parent: 1 - - uid: 2613 + - uid: 1309 components: - type: Transform - pos: -20.5,-20.5 + pos: -27.5,32.5 parent: 1 - - uid: 2614 + - uid: 1310 components: - type: Transform - pos: -10.5,-94.5 + pos: -27.5,33.5 parent: 1 - - uid: 2615 + - uid: 1311 components: - type: Transform - pos: -20.5,-17.5 + pos: -27.5,38.5 parent: 1 - - uid: 2616 + - uid: 1312 components: - type: Transform - pos: -20.5,-16.5 + pos: -28.5,-57.5 parent: 1 - - uid: 2618 + - uid: 1321 components: - type: Transform - pos: 19.5,-24.5 + pos: -27.5,15.5 parent: 1 - - uid: 2619 + - uid: 1322 components: - type: Transform - pos: -20.5,-11.5 + pos: -27.5,20.5 parent: 1 - - uid: 2620 + - uid: 1323 components: - type: Transform - pos: -19.5,-34.5 + pos: -27.5,24.5 parent: 1 - - uid: 2621 + - uid: 1324 components: - type: Transform - pos: -19.5,-33.5 + pos: -27.5,30.5 parent: 1 - - uid: 2622 + - uid: 1325 components: - type: Transform - pos: -19.5,-32.5 + pos: -27.5,31.5 parent: 1 - - uid: 2623 + - uid: 1326 components: - type: Transform - pos: -19.5,-31.5 + pos: -27.5,34.5 parent: 1 - - uid: 2625 + - uid: 1327 components: - type: Transform - pos: -19.5,-29.5 + pos: -28.5,-53.5 parent: 1 - - uid: 2626 + - uid: 1328 components: - type: Transform - pos: -19.5,-28.5 + pos: -28.5,-54.5 parent: 1 - - uid: 2627 + - uid: 1329 components: - type: Transform - pos: -19.5,-26.5 + pos: -28.5,-58.5 parent: 1 - - uid: 2628 + - uid: 1330 components: - type: Transform - pos: -19.5,-23.5 + pos: -28.5,-56.5 parent: 1 - - uid: 2629 + - uid: 1336 components: - type: Transform - pos: -19.5,-21.5 + pos: -27.5,17.5 parent: 1 - - uid: 2630 + - uid: 1337 components: - type: Transform - pos: -19.5,-20.5 + pos: -27.5,16.5 parent: 1 - - uid: 2631 + - uid: 1339 components: - type: Transform - pos: -19.5,-19.5 + pos: -27.5,12.5 parent: 1 - - uid: 2632 + - uid: 1340 components: - type: Transform - pos: -19.5,-17.5 + pos: -27.5,19.5 parent: 1 - - uid: 2633 + - uid: 1341 components: - type: Transform - pos: -19.5,-16.5 + pos: -27.5,23.5 parent: 1 - - uid: 2634 + - uid: 1342 components: - type: Transform - pos: -19.5,-15.5 + pos: -27.5,29.5 parent: 1 - - uid: 2635 + - uid: 1343 components: - type: Transform - pos: 19.5,-23.5 + pos: -27.5,35.5 parent: 1 - - uid: 2637 + - uid: 1344 components: - type: Transform - pos: -18.5,-31.5 + pos: -27.5,36.5 parent: 1 - - uid: 2638 + - uid: 1345 components: - type: Transform - pos: -18.5,-29.5 + pos: -27.5,37.5 parent: 1 - - uid: 2639 + - uid: 1346 components: - type: Transform - pos: -18.5,-28.5 + pos: -28.5,-55.5 parent: 1 - - uid: 2640 + - uid: 1347 components: - type: Transform - pos: -18.5,-26.5 + pos: -27.5,28.5 parent: 1 - - uid: 2641 + - uid: 1351 components: - type: Transform - pos: -10.5,-98.5 + pos: -28.5,-52.5 parent: 1 - - uid: 2642 + - uid: 1352 components: - type: Transform - pos: -18.5,-24.5 + pos: -27.5,18.5 parent: 1 - - uid: 2643 + - uid: 1353 components: - type: Transform - pos: -18.5,-21.5 + pos: -27.5,22.5 parent: 1 - - uid: 2644 + - uid: 1357 components: - type: Transform - pos: -18.5,-20.5 + pos: -28.5,-60.5 parent: 1 - - uid: 2645 + - uid: 1358 components: - type: Transform - pos: -18.5,-19.5 + pos: -28.5,-59.5 parent: 1 - - uid: 2646 + - uid: 1359 components: - type: Transform - pos: -18.5,-17.5 + pos: -40.5,-56.5 parent: 1 - - uid: 2647 + - uid: 1360 components: - type: Transform - pos: -18.5,-16.5 + pos: -40.5,-59.5 parent: 1 - - uid: 2648 + - uid: 1385 components: - type: Transform - pos: -18.5,-15.5 + pos: -28.5,-42.5 parent: 1 - - uid: 2649 + - uid: 1386 components: - type: Transform - pos: 19.5,-22.5 + pos: -28.5,-45.5 parent: 1 - - uid: 2651 + - uid: 1387 components: - type: Transform - pos: -17.5,-34.5 + pos: -28.5,-48.5 parent: 1 - - uid: 2652 + - uid: 1400 components: - type: Transform - pos: -17.5,-33.5 + pos: -28.5,-41.5 parent: 1 - - uid: 2653 + - uid: 1401 components: - type: Transform - pos: -17.5,-31.5 + pos: -28.5,-50.5 parent: 1 - - uid: 2654 + - uid: 1402 components: - type: Transform - pos: -17.5,-29.5 + pos: -28.5,-49.5 parent: 1 - - uid: 2655 + - uid: 1403 components: - type: Transform - pos: -17.5,-28.5 + pos: -28.5,-27.5 parent: 1 - - uid: 2656 + - uid: 1404 components: - type: Transform - pos: -17.5,-26.5 + pos: -28.5,-44.5 parent: 1 - - uid: 2657 + - uid: 1405 components: - type: Transform - pos: -17.5,-24.5 + pos: -28.5,-47.5 parent: 1 - - uid: 2658 + - uid: 1413 components: - type: Transform - pos: -17.5,-21.5 + pos: -28.5,-38.5 parent: 1 - - uid: 2659 + - uid: 1414 components: - type: Transform - pos: -17.5,-20.5 + pos: -28.5,-51.5 parent: 1 - - uid: 2660 + - uid: 1415 components: - type: Transform - pos: -17.5,-19.5 + pos: -28.5,-28.5 parent: 1 - - uid: 2661 + - uid: 1416 components: - type: Transform - pos: -17.5,-17.5 + pos: -28.5,-30.5 parent: 1 - - uid: 2662 + - uid: 1417 components: - type: Transform - pos: -17.5,-16.5 + pos: -28.5,-29.5 parent: 1 - - uid: 2663 + - uid: 1418 components: - type: Transform - pos: -17.5,-15.5 + pos: -28.5,-46.5 parent: 1 - - uid: 2664 + - uid: 1419 components: - type: Transform - pos: 19.5,-21.5 + pos: -15.5,-53.5 parent: 1 - - uid: 2665 + - uid: 1420 components: - type: Transform - pos: -17.5,-11.5 + pos: -15.5,-52.5 parent: 1 - - uid: 2666 + - uid: 1421 components: - type: Transform - pos: -16.5,-34.5 + pos: -15.5,-51.5 parent: 1 - - uid: 2667 + - uid: 1424 components: - type: Transform - pos: -16.5,-33.5 + pos: -27.5,-21.5 parent: 1 - - uid: 2668 + - uid: 1427 components: - type: Transform - pos: -16.5,-31.5 + pos: -28.5,-40.5 parent: 1 - - uid: 2669 + - uid: 1428 components: - type: Transform - pos: -16.5,-29.5 + pos: -28.5,-39.5 parent: 1 - - uid: 2670 + - uid: 1429 components: - type: Transform - pos: -16.5,-28.5 + pos: -28.5,-37.5 parent: 1 - - uid: 2671 + - uid: 1430 components: - type: Transform - pos: -16.5,-26.5 + pos: -28.5,-34.5 parent: 1 - - uid: 2672 + - uid: 1431 components: - type: Transform - pos: -16.5,-24.5 + pos: -28.5,-31.5 parent: 1 - - uid: 2673 + - uid: 1432 components: - type: Transform - pos: -16.5,-23.5 + pos: -28.5,-32.5 parent: 1 - - uid: 2674 + - uid: 1433 components: - type: Transform - pos: -16.5,-21.5 + pos: -28.5,-33.5 parent: 1 - - uid: 2675 + - uid: 1434 components: - type: Transform - pos: -16.5,-20.5 + pos: -28.5,-43.5 parent: 1 - - uid: 2676 + - uid: 1435 components: - type: Transform - pos: -16.5,-19.5 + pos: -16.5,-53.5 parent: 1 - - uid: 2677 + - uid: 1436 components: - type: Transform - pos: -16.5,-17.5 + pos: -16.5,-52.5 parent: 1 - - uid: 2678 + - uid: 1437 components: - type: Transform - pos: -16.5,-16.5 + pos: -16.5,-51.5 parent: 1 - - uid: 2679 + - uid: 1440 components: - type: Transform - pos: -16.5,-15.5 + pos: -27.5,-22.5 parent: 1 - - uid: 2680 + - uid: 1441 components: - type: Transform - pos: 19.5,-20.5 + pos: -27.5,-20.5 parent: 1 - - uid: 2681 + - uid: 1442 components: - type: Transform - pos: -16.5,-11.5 + pos: -28.5,-35.5 parent: 1 - - uid: 2682 + - uid: 1443 components: - type: Transform - pos: -15.5,-31.5 + pos: -28.5,-36.5 parent: 1 - - uid: 2683 + - uid: 1444 components: - type: Transform - pos: -15.5,-26.5 + pos: -28.5,-22.5 parent: 1 - - uid: 2684 + - uid: 1445 components: - type: Transform - pos: -15.5,-24.5 + pos: -28.5,-23.5 parent: 1 - - uid: 2685 + - uid: 1446 components: - type: Transform - pos: -15.5,-23.5 + pos: -28.5,-25.5 parent: 1 - - uid: 2686 + - uid: 1447 components: - type: Transform - pos: -15.5,-21.5 + pos: -28.5,-26.5 parent: 1 - - uid: 2687 + - uid: 1448 components: - type: Transform - pos: -15.5,-20.5 + pos: -17.5,-53.5 parent: 1 - - uid: 2688 + - uid: 1449 components: - type: Transform - pos: -15.5,-19.5 + pos: -17.5,-52.5 parent: 1 - - uid: 2689 + - uid: 1450 components: - type: Transform - pos: -15.5,-17.5 + pos: -17.5,-51.5 parent: 1 - - uid: 2690 + - uid: 1453 components: - type: Transform - pos: -15.5,-15.5 + pos: -27.5,-19.5 parent: 1 - - uid: 2691 + - uid: 1454 components: - type: Transform - pos: -14.5,-29.5 + pos: -27.5,-23.5 parent: 1 - - uid: 2692 + - uid: 1455 components: - type: Transform - pos: -14.5,-28.5 + pos: -27.5,-18.5 parent: 1 - - uid: 2693 + - uid: 1456 components: - type: Transform - pos: -14.5,-27.5 + pos: -28.5,-24.5 parent: 1 - - uid: 2694 + - uid: 1457 components: - type: Transform - pos: -14.5,-26.5 + pos: -18.5,-53.5 parent: 1 - - uid: 2695 + - uid: 1458 components: - type: Transform - pos: -14.5,-25.5 + pos: -18.5,-52.5 parent: 1 - - uid: 2696 + - uid: 1459 components: - type: Transform - pos: -14.5,-24.5 + pos: -18.5,-51.5 parent: 1 - - uid: 2697 + - uid: 1463 components: - type: Transform - pos: -14.5,-23.5 + pos: -27.5,-25.5 parent: 1 - - uid: 2698 + - uid: 1464 components: - type: Transform - pos: -14.5,-22.5 + pos: -40.5,-60.5 parent: 1 - - uid: 2699 + - uid: 1466 components: - type: Transform - pos: -14.5,-21.5 + pos: -27.5,-24.5 parent: 1 - - uid: 2700 + - uid: 1467 components: - type: Transform - pos: -15.5,-11.5 + pos: -19.5,-53.5 parent: 1 - - uid: 2701 + - uid: 1469 components: - type: Transform - pos: -14.5,-34.5 + pos: -19.5,-52.5 parent: 1 - - uid: 2702 + - uid: 1470 components: - type: Transform - pos: -14.5,-33.5 + pos: -19.5,-51.5 parent: 1 - - uid: 2703 + - uid: 1473 components: - type: Transform - pos: -14.5,-32.5 + pos: -27.5,-27.5 parent: 1 - - uid: 2704 + - uid: 1474 components: - type: Transform - pos: -14.5,-31.5 + pos: -20.5,-53.5 parent: 1 - - uid: 2705 + - uid: 1475 components: - type: Transform - pos: -14.5,-30.5 + pos: -20.5,-52.5 parent: 1 - - uid: 2706 + - uid: 1476 components: - type: Transform - pos: -14.5,-20.5 + pos: -20.5,-51.5 parent: 1 - - uid: 2707 + - uid: 1479 components: - type: Transform - pos: -14.5,-19.5 + pos: 21.5,-38.5 parent: 1 - - uid: 2708 + - uid: 1480 components: - type: Transform - pos: -14.5,-18.5 + pos: 17.5,-51.5 parent: 1 - - uid: 2709 + - uid: 1481 components: - type: Transform - pos: -14.5,-17.5 + pos: 17.5,-52.5 parent: 1 - - uid: 2710 + - uid: 1482 components: - type: Transform - pos: -14.5,-16.5 + pos: 17.5,-53.5 parent: 1 - - uid: 2711 + - uid: 1483 components: - type: Transform - pos: -14.5,-15.5 + pos: 17.5,-54.5 parent: 1 - - uid: 2712 + - uid: 1484 components: - type: Transform - pos: -14.5,-14.5 + pos: 18.5,-54.5 parent: 1 - - uid: 2713 + - uid: 1485 components: - type: Transform - pos: -14.5,-13.5 + pos: 16.5,-54.5 parent: 1 - - uid: 2714 + - uid: 1486 components: - type: Transform - pos: -14.5,-12.5 + pos: 15.5,-54.5 parent: 1 - - uid: 2715 + - uid: 1487 components: - type: Transform - pos: -14.5,-11.5 + pos: 14.5,-51.5 parent: 1 - - uid: 2716 + - uid: 1488 components: - type: Transform - pos: -13.5,-34.5 + pos: 14.5,-52.5 parent: 1 - - uid: 2717 + - uid: 1489 components: - type: Transform - pos: -13.5,-33.5 + pos: 14.5,-53.5 parent: 1 - - uid: 2718 + - uid: 1490 components: - type: Transform - pos: -13.5,-32.5 + pos: 14.5,-54.5 parent: 1 - - uid: 2719 + - uid: 1496 components: - type: Transform - pos: -13.5,-31.5 + pos: 20.5,-38.5 parent: 1 - - uid: 2720 + - uid: 1497 components: - type: Transform - pos: -13.5,-30.5 + pos: 20.5,-37.5 parent: 1 - - uid: 2721 + - uid: 1498 components: - type: Transform - pos: -13.5,-29.5 + pos: 20.5,-36.5 parent: 1 - - uid: 2722 + - uid: 1503 components: - type: Transform - pos: -13.5,-28.5 + pos: 19.5,-38.5 parent: 1 - - uid: 2723 + - uid: 1507 components: - type: Transform - pos: -13.5,-27.5 + pos: 18.5,-38.5 parent: 1 - - uid: 2724 + - uid: 1514 components: - type: Transform - pos: -13.5,-26.5 + pos: -40.5,-63.5 parent: 1 - - uid: 2725 + - uid: 1515 components: - type: Transform - pos: -13.5,-25.5 + pos: 17.5,-38.5 parent: 1 - - uid: 2726 + - uid: 1519 components: - type: Transform - pos: -13.5,-24.5 + pos: 16.5,-38.5 parent: 1 - - uid: 2727 + - uid: 1520 components: - type: Transform - pos: -13.5,-23.5 + pos: -40.5,-62.5 parent: 1 - - uid: 2728 + - uid: 1542 components: - type: Transform - pos: -13.5,-22.5 + pos: 15.5,-38.5 parent: 1 - - uid: 2729 + - uid: 1551 components: - type: Transform - pos: -13.5,-21.5 + pos: 14.5,-38.5 parent: 1 - - uid: 2730 + - uid: 1552 components: - type: Transform - pos: -13.5,-20.5 + pos: 14.5,-37.5 parent: 1 - - uid: 2731 + - uid: 1553 components: - type: Transform - pos: -13.5,-19.5 + pos: 14.5,-36.5 parent: 1 - - uid: 2732 + - uid: 1554 components: - type: Transform - pos: -13.5,-18.5 + pos: 20.5,-35.5 parent: 1 - - uid: 2733 + - uid: 1555 components: - type: Transform - pos: -13.5,-17.5 + pos: 19.5,-35.5 parent: 1 - - uid: 2734 + - uid: 1556 components: - type: Transform - pos: -13.5,-16.5 + pos: 18.5,-35.5 parent: 1 - - uid: 2735 + - uid: 1557 components: - type: Transform - pos: -13.5,-15.5 + pos: 17.5,-35.5 parent: 1 - - uid: 2736 + - uid: 1558 components: - type: Transform - pos: -13.5,-14.5 + pos: 16.5,-35.5 parent: 1 - - uid: 2737 + - uid: 1559 components: - type: Transform - pos: -13.5,-13.5 + pos: 15.5,-35.5 parent: 1 - - uid: 2738 + - uid: 1560 components: - type: Transform - pos: -13.5,-12.5 + pos: 14.5,-35.5 parent: 1 - - uid: 2739 + - uid: 1567 components: - type: Transform - pos: -13.5,-11.5 + pos: 22.5,-74.5 parent: 1 - - uid: 2740 + - uid: 1568 components: - type: Transform - pos: -12.5,-34.5 + pos: 22.5,-73.5 parent: 1 - - uid: 2741 + - uid: 1569 components: - type: Transform - pos: -12.5,-33.5 + pos: 22.5,-72.5 parent: 1 - - uid: 2742 + - uid: 1570 components: - type: Transform - pos: -12.5,-32.5 + pos: 22.5,-71.5 parent: 1 - - uid: 2743 + - uid: 1571 components: - type: Transform - pos: -12.5,-31.5 + pos: 22.5,-70.5 parent: 1 - - uid: 2744 + - uid: 1572 components: - type: Transform - pos: -12.5,-30.5 + pos: 22.5,-69.5 parent: 1 - - uid: 2745 + - uid: 1573 components: - type: Transform - pos: -12.5,-29.5 + pos: 22.5,-68.5 parent: 1 - - uid: 2746 + - uid: 1574 components: - type: Transform - pos: -12.5,-28.5 + pos: 22.5,-67.5 parent: 1 - - uid: 2747 + - uid: 1576 components: - type: Transform - pos: -12.5,-27.5 + pos: 21.5,-74.5 parent: 1 - - uid: 2748 + - uid: 1577 components: - type: Transform - pos: -12.5,-26.5 + pos: 21.5,-73.5 parent: 1 - - uid: 2749 + - uid: 1578 components: - type: Transform - pos: -12.5,-25.5 + pos: 21.5,-72.5 parent: 1 - - uid: 2750 + - uid: 1579 components: - type: Transform - pos: -12.5,-24.5 + pos: 21.5,-71.5 parent: 1 - - uid: 2751 + - uid: 1580 components: - type: Transform - pos: -12.5,-23.5 + pos: 21.5,-70.5 parent: 1 - - uid: 2752 + - uid: 1581 components: - type: Transform - pos: -12.5,-22.5 + pos: 21.5,-69.5 parent: 1 - - uid: 2753 + - uid: 1582 components: - type: Transform - pos: -12.5,-21.5 + pos: 21.5,-68.5 parent: 1 - - uid: 2754 + - uid: 1583 components: - type: Transform - pos: -12.5,-20.5 + pos: 21.5,-67.5 parent: 1 - - uid: 2755 + - uid: 1591 components: - type: Transform - pos: -12.5,-19.5 + pos: 20.5,-33.5 parent: 1 - - uid: 2756 + - uid: 1592 components: - type: Transform - pos: -12.5,-18.5 + pos: 20.5,-30.5 parent: 1 - - uid: 2757 + - uid: 1593 components: - type: Transform - pos: -12.5,-17.5 + pos: 20.5,-28.5 parent: 1 - - uid: 2758 + - uid: 1594 components: - type: Transform - pos: -12.5,-16.5 + pos: 20.5,-27.5 parent: 1 - - uid: 2759 + - uid: 1595 components: - type: Transform - pos: -12.5,-15.5 + pos: 20.5,-25.5 parent: 1 - - uid: 2760 + - uid: 1596 components: - type: Transform - pos: -12.5,-14.5 + pos: 20.5,-24.5 parent: 1 - - uid: 2761 + - uid: 1597 components: - type: Transform - pos: -12.5,-13.5 + pos: 20.5,-23.5 parent: 1 - - uid: 2762 + - uid: 1598 components: - type: Transform - pos: -12.5,-12.5 + pos: 20.5,-22.5 parent: 1 - - uid: 2763 + - uid: 1599 components: - type: Transform - pos: -12.5,-11.5 + pos: 20.5,-20.5 parent: 1 - - uid: 2764 + - uid: 1600 components: - type: Transform - pos: -11.5,-34.5 + pos: 20.5,-19.5 parent: 1 - - uid: 2765 + - uid: 1601 components: - type: Transform - pos: -11.5,-33.5 + pos: 20.5,-18.5 parent: 1 - - uid: 2766 + - uid: 1602 components: - type: Transform - pos: -11.5,-32.5 + pos: 20.5,-17.5 parent: 1 - - uid: 2767 + - uid: 1603 components: - type: Transform - pos: -11.5,-31.5 + pos: 19.5,-33.5 parent: 1 - - uid: 2768 + - uid: 1605 components: - type: Transform - pos: -11.5,-30.5 + pos: 19.5,-30.5 parent: 1 - - uid: 2769 + - uid: 1606 components: - type: Transform - pos: -11.5,-29.5 + pos: 19.5,-28.5 parent: 1 - - uid: 2770 + - uid: 1607 components: - type: Transform - pos: -11.5,-28.5 + pos: 19.5,-27.5 parent: 1 - - uid: 2771 + - uid: 1608 components: - type: Transform - pos: -11.5,-27.5 + pos: 19.5,-25.5 parent: 1 - - uid: 2772 + - uid: 1609 components: - type: Transform - pos: -11.5,-26.5 + pos: 19.5,-17.5 parent: 1 - - uid: 2773 + - uid: 1610 components: - type: Transform - pos: -11.5,-25.5 + pos: 18.5,-33.5 parent: 1 - - uid: 2774 + - uid: 1611 components: - type: Transform - pos: -11.5,-24.5 + pos: 18.5,-30.5 parent: 1 - - uid: 2775 + - uid: 1612 components: - type: Transform - pos: -11.5,-23.5 + pos: 18.5,-28.5 parent: 1 - - uid: 2776 + - uid: 1613 components: - type: Transform - pos: -11.5,-22.5 + pos: 18.5,-27.5 parent: 1 - - uid: 2777 + - uid: 1614 components: - type: Transform - pos: -11.5,-21.5 + pos: 18.5,-25.5 parent: 1 - - uid: 2778 + - uid: 1615 components: - type: Transform - pos: -11.5,-20.5 + pos: 18.5,-17.5 parent: 1 - - uid: 2779 + - uid: 1616 components: - type: Transform - pos: -11.5,-19.5 + pos: 17.5,-33.5 parent: 1 - - uid: 2780 + - uid: 1617 components: - type: Transform - pos: -11.5,-18.5 + pos: 17.5,-31.5 parent: 1 - - uid: 2781 + - uid: 1618 components: - type: Transform - pos: -11.5,-17.5 + pos: 17.5,-28.5 parent: 1 - - uid: 2782 + - uid: 1619 components: - type: Transform - pos: -11.5,-16.5 + pos: 17.5,-27.5 parent: 1 - - uid: 2783 + - uid: 1620 components: - type: Transform - pos: -11.5,-15.5 + pos: 17.5,-25.5 parent: 1 - - uid: 2784 + - uid: 1621 components: - type: Transform - pos: -11.5,-14.5 + pos: 17.5,-24.5 parent: 1 - - uid: 2785 + - uid: 1623 components: - type: Transform - pos: -11.5,-13.5 + pos: 17.5,-23.5 parent: 1 - - uid: 2786 + - uid: 1624 components: - type: Transform - pos: -11.5,-12.5 + pos: 17.5,-22.5 parent: 1 - - uid: 2787 + - uid: 1625 components: - type: Transform - pos: -11.5,-11.5 + pos: 17.5,-20.5 parent: 1 - - uid: 2788 + - uid: 1626 components: - type: Transform - pos: -10.5,-33.5 + pos: 17.5,-19.5 parent: 1 - - uid: 2789 + - uid: 1627 components: - type: Transform - pos: -10.5,-32.5 + pos: 17.5,-18.5 parent: 1 - - uid: 2790 + - uid: 1628 components: - type: Transform - pos: -10.5,-31.5 + pos: 17.5,-17.5 parent: 1 - - uid: 2791 + - uid: 1629 components: - type: Transform - pos: -10.5,-30.5 + pos: 16.5,-33.5 parent: 1 - - uid: 2792 + - uid: 1630 components: - type: Transform - pos: -10.5,-29.5 + pos: 16.5,-32.5 parent: 1 - - uid: 2793 + - uid: 1631 components: - type: Transform - pos: -10.5,-28.5 + pos: 16.5,-31.5 parent: 1 - - uid: 2794 + - uid: 1632 components: - type: Transform - pos: -10.5,-27.5 + pos: 16.5,-30.5 parent: 1 - - uid: 2795 + - uid: 1633 components: - type: Transform - pos: -10.5,-26.5 + pos: 16.5,-25.5 parent: 1 - - uid: 2796 + - uid: 1634 components: - type: Transform - pos: -10.5,-25.5 + pos: 16.5,-20.5 parent: 1 - - uid: 2797 + - uid: 1635 components: - type: Transform - pos: -10.5,-34.5 + pos: 15.5,-33.5 parent: 1 - - uid: 2798 + - uid: 1636 components: - type: Transform - pos: -10.5,-24.5 + pos: 15.5,-30.5 parent: 1 - - uid: 2799 + - uid: 1637 components: - type: Transform - pos: -10.5,-23.5 + pos: 15.5,-28.5 parent: 1 - - uid: 2800 + - uid: 1638 components: - type: Transform - pos: -10.5,-22.5 + pos: 15.5,-27.5 parent: 1 - - uid: 2801 + - uid: 1639 components: - type: Transform - pos: -10.5,-21.5 + pos: 15.5,-25.5 parent: 1 - - uid: 2802 + - uid: 1640 components: - type: Transform - pos: -10.5,-20.5 + pos: 15.5,-20.5 parent: 1 - - uid: 2803 + - uid: 1641 components: - type: Transform - pos: -10.5,-19.5 + pos: 14.5,-33.5 parent: 1 - - uid: 2804 + - uid: 1642 components: - type: Transform - pos: -10.5,-18.5 + pos: 14.5,-32.5 parent: 1 - - uid: 2805 + - uid: 1643 components: - type: Transform - pos: -10.5,-17.5 + pos: 14.5,-31.5 parent: 1 - - uid: 2806 + - uid: 1644 components: - type: Transform - pos: -10.5,-16.5 + pos: 14.5,-30.5 parent: 1 - - uid: 2807 + - uid: 1645 components: - type: Transform - pos: -10.5,-15.5 + pos: 14.5,-28.5 parent: 1 - - uid: 2808 + - uid: 1646 components: - type: Transform - pos: -10.5,-14.5 + pos: 14.5,-27.5 parent: 1 - - uid: 2809 + - uid: 1647 components: - type: Transform - pos: -10.5,-13.5 + pos: 14.5,-25.5 parent: 1 - - uid: 2810 + - uid: 1648 components: - type: Transform - pos: -10.5,-12.5 + pos: 14.5,-24.5 parent: 1 - - uid: 2811 + - uid: 1649 components: - type: Transform - pos: -10.5,-11.5 + pos: 14.5,-23.5 parent: 1 - - uid: 2812 + - uid: 1650 components: - type: Transform - pos: -9.5,-34.5 + pos: 14.5,-22.5 parent: 1 - - uid: 2813 + - uid: 1651 components: - type: Transform - pos: -9.5,-33.5 + pos: 14.5,-20.5 parent: 1 - - uid: 2814 + - uid: 1652 components: - type: Transform - pos: -9.5,-32.5 + pos: 14.5,-19.5 parent: 1 - - uid: 2815 + - uid: 1653 components: - type: Transform - pos: -9.5,-31.5 + pos: 14.5,-18.5 parent: 1 - - uid: 2816 + - uid: 1654 components: - type: Transform - pos: -9.5,-30.5 + pos: 14.5,-17.5 parent: 1 - - uid: 2817 + - uid: 1656 components: - type: Transform - pos: -9.5,-29.5 + pos: -40.5,-61.5 parent: 1 - - uid: 2818 + - uid: 1657 components: - type: Transform - pos: -9.5,-28.5 + pos: -40.5,-64.5 parent: 1 - - uid: 2819 + - uid: 1658 components: - type: Transform - pos: -9.5,-27.5 + pos: -40.5,-67.5 parent: 1 - - uid: 2820 + - uid: 1659 components: - type: Transform - pos: -9.5,-26.5 + pos: 24.5,27.5 parent: 1 - - uid: 2821 + - uid: 1660 components: - type: Transform - pos: -9.5,-25.5 + pos: -40.5,-66.5 parent: 1 - - uid: 2822 + - uid: 1661 components: - type: Transform - pos: -9.5,-24.5 + pos: -40.5,-65.5 parent: 1 - - uid: 2823 + - uid: 1662 components: - type: Transform - pos: -9.5,-23.5 + pos: 24.5,28.5 parent: 1 - - uid: 2824 + - uid: 1663 components: - type: Transform - pos: -9.5,-22.5 + pos: -40.5,-69.5 parent: 1 - - uid: 2825 + - uid: 1664 components: - type: Transform - pos: -9.5,-21.5 + pos: -40.5,-68.5 parent: 1 - - uid: 2826 + - uid: 1665 components: - type: Transform - pos: -9.5,-20.5 + pos: 24.5,29.5 parent: 1 - - uid: 2827 + - uid: 1666 components: - type: Transform - pos: -9.5,-19.5 + pos: 14.5,-60.5 parent: 1 - - uid: 2828 + - uid: 1667 components: - type: Transform - pos: -9.5,-18.5 + pos: 14.5,-61.5 parent: 1 - - uid: 2829 + - uid: 1671 components: - type: Transform - pos: -9.5,-17.5 + pos: 14.5,-56.5 parent: 1 - - uid: 2830 + - uid: 1672 components: - type: Transform - pos: -9.5,-16.5 + pos: 22.5,-49.5 parent: 1 - - uid: 2831 + - uid: 1673 components: - type: Transform - pos: -9.5,-15.5 + pos: 22.5,-50.5 parent: 1 - - uid: 2832 + - uid: 1674 components: - type: Transform - pos: -9.5,-14.5 + pos: 22.5,-51.5 parent: 1 - - uid: 2833 + - uid: 1675 components: - type: Transform - pos: -9.5,-13.5 + pos: 22.5,-52.5 parent: 1 - - uid: 2834 + - uid: 1676 components: - type: Transform - pos: -9.5,-12.5 + pos: 22.5,-53.5 parent: 1 - - uid: 2835 + - uid: 1677 components: - type: Transform - pos: -9.5,-11.5 + pos: 22.5,-54.5 parent: 1 - - uid: 2837 + - uid: 1678 components: - type: Transform - pos: -8.5,-33.5 + pos: 22.5,-55.5 parent: 1 - - uid: 2838 + - uid: 1679 components: - type: Transform - pos: -8.5,-32.5 + pos: 22.5,-56.5 parent: 1 - - uid: 2839 + - uid: 1680 components: - type: Transform - pos: -8.5,-31.5 + pos: 22.5,-57.5 parent: 1 - - uid: 2840 + - uid: 1681 components: - type: Transform - pos: -8.5,-30.5 + pos: 22.5,-58.5 parent: 1 - - uid: 2841 + - uid: 1682 components: - type: Transform - pos: -8.5,-29.5 + pos: 22.5,-59.5 parent: 1 - - uid: 2842 + - uid: 1683 components: - type: Transform - pos: -8.5,-28.5 + pos: 22.5,-60.5 parent: 1 - - uid: 2843 + - uid: 1684 components: - type: Transform - pos: -8.5,-27.5 + pos: 22.5,-61.5 parent: 1 - - uid: 2844 + - uid: 1685 components: - type: Transform - pos: -8.5,-26.5 + pos: 21.5,-49.5 parent: 1 - - uid: 2845 + - uid: 1686 components: - type: Transform - pos: -8.5,-25.5 + pos: 21.5,-50.5 parent: 1 - - uid: 2846 + - uid: 1687 components: - type: Transform - pos: -8.5,-24.5 + pos: 21.5,-51.5 parent: 1 - - uid: 2847 + - uid: 1688 components: - type: Transform - pos: -8.5,-23.5 + pos: 21.5,-52.5 parent: 1 - - uid: 2848 + - uid: 1689 components: - type: Transform - pos: -8.5,-22.5 + pos: 21.5,-53.5 parent: 1 - - uid: 2849 + - uid: 1690 components: - type: Transform - pos: -8.5,-21.5 + pos: 21.5,-54.5 parent: 1 - - uid: 2850 + - uid: 1691 components: - type: Transform - pos: -8.5,-20.5 + pos: 21.5,-55.5 parent: 1 - - uid: 2851 + - uid: 1692 components: - type: Transform - pos: -8.5,-19.5 + pos: 21.5,-56.5 parent: 1 - - uid: 2852 + - uid: 1693 components: - type: Transform - pos: -8.5,-18.5 + pos: 21.5,-57.5 parent: 1 - - uid: 2853 + - uid: 1694 components: - type: Transform - pos: -8.5,-17.5 + pos: 21.5,-58.5 parent: 1 - - uid: 2854 + - uid: 1695 components: - type: Transform - pos: -8.5,-16.5 + pos: 21.5,-59.5 parent: 1 - - uid: 2855 + - uid: 1696 components: - type: Transform - pos: -8.5,-15.5 + pos: 21.5,-60.5 parent: 1 - - uid: 2856 + - uid: 1697 components: - type: Transform - pos: -8.5,-14.5 + pos: 21.5,-61.5 parent: 1 - - uid: 2857 + - uid: 1698 components: - type: Transform - pos: -8.5,-13.5 + pos: 15.5,-61.5 parent: 1 - - uid: 2858 + - uid: 1699 components: - type: Transform - pos: -8.5,-12.5 + pos: 13.5,-56.5 parent: 1 - - uid: 2859 + - uid: 1700 components: - type: Transform - pos: -8.5,-11.5 + pos: 19.5,-56.5 parent: 1 - - uid: 2861 + - uid: 1701 components: - type: Transform - pos: 24.5,-0.5 + pos: 18.5,-61.5 parent: 1 - - uid: 2862 + - uid: 1702 components: - type: Transform - pos: 24.5,0.5 + pos: 18.5,-56.5 parent: 1 - - uid: 2863 + - uid: 1703 components: - type: Transform - pos: -7.5,-31.5 + pos: 13.5,-57.5 parent: 1 - - uid: 2864 + - uid: 1704 components: - type: Transform - pos: -7.5,-30.5 + pos: 17.5,-61.5 parent: 1 - - uid: 2865 + - uid: 1705 components: - type: Transform - pos: -7.5,-29.5 + pos: 16.5,-61.5 parent: 1 - - uid: 2866 + - uid: 1706 components: - type: Transform - pos: -7.5,-28.5 + pos: 20.5,-49.5 parent: 1 - - uid: 2867 + - uid: 1707 components: - type: Transform - pos: -7.5,-27.5 + pos: 20.5,-50.5 parent: 1 - - uid: 2868 + - uid: 1708 components: - type: Transform - pos: -7.5,-26.5 + pos: 20.5,-55.5 parent: 1 - - uid: 2869 + - uid: 1709 components: - type: Transform - pos: -7.5,-25.5 + pos: 20.5,-60.5 parent: 1 - - uid: 2870 + - uid: 1711 components: - type: Transform - pos: -7.5,-24.5 + pos: 19.5,-50.5 parent: 1 - - uid: 2871 + - uid: 1712 components: - type: Transform - pos: -7.5,-23.5 + pos: 13.5,-55.5 parent: 1 - - uid: 2872 + - uid: 1713 components: - type: Transform - pos: -7.5,-22.5 + pos: 19.5,-51.5 parent: 1 - - uid: 2873 + - uid: 1714 components: - type: Transform - pos: -7.5,-21.5 + pos: 19.5,-52.5 parent: 1 - - uid: 2874 + - uid: 1715 components: - type: Transform - pos: -7.5,-20.5 + pos: 19.5,-53.5 parent: 1 - - uid: 2875 + - uid: 1716 components: - type: Transform - pos: -7.5,-19.5 + pos: 19.5,-55.5 parent: 1 - - uid: 2876 + - uid: 1719 components: - type: Transform - pos: -7.5,-18.5 + pos: 17.5,-50.5 parent: 1 - - uid: 2877 + - uid: 1720 components: - type: Transform - pos: -7.5,-17.5 + pos: -40.5,-70.5 parent: 1 - - uid: 2878 + - uid: 1721 components: - type: Transform - pos: -7.5,-16.5 + pos: 18.5,-50.5 parent: 1 - - uid: 2879 + - uid: 1722 components: - type: Transform - pos: -7.5,-15.5 + pos: 18.5,-51.5 parent: 1 - - uid: 2880 + - uid: 1723 components: - type: Transform - pos: -6.5,-29.5 + pos: 18.5,-52.5 parent: 1 - - uid: 2884 + - uid: 1724 components: - type: Transform - pos: -6.5,-28.5 + pos: 18.5,-53.5 parent: 1 - - uid: 2885 + - uid: 1725 components: - type: Transform - pos: -6.5,-27.5 + pos: 18.5,-55.5 parent: 1 - - uid: 2886 + - uid: 1726 components: - type: Transform - pos: -6.5,-26.5 + pos: 19.5,-61.5 parent: 1 - - uid: 2887 + - uid: 1727 components: - type: Transform - pos: -6.5,-25.5 + pos: 17.5,-55.5 parent: 1 - - uid: 2888 + - uid: 1728 components: - type: Transform - pos: -6.5,-24.5 + pos: -40.5,-72.5 parent: 1 - - uid: 2889 + - uid: 1730 components: - type: Transform - pos: -6.5,-23.5 + pos: 16.5,-50.5 parent: 1 - - uid: 2890 + - uid: 1731 components: - type: Transform - pos: -6.5,-22.5 + pos: 16.5,-51.5 parent: 1 - - uid: 2891 + - uid: 1732 components: - type: Transform - pos: -6.5,-21.5 + pos: 16.5,-52.5 parent: 1 - - uid: 2892 + - uid: 1733 components: - type: Transform - pos: -7.5,-14.5 + pos: 16.5,-53.5 parent: 1 - - uid: 2893 + - uid: 1734 components: - type: Transform - pos: -7.5,-13.5 + pos: -40.5,-71.5 parent: 1 - - uid: 2895 + - uid: 1735 components: - type: Transform - pos: -7.5,-12.5 + pos: 16.5,-55.5 parent: 1 - - uid: 2897 + - uid: 1737 components: - type: Transform - pos: -7.5,-11.5 + pos: -40.5,-74.5 parent: 1 - - uid: 2898 + - uid: 1738 components: - type: Transform - pos: 24.5,1.5 + pos: 15.5,-50.5 parent: 1 - - uid: 2899 + - uid: 1739 components: - type: Transform - pos: 24.5,-1.5 + pos: 15.5,-51.5 parent: 1 - - uid: 2901 + - uid: 1740 components: - type: Transform - pos: 24.5,4.5 + pos: 15.5,-52.5 parent: 1 - - uid: 2902 + - uid: 1741 components: - type: Transform - pos: 24.5,14.5 + pos: 15.5,-53.5 parent: 1 - - uid: 2904 + - uid: 1742 components: - type: Transform - pos: -6.5,-30.5 + pos: 15.5,-55.5 parent: 1 - - uid: 2909 + - uid: 1743 components: - type: Transform - pos: -6.5,-11.5 + pos: 24.5,30.5 parent: 1 - - uid: 2913 + - uid: 1744 components: - type: Transform - pos: -5.5,-34.5 + pos: 7.5,-49.5 parent: 1 - - uid: 2915 + - uid: 1745 components: - type: Transform - pos: 24.5,5.5 + pos: 7.5,-50.5 parent: 1 - - uid: 2917 + - uid: 1746 components: - type: Transform - pos: 24.5,6.5 + pos: 7.5,-51.5 parent: 1 - - uid: 2918 + - uid: 1747 components: - type: Transform - pos: 24.5,18.5 + pos: 7.5,-52.5 parent: 1 - - uid: 2919 + - uid: 1748 components: - type: Transform - pos: -5.5,-30.5 + pos: 7.5,-53.5 parent: 1 - - uid: 2921 + - uid: 1749 components: - type: Transform - pos: -5.5,-29.5 + pos: 7.5,-54.5 parent: 1 - - uid: 2922 + - uid: 1750 components: - type: Transform - pos: -5.5,-28.5 + pos: 23.5,-122.5 parent: 1 - - uid: 2923 + - uid: 1751 components: - type: Transform - pos: -5.5,-27.5 + pos: -8.5,-75.5 parent: 1 - - uid: 2925 + - uid: 1752 components: - type: Transform - pos: -6.5,-20.5 + pos: -8.5,-74.5 parent: 1 - - uid: 2926 + - uid: 1753 components: - type: Transform - pos: -6.5,-19.5 + pos: -8.5,-73.5 parent: 1 - - uid: 2928 + - uid: 1754 components: - type: Transform - pos: -6.5,-18.5 + pos: -8.5,-72.5 parent: 1 - - uid: 2930 + - uid: 1755 components: - type: Transform - pos: -6.5,-17.5 + pos: -8.5,-71.5 parent: 1 - - uid: 2931 + - uid: 1777 components: - type: Transform - pos: -6.5,-16.5 + pos: -9.5,-75.5 parent: 1 - - uid: 2933 + - uid: 1778 components: - type: Transform - pos: -6.5,-15.5 + pos: -9.5,-74.5 parent: 1 - - uid: 2935 + - uid: 1779 components: - type: Transform - pos: -6.5,-14.5 + pos: -9.5,-73.5 parent: 1 - - uid: 2936 + - uid: 1780 components: - type: Transform - pos: -6.5,-13.5 + pos: -9.5,-72.5 parent: 1 - - uid: 2937 + - uid: 1781 components: - type: Transform - pos: -6.5,-12.5 + pos: -9.5,-71.5 parent: 1 - - uid: 2939 + - uid: 1785 components: - type: Transform - pos: -5.5,-24.5 + pos: -26.5,-77.5 parent: 1 - - uid: 2941 + - uid: 1786 components: - type: Transform - pos: -5.5,-23.5 + pos: -40.5,-73.5 parent: 1 - - uid: 2942 + - uid: 1787 components: - type: Transform - pos: -5.5,-22.5 + pos: -40.5,-75.5 parent: 1 - - uid: 2943 + - uid: 1788 components: - type: Transform - pos: -5.5,-21.5 + pos: 24.5,33.5 parent: 1 - - uid: 2945 + - uid: 1789 components: - type: Transform - pos: -5.5,-20.5 + pos: -19.5,-78.5 parent: 1 - - uid: 2946 + - uid: 1792 components: - type: Transform - pos: -5.5,-19.5 + pos: 14.5,-50.5 parent: 1 - - uid: 2947 + - uid: 1793 components: - type: Transform - pos: -5.5,-18.5 + pos: 14.5,-55.5 parent: 1 - - uid: 2950 + - uid: 1794 components: - type: Transform - pos: -5.5,-17.5 + pos: 13.5,-49.5 parent: 1 - - uid: 2952 + - uid: 1795 components: - type: Transform - pos: -5.5,-16.5 + pos: 13.5,-50.5 parent: 1 - - uid: 2954 + - uid: 1796 components: - type: Transform - pos: -5.5,-26.5 + pos: 13.5,-51.5 parent: 1 - - uid: 2955 + - uid: 1797 components: - type: Transform - pos: -5.5,-25.5 + pos: 13.5,-52.5 parent: 1 - - uid: 2957 + - uid: 1798 components: - type: Transform - pos: -5.5,-15.5 + pos: 13.5,-53.5 parent: 1 - - uid: 2959 + - uid: 1799 components: - type: Transform - pos: -5.5,-14.5 + pos: 13.5,-54.5 parent: 1 - - uid: 2960 + - uid: 1800 components: - type: Transform - pos: -5.5,-13.5 + pos: 12.5,-49.5 parent: 1 - - uid: 2961 + - uid: 1801 components: - type: Transform - pos: -5.5,-12.5 + pos: 12.5,-50.5 parent: 1 - - uid: 2963 + - uid: 1804 components: - type: Transform - pos: -5.5,-11.5 + pos: 23.5,-123.5 parent: 1 - - uid: 2965 + - uid: 1805 components: - type: Transform - pos: -4.5,-34.5 + pos: 24.5,32.5 parent: 1 - - uid: 2966 + - uid: 1807 components: - type: Transform - pos: -4.5,-33.5 + pos: 24.5,34.5 parent: 1 - - uid: 2967 + - uid: 1808 components: - type: Transform - pos: 24.5,17.5 + pos: 12.5,-51.5 parent: 1 - - uid: 2969 + - uid: 1809 components: - type: Transform - pos: 24.5,24.5 + pos: -19.5,-79.5 parent: 1 - - uid: 2970 + - uid: 1810 components: - type: Transform - pos: 24.5,19.5 + pos: -25.5,-77.5 parent: 1 - - uid: 2971 + - uid: 1811 components: - type: Transform - pos: 24.5,21.5 + pos: -23.5,-77.5 parent: 1 - - uid: 2974 + - uid: 1812 components: - type: Transform - pos: -4.5,-28.5 + pos: 12.5,-52.5 parent: 1 - - uid: 2975 + - uid: 1813 components: - type: Transform - pos: -4.5,-27.5 + pos: 12.5,-53.5 parent: 1 - - uid: 2976 + - uid: 1814 components: - type: Transform - pos: -4.5,-26.5 + pos: 12.5,-54.5 parent: 1 - - uid: 2978 + - uid: 1815 components: - type: Transform - pos: -4.5,-25.5 + pos: 11.5,-49.5 parent: 1 - - uid: 2979 + - uid: 1816 components: - type: Transform - pos: -4.5,-24.5 + pos: 11.5,-50.5 parent: 1 - - uid: 2981 + - uid: 1817 components: - type: Transform - pos: -4.5,-23.5 + pos: 11.5,-51.5 parent: 1 - - uid: 2985 + - uid: 1818 components: - type: Transform - pos: -4.5,-22.5 + pos: 11.5,-52.5 parent: 1 - - uid: 2987 + - uid: 1819 components: - type: Transform - pos: -4.5,-21.5 + pos: 11.5,-53.5 parent: 1 - - uid: 2989 + - uid: 1820 components: - type: Transform - pos: -4.5,-20.5 + pos: 11.5,-54.5 parent: 1 - - uid: 2990 + - uid: 1821 components: - type: Transform - pos: -4.5,-19.5 + pos: -24.5,-77.5 parent: 1 - - uid: 2991 + - uid: 1822 components: - type: Transform - pos: -4.5,-18.5 + pos: 24.5,36.5 parent: 1 - - uid: 2993 + - uid: 1823 components: - type: Transform - pos: -4.5,-17.5 + pos: -22.5,-77.5 parent: 1 - - uid: 2994 + - uid: 1824 components: - type: Transform - pos: -4.5,-16.5 + pos: 24.5,35.5 parent: 1 - - uid: 2995 + - uid: 1825 components: - type: Transform - pos: -4.5,-15.5 + pos: 10.5,-49.5 parent: 1 - - uid: 2997 + - uid: 1826 components: - type: Transform - pos: -4.5,-14.5 + pos: -21.5,-77.5 parent: 1 - - uid: 3000 + - uid: 1827 components: - type: Transform - pos: -4.5,-13.5 + pos: 24.5,37.5 parent: 1 - - uid: 3002 + - uid: 1829 components: - type: Transform - pos: -4.5,-12.5 + pos: 10.5,-50.5 parent: 1 - - uid: 3003 + - uid: 1832 components: - type: Transform - pos: -4.5,-11.5 + pos: 10.5,-51.5 parent: 1 - - uid: 3005 + - uid: 1833 components: - type: Transform - pos: -3.5,-33.5 + pos: 10.5,-52.5 parent: 1 - - uid: 3006 + - uid: 1834 components: - type: Transform - pos: -3.5,-32.5 + pos: 10.5,-53.5 parent: 1 - - uid: 3007 + - uid: 1837 components: - type: Transform - pos: -3.5,-31.5 + pos: 10.5,-54.5 parent: 1 - - uid: 3008 + - uid: 1838 components: - type: Transform - pos: 24.5,-15.5 + pos: -21.5,-79.5 parent: 1 - - uid: 3009 + - uid: 1839 components: - type: Transform - pos: 24.5,22.5 + pos: 9.5,-49.5 parent: 1 - - uid: 3011 + - uid: 1840 components: - type: Transform - pos: 24.5,-10.5 + pos: -29.5,-77.5 parent: 1 - - uid: 3013 + - uid: 1841 components: - type: Transform - pos: -3.5,-27.5 + pos: 9.5,-50.5 parent: 1 - - uid: 3014 + - uid: 1842 components: - type: Transform - pos: -3.5,-26.5 + pos: -20.5,-78.5 parent: 1 - - uid: 3015 + - uid: 1843 components: - type: Transform - pos: -3.5,-25.5 + pos: -28.5,-77.5 parent: 1 - - uid: 3017 + - uid: 1844 components: - type: Transform - pos: -3.5,-24.5 + pos: -34.5,-80.5 parent: 1 - - uid: 3018 + - uid: 1845 components: - type: Transform - pos: -3.5,-23.5 + pos: -21.5,-78.5 parent: 1 - - uid: 3019 + - uid: 1846 components: - type: Transform - pos: -3.5,-22.5 + pos: 9.5,-51.5 parent: 1 - - uid: 3021 + - uid: 1847 components: - type: Transform - pos: -3.5,-21.5 + pos: 9.5,-52.5 parent: 1 - - uid: 3024 + - uid: 1849 components: - type: Transform - pos: -3.5,-20.5 + pos: 24.5,38.5 parent: 1 - - uid: 3026 + - uid: 1850 components: - type: Transform - pos: -3.5,-19.5 + pos: 23.5,-127.5 parent: 1 - - uid: 3027 + - uid: 1851 components: - type: Transform - pos: -3.5,-18.5 + pos: 9.5,-53.5 parent: 1 - - uid: 3029 + - uid: 1852 components: - type: Transform - pos: -3.5,-17.5 + pos: 9.5,-54.5 parent: 1 - - uid: 3030 + - uid: 1853 components: - type: Transform - pos: -3.5,-16.5 + pos: 8.5,-49.5 parent: 1 - - uid: 3031 + - uid: 1854 components: - type: Transform - pos: -3.5,-15.5 + pos: 8.5,-50.5 parent: 1 - - uid: 3032 + - uid: 1855 components: - type: Transform - pos: -3.5,-14.5 + pos: 8.5,-51.5 parent: 1 - - uid: 3119 + - uid: 1856 components: - type: Transform - pos: -3.5,-13.5 + pos: 8.5,-52.5 parent: 1 - - uid: 3122 + - uid: 1858 components: - type: Transform - pos: -3.5,-12.5 + pos: 8.5,-53.5 parent: 1 - - uid: 3124 + - uid: 1859 components: - type: Transform - pos: -3.5,-11.5 + pos: 8.5,-54.5 parent: 1 - - uid: 3125 + - uid: 1864 components: - type: Transform - pos: 22.5,-34.5 + pos: -33.5,-79.5 parent: 1 - - uid: 3127 + - uid: 1865 components: - type: Transform - pos: 22.5,-33.5 + pos: -27.5,-77.5 parent: 1 - - uid: 3129 + - uid: 1866 components: - type: Transform - pos: 22.5,-32.5 + pos: -20.5,-79.5 parent: 1 - - uid: 3133 + - uid: 1867 components: - type: Transform - pos: 22.5,-31.5 + pos: -31.5,-77.5 parent: 1 - - uid: 3138 + - uid: 1868 components: - type: Transform - pos: 22.5,-30.5 + pos: -34.5,-82.5 parent: 1 - - uid: 3141 + - uid: 1869 components: - type: Transform - pos: 22.5,-29.5 + pos: -33.5,-78.5 parent: 1 - - uid: 3142 + - uid: 1870 components: - type: Transform - pos: 22.5,-28.5 + pos: -30.5,-77.5 parent: 1 - - uid: 3145 + - uid: 1871 components: - type: Transform - pos: 22.5,-27.5 + pos: -34.5,-81.5 parent: 1 - - uid: 3150 + - uid: 1872 components: - type: Transform - pos: 22.5,-26.5 + pos: -32.5,-77.5 parent: 1 - - uid: 3152 + - uid: 1875 components: - type: Transform - pos: 22.5,-25.5 + pos: 20.5,-39.5 parent: 1 - - uid: 3153 + - uid: 1877 components: - type: Transform - pos: 22.5,-24.5 + pos: 23.5,-128.5 parent: 1 - - uid: 3155 + - uid: 1878 components: - type: Transform - pos: 22.5,-23.5 + pos: -12.5,-51.5 parent: 1 - - uid: 3160 + - uid: 1879 components: - type: Transform - pos: 22.5,-22.5 + pos: -12.5,-50.5 parent: 1 - - uid: 3161 + - uid: 1880 components: - type: Transform - pos: 22.5,-21.5 + pos: -12.5,-49.5 parent: 1 - - uid: 3164 + - uid: 1881 components: - type: Transform - pos: 22.5,-20.5 + pos: -13.5,-53.5 parent: 1 - - uid: 3166 + - uid: 1882 components: - type: Transform - pos: 22.5,-19.5 + pos: -13.5,-52.5 parent: 1 - - uid: 3167 + - uid: 1883 components: - type: Transform - pos: 22.5,-18.5 + pos: -13.5,-51.5 parent: 1 - - uid: 3169 + - uid: 1884 components: - type: Transform - pos: 22.5,-17.5 + pos: -13.5,-50.5 parent: 1 - - uid: 3170 + - uid: 1885 components: - type: Transform - pos: 22.5,-16.5 + pos: 19.5,-39.5 parent: 1 - - uid: 3171 + - uid: 1886 components: - type: Transform - pos: 22.5,-15.5 + pos: 19.5,-37.5 parent: 1 - - uid: 3174 + - uid: 1887 components: - type: Transform - pos: 22.5,-14.5 + pos: 19.5,-36.5 parent: 1 - - uid: 3175 + - uid: 1888 components: - type: Transform - pos: 22.5,-13.5 + pos: -13.5,-49.5 parent: 1 - - uid: 3178 + - uid: 1889 components: - type: Transform - pos: 22.5,-12.5 + pos: -14.5,-53.5 parent: 1 - - uid: 3179 + - uid: 1890 components: - type: Transform - pos: 24.5,-9.5 + pos: -14.5,-52.5 parent: 1 - - uid: 3180 + - uid: 1891 components: - type: Transform - pos: 22.5,-11.5 + pos: -14.5,-51.5 parent: 1 - - uid: 3181 + - uid: 1892 components: - type: Transform - pos: 21.5,-34.5 + pos: -14.5,-50.5 parent: 1 - - uid: 3183 + - uid: 1893 components: - type: Transform - pos: 21.5,-33.5 + pos: -14.5,-49.5 parent: 1 - - uid: 3184 + - uid: 1904 components: - type: Transform - pos: 21.5,-32.5 + pos: -15.5,-70.5 parent: 1 - - uid: 3185 + - uid: 1905 components: - type: Transform - pos: 21.5,-31.5 + pos: -15.5,-69.5 parent: 1 - - uid: 3187 + - uid: 1906 components: - type: Transform - pos: 21.5,-30.5 + pos: -15.5,-68.5 parent: 1 - - uid: 3188 + - uid: 1913 components: - type: Transform - pos: 21.5,-29.5 + pos: -15.5,-55.5 parent: 1 - - uid: 3189 + - uid: 1914 components: - type: Transform - pos: 21.5,-28.5 + pos: -15.5,-54.5 parent: 1 - - uid: 3191 + - uid: 1916 components: - type: Transform - pos: 21.5,-27.5 + pos: -16.5,-70.5 parent: 1 - - uid: 3192 + - uid: 1917 components: - type: Transform - pos: 21.5,-26.5 + pos: -16.5,-69.5 parent: 1 - - uid: 3193 + - uid: 1921 components: - type: Transform - pos: 21.5,-25.5 + pos: 23.5,-124.5 parent: 1 - - uid: 3194 + - uid: 1923 components: - type: Transform - pos: 21.5,-24.5 + pos: -6.5,-34.5 parent: 1 - - uid: 3195 + - uid: 1998 components: - type: Transform - pos: 21.5,-23.5 + pos: -16.5,-55.5 parent: 1 - - uid: 3196 + - uid: 2028 components: - type: Transform - pos: 21.5,-22.5 + pos: 23.5,-126.5 parent: 1 - - uid: 3197 + - uid: 2029 components: - type: Transform - pos: 21.5,-21.5 + pos: -13.5,-48.5 parent: 1 - - uid: 3198 + - uid: 2049 components: - type: Transform - pos: 21.5,-20.5 + pos: 23.5,-125.5 parent: 1 - - uid: 3199 + - uid: 2050 components: - type: Transform - pos: 21.5,-19.5 + pos: 24.5,-23.5 parent: 1 - - uid: 3202 + - uid: 2081 components: - type: Transform - pos: 21.5,-18.5 + pos: -16.5,-54.5 parent: 1 - - uid: 3203 + - uid: 2093 components: - type: Transform - pos: 21.5,-17.5 + pos: 24.5,-24.5 parent: 1 - - uid: 3204 + - uid: 2094 components: - type: Transform - pos: 21.5,-16.5 + pos: -17.5,-71.5 parent: 1 - - uid: 3205 + - uid: 2095 components: - type: Transform - pos: 21.5,-15.5 + pos: -17.5,-70.5 parent: 1 - - uid: 3206 + - uid: 2096 components: - type: Transform - pos: 21.5,-14.5 + pos: -17.5,-69.5 parent: 1 - - uid: 3207 + - uid: 2097 components: - type: Transform - pos: 21.5,-13.5 + pos: -17.5,-68.5 parent: 1 - - uid: 3208 + - uid: 2098 components: - type: Transform - pos: 21.5,-12.5 + pos: -13.5,-47.5 parent: 1 - - uid: 3209 + - uid: 2099 components: - type: Transform - pos: 21.5,-11.5 + pos: -14.5,-48.5 parent: 1 - - uid: 3210 + - uid: 2100 components: - type: Transform - pos: 19.5,-19.5 + pos: -14.5,-47.5 parent: 1 - - uid: 3211 + - uid: 2104 components: - type: Transform - pos: 19.5,-18.5 + pos: -17.5,-55.5 parent: 1 - - uid: 3212 + - uid: 2105 components: - type: Transform - pos: 18.5,-34.5 + pos: -17.5,-54.5 parent: 1 - - uid: 3213 + - uid: 2112 components: - type: Transform - pos: 18.5,-32.5 + pos: -18.5,-71.5 parent: 1 - - uid: 3214 + - uid: 2113 components: - type: Transform - pos: -10.5,-96.5 + pos: -18.5,-70.5 parent: 1 - - uid: 3215 + - uid: 2114 components: - type: Transform - pos: 18.5,-31.5 + pos: -18.5,-69.5 parent: 1 - - uid: 3216 + - uid: 2115 components: - type: Transform - pos: -10.5,-97.5 + pos: -18.5,-68.5 parent: 1 - - uid: 3217 + - uid: 2126 components: - type: Transform - pos: -10.5,-95.5 + pos: -18.5,-55.5 parent: 1 - - uid: 3218 + - uid: 2127 components: - type: Transform - pos: 18.5,-29.5 + pos: -18.5,-54.5 parent: 1 - - uid: 3219 + - uid: 2132 components: - type: Transform - pos: 20.5,-16.5 + pos: -19.5,-71.5 parent: 1 - - uid: 3220 + - uid: 2133 components: - type: Transform - pos: 20.5,-15.5 + pos: -19.5,-70.5 parent: 1 - - uid: 3221 + - uid: 2134 components: - type: Transform - pos: 20.5,-14.5 + pos: -19.5,-69.5 parent: 1 - - uid: 3222 + - uid: 2135 components: - type: Transform - pos: 20.5,-13.5 + pos: -19.5,-68.5 parent: 1 - - uid: 3223 + - uid: 2137 components: - type: Transform - pos: 20.5,-12.5 + pos: -8.5,-70.5 parent: 1 - - uid: 3224 + - uid: 2138 components: - type: Transform - pos: 20.5,-11.5 + pos: -8.5,-69.5 parent: 1 - - uid: 3225 + - uid: 2139 components: - type: Transform - pos: 18.5,-26.5 + pos: -8.5,-68.5 parent: 1 - - uid: 3226 + - uid: 2140 components: - type: Transform - pos: 18.5,-24.5 + pos: -8.5,-67.5 parent: 1 - - uid: 3227 + - uid: 2141 components: - type: Transform - pos: 18.5,-23.5 + pos: -8.5,-66.5 parent: 1 - - uid: 3228 + - uid: 2142 components: - type: Transform - pos: 18.5,-22.5 + pos: -8.5,-65.5 parent: 1 - - uid: 3230 + - uid: 2143 components: - type: Transform - pos: 18.5,-21.5 + pos: -8.5,-64.5 parent: 1 - - uid: 3231 + - uid: 2144 components: - type: Transform - pos: 18.5,-20.5 + pos: -8.5,-63.5 parent: 1 - - uid: 3232 + - uid: 2145 components: - type: Transform - pos: 18.5,-19.5 + pos: -8.5,-62.5 parent: 1 - - uid: 3233 + - uid: 2146 components: - type: Transform - pos: 18.5,-18.5 + pos: -8.5,-61.5 parent: 1 - - uid: 3234 + - uid: 2147 components: - type: Transform - pos: 17.5,-32.5 + pos: -8.5,-60.5 parent: 1 - - uid: 3235 + - uid: 2148 components: - type: Transform - pos: 17.5,-30.5 + pos: -19.5,-55.5 parent: 1 - - uid: 3236 + - uid: 2149 components: - type: Transform - pos: 17.5,-29.5 + pos: -19.5,-54.5 parent: 1 - - uid: 3237 + - uid: 2151 components: - type: Transform - pos: 17.5,-26.5 + pos: -8.5,-59.5 parent: 1 - - uid: 3238 + - uid: 2152 components: - type: Transform - pos: 19.5,-16.5 + pos: -8.5,-58.5 parent: 1 - - uid: 3239 + - uid: 2153 components: - type: Transform - pos: 19.5,-15.5 + pos: -8.5,-56.5 parent: 1 - - uid: 3240 + - uid: 2154 components: - type: Transform - pos: 19.5,-14.5 + pos: -20.5,-71.5 parent: 1 - - uid: 3241 + - uid: 2155 components: - type: Transform - pos: 19.5,-13.5 + pos: -20.5,-70.5 parent: 1 - - uid: 3244 + - uid: 2156 components: - type: Transform - pos: 19.5,-12.5 + pos: -20.5,-69.5 parent: 1 - - uid: 3245 + - uid: 2157 components: - type: Transform - pos: 19.5,-11.5 + pos: -20.5,-68.5 parent: 1 - - uid: 3246 + - uid: 2158 components: - type: Transform - pos: 17.5,-34.5 + pos: -20.5,-67.5 parent: 1 - - uid: 3247 + - uid: 2159 components: - type: Transform - pos: 17.5,-21.5 + pos: -20.5,-66.5 parent: 1 - - uid: 3248 + - uid: 2160 components: - type: Transform - pos: 16.5,-34.5 + pos: -20.5,-65.5 parent: 1 - - uid: 3249 + - uid: 2161 components: - type: Transform - pos: 16.5,-29.5 + pos: -20.5,-64.5 parent: 1 - - uid: 3250 + - uid: 2162 components: - type: Transform - pos: 16.5,-28.5 + pos: -20.5,-63.5 parent: 1 - - uid: 3251 + - uid: 2163 components: - type: Transform - pos: 16.5,-27.5 + pos: -20.5,-62.5 parent: 1 - - uid: 3252 + - uid: 2164 components: - type: Transform - pos: 16.5,-26.5 + pos: -20.5,-61.5 parent: 1 - - uid: 3253 + - uid: 2165 components: - type: Transform - pos: 16.5,-24.5 + pos: -20.5,-60.5 parent: 1 - - uid: 3254 + - uid: 2166 components: - type: Transform - pos: 16.5,-23.5 + pos: -20.5,-59.5 parent: 1 - - uid: 3255 + - uid: 2167 components: - type: Transform - pos: 16.5,-22.5 + pos: -20.5,-58.5 parent: 1 - - uid: 3256 + - uid: 2168 components: - type: Transform - pos: 16.5,-21.5 + pos: -20.5,-57.5 parent: 1 - - uid: 3257 + - uid: 2169 components: - type: Transform - pos: 16.5,-19.5 + pos: -20.5,-56.5 parent: 1 - - uid: 3258 + - uid: 2170 components: - type: Transform - pos: 18.5,-16.5 + pos: -20.5,-55.5 parent: 1 - - uid: 3259 + - uid: 2171 components: - type: Transform - pos: 18.5,-15.5 + pos: -20.5,-54.5 parent: 1 - - uid: 3260 + - uid: 2173 components: - type: Transform - pos: 18.5,-14.5 + pos: 5.5,-37.5 parent: 1 - - uid: 3261 + - uid: 2174 components: - type: Transform - pos: 18.5,-13.5 + pos: 5.5,-36.5 parent: 1 - - uid: 3262 + - uid: 2175 components: - type: Transform - pos: 18.5,-12.5 + pos: 4.5,-36.5 parent: 1 - - uid: 3263 + - uid: 2176 components: - type: Transform - pos: 18.5,-11.5 + pos: 22.5,-48.5 parent: 1 - - uid: 3264 + - uid: 2177 components: - type: Transform - pos: 16.5,-18.5 + pos: 22.5,-47.5 parent: 1 - - uid: 3265 + - uid: 2178 components: - type: Transform - pos: 16.5,-17.5 + pos: 22.5,-46.5 parent: 1 - - uid: 3266 + - uid: 2179 components: - type: Transform - pos: 15.5,-34.5 + pos: 22.5,-45.5 parent: 1 - - uid: 3267 + - uid: 2180 components: - type: Transform - pos: 15.5,-32.5 + pos: 22.5,-44.5 parent: 1 - - uid: 3268 + - uid: 2181 components: - type: Transform - pos: 15.5,-31.5 + pos: 22.5,-43.5 parent: 1 - - uid: 3269 + - uid: 2182 components: - type: Transform - pos: 15.5,-29.5 + pos: 22.5,-42.5 parent: 1 - - uid: 3270 + - uid: 2183 components: - type: Transform - pos: 17.5,-16.5 + pos: 22.5,-41.5 parent: 1 - - uid: 3271 + - uid: 2184 components: - type: Transform - pos: 17.5,-15.5 + pos: 22.5,-40.5 parent: 1 - - uid: 3272 + - uid: 2185 components: - type: Transform - pos: 17.5,-14.5 + pos: 22.5,-39.5 parent: 1 - - uid: 3273 + - uid: 2186 components: - type: Transform - pos: 17.5,-13.5 + pos: 22.5,-38.5 parent: 1 - - uid: 3274 + - uid: 2187 components: - type: Transform - pos: 17.5,-12.5 + pos: 22.5,-37.5 parent: 1 - - uid: 3275 + - uid: 2188 components: - type: Transform - pos: 17.5,-11.5 + pos: 22.5,-36.5 parent: 1 - - uid: 3276 + - uid: 2189 components: - type: Transform - pos: 15.5,-26.5 + pos: 21.5,-48.5 parent: 1 - - uid: 3277 + - uid: 2190 components: - type: Transform - pos: 15.5,-24.5 + pos: -8.5,-55.5 parent: 1 - - uid: 3278 + - uid: 2191 components: - type: Transform - pos: 15.5,-23.5 + pos: -8.5,-54.5 parent: 1 - - uid: 3279 + - uid: 2192 components: - type: Transform - pos: 15.5,-22.5 + pos: -8.5,-53.5 parent: 1 - - uid: 3280 + - uid: 2193 components: - type: Transform - pos: 15.5,-21.5 + pos: -8.5,-52.5 parent: 1 - - uid: 3281 + - uid: 2194 components: - type: Transform - pos: 15.5,-19.5 + pos: -8.5,-51.5 parent: 1 - - uid: 3282 + - uid: 2195 components: - type: Transform - pos: 15.5,-18.5 + pos: -8.5,-50.5 parent: 1 - - uid: 3283 + - uid: 2196 components: - type: Transform - pos: 15.5,-17.5 + pos: -8.5,-49.5 parent: 1 - - uid: 3284 + - uid: 2197 components: - type: Transform - pos: 14.5,-34.5 + pos: 21.5,-40.5 parent: 1 - - uid: 3285 + - uid: 2198 components: - type: Transform - pos: 14.5,-29.5 + pos: 21.5,-39.5 parent: 1 - - uid: 3286 + - uid: 2199 components: - type: Transform - pos: 14.5,-26.5 + pos: -9.5,-55.5 parent: 1 - - uid: 3287 + - uid: 2200 components: - type: Transform - pos: 14.5,-21.5 + pos: 21.5,-37.5 parent: 1 - - uid: 3288 + - uid: 2201 components: - type: Transform - pos: 16.5,-16.5 + pos: 21.5,-36.5 parent: 1 - - uid: 3289 + - uid: 2202 components: - type: Transform - pos: 16.5,-15.5 + pos: -9.5,-54.5 parent: 1 - - uid: 3290 + - uid: 2203 components: - type: Transform - pos: 16.5,-14.5 + pos: -9.5,-53.5 parent: 1 - - uid: 3291 + - uid: 2204 components: - type: Transform - pos: 16.5,-13.5 + pos: -9.5,-52.5 parent: 1 - - uid: 3292 + - uid: 2205 components: - type: Transform - pos: 16.5,-12.5 + pos: -10.5,-74.5 parent: 1 - - uid: 3293 + - uid: 2206 components: - type: Transform - pos: 16.5,-11.5 + pos: -10.5,-73.5 parent: 1 - - uid: 3294 + - uid: 2207 components: - type: Transform - pos: 15.5,-16.5 + pos: -10.5,-72.5 parent: 1 - - uid: 3295 + - uid: 2208 components: - type: Transform - pos: 15.5,-15.5 + pos: -10.5,-54.5 parent: 1 - - uid: 3296 + - uid: 2209 components: - type: Transform - pos: 15.5,-14.5 + pos: 18.5,-37.5 parent: 1 - - uid: 3297 + - uid: 2210 components: - type: Transform - pos: 15.5,-13.5 + pos: 18.5,-36.5 parent: 1 - - uid: 3298 + - uid: 2211 components: - type: Transform - pos: 15.5,-12.5 + pos: -10.5,-53.5 parent: 1 - - uid: 3299 + - uid: 2213 components: - type: Transform - pos: 15.5,-11.5 + pos: -11.5,-74.5 parent: 1 - - uid: 3300 + - uid: 2214 components: - type: Transform - pos: 7.5,-104.5 + pos: -11.5,-73.5 parent: 1 - - uid: 3301 + - uid: 2215 components: - type: Transform - pos: 14.5,-16.5 + pos: 17.5,-37.5 parent: 1 - - uid: 3302 + - uid: 2216 components: - type: Transform - pos: 14.5,-15.5 + pos: 17.5,-36.5 parent: 1 - - uid: 3303 + - uid: 2217 components: - type: Transform - pos: 14.5,-14.5 + pos: -11.5,-72.5 parent: 1 - - uid: 3304 + - uid: 2218 components: - type: Transform - pos: 14.5,-13.5 + pos: -11.5,-55.5 parent: 1 - - uid: 3305 + - uid: 2220 components: - type: Transform - pos: 14.5,-12.5 + pos: -11.5,-49.5 parent: 1 - - uid: 3306 + - uid: 2221 components: - type: Transform - pos: 14.5,-11.5 + pos: -12.5,-74.5 parent: 1 - - uid: 3307 + - uid: 2222 components: - type: Transform - pos: 13.5,-34.5 + pos: -12.5,-73.5 parent: 1 - - uid: 3308 + - uid: 2223 components: - type: Transform - pos: 13.5,-33.5 + pos: -12.5,-69.5 parent: 1 - - uid: 3309 + - uid: 2224 components: - type: Transform - pos: 13.5,-32.5 + pos: 16.5,-37.5 parent: 1 - - uid: 3310 + - uid: 2225 components: - type: Transform - pos: 13.5,-31.5 + pos: 16.5,-36.5 parent: 1 - - uid: 3311 + - uid: 2226 components: - type: Transform - pos: 13.5,-30.5 + pos: -12.5,-68.5 parent: 1 - - uid: 3312 + - uid: 2228 components: - type: Transform - pos: 13.5,-29.5 + pos: -12.5,-66.5 parent: 1 - - uid: 3314 + - uid: 2229 components: - type: Transform - pos: 13.5,-28.5 + pos: -12.5,-64.5 parent: 1 - - uid: 3315 + - uid: 2230 components: - type: Transform - pos: 13.5,-27.5 + pos: -12.5,-62.5 parent: 1 - - uid: 3316 + - uid: 2232 components: - type: Transform - pos: 13.5,-26.5 + pos: -12.5,-61.5 parent: 1 - - uid: 3317 + - uid: 2233 components: - type: Transform - pos: 13.5,-25.5 + pos: -12.5,-60.5 parent: 1 - - uid: 3318 + - uid: 2234 components: - type: Transform - pos: 13.5,-24.5 + pos: -12.5,-59.5 parent: 1 - - uid: 3319 + - uid: 2235 components: - type: Transform - pos: 13.5,-23.5 + pos: 15.5,-37.5 parent: 1 - - uid: 3320 + - uid: 2237 components: - type: Transform - pos: 13.5,-22.5 + pos: 15.5,-36.5 parent: 1 - - uid: 3321 + - uid: 2238 components: - type: Transform - pos: 13.5,-21.5 + pos: -13.5,-74.5 parent: 1 - - uid: 3322 + - uid: 2239 components: - type: Transform - pos: 13.5,-20.5 + pos: 14.5,-39.5 parent: 1 - - uid: 3323 + - uid: 2241 components: - type: Transform - pos: 13.5,-19.5 + pos: -13.5,-70.5 parent: 1 - - uid: 3324 + - uid: 2242 components: - type: Transform - pos: 13.5,-18.5 + pos: -13.5,-69.5 parent: 1 - - uid: 3325 + - uid: 2243 components: - type: Transform - pos: 13.5,-17.5 + pos: -13.5,-68.5 parent: 1 - - uid: 3326 + - uid: 2244 components: - type: Transform - pos: 13.5,-16.5 + pos: 12.5,-48.5 parent: 1 - - uid: 3327 + - uid: 2246 components: - type: Transform - pos: 13.5,-15.5 + pos: -13.5,-66.5 parent: 1 - - uid: 3328 + - uid: 2247 components: - type: Transform - pos: 13.5,-14.5 + pos: -13.5,-65.5 parent: 1 - - uid: 3329 + - uid: 2248 components: - type: Transform - pos: 13.5,-13.5 + pos: 11.5,-48.5 parent: 1 - - uid: 3330 + - uid: 2249 components: - type: Transform - pos: 13.5,-12.5 + pos: 11.5,-47.5 parent: 1 - - uid: 3332 + - uid: 2250 components: - type: Transform - pos: 13.5,-11.5 + pos: 11.5,-46.5 parent: 1 - - uid: 3333 + - uid: 2251 components: - type: Transform - pos: 12.5,-34.5 + pos: -13.5,-64.5 parent: 1 - - uid: 3334 + - uid: 2252 components: - type: Transform - pos: 12.5,-33.5 + pos: 10.5,-48.5 parent: 1 - - uid: 3338 + - uid: 2253 components: - type: Transform - pos: 12.5,-32.5 + pos: 10.5,-47.5 parent: 1 - - uid: 3339 + - uid: 2254 components: - type: Transform - pos: 12.5,-31.5 + pos: 10.5,-46.5 parent: 1 - - uid: 3340 + - uid: 2255 components: - type: Transform - pos: 12.5,-30.5 + pos: 24.5,-7.5 parent: 1 - - uid: 3341 + - uid: 2257 components: - type: Transform - pos: 12.5,-29.5 + pos: 10.5,-45.5 parent: 1 - - uid: 3342 + - uid: 2259 components: - type: Transform - pos: 12.5,-28.5 + pos: 9.5,-48.5 parent: 1 - - uid: 3343 + - uid: 2260 components: - type: Transform - pos: 12.5,-27.5 + pos: 9.5,-47.5 parent: 1 - - uid: 3344 + - uid: 2261 components: - type: Transform - pos: 12.5,-25.5 + pos: 9.5,-46.5 parent: 1 - - uid: 3345 + - uid: 2262 components: - type: Transform - pos: 12.5,-24.5 + pos: 9.5,-45.5 parent: 1 - - uid: 3346 + - uid: 2263 components: - type: Transform - pos: 12.5,-23.5 + pos: -13.5,-63.5 parent: 1 - - uid: 3347 + - uid: 2264 components: - type: Transform - pos: 12.5,-22.5 + pos: -13.5,-62.5 parent: 1 - - uid: 3348 + - uid: 2265 components: - type: Transform - pos: 12.5,-21.5 + pos: -13.5,-61.5 parent: 1 - - uid: 3349 + - uid: 2266 components: - type: Transform - pos: 12.5,-20.5 + pos: -13.5,-60.5 parent: 1 - - uid: 3350 + - uid: 2267 components: - type: Transform - pos: 12.5,-19.5 + pos: -13.5,-59.5 parent: 1 - - uid: 3351 + - uid: 2268 components: - type: Transform - pos: 12.5,-18.5 + pos: 13.5,-39.5 parent: 1 - - uid: 3353 + - uid: 2269 components: - type: Transform - pos: 12.5,-17.5 + pos: 13.5,-38.5 parent: 1 - - uid: 3354 + - uid: 2270 components: - type: Transform - pos: 12.5,-26.5 + pos: 13.5,-37.5 parent: 1 - - uid: 3355 + - uid: 2271 components: - type: Transform - pos: 12.5,-16.5 + pos: 13.5,-36.5 parent: 1 - - uid: 3356 + - uid: 2272 components: - type: Transform - pos: 12.5,-15.5 + pos: 8.5,-48.5 parent: 1 - - uid: 3357 + - uid: 2273 components: - type: Transform - pos: 12.5,-14.5 + pos: 8.5,-47.5 parent: 1 - - uid: 3358 + - uid: 2274 components: - type: Transform - pos: 12.5,-13.5 + pos: 8.5,-46.5 parent: 1 - - uid: 3359 + - uid: 2275 components: - type: Transform - pos: 12.5,-12.5 + pos: 8.5,-45.5 parent: 1 - - uid: 3360 + - uid: 2276 components: - type: Transform - pos: 12.5,-11.5 + pos: -13.5,-58.5 parent: 1 - - uid: 3361 + - uid: 2280 components: - type: Transform - pos: 11.5,-34.5 + pos: 12.5,-40.5 parent: 1 - - uid: 3362 + - uid: 2281 components: - type: Transform - pos: 11.5,-33.5 + pos: 12.5,-39.5 parent: 1 - - uid: 3363 + - uid: 2282 components: - type: Transform - pos: 11.5,-32.5 + pos: 12.5,-38.5 parent: 1 - - uid: 3364 + - uid: 2283 components: - type: Transform - pos: 11.5,-31.5 + pos: 12.5,-37.5 parent: 1 - - uid: 3365 + - uid: 2284 components: - type: Transform - pos: 11.5,-30.5 + pos: 12.5,-36.5 parent: 1 - - uid: 3366 + - uid: 2286 components: - type: Transform - pos: 11.5,-29.5 + pos: 11.5,-43.5 parent: 1 - - uid: 3367 + - uid: 2287 components: - type: Transform - pos: 11.5,-28.5 + pos: 11.5,-42.5 parent: 1 - - uid: 3368 + - uid: 2288 components: - type: Transform - pos: 11.5,-27.5 + pos: 11.5,-41.5 parent: 1 - - uid: 3369 + - uid: 2289 components: - type: Transform - pos: 11.5,-26.5 + pos: 11.5,-40.5 parent: 1 - - uid: 3370 + - uid: 2290 components: - type: Transform - pos: 11.5,-25.5 + pos: 11.5,-39.5 parent: 1 - - uid: 3371 + - uid: 2291 components: - type: Transform - pos: 11.5,-24.5 + pos: 11.5,-38.5 parent: 1 - - uid: 3372 + - uid: 2292 components: - type: Transform - pos: 11.5,-23.5 + pos: 11.5,-37.5 parent: 1 - - uid: 3373 + - uid: 2293 components: - type: Transform - pos: 11.5,-22.5 + pos: 11.5,-36.5 parent: 1 - - uid: 3374 + - uid: 2294 components: - type: Transform - pos: 11.5,-21.5 + pos: 20.5,-34.5 parent: 1 - - uid: 3375 + - uid: 2295 components: - type: Transform - pos: 11.5,-20.5 + pos: 20.5,-32.5 parent: 1 - - uid: 3376 + - uid: 2296 components: - type: Transform - pos: 11.5,-19.5 + pos: 20.5,-31.5 parent: 1 - - uid: 3377 + - uid: 2297 components: - type: Transform - pos: 11.5,-18.5 + pos: 10.5,-44.5 parent: 1 - - uid: 3378 + - uid: 2298 components: - type: Transform - pos: 11.5,-17.5 + pos: 10.5,-43.5 parent: 1 - - uid: 3379 + - uid: 2299 components: - type: Transform - pos: 11.5,-16.5 + pos: 10.5,-42.5 parent: 1 - - uid: 3380 + - uid: 2300 components: - type: Transform - pos: 11.5,-15.5 + pos: 10.5,-41.5 parent: 1 - - uid: 3381 + - uid: 2301 components: - type: Transform - pos: 11.5,-14.5 + pos: 10.5,-40.5 parent: 1 - - uid: 3382 + - uid: 2302 components: - type: Transform - pos: 11.5,-13.5 + pos: 10.5,-39.5 parent: 1 - - uid: 3383 + - uid: 2303 components: - type: Transform - pos: 11.5,-12.5 + pos: 10.5,-38.5 parent: 1 - - uid: 3384 + - uid: 2304 components: - type: Transform - pos: 11.5,-11.5 + pos: 10.5,-37.5 parent: 1 - - uid: 3385 + - uid: 2305 components: - type: Transform - pos: 10.5,-34.5 + pos: 10.5,-36.5 parent: 1 - - uid: 3386 + - uid: 2306 components: - type: Transform - pos: 10.5,-33.5 + pos: 20.5,-29.5 parent: 1 - - uid: 3387 + - uid: 2307 components: - type: Transform - pos: 10.5,-32.5 + pos: 20.5,-21.5 parent: 1 - - uid: 3388 + - uid: 2308 components: - type: Transform - pos: 10.5,-31.5 + pos: 20.5,-26.5 parent: 1 - - uid: 3389 + - uid: 2309 components: - type: Transform - pos: 10.5,-30.5 + pos: 19.5,-34.5 parent: 1 - - uid: 3390 + - uid: 2310 components: - type: Transform - pos: 10.5,-29.5 + pos: 9.5,-44.5 parent: 1 - - uid: 3391 + - uid: 2311 components: - type: Transform - pos: 10.5,-28.5 + pos: 9.5,-43.5 parent: 1 - - uid: 3392 + - uid: 2312 components: - type: Transform - pos: 10.5,-27.5 + pos: 9.5,-42.5 parent: 1 - - uid: 3393 + - uid: 2313 components: - type: Transform - pos: 10.5,-26.5 + pos: 9.5,-41.5 parent: 1 - - uid: 3394 + - uid: 2314 components: - type: Transform - pos: 10.5,-25.5 + pos: 9.5,-40.5 parent: 1 - - uid: 3395 + - uid: 2315 components: - type: Transform - pos: 10.5,-24.5 + pos: 9.5,-39.5 parent: 1 - - uid: 3396 + - uid: 2316 components: - type: Transform - pos: 10.5,-23.5 + pos: 9.5,-38.5 parent: 1 - - uid: 3397 + - uid: 2317 components: - type: Transform - pos: 24.5,-4.5 + pos: 9.5,-37.5 parent: 1 - - uid: 3398 + - uid: 2318 components: - type: Transform - pos: 24.5,-3.5 + pos: 9.5,-36.5 parent: 1 - - uid: 3399 + - uid: 2319 components: - type: Transform - pos: 24.5,-2.5 + pos: 19.5,-32.5 parent: 1 - - uid: 3400 + - uid: 2320 components: - type: Transform - pos: 24.5,2.5 + pos: 19.5,-31.5 parent: 1 - - uid: 3401 + - uid: 2321 components: - type: Transform - pos: 24.5,7.5 + pos: 19.5,-29.5 parent: 1 - - uid: 3402 + - uid: 2322 components: - type: Transform - pos: 24.5,13.5 + pos: 19.5,-26.5 parent: 1 - - uid: 3403 + - uid: 2323 components: - type: Transform - pos: 24.5,8.5 + pos: 8.5,-44.5 parent: 1 - - uid: 3404 + - uid: 2324 components: - type: Transform - pos: 24.5,16.5 + pos: 8.5,-43.5 parent: 1 - - uid: 3405 + - uid: 2325 components: - type: Transform - pos: 24.5,11.5 + pos: 8.5,-42.5 parent: 1 - - uid: 3406 + - uid: 2326 components: - type: Transform - pos: 24.5,23.5 + pos: 8.5,-41.5 parent: 1 - - uid: 3407 + - uid: 2327 components: - type: Transform - pos: 10.5,-13.5 + pos: 8.5,-40.5 parent: 1 - - uid: 3408 + - uid: 2328 components: - type: Transform - pos: 10.5,-12.5 + pos: 8.5,-39.5 parent: 1 - - uid: 3409 + - uid: 2329 components: - type: Transform - pos: 10.5,-11.5 + pos: 8.5,-38.5 parent: 1 - - uid: 3410 + - uid: 2330 components: - type: Transform - pos: 9.5,-34.5 + pos: 8.5,-37.5 parent: 1 - - uid: 3411 + - uid: 2331 components: - type: Transform - pos: 9.5,-33.5 + pos: 8.5,-36.5 parent: 1 - - uid: 3412 + - uid: 2332 components: - type: Transform - pos: 9.5,-32.5 + pos: 7.5,-48.5 parent: 1 - - uid: 3413 + - uid: 2333 components: - type: Transform - pos: 9.5,-31.5 + pos: 7.5,-47.5 parent: 1 - - uid: 3418 + - uid: 2334 components: - type: Transform - pos: 9.5,-30.5 + pos: 7.5,-46.5 parent: 1 - - uid: 3419 + - uid: 2335 components: - type: Transform - pos: 9.5,-29.5 + pos: 7.5,-45.5 parent: 1 - - uid: 3420 + - uid: 2336 components: - type: Transform - pos: 9.5,-28.5 + pos: 7.5,-44.5 parent: 1 - - uid: 3421 + - uid: 2337 components: - type: Transform - pos: 9.5,-27.5 + pos: 7.5,-43.5 parent: 1 - - uid: 3422 + - uid: 2338 components: - type: Transform - pos: 9.5,-26.5 + pos: 7.5,-42.5 parent: 1 - - uid: 3423 + - uid: 2339 components: - type: Transform - pos: 9.5,-25.5 + pos: 7.5,-41.5 parent: 1 - - uid: 3424 + - uid: 2340 components: - type: Transform - pos: 9.5,-24.5 + pos: 7.5,-40.5 parent: 1 - - uid: 3425 + - uid: 2341 components: - type: Transform - pos: 9.5,-23.5 + pos: 7.5,-39.5 parent: 1 - - uid: 3426 + - uid: 2342 components: - type: Transform - pos: 24.5,-8.5 + pos: 7.5,-38.5 parent: 1 - - uid: 3427 + - uid: 2343 components: - type: Transform - pos: 24.5,-6.5 + pos: 7.5,-37.5 parent: 1 - - uid: 3428 + - uid: 2344 components: - type: Transform - pos: 24.5,-5.5 + pos: 7.5,-36.5 parent: 1 - - uid: 3429 + - uid: 2345 components: - type: Transform - pos: 24.5,3.5 + pos: 6.5,-47.5 parent: 1 - - uid: 3430 + - uid: 2346 components: - type: Transform - pos: 24.5,15.5 + pos: 6.5,-46.5 parent: 1 - - uid: 3431 + - uid: 2347 components: - type: Transform - pos: 24.5,12.5 + pos: 6.5,-45.5 parent: 1 - - uid: 3432 + - uid: 2348 components: - type: Transform - pos: 24.5,9.5 + pos: 6.5,-44.5 parent: 1 - - uid: 3433 + - uid: 2349 components: - type: Transform - pos: 24.5,10.5 + pos: 6.5,-43.5 parent: 1 - - uid: 3434 + - uid: 2350 components: - type: Transform - pos: 24.5,20.5 + pos: 6.5,-42.5 parent: 1 - - uid: 3435 + - uid: 2351 components: - type: Transform - pos: 9.5,-13.5 + pos: 6.5,-41.5 parent: 1 - - uid: 3436 + - uid: 2352 components: - type: Transform - pos: 9.5,-12.5 + pos: 6.5,-40.5 parent: 1 - - uid: 3437 + - uid: 2353 components: - type: Transform - pos: 9.5,-11.5 + pos: 6.5,-39.5 parent: 1 - - uid: 3438 + - uid: 2354 components: - type: Transform - pos: 8.5,-34.5 + pos: 6.5,-38.5 parent: 1 - - uid: 3439 + - uid: 2355 components: - type: Transform - pos: 8.5,-33.5 + pos: 6.5,-37.5 parent: 1 - - uid: 3440 + - uid: 2356 components: - type: Transform - pos: 8.5,-32.5 + pos: 6.5,-36.5 parent: 1 - - uid: 3441 + - uid: 2357 components: - type: Transform - pos: 8.5,-31.5 + pos: 22.5,-35.5 parent: 1 - - uid: 3442 + - uid: 2358 components: - type: Transform - pos: 8.5,-30.5 + pos: 21.5,-35.5 parent: 1 - - uid: 3443 + - uid: 2362 components: - type: Transform - pos: 8.5,-29.5 + pos: 13.5,-35.5 parent: 1 - - uid: 3444 + - uid: 2363 components: - type: Transform - pos: 8.5,-28.5 + pos: 12.5,-35.5 parent: 1 - - uid: 3447 + - uid: 2364 components: - type: Transform - pos: 8.5,-27.5 + pos: 11.5,-35.5 parent: 1 - - uid: 3448 + - uid: 2365 components: - type: Transform - pos: 8.5,-26.5 + pos: 10.5,-35.5 parent: 1 - - uid: 3449 + - uid: 2366 components: - type: Transform - pos: 8.5,-25.5 + pos: 9.5,-35.5 parent: 1 - - uid: 3452 + - uid: 2367 components: - type: Transform - pos: 8.5,-24.5 + pos: 8.5,-35.5 parent: 1 - - uid: 3454 + - uid: 2368 components: - type: Transform - pos: 24.5,25.5 + pos: 7.5,-35.5 parent: 1 - - uid: 3457 + - uid: 2369 components: - type: Transform - pos: 8.5,-23.5 + pos: 6.5,-35.5 parent: 1 - - uid: 3461 + - uid: 2370 components: - type: Transform - pos: 24.5,26.5 + pos: 5.5,-35.5 parent: 1 - - uid: 3471 + - uid: 2371 components: - type: Transform - pos: 8.5,-13.5 + pos: 4.5,-35.5 parent: 1 - - uid: 3473 + - uid: 2372 components: - type: Transform - pos: 8.5,-12.5 + pos: 3.5,-35.5 parent: 1 - - uid: 3474 + - uid: 2373 components: - type: Transform - pos: 8.5,-11.5 + pos: -6.5,-37.5 parent: 1 - - uid: 3477 + - uid: 2374 components: - type: Transform - pos: 7.5,-34.5 + pos: -6.5,-36.5 parent: 1 - - uid: 3478 + - uid: 2375 components: - type: Transform - pos: 7.5,-33.5 + pos: -5.5,-36.5 parent: 1 - - uid: 3479 + - uid: 2376 components: - type: Transform - pos: 7.5,-32.5 + pos: -4.5,-35.5 parent: 1 - - uid: 3480 + - uid: 2377 components: - type: Transform - pos: 7.5,-31.5 + pos: -5.5,-35.5 parent: 1 - - uid: 3481 + - uid: 2378 components: - type: Transform - pos: 7.5,-30.5 + pos: -6.5,-35.5 parent: 1 - - uid: 3483 + - uid: 2379 components: - type: Transform - pos: 7.5,-29.5 + pos: -7.5,-47.5 parent: 1 - - uid: 3484 + - uid: 2380 components: - type: Transform - pos: 7.5,-28.5 + pos: -7.5,-46.5 parent: 1 - - uid: 3486 + - uid: 2381 components: - type: Transform - pos: 7.5,-27.5 + pos: -7.5,-45.5 parent: 1 - - uid: 3487 + - uid: 2382 components: - type: Transform - pos: 7.5,-26.5 + pos: -7.5,-44.5 parent: 1 - - uid: 3488 + - uid: 2383 components: - type: Transform - pos: 7.5,-25.5 + pos: -7.5,-43.5 parent: 1 - - uid: 3490 + - uid: 2384 components: - type: Transform - pos: 7.5,-24.5 + pos: -7.5,-42.5 parent: 1 - - uid: 3491 + - uid: 2385 components: - type: Transform - pos: 7.5,-23.5 + pos: -7.5,-41.5 parent: 1 - - uid: 3503 + - uid: 2386 components: - type: Transform - pos: 10.5,-22.5 + pos: -7.5,-40.5 parent: 1 - - uid: 3504 + - uid: 2387 components: - type: Transform - pos: 10.5,-21.5 + pos: -7.5,-39.5 parent: 1 - - uid: 3506 + - uid: 2390 components: - type: Transform - pos: 7.5,-13.5 + pos: -14.5,-74.5 parent: 1 - - uid: 3507 + - uid: 2409 components: - type: Transform - pos: 7.5,-12.5 + pos: -14.5,-70.5 parent: 1 - - uid: 3508 + - uid: 2410 components: - type: Transform - pos: 7.5,-11.5 + pos: -14.5,-69.5 parent: 1 - - uid: 3509 + - uid: 2411 components: - type: Transform - pos: 6.5,-34.5 + pos: -14.5,-68.5 parent: 1 - - uid: 3510 + - uid: 2441 components: - type: Transform - pos: 6.5,-33.5 + pos: -14.5,-64.5 parent: 1 - - uid: 3512 + - uid: 2446 components: - type: Transform - pos: 6.5,-32.5 + pos: -14.5,-63.5 parent: 1 - - uid: 3513 + - uid: 2448 components: - type: Transform - pos: 6.5,-31.5 + pos: -14.5,-62.5 parent: 1 - - uid: 3516 + - uid: 2449 components: - type: Transform - pos: 6.5,-30.5 + pos: -14.5,-61.5 parent: 1 - - uid: 3517 + - uid: 2457 components: - type: Transform - pos: 6.5,-29.5 + pos: -14.5,-60.5 parent: 1 - - uid: 3519 + - uid: 2458 components: - type: Transform - pos: 6.5,-28.5 + pos: -14.5,-59.5 parent: 1 - - uid: 3520 + - uid: 2459 components: - type: Transform - pos: 6.5,-27.5 + pos: -14.5,-55.5 parent: 1 - - uid: 3521 + - uid: 2460 components: - type: Transform - pos: 6.5,-26.5 + pos: 24.5,-18.5 parent: 1 - - uid: 3524 + - uid: 2461 components: - type: Transform - pos: 6.5,-25.5 + pos: 24.5,-17.5 parent: 1 - - uid: 3526 + - uid: 2462 components: - type: Transform - pos: 6.5,-24.5 + pos: 24.5,-16.5 parent: 1 - - uid: 3527 + - uid: 2467 components: - type: Transform - pos: 6.5,-23.5 + pos: 24.5,-19.5 parent: 1 - - uid: 3529 + - uid: 2471 components: - type: Transform - pos: 10.5,-20.5 + pos: 24.5,-20.5 parent: 1 - - uid: 3530 + - uid: 2473 components: - type: Transform - pos: 10.5,-19.5 + pos: 24.5,-13.5 parent: 1 - - uid: 3531 + - uid: 2476 components: - type: Transform - pos: 10.5,-18.5 + pos: 24.5,-14.5 parent: 1 - - uid: 3534 + - uid: 2477 components: - type: Transform - pos: 10.5,-17.5 + pos: -14.5,-54.5 parent: 1 - - uid: 3535 + - uid: 2479 components: - type: Transform - pos: 10.5,-16.5 + pos: 24.5,-27.5 parent: 1 - - uid: 3536 + - uid: 2481 components: - type: Transform - pos: 10.5,-15.5 + pos: 24.5,-26.5 parent: 1 - - uid: 3537 + - uid: 2482 components: - type: Transform - pos: 10.5,-14.5 + pos: 24.5,-25.5 parent: 1 - - uid: 3538 + - uid: 2483 components: - type: Transform - pos: 9.5,-22.5 + pos: 24.5,-12.5 parent: 1 - - uid: 3539 + - uid: 2484 components: - type: Transform - pos: 9.5,-21.5 + pos: 24.5,-11.5 parent: 1 - - uid: 3540 + - uid: 2485 components: - type: Transform - pos: 6.5,-13.5 + pos: 24.5,-30.5 parent: 1 - - uid: 3541 + - uid: 2486 components: - type: Transform - pos: 6.5,-12.5 + pos: -15.5,-74.5 parent: 1 - - uid: 3542 + - uid: 2488 components: - type: Transform - pos: 6.5,-11.5 + pos: 24.5,-29.5 parent: 1 - - uid: 3543 + - uid: 2489 components: - type: Transform - pos: 5.5,-34.5 + pos: 24.5,-28.5 parent: 1 - - uid: 3544 + - uid: 2490 components: - type: Transform - pos: 5.5,-33.5 + pos: 24.5,-21.5 parent: 1 - - uid: 3545 + - uid: 2491 components: - type: Transform - pos: 5.5,-32.5 + pos: 24.5,-22.5 parent: 1 - - uid: 3546 + - uid: 2492 components: - type: Transform - pos: 5.5,-31.5 + pos: -15.5,-73.5 parent: 1 - - uid: 3547 + - uid: 2493 components: - type: Transform - pos: 5.5,-30.5 + pos: -15.5,-65.5 parent: 1 - - uid: 3548 + - uid: 2494 components: - type: Transform - pos: 5.5,-29.5 + pos: -15.5,-64.5 parent: 1 - - uid: 3549 + - uid: 2496 components: - type: Transform - pos: 5.5,-28.5 + pos: -15.5,-63.5 parent: 1 - - uid: 3550 + - uid: 2504 components: - type: Transform - pos: 5.5,-27.5 + pos: -15.5,-62.5 parent: 1 - - uid: 3551 + - uid: 2505 components: - type: Transform - pos: 5.5,-26.5 + pos: -11.5,-36.5 parent: 1 - - uid: 3552 + - uid: 2506 components: - type: Transform - pos: 5.5,-25.5 + pos: -11.5,-35.5 parent: 1 - - uid: 3553 + - uid: 2507 components: - type: Transform - pos: 5.5,-24.5 + pos: -15.5,-61.5 parent: 1 - - uid: 3554 + - uid: 2508 components: - type: Transform - pos: 5.5,-23.5 + pos: -15.5,-56.5 parent: 1 - - uid: 3555 + - uid: 2509 components: - type: Transform - pos: 6.5,-20.5 + pos: -16.5,-74.5 parent: 1 - - uid: 3556 + - uid: 2510 components: - type: Transform - pos: 4.5,-20.5 + pos: -16.5,-64.5 parent: 1 - - uid: 3557 + - uid: 2512 components: - type: Transform - pos: 6.5,-19.5 + pos: -16.5,-63.5 parent: 1 - - uid: 3558 + - uid: 2513 components: - type: Transform - pos: 9.5,-17.5 + pos: -16.5,-62.5 parent: 1 - - uid: 3559 + - uid: 2514 components: - type: Transform - pos: 9.5,-16.5 + pos: -16.5,-57.5 parent: 1 - - uid: 3560 + - uid: 2515 components: - type: Transform - pos: 9.5,-15.5 + pos: -16.5,-56.5 parent: 1 - - uid: 3561 + - uid: 2516 components: - type: Transform - pos: 9.5,-14.5 + pos: 47.5,-128.5 parent: 1 - - uid: 3562 + - uid: 2517 components: - type: Transform - pos: 8.5,-22.5 + pos: -17.5,-65.5 parent: 1 - - uid: 3563 + - uid: 2518 components: - type: Transform - pos: 6.5,-21.5 + pos: -12.5,-36.5 parent: 1 - - uid: 4008 + - uid: 2520 components: - type: Transform - pos: 4.5,-19.5 + pos: -12.5,-35.5 parent: 1 - - uid: 4012 + - uid: 2523 components: - type: Transform - pos: 5.5,-13.5 + pos: -17.5,-64.5 parent: 1 - - uid: 4013 + - uid: 2525 components: - type: Transform - pos: 5.5,-12.5 + pos: -17.5,-63.5 parent: 1 - - uid: 4014 + - uid: 2526 components: - type: Transform - pos: 5.5,-11.5 + pos: -13.5,-45.5 parent: 1 - - uid: 4015 + - uid: 2528 components: - type: Transform - pos: 4.5,-34.5 + pos: -13.5,-44.5 parent: 1 - - uid: 4016 + - uid: 2529 components: - type: Transform - pos: 4.5,-33.5 + pos: -13.5,-43.5 parent: 1 - - uid: 4017 + - uid: 2530 components: - type: Transform - pos: 4.5,-32.5 + pos: -13.5,-42.5 parent: 1 - - uid: 4018 + - uid: 2531 components: - type: Transform - pos: 4.5,-31.5 + pos: -13.5,-41.5 parent: 1 - - uid: 4019 + - uid: 2532 components: - type: Transform - pos: 4.5,-30.5 + pos: -13.5,-40.5 parent: 1 - - uid: 4020 + - uid: 2533 components: - type: Transform - pos: 4.5,-29.5 + pos: -13.5,-39.5 parent: 1 - - uid: 4021 + - uid: 2534 components: - type: Transform - pos: 4.5,-28.5 + pos: -13.5,-38.5 parent: 1 - - uid: 4022 + - uid: 2535 components: - type: Transform - pos: 4.5,-27.5 + pos: -13.5,-37.5 parent: 1 - - uid: 4023 + - uid: 2538 components: - type: Transform - pos: 4.5,-26.5 + pos: -13.5,-36.5 parent: 1 - - uid: 4024 + - uid: 2539 components: - type: Transform - pos: 4.5,-25.5 + pos: -13.5,-35.5 parent: 1 - - uid: 4025 + - uid: 2540 components: - type: Transform - pos: 4.5,-24.5 + pos: -17.5,-58.5 parent: 1 - - uid: 4026 + - uid: 2547 components: - type: Transform - pos: 4.5,-23.5 + pos: -17.5,-57.5 parent: 1 - - uid: 4027 + - uid: 2549 components: - type: Transform - pos: 9.5,-20.5 + pos: -14.5,-45.5 parent: 1 - - uid: 4028 + - uid: 2550 components: - type: Transform - pos: 4.5,-21.5 + pos: -14.5,-44.5 parent: 1 - - uid: 4029 + - uid: 2552 components: - type: Transform - pos: 6.5,-18.5 + pos: -14.5,-43.5 parent: 1 - - uid: 4030 + - uid: 2553 components: - type: Transform - pos: 8.5,-16.5 + pos: -14.5,-42.5 parent: 1 - - uid: 4031 + - uid: 2554 components: - type: Transform - pos: 8.5,-15.5 + pos: -14.5,-41.5 parent: 1 - - uid: 4032 + - uid: 2555 components: - type: Transform - pos: 8.5,-14.5 + pos: -14.5,-40.5 parent: 1 - - uid: 4033 + - uid: 2556 components: - type: Transform - pos: 3.5,-19.5 + pos: -14.5,-39.5 parent: 1 - - uid: 4034 + - uid: 2557 components: - type: Transform - pos: 3.5,-18.5 + pos: -14.5,-38.5 parent: 1 - - uid: 4040 + - uid: 2558 components: - type: Transform - pos: 3.5,-17.5 + pos: -14.5,-37.5 parent: 1 - - uid: 4041 + - uid: 2559 components: - type: Transform - pos: 4.5,-13.5 + pos: -14.5,-36.5 parent: 1 - - uid: 4042 + - uid: 2560 components: - type: Transform - pos: 4.5,-12.5 + pos: -14.5,-35.5 parent: 1 - - uid: 4043 + - uid: 2569 components: - type: Transform - pos: 4.5,-11.5 + pos: -17.5,-56.5 parent: 1 - - uid: 4044 + - uid: 2571 components: - type: Transform - pos: 3.5,-34.5 + pos: -18.5,-67.5 parent: 1 - - uid: 4045 + - uid: 2572 components: - type: Transform - pos: 3.5,-33.5 + pos: -18.5,-66.5 parent: 1 - - uid: 4046 + - uid: 2607 components: - type: Transform - pos: 3.5,-32.5 + pos: -20.5,-31.5 parent: 1 - - uid: 4047 + - uid: 2618 components: - type: Transform - pos: 3.5,-31.5 + pos: 19.5,-24.5 parent: 1 - - uid: 4048 + - uid: 2623 components: - type: Transform - pos: 3.5,-30.5 + pos: -19.5,-31.5 parent: 1 - - uid: 4049 + - uid: 2635 components: - type: Transform - pos: 3.5,-29.5 + pos: 19.5,-23.5 parent: 1 - - uid: 4050 + - uid: 2638 components: - type: Transform - pos: 3.5,-28.5 + pos: -18.5,-65.5 parent: 1 - - uid: 4051 + - uid: 2640 components: - type: Transform - pos: 3.5,-27.5 + pos: -15.5,-22.5 parent: 1 - - uid: 4052 + - uid: 2642 components: - type: Transform - pos: 3.5,-26.5 + pos: -15.5,-25.5 parent: 1 - - uid: 4053 + - uid: 2643 components: - type: Transform - pos: 3.5,-25.5 + pos: -15.5,-27.5 parent: 1 - - uid: 4054 + - uid: 2644 components: - type: Transform - pos: 3.5,-24.5 + pos: -15.5,-28.5 parent: 1 - - uid: 4055 + - uid: 2647 components: - type: Transform - pos: 3.5,-23.5 + pos: -15.5,-32.5 parent: 1 - - uid: 4056 + - uid: 2648 components: - type: Transform - pos: 3.5,-14.5 + pos: -15.5,-33.5 parent: 1 - - uid: 4057 + - uid: 2649 components: - type: Transform - pos: 9.5,-19.5 + pos: 19.5,-22.5 parent: 1 - - uid: 4058 + - uid: 2650 components: - type: Transform - pos: 4.5,-22.5 + pos: -18.5,-64.5 parent: 1 - - uid: 4059 + - uid: 2651 components: - type: Transform - pos: 5.5,-15.5 + pos: -15.5,-34.5 parent: 1 - - uid: 4061 + - uid: 2653 components: - type: Transform - pos: 6.5,-17.5 + pos: -16.5,-22.5 parent: 1 - - uid: 4062 + - uid: 2654 components: - type: Transform - pos: 7.5,-14.5 + pos: -16.5,-25.5 parent: 1 - - uid: 4069 + - uid: 2657 components: - type: Transform - pos: 3.5,-20.5 + pos: -16.5,-32.5 parent: 1 - - uid: 4070 + - uid: 2659 components: - type: Transform - pos: 7.5,-21.5 + pos: -17.5,-22.5 parent: 1 - - uid: 4071 + - uid: 2660 components: - type: Transform - pos: 3.5,-16.5 + pos: -17.5,-23.5 parent: 1 - - uid: 4072 + - uid: 2661 components: - type: Transform - pos: 3.5,-13.5 + pos: -17.5,-25.5 parent: 1 - - uid: 4073 + - uid: 2664 components: - type: Transform - pos: 3.5,-12.5 + pos: 19.5,-21.5 parent: 1 - - uid: 4075 + - uid: 2665 components: - type: Transform - pos: 3.5,-11.5 + pos: -17.5,-32.5 parent: 1 - - uid: 4076 + - uid: 2667 components: - type: Transform - pos: 2.5,-33.5 + pos: -18.5,-22.5 parent: 1 - - uid: 4077 + - uid: 2668 components: - type: Transform - pos: 2.5,-32.5 + pos: -18.5,-23.5 parent: 1 - - uid: 4078 + - uid: 2669 components: - type: Transform - pos: 2.5,-31.5 + pos: -18.5,-25.5 parent: 1 - - uid: 4079 + - uid: 2672 components: - type: Transform - pos: 2.5,-30.5 + pos: -18.5,-32.5 parent: 1 - - uid: 4080 + - uid: 2673 components: - type: Transform - pos: 2.5,-29.5 + pos: -18.5,-33.5 parent: 1 - - uid: 4081 + - uid: 2674 components: - type: Transform - pos: 2.5,-28.5 + pos: -18.5,-34.5 parent: 1 - - uid: 4082 + - uid: 2676 components: - type: Transform - pos: 2.5,-27.5 + pos: -19.5,-22.5 parent: 1 - - uid: 4083 + - uid: 2677 components: - type: Transform - pos: 2.5,-26.5 + pos: -19.5,-24.5 parent: 1 - - uid: 4084 + - uid: 2678 components: - type: Transform - pos: 2.5,-25.5 + pos: -19.5,-25.5 parent: 1 - - uid: 4088 + - uid: 2680 components: - type: Transform - pos: 2.5,-24.5 + pos: 19.5,-20.5 parent: 1 - - uid: 4094 + - uid: 2684 components: - type: Transform - pos: 2.5,-23.5 + pos: -20.5,-22.5 parent: 1 - - uid: 4095 + - uid: 2685 components: - type: Transform - pos: 2.5,-22.5 + pos: -20.5,-24.5 parent: 1 - - uid: 4096 + - uid: 2688 components: - type: Transform - pos: 2.5,-21.5 + pos: -20.5,-30.5 parent: 1 - - uid: 4097 + - uid: 2689 components: - type: Transform - pos: 2.5,-20.5 + pos: -20.5,-35.5 parent: 1 - - uid: 4098 + - uid: 2690 components: - type: Transform - pos: 9.5,-18.5 + pos: -20.5,-37.5 parent: 1 - - uid: 4103 + - uid: 2691 components: - type: Transform - pos: 5.5,-16.5 + pos: -14.5,-29.5 parent: 1 - - uid: 4104 + - uid: 2692 components: - type: Transform - pos: 6.5,-14.5 + pos: -14.5,-28.5 parent: 1 - - uid: 4105 + - uid: 2693 components: - type: Transform - pos: 3.5,-21.5 + pos: -14.5,-27.5 parent: 1 - - uid: 4108 + - uid: 2694 components: - type: Transform - pos: 3.5,-22.5 + pos: -14.5,-26.5 parent: 1 - - uid: 4109 + - uid: 2695 components: - type: Transform - pos: 7.5,-20.5 + pos: -14.5,-25.5 parent: 1 - - uid: 4110 + - uid: 2696 components: - type: Transform - pos: 2.5,-13.5 + pos: -14.5,-24.5 parent: 1 - - uid: 4111 + - uid: 2697 components: - type: Transform - pos: 2.5,-12.5 + pos: -14.5,-23.5 parent: 1 - - uid: 4114 + - uid: 2698 components: - type: Transform - pos: 2.5,-11.5 + pos: -14.5,-22.5 parent: 1 - - uid: 4121 + - uid: 2699 components: - type: Transform - pos: 22.5,-76.5 + pos: -14.5,-21.5 parent: 1 - - uid: 4122 + - uid: 2700 components: - type: Transform - pos: 22.5,-8.5 + pos: -20.5,-38.5 parent: 1 - - uid: 4123 + - uid: 2701 components: - type: Transform - pos: 22.5,-7.5 + pos: -14.5,-34.5 parent: 1 - - uid: 4124 + - uid: 2702 components: - type: Transform - pos: 22.5,-6.5 + pos: -14.5,-33.5 parent: 1 - - uid: 4128 + - uid: 2703 components: - type: Transform - pos: 22.5,-5.5 + pos: -20.5,-40.5 parent: 1 - - uid: 4129 + - uid: 2704 components: - type: Transform - pos: 22.5,-4.5 + pos: -20.5,-43.5 parent: 1 - - uid: 4130 + - uid: 2705 components: - type: Transform - pos: 22.5,-3.5 + pos: -14.5,-30.5 parent: 1 - - uid: 4131 + - uid: 2708 components: - type: Transform - pos: 22.5,-2.5 + pos: -18.5,-63.5 parent: 1 - - uid: 4136 + - uid: 2716 components: - type: Transform - pos: 22.5,-1.5 + pos: -13.5,-34.5 parent: 1 - - uid: 4137 + - uid: 2717 components: - type: Transform - pos: 22.5,-0.5 + pos: -20.5,-45.5 parent: 1 - - uid: 4141 + - uid: 2718 components: - type: Transform - pos: 22.5,-10.5 + pos: -13.5,-32.5 parent: 1 - - uid: 4148 + - uid: 2719 components: - type: Transform - pos: 22.5,-9.5 + pos: -13.5,-31.5 parent: 1 - - uid: 4149 + - uid: 2720 components: - type: Transform - pos: 22.5,0.5 + pos: -13.5,-30.5 parent: 1 - - uid: 4150 + - uid: 2721 components: - type: Transform - pos: 22.5,1.5 + pos: -13.5,-29.5 parent: 1 - - uid: 4155 + - uid: 2722 components: - type: Transform - pos: 22.5,2.5 + pos: -13.5,-28.5 parent: 1 - - uid: 4156 + - uid: 2723 components: - type: Transform - pos: 22.5,3.5 + pos: -13.5,-27.5 parent: 1 - - uid: 4157 + - uid: 2724 components: - type: Transform - pos: 22.5,4.5 + pos: -13.5,-26.5 parent: 1 - - uid: 4158 + - uid: 2725 components: - type: Transform - pos: 22.5,5.5 + pos: -13.5,-25.5 parent: 1 - - uid: 4159 + - uid: 2726 components: - type: Transform - pos: 22.5,6.5 + pos: -13.5,-24.5 parent: 1 - - uid: 4162 + - uid: 2727 components: - type: Transform - pos: 22.5,7.5 + pos: -13.5,-23.5 parent: 1 - - uid: 4163 + - uid: 2728 components: - type: Transform - pos: 22.5,8.5 + pos: -13.5,-22.5 parent: 1 - - uid: 4164 + - uid: 2729 components: - type: Transform - pos: 22.5,9.5 + pos: -13.5,-21.5 parent: 1 - - uid: 4167 + - uid: 2740 components: - type: Transform - pos: 22.5,10.5 + pos: -20.5,-48.5 parent: 1 - - uid: 4168 + - uid: 2741 components: - type: Transform - pos: 22.5,11.5 + pos: -12.5,-33.5 parent: 1 - - uid: 4175 + - uid: 2742 components: - type: Transform - pos: 22.5,12.5 + pos: -12.5,-32.5 parent: 1 - - uid: 4176 + - uid: 2743 components: - type: Transform - pos: 22.5,13.5 + pos: -12.5,-31.5 parent: 1 - - uid: 4180 + - uid: 2744 components: - type: Transform - pos: 22.5,14.5 + pos: -12.5,-30.5 parent: 1 - - uid: 4181 + - uid: 2745 components: - type: Transform - pos: 22.5,15.5 + pos: -12.5,-29.5 parent: 1 - - uid: 4182 + - uid: 2746 components: - type: Transform - pos: 22.5,16.5 + pos: -12.5,-28.5 parent: 1 - - uid: 4183 + - uid: 2747 components: - type: Transform - pos: 22.5,17.5 + pos: -12.5,-27.5 parent: 1 - - uid: 4184 + - uid: 2748 components: - type: Transform - pos: 22.5,18.5 + pos: -12.5,-26.5 parent: 1 - - uid: 4185 + - uid: 2749 components: - type: Transform - pos: 22.5,19.5 + pos: -12.5,-25.5 parent: 1 - - uid: 4186 + - uid: 2750 components: - type: Transform - pos: 22.5,20.5 + pos: -12.5,-24.5 parent: 1 - - uid: 4187 + - uid: 2751 components: - type: Transform - pos: 22.5,21.5 + pos: -12.5,-23.5 parent: 1 - - uid: 4188 + - uid: 2752 components: - type: Transform - pos: 22.5,22.5 + pos: -12.5,-22.5 parent: 1 - - uid: 4189 + - uid: 2753 components: - type: Transform - pos: 22.5,23.5 + pos: -12.5,-21.5 parent: 1 - - uid: 4190 + - uid: 2764 components: - type: Transform - pos: 22.5,24.5 + pos: -11.5,-34.5 parent: 1 - - uid: 4191 + - uid: 2765 components: - type: Transform - pos: 22.5,25.5 + pos: -11.5,-33.5 parent: 1 - - uid: 4192 + - uid: 2766 components: - type: Transform - pos: 22.5,26.5 + pos: -11.5,-32.5 parent: 1 - - uid: 4193 + - uid: 2767 components: - type: Transform - pos: 22.5,27.5 + pos: -11.5,-31.5 parent: 1 - - uid: 4194 + - uid: 2768 components: - type: Transform - pos: 22.5,28.5 + pos: -11.5,-30.5 parent: 1 - - uid: 4195 + - uid: 2769 components: - type: Transform - pos: 22.5,29.5 + pos: -11.5,-29.5 parent: 1 - - uid: 4196 + - uid: 2770 components: - type: Transform - pos: 22.5,30.5 + pos: -11.5,-28.5 parent: 1 - - uid: 4197 + - uid: 2771 components: - type: Transform - pos: 22.5,31.5 + pos: -11.5,-27.5 parent: 1 - - uid: 4198 + - uid: 2772 components: - type: Transform - pos: 22.5,32.5 + pos: -11.5,-26.5 parent: 1 - - uid: 4199 + - uid: 2773 components: - type: Transform - pos: 22.5,33.5 + pos: -11.5,-25.5 parent: 1 - - uid: 4200 + - uid: 2774 components: - type: Transform - pos: 22.5,34.5 + pos: -11.5,-24.5 parent: 1 - - uid: 4201 + - uid: 2775 components: - type: Transform - pos: 21.5,-10.5 + pos: -11.5,-23.5 parent: 1 - - uid: 4202 + - uid: 2776 components: - type: Transform - pos: 21.5,-9.5 + pos: -11.5,-22.5 parent: 1 - - uid: 4203 + - uid: 2777 components: - type: Transform - pos: 21.5,-8.5 + pos: -11.5,-21.5 parent: 1 - - uid: 4204 + - uid: 2788 components: - type: Transform - pos: 21.5,-7.5 + pos: -10.5,-33.5 parent: 1 - - uid: 4205 + - uid: 2789 components: - type: Transform - pos: 21.5,-6.5 + pos: -10.5,-32.5 parent: 1 - - uid: 4206 + - uid: 2790 components: - type: Transform - pos: 21.5,-5.5 + pos: -10.5,-31.5 parent: 1 - - uid: 4207 + - uid: 2791 components: - type: Transform - pos: 21.5,-4.5 + pos: -10.5,-30.5 parent: 1 - - uid: 4208 + - uid: 2792 components: - type: Transform - pos: 21.5,-3.5 + pos: -10.5,-29.5 parent: 1 - - uid: 4209 + - uid: 2793 components: - type: Transform - pos: 21.5,-2.5 + pos: -10.5,-28.5 parent: 1 - - uid: 4210 + - uid: 2794 components: - type: Transform - pos: 21.5,-1.5 + pos: -10.5,-27.5 parent: 1 - - uid: 4211 + - uid: 2795 components: - type: Transform - pos: 21.5,-0.5 + pos: -10.5,-26.5 parent: 1 - - uid: 4212 + - uid: 2796 components: - type: Transform - pos: 21.5,0.5 + pos: -10.5,-25.5 parent: 1 - - uid: 4213 + - uid: 2797 components: - type: Transform - pos: 21.5,7.5 + pos: -10.5,-34.5 parent: 1 - - uid: 4214 + - uid: 2798 components: - type: Transform - pos: 21.5,8.5 + pos: -10.5,-24.5 parent: 1 - - uid: 4215 + - uid: 2799 components: - type: Transform - pos: 21.5,9.5 + pos: -10.5,-23.5 parent: 1 - - uid: 4216 + - uid: 2800 components: - type: Transform - pos: 21.5,10.5 + pos: -10.5,-22.5 parent: 1 - - uid: 4217 + - uid: 2801 components: - type: Transform - pos: 21.5,11.5 + pos: -10.5,-21.5 parent: 1 - - uid: 4218 + - uid: 2802 components: - type: Transform - pos: 21.5,12.5 + pos: -18.5,-62.5 parent: 1 - - uid: 4219 + - uid: 2803 components: - type: Transform - pos: 21.5,13.5 + pos: -18.5,-60.5 parent: 1 - - uid: 4220 + - uid: 2804 components: - type: Transform - pos: 21.5,14.5 + pos: -18.5,-59.5 parent: 1 - - uid: 4221 + - uid: 2807 components: - type: Transform - pos: 21.5,15.5 + pos: -20.5,-20.5 parent: 1 - - uid: 4222 + - uid: 2808 components: - type: Transform - pos: 21.5,16.5 + pos: -18.5,-56.5 parent: 1 - - uid: 4223 + - uid: 2809 components: - type: Transform - pos: 21.5,17.5 + pos: -18.5,-58.5 parent: 1 - - uid: 4224 + - uid: 2810 components: - type: Transform - pos: 21.5,18.5 + pos: -18.5,-57.5 parent: 1 - - uid: 4225 + - uid: 2811 components: - type: Transform - pos: 21.5,19.5 + pos: -13.5,-55.5 parent: 1 - - uid: 4226 + - uid: 2812 components: - type: Transform - pos: 21.5,20.5 + pos: -9.5,-34.5 parent: 1 - - uid: 4227 + - uid: 2813 components: - type: Transform - pos: 21.5,21.5 + pos: -9.5,-33.5 parent: 1 - - uid: 4228 + - uid: 2814 components: - type: Transform - pos: 21.5,22.5 + pos: -9.5,-32.5 parent: 1 - - uid: 4229 + - uid: 2815 components: - type: Transform - pos: 21.5,23.5 + pos: -9.5,-31.5 parent: 1 - - uid: 4230 + - uid: 2816 components: - type: Transform - pos: 21.5,24.5 + pos: -9.5,-30.5 parent: 1 - - uid: 4231 + - uid: 2817 components: - type: Transform - pos: 21.5,25.5 + pos: -9.5,-29.5 parent: 1 - - uid: 4232 + - uid: 2818 components: - type: Transform - pos: 21.5,26.5 + pos: -9.5,-28.5 parent: 1 - - uid: 4233 + - uid: 2819 components: - type: Transform - pos: 21.5,27.5 + pos: -9.5,-27.5 parent: 1 - - uid: 4234 + - uid: 2820 components: - type: Transform - pos: 21.5,28.5 + pos: -9.5,-26.5 parent: 1 - - uid: 4235 + - uid: 2821 components: - type: Transform - pos: 21.5,29.5 + pos: -9.5,-25.5 parent: 1 - - uid: 4236 + - uid: 2822 components: - type: Transform - pos: 21.5,30.5 + pos: -9.5,-24.5 parent: 1 - - uid: 4237 + - uid: 2823 components: - type: Transform - pos: 21.5,31.5 + pos: -9.5,-23.5 parent: 1 - - uid: 4238 + - uid: 2824 components: - type: Transform - pos: 21.5,32.5 + pos: -9.5,-22.5 parent: 1 - - uid: 4239 + - uid: 2825 components: - type: Transform - pos: 21.5,33.5 + pos: -9.5,-21.5 parent: 1 - - uid: 4240 + - uid: 2826 components: - type: Transform - pos: 21.5,34.5 + pos: -19.5,-72.5 parent: 1 - - uid: 4241 + - uid: 2827 components: - type: Transform - pos: 20.5,-10.5 + pos: -19.5,-67.5 parent: 1 - - uid: 4242 + - uid: 2828 components: - type: Transform - pos: 20.5,-9.5 + pos: -19.5,-66.5 parent: 1 - - uid: 4243 + - uid: 2829 components: - type: Transform - pos: 20.5,-8.5 + pos: -19.5,-65.5 parent: 1 - - uid: 4244 + - uid: 2830 components: - type: Transform - pos: 20.5,-7.5 + pos: -21.5,-20.5 parent: 1 - - uid: 4245 + - uid: 2831 components: - type: Transform - pos: 20.5,-6.5 + pos: -19.5,-20.5 parent: 1 - - uid: 4246 + - uid: 2832 components: - type: Transform - pos: 20.5,-5.5 + pos: -19.5,-64.5 parent: 1 - - uid: 4247 + - uid: 2834 components: - type: Transform - pos: 20.5,-4.5 + pos: -19.5,-63.5 parent: 1 - - uid: 4248 + - uid: 2835 components: - type: Transform - pos: 20.5,-3.5 + pos: -19.5,-62.5 parent: 1 - - uid: 4249 + - uid: 2836 components: - type: Transform - pos: 20.5,-2.5 + pos: -19.5,-61.5 parent: 1 - - uid: 4250 + - uid: 2837 components: - type: Transform - pos: 20.5,-1.5 + pos: -19.5,-60.5 parent: 1 - - uid: 4251 + - uid: 2838 components: - type: Transform - pos: 20.5,-0.5 + pos: -19.5,-59.5 parent: 1 - - uid: 4252 + - uid: 2839 components: - type: Transform - pos: 20.5,0.5 + pos: -19.5,-58.5 parent: 1 - - uid: 4253 + - uid: 2840 components: - type: Transform - pos: 20.5,1.5 + pos: -19.5,-57.5 parent: 1 - - uid: 4254 + - uid: 2841 components: - type: Transform - pos: 20.5,2.5 + pos: -19.5,-56.5 parent: 1 - - uid: 4255 + - uid: 2842 components: - type: Transform - pos: 20.5,3.5 + pos: -14.5,-56.5 parent: 1 - - uid: 4256 + - uid: 2843 components: - type: Transform - pos: 20.5,4.5 + pos: -8.5,-27.5 parent: 1 - - uid: 4257 + - uid: 2844 components: - type: Transform - pos: 20.5,5.5 + pos: -8.5,-26.5 parent: 1 - - uid: 4258 + - uid: 2845 components: - type: Transform - pos: 20.5,6.5 + pos: -8.5,-25.5 parent: 1 - - uid: 4259 + - uid: 2846 components: - type: Transform - pos: 20.5,7.5 + pos: -8.5,-24.5 parent: 1 - - uid: 4260 + - uid: 2847 components: - type: Transform - pos: 20.5,8.5 + pos: -8.5,-23.5 parent: 1 - - uid: 4261 + - uid: 2848 components: - type: Transform - pos: 20.5,9.5 + pos: -8.5,-22.5 parent: 1 - - uid: 4262 + - uid: 2849 components: - type: Transform - pos: 20.5,10.5 + pos: -8.5,-21.5 parent: 1 - - uid: 4263 + - uid: 2850 components: - type: Transform - pos: 20.5,11.5 + pos: -13.5,-54.5 parent: 1 - - uid: 4264 + - uid: 2851 components: - type: Transform - pos: 20.5,12.5 + pos: -20.5,-72.5 parent: 1 - - uid: 4271 + - uid: 2861 components: - type: Transform - pos: 20.5,13.5 + pos: 24.5,-0.5 parent: 1 - - uid: 4272 + - uid: 2862 components: - type: Transform - pos: 20.5,14.5 + pos: 24.5,0.5 parent: 1 - - uid: 4273 + - uid: 2867 components: - type: Transform - pos: 20.5,15.5 + pos: -7.5,-27.5 parent: 1 - - uid: 4274 + - uid: 2868 components: - type: Transform - pos: 20.5,16.5 + pos: -7.5,-26.5 parent: 1 - - uid: 4275 + - uid: 2869 components: - type: Transform - pos: 20.5,19.5 + pos: -7.5,-25.5 parent: 1 - - uid: 4276 + - uid: 2870 components: - type: Transform - pos: 20.5,20.5 + pos: -7.5,-24.5 parent: 1 - - uid: 4277 + - uid: 2871 components: - type: Transform - pos: 20.5,21.5 + pos: -7.5,-23.5 parent: 1 - - uid: 4278 + - uid: 2872 components: - type: Transform - pos: 20.5,22.5 + pos: -7.5,-22.5 parent: 1 - - uid: 4279 + - uid: 2873 components: - type: Transform - pos: 20.5,23.5 + pos: -7.5,-21.5 parent: 1 - - uid: 4280 + - uid: 2883 components: - type: Transform - pos: 20.5,24.5 + pos: -19.5,-35.5 parent: 1 - - uid: 4281 + - uid: 2885 components: - type: Transform - pos: 20.5,25.5 + pos: -6.5,-27.5 parent: 1 - - uid: 4282 + - uid: 2886 components: - type: Transform - pos: 20.5,26.5 + pos: -6.5,-26.5 parent: 1 - - uid: 4283 + - uid: 2887 components: - type: Transform - pos: 20.5,27.5 + pos: -6.5,-25.5 parent: 1 - - uid: 4284 + - uid: 2888 components: - type: Transform - pos: 20.5,17.5 + pos: -6.5,-24.5 parent: 1 - - uid: 4285 + - uid: 2889 components: - type: Transform - pos: 20.5,18.5 + pos: -6.5,-23.5 parent: 1 - - uid: 4288 + - uid: 2890 components: - type: Transform - pos: 20.5,28.5 + pos: -6.5,-22.5 parent: 1 - - uid: 4289 + - uid: 2891 components: - type: Transform - pos: 20.5,29.5 + pos: -6.5,-21.5 parent: 1 - - uid: 4290 + - uid: 2898 components: - type: Transform - pos: 20.5,30.5 + pos: 24.5,1.5 parent: 1 - - uid: 4291 + - uid: 2899 components: - type: Transform - pos: 20.5,31.5 + pos: 24.5,-1.5 parent: 1 - - uid: 4292 + - uid: 2901 components: - type: Transform - pos: 20.5,32.5 + pos: 24.5,4.5 parent: 1 - - uid: 4293 + - uid: 2902 components: - type: Transform - pos: 20.5,33.5 + pos: 24.5,14.5 parent: 1 - - uid: 4295 + - uid: 2915 components: - type: Transform - pos: 20.5,34.5 + pos: 24.5,5.5 parent: 1 - - uid: 4296 + - uid: 2917 components: - type: Transform - pos: 19.5,-10.5 + pos: 24.5,6.5 parent: 1 - - uid: 4301 + - uid: 2918 components: - type: Transform - pos: 19.5,-9.5 + pos: 24.5,18.5 parent: 1 - - uid: 4302 + - uid: 2923 components: - type: Transform - pos: 19.5,-8.5 + pos: -5.5,-27.5 parent: 1 - - uid: 4303 + - uid: 2939 components: - type: Transform - pos: 19.5,-7.5 + pos: -5.5,-24.5 parent: 1 - - uid: 4305 + - uid: 2941 components: - type: Transform - pos: 19.5,-6.5 + pos: -5.5,-23.5 parent: 1 - - uid: 4306 + - uid: 2942 components: - type: Transform - pos: 19.5,-5.5 + pos: -5.5,-22.5 parent: 1 - - uid: 4307 + - uid: 2943 components: - type: Transform - pos: 19.5,-4.5 + pos: -5.5,-21.5 parent: 1 - - uid: 4308 + - uid: 2954 components: - type: Transform - pos: 19.5,-3.5 + pos: -5.5,-26.5 parent: 1 - - uid: 4309 + - uid: 2955 components: - type: Transform - pos: 19.5,-2.5 + pos: -5.5,-25.5 parent: 1 - - uid: 4310 + - uid: 2959 components: - type: Transform - pos: 19.5,-1.5 + pos: -7.5,-38.5 parent: 1 - - uid: 4311 + - uid: 2960 components: - type: Transform - pos: 19.5,-0.5 + pos: -7.5,-37.5 parent: 1 - - uid: 4318 + - uid: 2961 components: - type: Transform - pos: 19.5,0.5 + pos: -7.5,-36.5 parent: 1 - - uid: 4328 + - uid: 2963 components: - type: Transform - pos: 19.5,1.5 + pos: -8.5,-48.5 parent: 1 - - uid: 4329 + - uid: 2965 components: - type: Transform - pos: 19.5,2.5 + pos: -8.5,-47.5 parent: 1 - - uid: 4330 + - uid: 2966 components: - type: Transform - pos: 19.5,3.5 + pos: -8.5,-46.5 parent: 1 - - uid: 4331 + - uid: 2967 components: - type: Transform - pos: 19.5,4.5 + pos: 24.5,17.5 parent: 1 - - uid: 4332 + - uid: 2969 components: - type: Transform - pos: 19.5,5.5 + pos: 24.5,24.5 parent: 1 - - uid: 4333 + - uid: 2970 components: - type: Transform - pos: 19.5,6.5 + pos: 24.5,19.5 parent: 1 - - uid: 4334 + - uid: 2971 components: - type: Transform - pos: 19.5,7.5 + pos: 24.5,21.5 parent: 1 - - uid: 4335 + - uid: 2974 components: - type: Transform - pos: 19.5,8.5 + pos: -8.5,-45.5 parent: 1 - - uid: 4336 + - uid: 2975 components: - type: Transform - pos: 19.5,9.5 + pos: -4.5,-27.5 parent: 1 - - uid: 4337 + - uid: 2976 components: - type: Transform - pos: 19.5,10.5 + pos: -4.5,-26.5 parent: 1 - - uid: 4338 + - uid: 2978 components: - type: Transform - pos: 19.5,11.5 + pos: -4.5,-25.5 parent: 1 - - uid: 4339 + - uid: 2979 components: - type: Transform - pos: 19.5,12.5 + pos: -4.5,-24.5 parent: 1 - - uid: 4341 + - uid: 2981 components: - type: Transform - pos: 19.5,13.5 + pos: -4.5,-23.5 parent: 1 - - uid: 4342 + - uid: 2985 components: - type: Transform - pos: 19.5,14.5 + pos: -4.5,-22.5 parent: 1 - - uid: 4343 + - uid: 2987 components: - type: Transform - pos: 19.5,15.5 + pos: -4.5,-21.5 parent: 1 - - uid: 4344 + - uid: 2989 components: - type: Transform - pos: 19.5,16.5 + pos: -4.5,-20.5 parent: 1 - - uid: 4345 + - uid: 2990 components: - type: Transform - pos: 19.5,17.5 + pos: -8.5,-44.5 parent: 1 - - uid: 4346 + - uid: 2991 components: - type: Transform - pos: 19.5,18.5 + pos: -8.5,-40.5 parent: 1 - - uid: 4347 + - uid: 2993 components: - type: Transform - pos: 19.5,19.5 + pos: -7.5,-32.5 parent: 1 - - uid: 4348 + - uid: 2994 components: - type: Transform - pos: 19.5,20.5 + pos: -8.5,-39.5 parent: 1 - - uid: 4349 + - uid: 2995 components: - type: Transform - pos: 19.5,21.5 + pos: -8.5,-38.5 parent: 1 - - uid: 4350 + - uid: 2997 components: - type: Transform - pos: 19.5,22.5 + pos: -8.5,-37.5 parent: 1 - - uid: 4351 + - uid: 3000 components: - type: Transform - pos: 19.5,23.5 + pos: -9.5,-47.5 parent: 1 - - uid: 4352 + - uid: 3002 components: - type: Transform - pos: 19.5,24.5 + pos: -9.5,-46.5 parent: 1 - - uid: 4353 + - uid: 3003 components: - type: Transform - pos: 19.5,25.5 + pos: -9.5,-45.5 parent: 1 - - uid: 4354 + - uid: 3005 components: - type: Transform - pos: 19.5,26.5 + pos: -3.5,-33.5 parent: 1 - - uid: 4355 + - uid: 3006 components: - type: Transform - pos: 19.5,27.5 + pos: -10.5,-42.5 parent: 1 - - uid: 4356 + - uid: 3007 components: - type: Transform - pos: 19.5,28.5 + pos: -10.5,-35.5 parent: 1 - - uid: 4357 + - uid: 3008 components: - type: Transform - pos: 19.5,29.5 + pos: 24.5,-15.5 parent: 1 - - uid: 4358 + - uid: 3009 components: - type: Transform - pos: 19.5,30.5 + pos: 24.5,22.5 parent: 1 - - uid: 4365 + - uid: 3011 components: - type: Transform - pos: 19.5,31.5 + pos: 24.5,-10.5 parent: 1 - - uid: 4366 + - uid: 3013 components: - type: Transform - pos: 19.5,32.5 + pos: -3.5,-27.5 parent: 1 - - uid: 4367 + - uid: 3014 components: - type: Transform - pos: 19.5,33.5 + pos: -3.5,-26.5 parent: 1 - - uid: 4368 + - uid: 3015 components: - type: Transform - pos: 19.5,34.5 + pos: -3.5,-25.5 parent: 1 - - uid: 4369 + - uid: 3017 components: - type: Transform - pos: 22.5,35.5 + pos: -3.5,-24.5 parent: 1 - - uid: 4370 + - uid: 3018 components: - type: Transform - pos: 22.5,36.5 + pos: -3.5,-23.5 parent: 1 - - uid: 4371 + - uid: 3019 components: - type: Transform - pos: 22.5,37.5 + pos: -3.5,-22.5 parent: 1 - - uid: 4378 + - uid: 3021 components: - type: Transform - pos: 22.5,38.5 + pos: -3.5,-21.5 parent: 1 - - uid: 4380 + - uid: 3024 components: - type: Transform - pos: 21.5,35.5 + pos: -3.5,-20.5 parent: 1 - - uid: 4381 + - uid: 3026 components: - type: Transform - pos: 21.5,36.5 + pos: -3.5,-19.5 parent: 1 - - uid: 4382 + - uid: 3027 components: - type: Transform - pos: 21.5,37.5 + pos: -6.5,-33.5 parent: 1 - - uid: 4383 + - uid: 3028 components: - type: Transform - pos: 21.5,38.5 + pos: -19.5,-48.5 parent: 1 - - uid: 4384 + - uid: 3029 components: - type: Transform - pos: 20.5,35.5 + pos: -11.5,-43.5 parent: 1 - - uid: 4391 + - uid: 3030 components: - type: Transform - pos: 20.5,36.5 + pos: -11.5,-42.5 parent: 1 - - uid: 4392 + - uid: 3031 components: - type: Transform - pos: 20.5,37.5 + pos: -11.5,-41.5 parent: 1 - - uid: 4397 + - uid: 3032 components: - type: Transform - pos: 20.5,38.5 + pos: -12.5,-46.5 parent: 1 - - uid: 4404 + - uid: 3119 components: - type: Transform - pos: 19.5,35.5 + pos: -12.5,-45.5 parent: 1 - - uid: 4405 + - uid: 3122 components: - type: Transform - pos: 19.5,36.5 + pos: -12.5,-44.5 parent: 1 - - uid: 4406 + - uid: 3124 components: - type: Transform - pos: 19.5,37.5 + pos: -3.5,-11.5 parent: 1 - - uid: 4407 + - uid: 3125 components: - type: Transform - pos: 19.5,38.5 + pos: 22.5,-34.5 parent: 1 - - uid: 4408 + - uid: 3127 components: - type: Transform - pos: 18.5,35.5 + pos: 22.5,-33.5 parent: 1 - - uid: 4409 + - uid: 3129 components: - type: Transform - pos: 18.5,36.5 + pos: 22.5,-32.5 parent: 1 - - uid: 4417 + - uid: 3133 components: - type: Transform - pos: 18.5,37.5 + pos: 22.5,-31.5 parent: 1 - - uid: 4421 + - uid: 3138 components: - type: Transform - pos: 18.5,38.5 + pos: 22.5,-30.5 parent: 1 - - uid: 4422 + - uid: 3141 components: - type: Transform - pos: 17.5,35.5 + pos: 22.5,-29.5 parent: 1 - - uid: 4425 + - uid: 3142 components: - type: Transform - pos: 17.5,36.5 + pos: 22.5,-28.5 parent: 1 - - uid: 4426 + - uid: 3145 components: - type: Transform - pos: 17.5,37.5 + pos: 22.5,-27.5 parent: 1 - - uid: 4427 + - uid: 3150 components: - type: Transform - pos: 17.5,38.5 + pos: 22.5,-26.5 parent: 1 - - uid: 4428 + - uid: 3152 components: - type: Transform - pos: 16.5,35.5 + pos: 22.5,-25.5 parent: 1 - - uid: 4429 + - uid: 3153 components: - type: Transform - pos: 16.5,36.5 + pos: 22.5,-24.5 parent: 1 - - uid: 4430 + - uid: 3155 components: - type: Transform - pos: 16.5,37.5 + pos: 22.5,-23.5 parent: 1 - - uid: 4431 + - uid: 3160 components: - type: Transform - pos: 16.5,38.5 + pos: 22.5,-22.5 parent: 1 - - uid: 4432 + - uid: 3161 components: - type: Transform - pos: 13.5,38.5 + pos: 22.5,-21.5 parent: 1 - - uid: 4434 + - uid: 3164 components: - type: Transform - pos: 10.5,38.5 + pos: 22.5,-20.5 parent: 1 - - uid: 4439 + - uid: 3166 components: - type: Transform - pos: -2.5,37.5 + pos: 22.5,-19.5 parent: 1 - - uid: 4440 + - uid: 3167 components: - type: Transform - pos: -3.5,38.5 + pos: 22.5,-18.5 parent: 1 - - uid: 4441 + - uid: 3169 components: - type: Transform - pos: -4.5,35.5 + pos: 22.5,-17.5 parent: 1 - - uid: 4442 + - uid: 3170 components: - type: Transform - pos: -4.5,37.5 + pos: 22.5,-16.5 parent: 1 - - uid: 4443 + - uid: 3171 components: - type: Transform - pos: -5.5,35.5 + pos: 22.5,-15.5 parent: 1 - - uid: 4444 + - uid: 3174 components: - type: Transform - pos: -5.5,37.5 + pos: 22.5,-14.5 parent: 1 - - uid: 4445 + - uid: 3175 components: - type: Transform - pos: -6.5,35.5 + pos: 22.5,-13.5 parent: 1 - - uid: 4446 + - uid: 3176 components: - type: Transform - pos: -6.5,37.5 + pos: -12.5,-43.5 parent: 1 - - uid: 4447 + - uid: 3178 components: - type: Transform - pos: -7.5,35.5 + pos: 22.5,-12.5 parent: 1 - - uid: 4448 + - uid: 3179 components: - type: Transform - pos: -9.5,35.5 + pos: 24.5,-9.5 parent: 1 - - uid: 4449 + - uid: 3180 components: - type: Transform - pos: -20.5,21.5 + pos: 22.5,-11.5 parent: 1 - - uid: 4463 + - uid: 3181 components: - type: Transform - pos: -20.5,5.5 + pos: 21.5,-34.5 parent: 1 - - uid: 4464 + - uid: 3183 components: - type: Transform - pos: -18.5,-4.5 + pos: 21.5,-33.5 parent: 1 - - uid: 4466 + - uid: 3184 components: - type: Transform - pos: -19.5,25.5 + pos: 21.5,-32.5 parent: 1 - - uid: 4469 + - uid: 3185 components: - type: Transform - pos: -19.5,0.5 + pos: 21.5,-31.5 parent: 1 - - uid: 4472 + - uid: 3187 components: - type: Transform - pos: -9.5,32.5 + pos: 21.5,-30.5 parent: 1 - - uid: 4475 + - uid: 3188 components: - type: Transform - pos: -17.5,4.5 + pos: 21.5,-29.5 parent: 1 - - uid: 4479 + - uid: 3189 components: - type: Transform - pos: -18.5,33.5 + pos: 21.5,-28.5 parent: 1 - - uid: 4525 + - uid: 3191 components: - type: Transform - pos: -14.5,27.5 + pos: 21.5,-27.5 parent: 1 - - uid: 4541 + - uid: 3192 components: - type: Transform - pos: -19.5,17.5 + pos: 21.5,-26.5 parent: 1 - - uid: 4542 + - uid: 3193 components: - type: Transform - pos: -17.5,11.5 + pos: 21.5,-25.5 parent: 1 - - uid: 4543 + - uid: 3194 components: - type: Transform - pos: -17.5,33.5 + pos: 21.5,-24.5 parent: 1 - - uid: 4544 + - uid: 3195 components: - type: Transform - pos: -17.5,21.5 + pos: 21.5,-23.5 parent: 1 - - uid: 4545 + - uid: 3196 components: - type: Transform - pos: -20.5,-8.5 + pos: 21.5,-22.5 parent: 1 - - uid: 4546 + - uid: 3197 components: - type: Transform - pos: -19.5,-9.5 + pos: 21.5,-21.5 parent: 1 - - uid: 4547 + - uid: 3198 components: - type: Transform - pos: -20.5,1.5 + pos: 21.5,-20.5 parent: 1 - - uid: 4548 + - uid: 3199 components: - type: Transform - pos: -12.5,30.5 + pos: 21.5,-19.5 parent: 1 - - uid: 4549 + - uid: 3202 components: - type: Transform - pos: -14.5,32.5 + pos: 21.5,-18.5 parent: 1 - - uid: 4550 + - uid: 3203 components: - type: Transform - pos: -7.5,34.5 + pos: 21.5,-17.5 parent: 1 - - uid: 4551 + - uid: 3204 components: - type: Transform - pos: -16.5,32.5 + pos: 21.5,-16.5 parent: 1 - - uid: 4552 + - uid: 3205 components: - type: Transform - pos: -14.5,33.5 + pos: 21.5,-15.5 parent: 1 - - uid: 4553 + - uid: 3206 components: - type: Transform - pos: 12.5,31.5 + pos: 21.5,-14.5 parent: 1 - - uid: 4554 + - uid: 3207 components: - type: Transform - pos: 11.5,31.5 + pos: 21.5,-13.5 parent: 1 - - uid: 4555 + - uid: 3208 components: - type: Transform - pos: 12.5,32.5 + pos: 21.5,-12.5 parent: 1 - - uid: 4556 + - uid: 3209 components: - type: Transform - pos: 11.5,32.5 + pos: 21.5,-11.5 parent: 1 - - uid: 4557 + - uid: 3210 components: - type: Transform - pos: 10.5,32.5 + pos: 19.5,-19.5 parent: 1 - - uid: 4558 + - uid: 3211 components: - type: Transform - pos: 11.5,33.5 + pos: 19.5,-18.5 parent: 1 - - uid: 4559 + - uid: 3212 components: - type: Transform - pos: 11.5,34.5 + pos: 18.5,-34.5 parent: 1 - - uid: 4560 + - uid: 3213 components: - type: Transform - pos: 13.5,32.5 + pos: 18.5,-32.5 parent: 1 - - uid: 4561 + - uid: 3215 components: - type: Transform - pos: 18.5,26.5 + pos: 18.5,-31.5 parent: 1 - - uid: 4562 + - uid: 3218 components: - type: Transform - pos: 15.5,27.5 + pos: 18.5,-29.5 parent: 1 - - uid: 4563 + - uid: 3219 components: - type: Transform - pos: 15.5,34.5 + pos: 20.5,-16.5 parent: 1 - - uid: 4564 + - uid: 3220 components: - type: Transform - pos: 18.5,24.5 + pos: 20.5,-15.5 parent: 1 - - uid: 4565 + - uid: 3221 components: - type: Transform - pos: 18.5,33.5 + pos: 20.5,-14.5 parent: 1 - - uid: 4566 + - uid: 3222 components: - type: Transform - pos: 17.5,26.5 + pos: 20.5,-13.5 parent: 1 - - uid: 4571 + - uid: 3223 components: - type: Transform - pos: 16.5,30.5 + pos: 20.5,-12.5 parent: 1 - - uid: 4589 + - uid: 3224 components: - type: Transform - pos: 16.5,29.5 + pos: 20.5,-11.5 parent: 1 - - uid: 4593 + - uid: 3225 components: - type: Transform - pos: 17.5,34.5 + pos: 18.5,-26.5 parent: 1 - - uid: 4594 + - uid: 3226 components: - type: Transform - pos: 18.5,23.5 + pos: 18.5,-24.5 parent: 1 - - uid: 4598 + - uid: 3227 components: - type: Transform - pos: 14.5,26.5 + pos: 18.5,-23.5 parent: 1 - - uid: 4600 + - uid: 3228 components: - type: Transform - pos: 14.5,27.5 + pos: 18.5,-22.5 parent: 1 - - uid: 4612 + - uid: 3230 components: - type: Transform - pos: 14.5,28.5 + pos: 18.5,-21.5 parent: 1 - - uid: 4613 + - uid: 3231 components: - type: Transform - pos: 16.5,28.5 + pos: 18.5,-20.5 parent: 1 - - uid: 4614 + - uid: 3232 components: - type: Transform - pos: 16.5,27.5 + pos: 18.5,-19.5 parent: 1 - - uid: 4615 + - uid: 3233 components: - type: Transform - pos: 16.5,26.5 + pos: 18.5,-18.5 parent: 1 - - uid: 4616 + - uid: 3234 components: - type: Transform - pos: 16.5,25.5 + pos: 17.5,-32.5 parent: 1 - - uid: 4617 + - uid: 3235 components: - type: Transform - pos: 16.5,23.5 + pos: 17.5,-30.5 parent: 1 - - uid: 4618 + - uid: 3236 components: - type: Transform - pos: 15.5,24.5 + pos: 17.5,-29.5 parent: 1 - - uid: 4619 + - uid: 3237 components: - type: Transform - pos: 14.5,22.5 + pos: 17.5,-26.5 parent: 1 - - uid: 4620 + - uid: 3238 components: - type: Transform - pos: 14.5,24.5 + pos: 19.5,-16.5 parent: 1 - - uid: 4621 + - uid: 3239 components: - type: Transform - pos: 13.5,25.5 + pos: 19.5,-15.5 parent: 1 - - uid: 4628 + - uid: 3240 components: - type: Transform - pos: 12.5,27.5 + pos: 19.5,-14.5 parent: 1 - - uid: 4629 + - uid: 3241 components: - type: Transform - pos: 11.5,29.5 + pos: 19.5,-13.5 parent: 1 - - uid: 4630 + - uid: 3242 components: - type: Transform - pos: 11.5,30.5 + pos: -18.5,-35.5 parent: 1 - - uid: 4637 + - uid: 3244 components: - type: Transform - pos: 10.5,31.5 + pos: 19.5,-12.5 parent: 1 - - uid: 4638 + - uid: 3245 components: - type: Transform - pos: 9.5,32.5 + pos: 19.5,-11.5 parent: 1 - - uid: 4639 + - uid: 3246 components: - type: Transform - pos: 6.5,32.5 + pos: 17.5,-34.5 parent: 1 - - uid: 4646 + - uid: 3247 components: - type: Transform - pos: 6.5,34.5 + pos: 17.5,-21.5 parent: 1 - - uid: 4647 + - uid: 3248 components: - type: Transform - pos: 4.5,32.5 + pos: 16.5,-34.5 parent: 1 - - uid: 4648 + - uid: 3249 components: - type: Transform - pos: 2.5,32.5 + pos: 16.5,-29.5 parent: 1 - - uid: 4655 + - uid: 3250 components: - type: Transform - pos: 1.5,32.5 + pos: 16.5,-28.5 parent: 1 - - uid: 4656 + - uid: 3251 components: - type: Transform - pos: 0.5,33.5 + pos: 16.5,-27.5 parent: 1 - - uid: 4657 + - uid: 3252 components: - type: Transform - pos: -1.5,33.5 + pos: 16.5,-26.5 parent: 1 - - uid: 4664 + - uid: 3253 components: - type: Transform - pos: -4.5,33.5 + pos: 16.5,-24.5 parent: 1 - - uid: 4665 + - uid: 3254 components: - type: Transform - pos: -4.5,34.5 + pos: 16.5,-23.5 parent: 1 - - uid: 4666 + - uid: 3255 components: - type: Transform - pos: -7.5,32.5 + pos: 16.5,-22.5 parent: 1 - - uid: 4667 + - uid: 3256 components: - type: Transform - pos: -5.5,33.5 + pos: 16.5,-21.5 parent: 1 - - uid: 4668 + - uid: 3257 components: - type: Transform - pos: -6.5,33.5 + pos: 16.5,-19.5 parent: 1 - - uid: 4669 + - uid: 3258 components: - type: Transform - pos: -5.5,34.5 + pos: 18.5,-16.5 parent: 1 - - uid: 4670 + - uid: 3259 components: - type: Transform - pos: -3.5,33.5 + pos: 18.5,-15.5 parent: 1 - - uid: 4671 + - uid: 3260 components: - type: Transform - pos: -11.5,30.5 + pos: 18.5,-14.5 parent: 1 - - uid: 4672 + - uid: 3261 components: - type: Transform - pos: -10.5,30.5 + pos: 18.5,-13.5 parent: 1 - - uid: 4673 + - uid: 3262 components: - type: Transform - pos: -13.5,27.5 + pos: 18.5,-12.5 parent: 1 - - uid: 4674 + - uid: 3263 components: - type: Transform - pos: -8.5,31.5 + pos: 18.5,-11.5 parent: 1 - - uid: 4675 + - uid: 3264 components: - type: Transform - pos: -12.5,29.5 + pos: 16.5,-18.5 parent: 1 - - uid: 4676 + - uid: 3265 components: - type: Transform - pos: -14.5,25.5 + pos: 16.5,-17.5 parent: 1 - - uid: 4677 + - uid: 3266 components: - type: Transform - pos: -15.5,23.5 + pos: 15.5,-34.5 parent: 1 - - uid: 4678 + - uid: 3267 components: - type: Transform - pos: -8.5,32.5 + pos: 15.5,-32.5 parent: 1 - - uid: 4679 + - uid: 3268 components: - type: Transform - pos: -9.5,31.5 + pos: 15.5,-31.5 parent: 1 - - uid: 4680 + - uid: 3269 components: - type: Transform - pos: -8.5,15.5 + pos: 15.5,-29.5 parent: 1 - - uid: 4681 + - uid: 3270 components: - type: Transform - pos: -10.5,14.5 + pos: 17.5,-16.5 parent: 1 - - uid: 4682 + - uid: 3271 components: - type: Transform - pos: -11.5,15.5 + pos: 17.5,-15.5 parent: 1 - - uid: 4683 + - uid: 3272 components: - type: Transform - pos: -12.5,15.5 + pos: 17.5,-14.5 parent: 1 - - uid: 4684 + - uid: 3273 components: - type: Transform - pos: -12.5,17.5 + pos: 17.5,-13.5 parent: 1 - - uid: 4686 + - uid: 3274 components: - type: Transform - pos: -13.5,14.5 + pos: 17.5,-12.5 parent: 1 - - uid: 4688 + - uid: 3275 components: - type: Transform - pos: -13.5,16.5 + pos: 17.5,-11.5 parent: 1 - - uid: 4693 + - uid: 3276 components: - type: Transform - pos: -13.5,18.5 + pos: 15.5,-26.5 parent: 1 - - uid: 4694 + - uid: 3277 components: - type: Transform - pos: -14.5,16.5 + pos: 15.5,-24.5 parent: 1 - - uid: 4695 + - uid: 3278 components: - type: Transform - pos: -14.5,19.5 + pos: 15.5,-23.5 parent: 1 - - uid: 4697 + - uid: 3279 components: - type: Transform - pos: -15.5,16.5 + pos: 15.5,-22.5 parent: 1 - - uid: 4698 + - uid: 3280 components: - type: Transform - pos: -15.5,19.5 + pos: 15.5,-21.5 parent: 1 - - uid: 4699 + - uid: 3281 components: - type: Transform - pos: -16.5,14.5 + pos: 15.5,-19.5 parent: 1 - - uid: 4700 + - uid: 3282 components: - type: Transform - pos: -16.5,16.5 + pos: 15.5,-18.5 parent: 1 - - uid: 4702 + - uid: 3283 components: - type: Transform - pos: -16.5,18.5 + pos: 15.5,-17.5 parent: 1 - - uid: 4703 + - uid: 3284 components: - type: Transform - pos: -16.5,20.5 + pos: 14.5,-34.5 parent: 1 - - uid: 4704 + - uid: 3285 components: - type: Transform - pos: -16.5,22.5 + pos: 14.5,-29.5 parent: 1 - - uid: 4706 + - uid: 3286 components: - type: Transform - pos: -15.5,21.5 + pos: 14.5,-26.5 parent: 1 - - uid: 4707 + - uid: 3287 components: - type: Transform - pos: -14.5,20.5 + pos: 14.5,-21.5 parent: 1 - - uid: 4708 + - uid: 3288 components: - type: Transform - pos: -12.5,19.5 + pos: 16.5,-16.5 parent: 1 - - uid: 4709 + - uid: 3289 components: - type: Transform - pos: -11.5,19.5 + pos: 16.5,-15.5 parent: 1 - - uid: 4711 + - uid: 3290 components: - type: Transform - pos: -10.5,19.5 + pos: 16.5,-14.5 parent: 1 - - uid: 4715 + - uid: 3291 components: - type: Transform - pos: -10.5,18.5 + pos: 16.5,-13.5 parent: 1 - - uid: 4718 + - uid: 3292 components: - type: Transform - pos: -9.5,18.5 + pos: 16.5,-12.5 parent: 1 - - uid: 4720 + - uid: 3293 components: - type: Transform - pos: -9.5,17.5 + pos: 16.5,-11.5 parent: 1 - - uid: 4721 + - uid: 3294 components: - type: Transform - pos: -8.5,17.5 + pos: 15.5,-16.5 parent: 1 - - uid: 4722 + - uid: 3295 components: - type: Transform - pos: -7.5,17.5 + pos: 15.5,-15.5 parent: 1 - - uid: 4724 + - uid: 3296 components: - type: Transform - pos: -7.5,16.5 + pos: 15.5,-14.5 parent: 1 - - uid: 4726 + - uid: 3297 components: - type: Transform - pos: -6.5,16.5 + pos: 15.5,-13.5 parent: 1 - - uid: 4727 + - uid: 3298 components: - type: Transform - pos: -6.5,15.5 + pos: 15.5,-12.5 parent: 1 - - uid: 4728 + - uid: 3299 components: - type: Transform - pos: -5.5,14.5 + pos: 15.5,-11.5 parent: 1 - - uid: 4729 + - uid: 3300 components: - type: Transform - pos: -6.5,14.5 + pos: -12.5,-42.5 parent: 1 - - uid: 4730 + - uid: 3301 components: - type: Transform - pos: -5.5,15.5 + pos: 14.5,-16.5 parent: 1 - - uid: 4731 + - uid: 3302 components: - type: Transform - pos: -4.5,14.5 + pos: 14.5,-15.5 parent: 1 - - uid: 4733 + - uid: 3303 components: - type: Transform - pos: 5.5,14.5 + pos: 14.5,-14.5 parent: 1 - - uid: 4735 + - uid: 3304 components: - type: Transform - pos: 4.5,14.5 + pos: 14.5,-13.5 parent: 1 - - uid: 4736 + - uid: 3305 components: - type: Transform - pos: 6.5,14.5 + pos: 14.5,-12.5 parent: 1 - - uid: 4737 + - uid: 3306 components: - type: Transform - pos: 6.5,15.5 + pos: 14.5,-11.5 parent: 1 - - uid: 4738 + - uid: 3307 components: - type: Transform - pos: 6.5,16.5 + pos: 13.5,-34.5 parent: 1 - - uid: 4739 + - uid: 3308 components: - type: Transform - pos: 8.5,14.5 + pos: 13.5,-33.5 parent: 1 - - uid: 4740 + - uid: 3309 components: - type: Transform - pos: 8.5,15.5 + pos: 13.5,-32.5 parent: 1 - - uid: 4741 + - uid: 3310 components: - type: Transform - pos: 8.5,16.5 + pos: 13.5,-31.5 parent: 1 - - uid: 4742 + - uid: 3311 components: - type: Transform - pos: 8.5,17.5 + pos: 13.5,-30.5 parent: 1 - - uid: 4747 + - uid: 3312 components: - type: Transform - pos: 7.5,14.5 + pos: 13.5,-29.5 parent: 1 - - uid: 4748 + - uid: 3314 components: - type: Transform - pos: 7.5,15.5 + pos: 13.5,-28.5 parent: 1 - - uid: 4749 + - uid: 3315 components: - type: Transform - pos: 7.5,16.5 + pos: 13.5,-27.5 parent: 1 - - uid: 4750 + - uid: 3316 components: - type: Transform - pos: 7.5,17.5 + pos: 13.5,-26.5 parent: 1 - - uid: 4751 + - uid: 3317 components: - type: Transform - pos: 9.5,14.5 + pos: 13.5,-25.5 parent: 1 - - uid: 4752 + - uid: 3318 components: - type: Transform - pos: 9.5,15.5 + pos: 13.5,-24.5 parent: 1 - - uid: 4753 + - uid: 3319 components: - type: Transform - pos: 9.5,16.5 + pos: 13.5,-23.5 parent: 1 - - uid: 4754 + - uid: 3320 components: - type: Transform - pos: 9.5,17.5 + pos: 13.5,-22.5 parent: 1 - - uid: 4755 + - uid: 3321 components: - type: Transform - pos: 9.5,18.5 + pos: 13.5,-21.5 parent: 1 - - uid: 4756 + - uid: 3322 components: - type: Transform - pos: 11.5,18.5 + pos: 13.5,-20.5 parent: 1 - - uid: 4757 + - uid: 3323 components: - type: Transform - pos: 11.5,19.5 + pos: 13.5,-19.5 parent: 1 - - uid: 4758 + - uid: 3324 components: - type: Transform - pos: 10.5,14.5 + pos: 13.5,-18.5 parent: 1 - - uid: 4759 + - uid: 3325 components: - type: Transform - pos: 10.5,15.5 + pos: 13.5,-17.5 parent: 1 - - uid: 4760 + - uid: 3326 components: - type: Transform - pos: 10.5,16.5 + pos: 13.5,-16.5 parent: 1 - - uid: 4761 + - uid: 3327 components: - type: Transform - pos: 10.5,17.5 + pos: 13.5,-15.5 parent: 1 - - uid: 4762 + - uid: 3328 components: - type: Transform - pos: 10.5,18.5 + pos: 13.5,-14.5 parent: 1 - - uid: 4763 + - uid: 3329 components: - type: Transform - pos: 10.5,19.5 + pos: 13.5,-13.5 parent: 1 - - uid: 4764 + - uid: 3330 components: - type: Transform - pos: 11.5,14.5 + pos: 13.5,-12.5 parent: 1 - - uid: 4765 + - uid: 3332 components: - type: Transform - pos: 11.5,15.5 + pos: 13.5,-11.5 parent: 1 - - uid: 4952 + - uid: 3333 components: - type: Transform - pos: 11.5,17.5 + pos: 12.5,-34.5 parent: 1 - - uid: 4970 + - uid: 3334 components: - type: Transform - pos: 15.5,15.5 + pos: 12.5,-33.5 parent: 1 - - uid: 4971 + - uid: 3335 components: - type: Transform - pos: 15.5,17.5 + pos: -18.5,-37.5 parent: 1 - - uid: 4972 + - uid: 3338 components: - type: Transform - pos: 15.5,19.5 + pos: 12.5,-32.5 parent: 1 - - uid: 4973 + - uid: 3339 components: - type: Transform - pos: 14.5,14.5 + pos: 12.5,-31.5 parent: 1 - - uid: 4974 + - uid: 3340 components: - type: Transform - pos: -17.5,-12.5 + pos: 12.5,-30.5 parent: 1 - - uid: 4975 + - uid: 3341 components: - type: Transform - pos: 14.5,16.5 + pos: 12.5,-29.5 parent: 1 - - uid: 4978 + - uid: 3342 components: - type: Transform - pos: 14.5,18.5 + pos: 12.5,-28.5 parent: 1 - - uid: 4979 + - uid: 3343 components: - type: Transform - pos: 14.5,20.5 + pos: 12.5,-27.5 parent: 1 - - uid: 4980 + - uid: 3344 components: - type: Transform - pos: 13.5,15.5 + pos: 12.5,-25.5 parent: 1 - - uid: 4981 + - uid: 3345 components: - type: Transform - pos: 13.5,17.5 + pos: 12.5,-24.5 parent: 1 - - uid: 4982 + - uid: 3346 components: - type: Transform - pos: 13.5,19.5 + pos: 12.5,-23.5 parent: 1 - - uid: 4983 + - uid: 3347 components: - type: Transform - pos: 12.5,14.5 + pos: 12.5,-22.5 parent: 1 - - uid: 4984 + - uid: 3348 components: - type: Transform - pos: 12.5,16.5 + pos: 12.5,-21.5 parent: 1 - - uid: 4985 + - uid: 3349 components: - type: Transform - pos: 12.5,18.5 + pos: 12.5,-20.5 parent: 1 - - uid: 4986 + - uid: 3350 components: - type: Transform - pos: 12.5,20.5 + pos: 12.5,-19.5 parent: 1 - - uid: 4987 + - uid: 3351 components: - type: Transform - pos: 18.5,15.5 + pos: 12.5,-18.5 parent: 1 - - uid: 4988 + - uid: 3353 components: - type: Transform - pos: 18.5,17.5 + pos: 12.5,-17.5 parent: 1 - - uid: 4989 + - uid: 3354 components: - type: Transform - pos: 18.5,19.5 + pos: 12.5,-26.5 parent: 1 - - uid: 4990 + - uid: 3355 components: - type: Transform - pos: 18.5,21.5 + pos: 12.5,-16.5 parent: 1 - - uid: 4991 + - uid: 3356 components: - type: Transform - pos: 17.5,15.5 + pos: 12.5,-15.5 parent: 1 - - uid: 4992 + - uid: 3357 components: - type: Transform - pos: 17.5,17.5 + pos: 12.5,-14.5 parent: 1 - - uid: 4993 + - uid: 3358 components: - type: Transform - pos: 17.5,19.5 + pos: 12.5,-13.5 parent: 1 - - uid: 4994 + - uid: 3359 components: - type: Transform - pos: 17.5,21.5 + pos: 12.5,-12.5 parent: 1 - - uid: 4996 + - uid: 3360 components: - type: Transform - pos: 16.5,15.5 + pos: 12.5,-11.5 parent: 1 - - uid: 4997 + - uid: 3361 components: - type: Transform - pos: 16.5,17.5 + pos: 11.5,-34.5 parent: 1 - - uid: 5004 + - uid: 3362 components: - type: Transform - pos: 16.5,19.5 + pos: 11.5,-33.5 parent: 1 - - uid: 5028 + - uid: 3363 components: - type: Transform - pos: 16.5,21.5 + pos: 11.5,-32.5 parent: 1 - - uid: 5080 + - uid: 3364 components: - type: Transform - pos: 17.5,22.5 + pos: 11.5,-31.5 parent: 1 - - uid: 5081 + - uid: 3365 components: - type: Transform - pos: 15.5,22.5 + pos: 11.5,-30.5 parent: 1 - - uid: 5082 + - uid: 3366 components: - type: Transform - pos: 14.5,21.5 + pos: 11.5,-29.5 parent: 1 - - uid: 5083 + - uid: 3367 components: - type: Transform - pos: 12.5,21.5 + pos: 11.5,-28.5 parent: 1 - - uid: 5084 + - uid: 3368 components: - type: Transform - pos: 10.5,20.5 + pos: 11.5,-27.5 parent: 1 - - uid: 5085 + - uid: 3369 components: - type: Transform - pos: 9.5,19.5 + pos: 11.5,-26.5 parent: 1 - - uid: 5086 + - uid: 3370 components: - type: Transform - pos: 18.5,-10.5 + pos: 11.5,-25.5 parent: 1 - - uid: 5087 + - uid: 3371 components: - type: Transform - pos: 18.5,-8.5 + pos: 11.5,-24.5 parent: 1 - - uid: 5088 + - uid: 3372 components: - type: Transform - pos: 18.5,-6.5 + pos: 11.5,-23.5 parent: 1 - - uid: 5089 + - uid: 3373 components: - type: Transform - pos: 18.5,-4.5 + pos: 11.5,-22.5 parent: 1 - - uid: 5090 + - uid: 3374 components: - type: Transform - pos: 17.5,-10.5 + pos: 11.5,-21.5 parent: 1 - - uid: 5091 + - uid: 3375 components: - type: Transform - pos: 17.5,-8.5 + pos: 11.5,-20.5 parent: 1 - - uid: 5092 + - uid: 3376 components: - type: Transform - pos: 17.5,-6.5 + pos: 11.5,-19.5 parent: 1 - - uid: 5094 + - uid: 3377 components: - type: Transform - pos: 17.5,-4.5 + pos: 11.5,-18.5 parent: 1 - - uid: 5095 + - uid: 3378 components: - type: Transform - pos: 16.5,-10.5 + pos: 11.5,-17.5 parent: 1 - - uid: 5096 + - uid: 3379 components: - type: Transform - pos: 16.5,-8.5 + pos: 11.5,-16.5 parent: 1 - - uid: 5097 + - uid: 3380 components: - type: Transform - pos: 16.5,-6.5 + pos: 11.5,-15.5 parent: 1 - - uid: 5098 + - uid: 3381 components: - type: Transform - pos: 16.5,-5.5 + pos: 11.5,-14.5 parent: 1 - - uid: 5099 + - uid: 3382 components: - type: Transform - pos: 16.5,-4.5 + pos: 11.5,-13.5 parent: 1 - - uid: 5100 + - uid: 3383 components: - type: Transform - pos: 4.5,16.5 + pos: 11.5,-12.5 parent: 1 - - uid: 5101 + - uid: 3384 components: - type: Transform - pos: 15.5,-10.5 + pos: 11.5,-11.5 parent: 1 - - uid: 5102 + - uid: 3385 components: - type: Transform - pos: 15.5,-9.5 + pos: 10.5,-34.5 parent: 1 - - uid: 5103 + - uid: 3386 components: - type: Transform - pos: 15.5,-8.5 + pos: 10.5,-33.5 parent: 1 - - uid: 5104 + - uid: 3387 components: - type: Transform - pos: 15.5,-7.5 + pos: 10.5,-32.5 parent: 1 - - uid: 5105 + - uid: 3388 components: - type: Transform - pos: 15.5,-6.5 + pos: 10.5,-31.5 parent: 1 - - uid: 5106 + - uid: 3389 components: - type: Transform - pos: 15.5,-5.5 + pos: 10.5,-30.5 parent: 1 - - uid: 5107 + - uid: 3390 components: - type: Transform - pos: 15.5,-4.5 + pos: 10.5,-29.5 parent: 1 - - uid: 5138 + - uid: 3391 components: - type: Transform - pos: 4.5,15.5 + pos: 10.5,-28.5 parent: 1 - - uid: 5140 + - uid: 3392 components: - type: Transform - pos: 14.5,-10.5 + pos: 10.5,-27.5 parent: 1 - - uid: 5145 + - uid: 3393 components: - type: Transform - pos: 14.5,-9.5 + pos: 10.5,-26.5 parent: 1 - - uid: 5146 + - uid: 3394 components: - type: Transform - pos: 14.5,-8.5 + pos: 10.5,-25.5 parent: 1 - - uid: 5147 + - uid: 3395 components: - type: Transform - pos: 14.5,-7.5 + pos: 10.5,-24.5 parent: 1 - - uid: 5148 + - uid: 3396 components: - type: Transform - pos: 7.5,18.5 + pos: 10.5,-23.5 parent: 1 - - uid: 5149 + - uid: 3397 components: - type: Transform - pos: 13.5,-5.5 + pos: 24.5,-4.5 parent: 1 - - uid: 5150 + - uid: 3398 components: - type: Transform - pos: 11.5,-10.5 + pos: 24.5,-3.5 parent: 1 - - uid: 5151 + - uid: 3399 components: - type: Transform - pos: 18.5,11.5 + pos: 24.5,-2.5 parent: 1 - - uid: 5152 + - uid: 3400 components: - type: Transform - pos: 17.5,12.5 + pos: 24.5,2.5 parent: 1 - - uid: 5153 + - uid: 3401 components: - type: Transform - pos: 16.5,10.5 + pos: 24.5,7.5 parent: 1 - - uid: 5154 + - uid: 3402 components: - type: Transform - pos: 16.5,3.5 + pos: 24.5,13.5 parent: 1 - - uid: 5155 + - uid: 3403 components: - type: Transform - pos: 15.5,7.5 + pos: 24.5,8.5 parent: 1 - - uid: 5156 + - uid: 3404 components: - type: Transform - pos: 14.5,13.5 + pos: 24.5,16.5 parent: 1 - - uid: 5157 + - uid: 3405 components: - type: Transform - pos: 13.5,10.5 + pos: 24.5,11.5 parent: 1 - - uid: 5158 + - uid: 3406 components: - type: Transform - pos: -10.5,-5.5 + pos: 24.5,23.5 parent: 1 - - uid: 5159 + - uid: 3407 components: - type: Transform - pos: -12.5,-6.5 + pos: 10.5,-13.5 parent: 1 - - uid: 5160 + - uid: 3408 components: - type: Transform - pos: -14.5,-9.5 + pos: 10.5,-12.5 parent: 1 - - uid: 5161 + - uid: 3409 components: - type: Transform - pos: -15.5,-10.5 + pos: 10.5,-11.5 parent: 1 - - uid: 5162 + - uid: 3410 components: - type: Transform - pos: -15.5,-9.5 + pos: 9.5,-34.5 parent: 1 - - uid: 5163 + - uid: 3411 components: - type: Transform - pos: -15.5,-5.5 + pos: 9.5,-33.5 parent: 1 - - uid: 5169 + - uid: 3412 components: - type: Transform - pos: -15.5,-6.5 + pos: 9.5,-32.5 parent: 1 - - uid: 5170 + - uid: 3413 components: - type: Transform - pos: -15.5,-7.5 + pos: 9.5,-31.5 parent: 1 - - uid: 5171 + - uid: 3414 components: - type: Transform - pos: -15.5,-8.5 + pos: -18.5,-38.5 parent: 1 - - uid: 5172 + - uid: 3415 components: - type: Transform - pos: -15.5,-4.5 + pos: -18.5,-41.5 parent: 1 - - uid: 5175 + - uid: 3416 components: - type: Transform - pos: -15.5,-3.5 + pos: -19.5,-40.5 parent: 1 - - uid: 5178 + - uid: 3417 components: - type: Transform - pos: -15.5,-2.5 + pos: -19.5,-41.5 parent: 1 - - uid: 5181 + - uid: 3418 components: - type: Transform - pos: -16.5,-8.5 + pos: 9.5,-30.5 parent: 1 - - uid: 5182 + - uid: 3419 components: - type: Transform - pos: -16.5,-2.5 + pos: 9.5,-29.5 parent: 1 - - uid: 5183 + - uid: 3420 components: - type: Transform - pos: -10.5,7.5 + pos: 9.5,-28.5 parent: 1 - - uid: 5184 + - uid: 3421 components: - type: Transform - pos: -11.5,5.5 + pos: 9.5,-27.5 parent: 1 - - uid: 5185 + - uid: 3422 components: - type: Transform - pos: -11.5,12.5 + pos: 9.5,-26.5 parent: 1 - - uid: 5187 + - uid: 3423 components: - type: Transform - pos: -12.5,10.5 + pos: 9.5,-25.5 parent: 1 - - uid: 5188 + - uid: 3424 components: - type: Transform - pos: -14.5,13.5 + pos: 9.5,-24.5 parent: 1 - - uid: 5189 + - uid: 3425 components: - type: Transform - pos: -14.5,9.5 + pos: 9.5,-23.5 parent: 1 - - uid: 5190 + - uid: 3426 components: - type: Transform - pos: -14.5,5.5 + pos: 24.5,-8.5 parent: 1 - - uid: 5191 + - uid: 3427 components: - type: Transform - pos: -13.5,11.5 + pos: 24.5,-6.5 parent: 1 - - uid: 5192 + - uid: 3428 components: - type: Transform - pos: -13.5,7.5 + pos: 24.5,-5.5 parent: 1 - - uid: 5193 + - uid: 3429 components: - type: Transform - pos: -13.5,6.5 + pos: 24.5,3.5 parent: 1 - - uid: 5194 + - uid: 3430 components: - type: Transform - pos: -13.5,5.5 + pos: 24.5,15.5 parent: 1 - - uid: 5195 + - uid: 3431 components: - type: Transform - pos: -13.5,4.5 + pos: 24.5,12.5 parent: 1 - - uid: 5202 + - uid: 3432 components: - type: Transform - pos: -15.5,13.5 + pos: 24.5,9.5 parent: 1 - - uid: 5203 + - uid: 3433 components: - type: Transform - pos: -15.5,5.5 + pos: 24.5,10.5 parent: 1 - - uid: 5204 + - uid: 3434 components: - type: Transform - pos: -16.5,8.5 + pos: 24.5,20.5 parent: 1 - - uid: 5205 + - uid: 3435 components: - type: Transform - pos: -16.5,9.5 + pos: 9.5,-13.5 parent: 1 - - uid: 5206 + - uid: 3436 components: - type: Transform - pos: -16.5,10.5 + pos: 9.5,-12.5 parent: 1 - - uid: 5207 + - uid: 3437 components: - type: Transform - pos: -16.5,11.5 + pos: 9.5,-11.5 parent: 1 - - uid: 5208 + - uid: 3438 components: - type: Transform - pos: -16.5,12.5 + pos: 8.5,-34.5 parent: 1 - - uid: 5209 + - uid: 3439 components: - type: Transform - pos: -16.5,13.5 + pos: 8.5,-33.5 parent: 1 - - uid: 5210 + - uid: 3440 components: - type: Transform - pos: -15.5,4.5 + pos: 8.5,-32.5 parent: 1 - - uid: 5211 + - uid: 3441 components: - type: Transform - pos: -16.5,7.5 + pos: 8.5,-31.5 parent: 1 - - uid: 5212 + - uid: 3442 components: - type: Transform - pos: -16.5,6.5 + pos: 8.5,-30.5 parent: 1 - - uid: 5213 + - uid: 3443 components: - type: Transform - pos: -16.5,5.5 + pos: 8.5,-29.5 parent: 1 - - uid: 5214 + - uid: 3444 components: - type: Transform - pos: -16.5,4.5 + pos: 8.5,-28.5 parent: 1 - - uid: 5215 + - uid: 3447 components: - type: Transform - pos: -16.5,3.5 + pos: 8.5,-27.5 parent: 1 - - uid: 5216 + - uid: 3448 components: - type: Transform - pos: -16.5,2.5 + pos: 8.5,-26.5 parent: 1 - - uid: 5217 + - uid: 3449 components: - type: Transform - pos: 9.5,-10.5 + pos: 8.5,-25.5 parent: 1 - - uid: 5218 + - uid: 3452 components: - type: Transform - pos: 9.5,-9.5 + pos: 8.5,-24.5 parent: 1 - - uid: 5219 + - uid: 3453 components: - type: Transform - pos: 9.5,-8.5 + pos: -19.5,-42.5 parent: 1 - - uid: 5220 + - uid: 3454 components: - type: Transform - pos: 9.5,-7.5 + pos: 24.5,25.5 parent: 1 - - uid: 5221 + - uid: 3457 components: - type: Transform - pos: 9.5,-6.5 + pos: 8.5,-23.5 parent: 1 - - uid: 5222 + - uid: 3458 components: - type: Transform - pos: 9.5,-5.5 + pos: -12.5,-41.5 parent: 1 - - uid: 5223 + - uid: 3459 components: - type: Transform - pos: 9.5,-4.5 + pos: -12.5,-40.5 parent: 1 - - uid: 5224 + - uid: 3461 components: - type: Transform - pos: 8.5,-10.5 + pos: 24.5,26.5 parent: 1 - - uid: 5225 + - uid: 3462 components: - type: Transform - pos: 8.5,-9.5 + pos: -12.5,-39.5 parent: 1 - - uid: 5226 + - uid: 3463 components: - type: Transform - pos: 8.5,-8.5 + pos: -12.5,-38.5 parent: 1 - - uid: 5227 + - uid: 3465 components: - type: Transform - pos: 8.5,-7.5 + pos: -12.5,-37.5 parent: 1 - - uid: 5228 + - uid: 3467 components: - type: Transform - pos: 8.5,-6.5 + pos: -13.5,-46.5 parent: 1 - - uid: 5229 + - uid: 3470 components: - type: Transform - pos: 8.5,-5.5 + pos: -14.5,-46.5 parent: 1 - - uid: 5230 + - uid: 3471 components: - type: Transform - pos: 8.5,-4.5 + pos: 8.5,-13.5 parent: 1 - - uid: 5231 + - uid: 3473 components: - type: Transform - pos: 8.5,-3.5 + pos: 8.5,-12.5 parent: 1 - - uid: 5232 + - uid: 3474 components: - type: Transform - pos: 7.5,-10.5 + pos: 8.5,-11.5 parent: 1 - - uid: 5234 + - uid: 3475 components: - type: Transform - pos: 7.5,-9.5 + pos: -19.5,-43.5 parent: 1 - - uid: 5235 + - uid: 3477 components: - type: Transform - pos: 7.5,-8.5 + pos: 7.5,-34.5 parent: 1 - - uid: 5236 + - uid: 3478 components: - type: Transform - pos: 7.5,-7.5 + pos: 7.5,-33.5 parent: 1 - - uid: 5237 + - uid: 3479 components: - type: Transform - pos: 7.5,-6.5 + pos: 7.5,-32.5 parent: 1 - - uid: 5238 + - uid: 3480 components: - type: Transform - pos: 7.5,-5.5 + pos: 7.5,-31.5 parent: 1 - - uid: 5239 + - uid: 3481 components: - type: Transform - pos: 7.5,-4.5 + pos: 7.5,-30.5 parent: 1 - - uid: 5240 + - uid: 3483 components: - type: Transform - pos: 7.5,-3.5 + pos: 7.5,-29.5 parent: 1 - - uid: 5241 + - uid: 3484 components: - type: Transform - pos: 6.5,-10.5 + pos: 7.5,-28.5 parent: 1 - - uid: 5242 + - uid: 3485 components: - type: Transform - pos: 6.5,-9.5 + rot: 1.5707963267948966 rad + pos: -25.5,-80.5 parent: 1 - - uid: 5243 + - uid: 3486 components: - type: Transform - pos: 6.5,-8.5 + pos: 7.5,-27.5 parent: 1 - - uid: 5244 + - uid: 3487 components: - type: Transform - pos: 6.5,-7.5 + pos: 7.5,-26.5 parent: 1 - - uid: 5245 + - uid: 3488 components: - type: Transform - pos: 6.5,-6.5 + pos: 7.5,-25.5 parent: 1 - - uid: 5246 + - uid: 3489 components: - type: Transform - pos: 6.5,-5.5 + pos: -19.5,-45.5 parent: 1 - - uid: 5247 + - uid: 3490 components: - type: Transform - pos: 6.5,-4.5 + pos: 7.5,-24.5 parent: 1 - - uid: 5248 + - uid: 3491 components: - type: Transform - pos: 6.5,-3.5 + pos: 7.5,-23.5 parent: 1 - - uid: 5249 + - uid: 3495 components: - type: Transform - pos: 5.5,-10.5 + pos: -18.5,-43.5 parent: 1 - - uid: 5251 + - uid: 3503 components: - type: Transform - pos: 5.5,-9.5 + pos: 10.5,-22.5 parent: 1 - - uid: 5252 + - uid: 3504 components: - type: Transform - pos: 5.5,-8.5 + pos: 10.5,-21.5 parent: 1 - - uid: 5253 + - uid: 3506 components: - type: Transform - pos: 5.5,-7.5 + pos: 7.5,-13.5 parent: 1 - - uid: 5254 + - uid: 3507 components: - type: Transform - pos: 5.5,-6.5 + pos: 7.5,-12.5 parent: 1 - - uid: 5255 + - uid: 3508 components: - type: Transform - pos: 5.5,-5.5 + pos: 7.5,-11.5 parent: 1 - - uid: 5256 + - uid: 3509 components: - type: Transform - pos: 5.5,-4.5 + pos: 6.5,-34.5 parent: 1 - - uid: 5257 + - uid: 3510 components: - type: Transform - pos: 5.5,-3.5 + pos: 6.5,-33.5 parent: 1 - - uid: 5258 + - uid: 3512 components: - type: Transform - pos: 4.5,-10.5 + pos: 6.5,-32.5 parent: 1 - - uid: 5259 + - uid: 3513 components: - type: Transform - pos: 4.5,-9.5 + pos: 6.5,-31.5 parent: 1 - - uid: 5260 + - uid: 3515 components: - type: Transform - pos: 4.5,-8.5 + pos: -18.5,-45.5 parent: 1 - - uid: 5261 + - uid: 3516 components: - type: Transform - pos: 4.5,-7.5 + pos: 6.5,-30.5 parent: 1 - - uid: 5262 + - uid: 3517 components: - type: Transform - pos: 4.5,-6.5 + pos: 6.5,-29.5 parent: 1 - - uid: 5263 + - uid: 3519 components: - type: Transform - pos: 4.5,-5.5 + pos: 6.5,-28.5 parent: 1 - - uid: 5265 + - uid: 3520 components: - type: Transform - pos: 4.5,-4.5 + pos: 6.5,-27.5 parent: 1 - - uid: 5266 + - uid: 3521 components: - type: Transform - pos: 4.5,-3.5 + pos: 6.5,-26.5 parent: 1 - - uid: 5267 + - uid: 3524 components: - type: Transform - pos: 3.5,-10.5 + pos: 6.5,-25.5 parent: 1 - - uid: 5268 + - uid: 3526 components: - type: Transform - pos: 3.5,-9.5 + pos: 6.5,-24.5 parent: 1 - - uid: 5269 + - uid: 3527 components: - type: Transform - pos: 3.5,-8.5 + pos: 6.5,-23.5 parent: 1 - - uid: 5270 + - uid: 3529 components: - type: Transform - pos: 3.5,-7.5 + pos: 10.5,-20.5 parent: 1 - - uid: 5271 + - uid: 3530 components: - type: Transform - pos: 3.5,-6.5 + pos: 10.5,-19.5 parent: 1 - - uid: 5272 + - uid: 3531 components: - type: Transform - pos: 3.5,-5.5 + pos: 10.5,-18.5 parent: 1 - - uid: 5273 + - uid: 3534 components: - type: Transform - pos: 3.5,-4.5 + pos: 10.5,-17.5 parent: 1 - - uid: 5274 + - uid: 3535 components: - type: Transform - pos: 3.5,-3.5 + pos: 10.5,-16.5 parent: 1 - - uid: 5275 + - uid: 3536 components: - type: Transform - pos: 2.5,-10.5 + pos: 10.5,-15.5 parent: 1 - - uid: 5276 + - uid: 3537 components: - type: Transform - pos: 2.5,-9.5 + pos: 10.5,-14.5 parent: 1 - - uid: 5277 + - uid: 3538 components: - type: Transform - pos: 2.5,-8.5 + pos: 9.5,-22.5 parent: 1 - - uid: 5278 + - uid: 3539 components: - type: Transform - pos: 2.5,-7.5 + pos: 9.5,-21.5 parent: 1 - - uid: 5280 + - uid: 3540 components: - type: Transform - pos: 2.5,-6.5 + pos: 6.5,-13.5 parent: 1 - - uid: 5281 + - uid: 3541 components: - type: Transform - pos: 2.5,-5.5 + pos: 6.5,-12.5 parent: 1 - - uid: 5282 + - uid: 3542 components: - type: Transform - pos: 2.5,-4.5 + pos: 6.5,-11.5 parent: 1 - - uid: 5283 + - uid: 3543 components: - type: Transform - pos: 2.5,-3.5 + pos: 5.5,-34.5 parent: 1 - - uid: 5284 + - uid: 3544 components: - type: Transform - pos: -3.5,-10.5 + pos: 5.5,-33.5 parent: 1 - - uid: 5285 + - uid: 3545 components: - type: Transform - pos: -3.5,-9.5 + pos: 5.5,-32.5 parent: 1 - - uid: 5286 + - uid: 3546 components: - type: Transform - pos: -3.5,-8.5 + pos: 5.5,-31.5 parent: 1 - - uid: 5287 + - uid: 3547 components: - type: Transform - pos: -3.5,-7.5 + pos: 5.5,-30.5 parent: 1 - - uid: 5288 + - uid: 3548 components: - type: Transform - pos: -3.5,-6.5 + pos: 5.5,-29.5 parent: 1 - - uid: 5289 + - uid: 3549 components: - type: Transform - pos: -3.5,-5.5 + pos: 5.5,-28.5 parent: 1 - - uid: 5290 + - uid: 3550 components: - type: Transform - pos: -3.5,-4.5 + pos: 5.5,-27.5 parent: 1 - - uid: 5291 + - uid: 3551 components: - type: Transform - pos: -3.5,-3.5 + pos: 5.5,-26.5 parent: 1 - - uid: 5292 + - uid: 3552 components: - type: Transform - pos: -4.5,-10.5 + pos: 5.5,-25.5 parent: 1 - - uid: 5293 + - uid: 3553 components: - type: Transform - pos: -4.5,-9.5 + pos: 5.5,-24.5 parent: 1 - - uid: 5294 + - uid: 3554 components: - type: Transform - pos: -4.5,-8.5 + pos: 5.5,-23.5 parent: 1 - - uid: 5296 + - uid: 3555 components: - type: Transform - pos: -4.5,-7.5 + pos: 6.5,-20.5 parent: 1 - - uid: 5297 + - uid: 3556 components: - type: Transform - pos: -4.5,-6.5 + pos: 4.5,-20.5 parent: 1 - - uid: 5298 + - uid: 3557 components: - type: Transform - pos: -4.5,-5.5 + pos: 6.5,-19.5 parent: 1 - - uid: 5299 + - uid: 3558 components: - type: Transform - pos: -4.5,-4.5 + pos: 9.5,-17.5 parent: 1 - - uid: 5300 + - uid: 3559 components: - type: Transform - pos: -4.5,-3.5 + pos: 9.5,-16.5 parent: 1 - - uid: 5301 + - uid: 3560 components: - type: Transform - pos: -5.5,-10.5 + pos: 9.5,-15.5 parent: 1 - - uid: 5302 + - uid: 3561 components: - type: Transform - pos: -5.5,-9.5 + pos: 9.5,-14.5 parent: 1 - - uid: 5303 + - uid: 3562 components: - type: Transform - pos: -5.5,-8.5 + pos: 8.5,-22.5 parent: 1 - - uid: 5304 + - uid: 3563 components: - type: Transform - pos: -5.5,-7.5 + pos: 6.5,-21.5 parent: 1 - - uid: 5305 + - uid: 3578 components: - type: Transform - pos: -5.5,-6.5 + rot: 1.5707963267948966 rad + pos: -28.5,-80.5 parent: 1 - - uid: 5306 + - uid: 3579 components: - type: Transform - pos: -5.5,-5.5 + rot: 1.5707963267948966 rad + pos: -30.5,-80.5 parent: 1 - - uid: 5307 + - uid: 3580 components: - type: Transform - pos: -5.5,-4.5 + rot: 1.5707963267948966 rad + pos: -32.5,-83.5 parent: 1 - - uid: 5308 + - uid: 3747 components: - type: Transform - pos: -5.5,-3.5 + rot: 1.5707963267948966 rad + pos: -27.5,-81.5 parent: 1 - - uid: 5309 + - uid: 3748 components: - type: Transform - pos: -6.5,-10.5 + rot: 1.5707963267948966 rad + pos: -29.5,-81.5 parent: 1 - - uid: 5310 + - uid: 3749 components: - type: Transform - pos: -6.5,-9.5 + rot: 1.5707963267948966 rad + pos: -25.5,-81.5 parent: 1 - - uid: 5311 + - uid: 3750 components: - type: Transform - pos: -6.5,-8.5 + rot: 1.5707963267948966 rad + pos: -30.5,-83.5 parent: 1 - - uid: 5313 + - uid: 3753 components: - type: Transform - pos: -6.5,-7.5 + rot: 1.5707963267948966 rad + pos: -32.5,-80.5 parent: 1 - - uid: 5314 + - uid: 3755 components: - type: Transform - pos: -6.5,-6.5 + rot: 1.5707963267948966 rad + pos: -25.5,-83.5 parent: 1 - - uid: 5315 + - uid: 3756 components: - type: Transform - pos: -6.5,-5.5 + rot: 1.5707963267948966 rad + pos: -25.5,-82.5 parent: 1 - - uid: 5316 + - uid: 3758 components: - type: Transform - pos: -6.5,-4.5 + rot: 1.5707963267948966 rad + pos: -28.5,-81.5 parent: 1 - - uid: 5317 + - uid: 3759 components: - type: Transform - pos: -6.5,-3.5 + rot: 1.5707963267948966 rad + pos: -31.5,-80.5 parent: 1 - - uid: 5318 + - uid: 3761 components: - type: Transform - pos: -7.5,-10.5 + rot: 1.5707963267948966 rad + pos: -28.5,-83.5 parent: 1 - - uid: 5319 + - uid: 3762 components: - type: Transform - pos: -7.5,-9.5 + rot: 1.5707963267948966 rad + pos: -29.5,-83.5 parent: 1 - - uid: 5320 + - uid: 3763 components: - type: Transform - pos: -7.5,-8.5 + rot: 1.5707963267948966 rad + pos: -27.5,-82.5 parent: 1 - - uid: 5321 + - uid: 3764 components: - type: Transform - pos: -7.5,-7.5 + rot: 1.5707963267948966 rad + pos: -30.5,-82.5 parent: 1 - - uid: 5322 + - uid: 3765 components: - type: Transform - pos: -7.5,-6.5 + rot: 1.5707963267948966 rad + pos: -29.5,-82.5 parent: 1 - - uid: 5323 + - uid: 3766 components: - type: Transform - pos: -7.5,-5.5 + rot: 1.5707963267948966 rad + pos: -28.5,-82.5 parent: 1 - - uid: 5324 + - uid: 4008 components: - type: Transform - pos: -7.5,-4.5 + pos: 4.5,-19.5 parent: 1 - - uid: 5325 + - uid: 4009 components: - type: Transform - pos: -7.5,-3.5 + pos: -18.5,-46.5 parent: 1 - - uid: 5326 + - uid: 4010 components: - type: Transform - pos: -8.5,-10.5 + pos: -18.5,-47.5 parent: 1 - - uid: 5327 + - uid: 4011 components: - type: Transform - pos: -8.5,-9.5 + pos: -18.5,-48.5 parent: 1 - - uid: 5328 + - uid: 4012 components: - type: Transform - pos: -8.5,-8.5 + pos: 5.5,-13.5 parent: 1 - - uid: 5329 + - uid: 4013 components: - type: Transform - pos: -8.5,-7.5 + pos: 5.5,-12.5 parent: 1 - - uid: 5331 + - uid: 4014 components: - type: Transform - pos: -8.5,-6.5 + pos: 5.5,-11.5 parent: 1 - - uid: 5332 + - uid: 4015 components: - type: Transform - pos: -8.5,-5.5 + pos: 4.5,-34.5 parent: 1 - - uid: 5333 + - uid: 4016 components: - type: Transform - pos: -8.5,-4.5 + pos: 4.5,-33.5 parent: 1 - - uid: 5334 + - uid: 4017 components: - type: Transform - pos: -8.5,-3.5 + pos: 4.5,-32.5 parent: 1 - - uid: 5335 + - uid: 4018 components: - type: Transform - pos: -9.5,-10.5 + pos: 4.5,-31.5 parent: 1 - - uid: 5336 + - uid: 4019 components: - type: Transform - pos: -9.5,-9.5 + pos: 4.5,-30.5 parent: 1 - - uid: 5337 + - uid: 4020 components: - type: Transform - pos: -9.5,-8.5 + pos: 4.5,-29.5 parent: 1 - - uid: 5338 + - uid: 4021 components: - type: Transform - pos: -9.5,-7.5 + pos: 4.5,-28.5 parent: 1 - - uid: 5339 + - uid: 4022 components: - type: Transform - pos: -9.5,-6.5 + pos: 4.5,-27.5 parent: 1 - - uid: 5340 + - uid: 4023 components: - type: Transform - pos: -9.5,-5.5 + pos: 4.5,-26.5 parent: 1 - - uid: 5341 + - uid: 4024 components: - type: Transform - pos: -9.5,-4.5 + pos: 4.5,-25.5 parent: 1 - - uid: 5342 + - uid: 4025 components: - type: Transform - pos: -9.5,4.5 + pos: 4.5,-24.5 parent: 1 - - uid: 5343 + - uid: 4026 components: - type: Transform - pos: -9.5,5.5 + pos: 4.5,-23.5 parent: 1 - - uid: 5344 + - uid: 4027 components: - type: Transform - pos: -9.5,6.5 + pos: 9.5,-20.5 parent: 1 - - uid: 5345 + - uid: 4028 components: - type: Transform - pos: -9.5,7.5 + pos: 4.5,-21.5 parent: 1 - - uid: 5346 + - uid: 4029 components: - type: Transform - pos: -9.5,8.5 + pos: 6.5,-18.5 parent: 1 - - uid: 5347 + - uid: 4030 components: - type: Transform - pos: -9.5,9.5 + pos: 8.5,-16.5 parent: 1 - - uid: 5348 + - uid: 4031 components: - type: Transform - pos: -9.5,10.5 + pos: 8.5,-15.5 parent: 1 - - uid: 5350 + - uid: 4032 components: - type: Transform - pos: -9.5,11.5 + pos: 8.5,-14.5 parent: 1 - - uid: 5351 + - uid: 4033 components: - type: Transform - pos: -9.5,12.5 + pos: 3.5,-19.5 parent: 1 - - uid: 5352 + - uid: 4034 components: - type: Transform - pos: -9.5,13.5 + pos: 3.5,-18.5 parent: 1 - - uid: 5353 + - uid: 4040 components: - type: Transform - pos: -8.5,13.5 + pos: 3.5,-17.5 parent: 1 - - uid: 5354 + - uid: 4041 components: - type: Transform - pos: -8.5,12.5 + pos: 4.5,-13.5 parent: 1 - - uid: 5355 + - uid: 4042 components: - type: Transform - pos: -8.5,11.5 + pos: 4.5,-12.5 parent: 1 - - uid: 5356 + - uid: 4043 components: - type: Transform - pos: -8.5,10.5 + pos: 4.5,-11.5 parent: 1 - - uid: 5357 + - uid: 4044 components: - type: Transform - pos: -8.5,9.5 + pos: 3.5,-34.5 parent: 1 - - uid: 5358 + - uid: 4045 components: - type: Transform - pos: -8.5,8.5 + pos: 3.5,-33.5 parent: 1 - - uid: 5359 + - uid: 4046 components: - type: Transform - pos: -8.5,7.5 + pos: 3.5,-32.5 parent: 1 - - uid: 5360 + - uid: 4047 components: - type: Transform - pos: -8.5,6.5 + pos: 3.5,-31.5 parent: 1 - - uid: 5361 + - uid: 4048 components: - type: Transform - pos: -8.5,3.5 + pos: 3.5,-30.5 parent: 1 - - uid: 5362 + - uid: 4049 components: - type: Transform - pos: -8.5,2.5 + pos: 3.5,-29.5 parent: 1 - - uid: 5363 + - uid: 4050 components: - type: Transform - pos: -7.5,13.5 + pos: 3.5,-28.5 parent: 1 - - uid: 5364 + - uid: 4051 components: - type: Transform - pos: -7.5,12.5 + pos: 3.5,-27.5 parent: 1 - - uid: 5365 + - uid: 4052 components: - type: Transform - pos: -7.5,11.5 + pos: 3.5,-26.5 parent: 1 - - uid: 5366 + - uid: 4053 components: - type: Transform - pos: -7.5,10.5 + pos: 3.5,-25.5 parent: 1 - - uid: 5367 + - uid: 4054 components: - type: Transform - pos: -7.5,9.5 + pos: 3.5,-24.5 parent: 1 - - uid: 5368 + - uid: 4055 components: - type: Transform - pos: -7.5,8.5 + pos: 3.5,-23.5 parent: 1 - - uid: 5372 + - uid: 4056 components: - type: Transform - pos: -7.5,7.5 + pos: 3.5,-14.5 parent: 1 - - uid: 5373 + - uid: 4057 components: - type: Transform - pos: -8.5,5.5 + pos: 9.5,-19.5 parent: 1 - - uid: 5374 + - uid: 4058 components: - type: Transform - pos: -8.5,4.5 + pos: 4.5,-22.5 parent: 1 - - uid: 5375 + - uid: 4059 components: - type: Transform - pos: -7.5,6.5 + pos: 5.5,-15.5 parent: 1 - - uid: 5376 + - uid: 4061 components: - type: Transform - pos: -7.5,5.5 + pos: 6.5,-17.5 parent: 1 - - uid: 5377 + - uid: 4062 components: - type: Transform - pos: -7.5,4.5 + pos: 7.5,-14.5 parent: 1 - - uid: 5378 + - uid: 4064 components: - type: Transform - pos: -7.5,3.5 + pos: -8.5,-33.5 parent: 1 - - uid: 5379 + - uid: 4069 components: - type: Transform - pos: -7.5,2.5 + pos: 3.5,-20.5 parent: 1 - - uid: 5380 + - uid: 4070 components: - type: Transform - pos: -6.5,13.5 + pos: 7.5,-21.5 parent: 1 - - uid: 5381 + - uid: 4071 components: - type: Transform - pos: -6.5,12.5 + pos: 3.5,-16.5 parent: 1 - - uid: 5382 + - uid: 4072 components: - type: Transform - pos: -6.5,11.5 + pos: 3.5,-13.5 parent: 1 - - uid: 5383 + - uid: 4073 components: - type: Transform - pos: -6.5,10.5 + pos: 3.5,-12.5 parent: 1 - - uid: 5389 + - uid: 4075 components: - type: Transform - pos: -6.5,9.5 + pos: 3.5,-11.5 parent: 1 - - uid: 5390 + - uid: 4076 components: - type: Transform - pos: -6.5,8.5 + pos: 2.5,-33.5 parent: 1 - - uid: 5392 + - uid: 4077 components: - type: Transform - pos: -6.5,7.5 + pos: 2.5,-32.5 parent: 1 - - uid: 5393 + - uid: 4078 components: - type: Transform - pos: -6.5,6.5 + pos: 2.5,-31.5 parent: 1 - - uid: 5394 + - uid: 4079 components: - type: Transform - pos: -6.5,5.5 + pos: 2.5,-30.5 parent: 1 - - uid: 5395 + - uid: 4080 components: - type: Transform - pos: -6.5,4.5 + pos: 2.5,-29.5 parent: 1 - - uid: 5396 + - uid: 4081 components: - type: Transform - pos: -6.5,3.5 + pos: 2.5,-28.5 parent: 1 - - uid: 5397 + - uid: 4082 components: - type: Transform - pos: 3.5,-15.5 + pos: 2.5,-27.5 parent: 1 - - uid: 5407 + - uid: 4083 components: - type: Transform - pos: -6.5,2.5 + pos: 2.5,-26.5 parent: 1 - - uid: 5409 + - uid: 4084 components: - type: Transform - pos: -5.5,13.5 + pos: 2.5,-25.5 parent: 1 - - uid: 5410 + - uid: 4088 components: - type: Transform - pos: -5.5,12.5 + pos: 2.5,-24.5 parent: 1 - - uid: 5411 + - uid: 4094 components: - type: Transform - pos: -5.5,11.5 + pos: 2.5,-23.5 parent: 1 - - uid: 5412 + - uid: 4095 components: - type: Transform - pos: -5.5,10.5 + pos: 2.5,-22.5 parent: 1 - - uid: 5414 + - uid: 4096 components: - type: Transform - pos: -5.5,9.5 + pos: 2.5,-21.5 parent: 1 - - uid: 5426 + - uid: 4097 components: - type: Transform - pos: -5.5,8.5 + pos: 2.5,-20.5 parent: 1 - - uid: 5427 + - uid: 4098 components: - type: Transform - pos: -5.5,7.5 + pos: 9.5,-18.5 parent: 1 - - uid: 5430 + - uid: 4103 components: - type: Transform - pos: 8.5,-21.5 + pos: 5.5,-16.5 parent: 1 - - uid: 5432 + - uid: 4104 components: - type: Transform - pos: -5.5,6.5 + pos: 6.5,-14.5 parent: 1 - - uid: 5433 + - uid: 4105 components: - type: Transform - pos: -5.5,5.5 + pos: 3.5,-21.5 parent: 1 - - uid: 5437 + - uid: 4108 components: - type: Transform - pos: -5.5,4.5 + pos: 3.5,-22.5 parent: 1 - - uid: 5438 + - uid: 4109 components: - type: Transform - pos: -5.5,3.5 + pos: 7.5,-20.5 parent: 1 - - uid: 5449 + - uid: 4110 components: - type: Transform - pos: -5.5,2.5 + pos: 2.5,-13.5 parent: 1 - - uid: 5450 + - uid: 4111 components: - type: Transform - pos: -4.5,13.5 + pos: 2.5,-12.5 parent: 1 - - uid: 5454 + - uid: 4114 components: - type: Transform - pos: 2.5,-19.5 + pos: 2.5,-11.5 parent: 1 - - uid: 5473 + - uid: 4122 components: - type: Transform - pos: -4.5,12.5 + pos: 22.5,-8.5 parent: 1 - - uid: 5474 + - uid: 4123 components: - type: Transform - pos: -4.5,11.5 + pos: 22.5,-7.5 parent: 1 - - uid: 5475 + - uid: 4124 components: - type: Transform - pos: -4.5,10.5 + pos: 22.5,-6.5 parent: 1 - - uid: 5476 + - uid: 4128 components: - type: Transform - pos: -4.5,9.5 + pos: 22.5,-5.5 parent: 1 - - uid: 5477 + - uid: 4129 components: - type: Transform - pos: -4.5,8.5 + pos: 22.5,-4.5 parent: 1 - - uid: 5478 + - uid: 4130 components: - type: Transform - pos: -4.5,7.5 + pos: 22.5,-3.5 parent: 1 - - uid: 5479 + - uid: 4131 components: - type: Transform - pos: -4.5,6.5 + pos: 22.5,-2.5 parent: 1 - - uid: 5490 + - uid: 4132 components: - type: Transform - pos: -4.5,4.5 + pos: -17.5,-37.5 parent: 1 - - uid: 5513 + - uid: 4136 components: - type: Transform - pos: -4.5,2.5 + pos: 22.5,-1.5 parent: 1 - - uid: 5541 + - uid: 4137 components: - type: Transform - pos: -3.5,12.5 + pos: 22.5,-0.5 parent: 1 - - uid: 5562 + - uid: 4141 components: - type: Transform - pos: -3.5,10.5 + pos: 22.5,-10.5 parent: 1 - - uid: 5563 + - uid: 4148 components: - type: Transform - pos: -3.5,8.5 + pos: 22.5,-9.5 parent: 1 - - uid: 5573 + - uid: 4149 components: - type: Transform - pos: -3.5,6.5 + pos: 22.5,0.5 parent: 1 - - uid: 5574 + - uid: 4150 components: - type: Transform - pos: -3.5,4.5 + pos: 22.5,1.5 parent: 1 - - uid: 5589 + - uid: 4155 components: - type: Transform - pos: -3.5,2.5 + pos: 22.5,2.5 parent: 1 - - uid: 5590 + - uid: 4156 components: - type: Transform - pos: 9.5,12.5 + pos: 22.5,3.5 parent: 1 - - uid: 5591 + - uid: 4157 components: - type: Transform - pos: 9.5,10.5 + pos: 22.5,4.5 parent: 1 - - uid: 5595 + - uid: 4158 components: - type: Transform - pos: 9.5,9.5 + pos: 22.5,5.5 parent: 1 - - uid: 5599 + - uid: 4159 components: - type: Transform - pos: 9.5,8.5 + pos: 22.5,6.5 parent: 1 - - uid: 5600 + - uid: 4162 components: - type: Transform - pos: 9.5,7.5 + pos: 22.5,7.5 parent: 1 - - uid: 5601 + - uid: 4163 components: - type: Transform - pos: 9.5,6.5 + pos: 22.5,8.5 parent: 1 - - uid: 5602 + - uid: 4164 components: - type: Transform - pos: 9.5,5.5 + pos: 22.5,9.5 parent: 1 - - uid: 5603 + - uid: 4167 components: - type: Transform - pos: 9.5,4.5 + pos: 22.5,10.5 parent: 1 - - uid: 5605 + - uid: 4168 components: - type: Transform - pos: 9.5,3.5 + pos: 22.5,11.5 parent: 1 - - uid: 5606 + - uid: 4175 components: - type: Transform - pos: 8.5,13.5 + pos: 22.5,12.5 parent: 1 - - uid: 5607 + - uid: 4176 components: - type: Transform - pos: 8.5,12.5 + pos: 22.5,13.5 parent: 1 - - uid: 5612 + - uid: 4177 components: - type: Transform - pos: 8.5,11.5 + pos: -8.5,-32.5 parent: 1 - - uid: 5613 + - uid: 4180 components: - type: Transform - pos: 8.5,10.5 + pos: 22.5,14.5 parent: 1 - - uid: 5615 + - uid: 4181 components: - type: Transform - pos: 8.5,9.5 + pos: 22.5,15.5 parent: 1 - - uid: 5616 + - uid: 4182 components: - type: Transform - pos: 8.5,8.5 + pos: 22.5,16.5 parent: 1 - - uid: 5619 + - uid: 4183 components: - type: Transform - pos: 8.5,7.5 + pos: 22.5,17.5 parent: 1 - - uid: 5620 + - uid: 4184 components: - type: Transform - pos: 8.5,6.5 + pos: 22.5,18.5 parent: 1 - - uid: 5621 + - uid: 4185 components: - type: Transform - pos: 8.5,5.5 + pos: 22.5,19.5 parent: 1 - - uid: 5622 + - uid: 4186 components: - type: Transform - pos: 8.5,3.5 + pos: 22.5,20.5 parent: 1 - - uid: 5623 + - uid: 4187 components: - type: Transform - pos: 7.5,13.5 + pos: 22.5,21.5 parent: 1 - - uid: 5624 + - uid: 4188 components: - type: Transform - pos: 7.5,10.5 + pos: 22.5,22.5 parent: 1 - - uid: 5625 + - uid: 4189 components: - type: Transform - pos: 7.5,7.5 + pos: 22.5,23.5 parent: 1 - - uid: 5634 + - uid: 4190 components: - type: Transform - pos: 7.5,4.5 + pos: 22.5,24.5 parent: 1 - - uid: 5635 + - uid: 4191 components: - type: Transform - pos: 6.5,13.5 + pos: 22.5,25.5 parent: 1 - - uid: 5642 + - uid: 4192 components: - type: Transform - pos: 6.5,10.5 + pos: 22.5,26.5 parent: 1 - - uid: 5657 + - uid: 4193 components: - type: Transform - pos: 6.5,7.5 + pos: 22.5,27.5 parent: 1 - - uid: 5658 + - uid: 4194 components: - type: Transform - pos: 5.5,7.5 + pos: 22.5,28.5 parent: 1 - - uid: 5659 + - uid: 4195 components: - type: Transform - pos: 5.5,4.5 + pos: 22.5,29.5 parent: 1 - - uid: 5660 + - uid: 4196 components: - type: Transform - pos: 4.5,13.5 + pos: 22.5,30.5 parent: 1 - - uid: 5664 + - uid: 4197 components: - type: Transform - pos: 6.5,4.5 + pos: 22.5,31.5 parent: 1 - - uid: 5666 + - uid: 4198 components: - type: Transform - pos: 5.5,13.5 + pos: 22.5,32.5 parent: 1 - - uid: 5667 + - uid: 4199 components: - type: Transform - pos: 5.5,10.5 + pos: 22.5,33.5 parent: 1 - - uid: 5668 + - uid: 4200 components: - type: Transform - pos: 4.5,10.5 + pos: 22.5,34.5 parent: 1 - - uid: 5670 + - uid: 4201 components: - type: Transform - pos: 4.5,9.5 + pos: 21.5,-10.5 parent: 1 - - uid: 5671 + - uid: 4202 components: - type: Transform - pos: 4.5,8.5 + pos: 21.5,-9.5 parent: 1 - - uid: 5672 + - uid: 4203 components: - type: Transform - pos: 4.5,7.5 + pos: 21.5,-8.5 parent: 1 - - uid: 5673 + - uid: 4204 components: - type: Transform - pos: 4.5,6.5 + pos: 21.5,-7.5 parent: 1 - - uid: 5674 + - uid: 4205 components: - type: Transform - pos: 4.5,5.5 + pos: 21.5,-6.5 parent: 1 - - uid: 5675 + - uid: 4206 components: - type: Transform - pos: 4.5,4.5 + pos: 21.5,-5.5 parent: 1 - - uid: 5679 + - uid: 4207 components: - type: Transform - pos: 4.5,3.5 + pos: 21.5,-4.5 parent: 1 - - uid: 5680 + - uid: 4208 components: - type: Transform - pos: 4.5,2.5 + pos: 21.5,-3.5 parent: 1 - - uid: 5681 + - uid: 4209 components: - type: Transform - pos: 3.5,13.5 + pos: 21.5,-2.5 parent: 1 - - uid: 5682 + - uid: 4210 components: - type: Transform - pos: 3.5,12.5 + pos: 21.5,-1.5 parent: 1 - - uid: 5683 + - uid: 4211 components: - type: Transform - pos: 3.5,11.5 + pos: 21.5,-0.5 parent: 1 - - uid: 5684 + - uid: 4212 components: - type: Transform - pos: 3.5,10.5 + pos: 21.5,0.5 parent: 1 - - uid: 5685 + - uid: 4213 components: - type: Transform - pos: 3.5,8.5 + pos: 21.5,7.5 parent: 1 - - uid: 5686 + - uid: 4214 components: - type: Transform - pos: 3.5,6.5 + pos: 21.5,8.5 parent: 1 - - uid: 5687 + - uid: 4215 components: - type: Transform - pos: 3.5,4.5 + pos: 21.5,9.5 parent: 1 - - uid: 5688 + - uid: 4216 components: - type: Transform - pos: 3.5,2.5 + pos: 21.5,10.5 parent: 1 - - uid: 5689 + - uid: 4217 components: - type: Transform - pos: 2.5,12.5 + pos: 21.5,11.5 parent: 1 - - uid: 5690 + - uid: 4218 components: - type: Transform - pos: 2.5,10.5 + pos: 21.5,12.5 parent: 1 - - uid: 5691 + - uid: 4219 components: - type: Transform - pos: 2.5,8.5 + pos: 21.5,13.5 parent: 1 - - uid: 5692 + - uid: 4220 components: - type: Transform - pos: 2.5,6.5 + pos: 21.5,14.5 parent: 1 - - uid: 5693 + - uid: 4221 components: - type: Transform - pos: 2.5,4.5 + pos: 21.5,15.5 parent: 1 - - uid: 5694 + - uid: 4222 components: - type: Transform - pos: 2.5,2.5 + pos: 21.5,16.5 parent: 1 - - uid: 5695 + - uid: 4223 components: - type: Transform - pos: -10.5,-4.5 + pos: 21.5,17.5 parent: 1 - - uid: 5696 + - uid: 4224 components: - type: Transform - pos: -12.5,-5.5 + pos: 21.5,18.5 parent: 1 - - uid: 5697 + - uid: 4225 components: - type: Transform - pos: -14.5,-3.5 + pos: 21.5,19.5 parent: 1 - - uid: 5698 + - uid: 4226 components: - type: Transform - pos: -15.5,-1.5 + pos: 21.5,20.5 parent: 1 - - uid: 5699 + - uid: 4227 components: - type: Transform - pos: -16.5,-0.5 + pos: 21.5,21.5 parent: 1 - - uid: 5700 + - uid: 4228 components: - type: Transform - pos: -16.5,1.5 + pos: 21.5,22.5 parent: 1 - - uid: 5701 + - uid: 4229 components: - type: Transform - pos: -14.5,3.5 + pos: 21.5,23.5 parent: 1 - - uid: 5702 + - uid: 4230 components: - type: Transform - pos: -11.5,4.5 + pos: 21.5,24.5 parent: 1 - - uid: 5703 + - uid: 4231 components: - type: Transform - pos: -10.5,4.5 + pos: 21.5,25.5 parent: 1 - - uid: 5704 + - uid: 4232 components: - type: Transform - pos: -9.5,2.5 + pos: 21.5,26.5 parent: 1 - - uid: 5705 + - uid: 4233 components: - type: Transform - pos: -23.5,-24.5 + pos: 21.5,27.5 parent: 1 - - uid: 5706 + - uid: 4234 components: - type: Transform - pos: -23.5,-22.5 + pos: 21.5,28.5 parent: 1 - - uid: 5707 + - uid: 4235 components: - type: Transform - pos: -23.5,-20.5 + pos: 21.5,29.5 parent: 1 - - uid: 5708 + - uid: 4236 components: - type: Transform - pos: -23.5,-18.5 + pos: 21.5,30.5 parent: 1 - - uid: 5709 + - uid: 4237 components: - type: Transform - pos: -23.5,-16.5 + pos: 21.5,31.5 parent: 1 - - uid: 5710 + - uid: 4238 components: - type: Transform - pos: -23.5,-14.5 + pos: 21.5,32.5 parent: 1 - - uid: 5711 + - uid: 4239 components: - type: Transform - pos: -23.5,-12.5 + pos: 21.5,33.5 parent: 1 - - uid: 5712 + - uid: 4240 components: - type: Transform - pos: -23.5,-10.5 + pos: 21.5,34.5 parent: 1 - - uid: 5713 + - uid: 4241 components: - type: Transform - pos: -23.5,-8.5 + pos: 20.5,-10.5 parent: 1 - - uid: 5714 + - uid: 4242 components: - type: Transform - pos: -23.5,-6.5 + pos: 20.5,-9.5 parent: 1 - - uid: 5715 + - uid: 4243 components: - type: Transform - pos: -23.5,-4.5 + pos: 20.5,-8.5 parent: 1 - - uid: 5716 + - uid: 4244 components: - type: Transform - pos: -23.5,-2.5 + pos: 20.5,-7.5 parent: 1 - - uid: 5717 + - uid: 4245 components: - type: Transform - pos: -23.5,-0.5 + pos: 20.5,-6.5 parent: 1 - - uid: 5718 + - uid: 4246 components: - type: Transform - pos: -23.5,1.5 + pos: 20.5,-5.5 parent: 1 - - uid: 5719 + - uid: 4247 components: - type: Transform - pos: -23.5,3.5 + pos: 20.5,-4.5 parent: 1 - - uid: 5720 + - uid: 4248 components: - type: Transform - pos: -23.5,5.5 + pos: 20.5,-3.5 parent: 1 - - uid: 5721 + - uid: 4249 components: - type: Transform - pos: -23.5,7.5 + pos: 20.5,-2.5 parent: 1 - - uid: 5722 + - uid: 4250 components: - type: Transform - pos: -23.5,9.5 + pos: 20.5,-1.5 parent: 1 - - uid: 5723 + - uid: 4251 components: - type: Transform - pos: -23.5,11.5 + pos: 20.5,-0.5 parent: 1 - - uid: 5724 + - uid: 4252 components: - type: Transform - pos: -23.5,13.5 + pos: 20.5,0.5 parent: 1 - - uid: 5725 + - uid: 4253 components: - type: Transform - pos: -23.5,15.5 + pos: 20.5,1.5 parent: 1 - - uid: 5726 + - uid: 4254 components: - type: Transform - pos: -23.5,17.5 + pos: 20.5,2.5 parent: 1 - - uid: 5727 + - uid: 4255 components: - type: Transform - pos: -23.5,19.5 + pos: 20.5,3.5 parent: 1 - - uid: 5728 + - uid: 4256 components: - type: Transform - pos: -23.5,21.5 + pos: 20.5,4.5 parent: 1 - - uid: 5729 + - uid: 4257 components: - type: Transform - pos: -23.5,23.5 + pos: 20.5,5.5 parent: 1 - - uid: 5730 + - uid: 4258 components: - type: Transform - pos: -23.5,25.5 + pos: 20.5,6.5 parent: 1 - - uid: 5731 + - uid: 4259 components: - type: Transform - pos: -23.5,27.5 + pos: 20.5,7.5 parent: 1 - - uid: 5732 + - uid: 4260 components: - type: Transform - pos: -23.5,29.5 + pos: 20.5,8.5 parent: 1 - - uid: 5733 + - uid: 4261 components: - type: Transform - pos: -23.5,31.5 + pos: 20.5,9.5 parent: 1 - - uid: 5734 + - uid: 4262 components: - type: Transform - pos: -23.5,33.5 + pos: 20.5,10.5 parent: 1 - - uid: 5735 + - uid: 4263 components: - type: Transform - pos: -23.5,35.5 + pos: 20.5,11.5 parent: 1 - - uid: 5736 + - uid: 4264 components: - type: Transform - pos: -23.5,37.5 + pos: 20.5,12.5 parent: 1 - - uid: 5737 + - uid: 4271 components: - type: Transform - pos: -24.5,-61.5 + pos: 20.5,13.5 parent: 1 - - uid: 5738 + - uid: 4272 components: - type: Transform - pos: -24.5,-59.5 + pos: 20.5,14.5 parent: 1 - - uid: 5739 + - uid: 4273 components: - type: Transform - pos: -24.5,-57.5 + pos: 20.5,15.5 parent: 1 - - uid: 5740 + - uid: 4274 components: - type: Transform - pos: -24.5,-55.5 + pos: 20.5,16.5 parent: 1 - - uid: 5741 + - uid: 4275 components: - type: Transform - pos: -24.5,-53.5 + pos: 20.5,19.5 parent: 1 - - uid: 5742 + - uid: 4276 components: - type: Transform - pos: -24.5,-51.5 + pos: 20.5,20.5 parent: 1 - - uid: 5743 + - uid: 4277 components: - type: Transform - pos: -24.5,-49.5 + pos: 20.5,21.5 parent: 1 - - uid: 5744 + - uid: 4278 components: - type: Transform - pos: -24.5,-47.5 + pos: 20.5,22.5 parent: 1 - - uid: 5751 + - uid: 4279 components: - type: Transform - pos: -24.5,-45.5 + pos: 20.5,23.5 parent: 1 - - uid: 5752 + - uid: 4280 components: - type: Transform - pos: -24.5,-43.5 + pos: 20.5,24.5 parent: 1 - - uid: 5769 + - uid: 4281 components: - type: Transform - pos: -24.5,-41.5 + pos: 20.5,25.5 parent: 1 - - uid: 5770 + - uid: 4282 components: - type: Transform - pos: -24.5,-39.5 + pos: 20.5,26.5 parent: 1 - - uid: 5776 + - uid: 4283 components: - type: Transform - pos: -24.5,-37.5 + pos: 20.5,27.5 parent: 1 - - uid: 5777 + - uid: 4284 components: - type: Transform - pos: -24.5,-35.5 + pos: 20.5,17.5 parent: 1 - - uid: 5778 + - uid: 4285 components: - type: Transform - pos: -24.5,-33.5 + pos: 20.5,18.5 parent: 1 - - uid: 5779 + - uid: 4288 components: - type: Transform - pos: -24.5,-31.5 + pos: 20.5,28.5 parent: 1 - - uid: 5780 + - uid: 4289 components: - type: Transform - pos: -24.5,-29.5 + pos: 20.5,29.5 parent: 1 - - uid: 5781 + - uid: 4290 components: - type: Transform - pos: -24.5,-27.5 + pos: 20.5,30.5 parent: 1 - - uid: 5782 + - uid: 4291 components: - type: Transform - pos: -24.5,-25.5 + pos: 20.5,31.5 parent: 1 - - uid: 5783 + - uid: 4292 components: - type: Transform - pos: -24.5,-23.5 + pos: 20.5,32.5 parent: 1 - - uid: 5784 + - uid: 4293 components: - type: Transform - pos: -24.5,-21.5 + pos: 20.5,33.5 parent: 1 - - uid: 5785 + - uid: 4295 components: - type: Transform - pos: -24.5,-19.5 + pos: 20.5,34.5 parent: 1 - - uid: 5786 + - uid: 4296 components: - type: Transform - pos: -24.5,-17.5 + pos: 19.5,-10.5 parent: 1 - - uid: 5787 + - uid: 4297 components: - type: Transform - pos: -24.5,-15.5 + pos: -17.5,-38.5 parent: 1 - - uid: 5788 + - uid: 4299 components: - type: Transform - pos: -24.5,-13.5 + pos: -17.5,-40.5 parent: 1 - - uid: 5789 + - uid: 4300 components: - type: Transform - pos: -24.5,-11.5 + pos: -17.5,-43.5 parent: 1 - - uid: 5790 + - uid: 4301 components: - type: Transform - pos: -24.5,-9.5 + pos: 19.5,-9.5 parent: 1 - - uid: 5791 + - uid: 4302 components: - type: Transform - pos: -24.5,-7.5 + pos: 19.5,-8.5 parent: 1 - - uid: 5792 + - uid: 4303 components: - type: Transform - pos: -24.5,-5.5 + pos: 19.5,-7.5 parent: 1 - - uid: 5793 + - uid: 4304 components: - type: Transform - pos: -24.5,-2.5 + pos: -17.5,-48.5 parent: 1 - - uid: 5794 + - uid: 4305 components: - type: Transform - pos: -24.5,-0.5 + pos: 19.5,-6.5 parent: 1 - - uid: 5795 + - uid: 4306 components: - type: Transform - pos: -24.5,1.5 + pos: 19.5,-5.5 parent: 1 - - uid: 5796 + - uid: 4307 components: - type: Transform - pos: -24.5,3.5 + pos: 19.5,-4.5 parent: 1 - - uid: 5797 + - uid: 4308 components: - type: Transform - pos: -24.5,-4.5 + pos: 19.5,-3.5 parent: 1 - - uid: 5798 + - uid: 4309 components: - type: Transform - pos: -24.5,6.5 + pos: 19.5,-2.5 parent: 1 - - uid: 5799 + - uid: 4310 components: - type: Transform - pos: -24.5,8.5 + pos: 19.5,-1.5 parent: 1 - - uid: 5800 + - uid: 4311 components: - type: Transform - pos: -24.5,10.5 + pos: 19.5,-0.5 parent: 1 - - uid: 5845 + - uid: 4312 components: - type: Transform - pos: 5.5,-17.5 + pos: -16.5,-37.5 parent: 1 - - uid: 5847 + - uid: 4313 components: - type: Transform - pos: 6.5,-15.5 + pos: -16.5,-38.5 parent: 1 - - uid: 5848 + - uid: 4314 components: - type: Transform - pos: -24.5,12.5 + pos: -16.5,-40.5 parent: 1 - - uid: 5929 + - uid: 4315 components: - type: Transform - pos: 5.5,-14.5 + pos: -16.5,-43.5 parent: 1 - - uid: 5944 + - uid: 4316 components: - type: Transform - pos: 7.5,-15.5 + pos: -16.5,-48.5 parent: 1 - - uid: 5945 + - uid: 4317 components: - type: Transform - pos: 4.5,-16.5 + pos: -15.5,-35.5 parent: 1 - - uid: 5954 + - uid: 4318 components: - type: Transform - pos: -24.5,14.5 + pos: 19.5,0.5 parent: 1 - - uid: 5962 + - uid: 4319 components: - type: Transform - pos: -24.5,16.5 + pos: -15.5,-37.5 parent: 1 - - uid: 5963 + - uid: 4320 components: - type: Transform - pos: -24.5,18.5 + pos: -15.5,-38.5 parent: 1 - - uid: 5964 + - uid: 4323 components: - type: Transform - pos: -24.5,20.5 + pos: -15.5,-40.5 parent: 1 - - uid: 5992 + - uid: 4324 components: - type: Transform - pos: -24.5,22.5 + pos: -15.5,-43.5 parent: 1 - - uid: 6012 + - uid: 4325 components: - type: Transform - pos: -24.5,24.5 + pos: -15.5,-48.5 parent: 1 - - uid: 6013 + - uid: 4327 components: - type: Transform - pos: -24.5,26.5 + pos: -8.5,-31.5 parent: 1 - - uid: 6031 + - uid: 4328 components: - type: Transform - pos: -24.5,28.5 + pos: 19.5,1.5 parent: 1 - - uid: 6056 + - uid: 4329 components: - type: Transform - pos: -24.5,30.5 + pos: 19.5,2.5 parent: 1 - - uid: 6057 + - uid: 4330 components: - type: Transform - pos: -24.5,32.5 + pos: 19.5,3.5 parent: 1 - - uid: 6058 + - uid: 4331 components: - type: Transform - pos: -24.5,34.5 + pos: 19.5,4.5 parent: 1 - - uid: 6060 + - uid: 4332 components: - type: Transform - pos: -24.5,36.5 + pos: 19.5,5.5 parent: 1 - - uid: 6061 + - uid: 4333 components: - type: Transform - pos: -24.5,38.5 + pos: 19.5,6.5 parent: 1 - - uid: 6062 + - uid: 4334 components: - type: Transform - pos: -25.5,-60.5 + pos: 19.5,7.5 parent: 1 - - uid: 6063 + - uid: 4335 components: - type: Transform - pos: -25.5,-58.5 + pos: 19.5,8.5 parent: 1 - - uid: 6064 + - uid: 4336 components: - type: Transform - pos: -25.5,-56.5 + pos: 19.5,9.5 parent: 1 - - uid: 6065 + - uid: 4337 components: - type: Transform - pos: -25.5,-54.5 + pos: 19.5,10.5 parent: 1 - - uid: 6066 + - uid: 4338 components: - type: Transform - pos: -25.5,-52.5 + pos: 19.5,11.5 parent: 1 - - uid: 6067 + - uid: 4339 components: - type: Transform - pos: -25.5,-50.5 + pos: 19.5,12.5 parent: 1 - - uid: 6068 + - uid: 4340 components: - type: Transform - pos: -25.5,-48.5 + pos: -8.5,-30.5 parent: 1 - - uid: 6069 + - uid: 4341 components: - type: Transform - pos: -25.5,-46.5 + pos: 19.5,13.5 parent: 1 - - uid: 6070 + - uid: 4342 components: - type: Transform - pos: -25.5,-44.5 + pos: 19.5,14.5 parent: 1 - - uid: 6071 + - uid: 4343 components: - type: Transform - pos: -25.5,-42.5 + pos: 19.5,15.5 parent: 1 - - uid: 6072 + - uid: 4344 components: - type: Transform - pos: -25.5,-40.5 + pos: 19.5,16.5 parent: 1 - - uid: 6073 + - uid: 4345 components: - type: Transform - pos: -25.5,-38.5 + pos: 19.5,17.5 parent: 1 - - uid: 6074 + - uid: 4346 components: - type: Transform - pos: -25.5,-36.5 + pos: 19.5,18.5 parent: 1 - - uid: 6075 + - uid: 4347 components: - type: Transform - pos: -25.5,-34.5 + pos: 19.5,19.5 parent: 1 - - uid: 6076 + - uid: 4348 components: - type: Transform - pos: -25.5,-32.5 + pos: 19.5,20.5 parent: 1 - - uid: 6077 + - uid: 4349 components: - type: Transform - pos: -25.5,-30.5 + pos: 19.5,21.5 parent: 1 - - uid: 6078 + - uid: 4350 components: - type: Transform - pos: -25.5,-28.5 + pos: 19.5,22.5 parent: 1 - - uid: 6079 + - uid: 4351 components: - type: Transform - pos: -25.5,-26.5 + pos: 19.5,23.5 parent: 1 - - uid: 6080 + - uid: 4352 components: - type: Transform - pos: -25.5,-24.5 + pos: 19.5,24.5 parent: 1 - - uid: 6081 + - uid: 4353 components: - type: Transform - pos: -25.5,-22.5 + pos: 19.5,25.5 parent: 1 - - uid: 6082 + - uid: 4354 components: - type: Transform - pos: -25.5,-20.5 + pos: 19.5,26.5 parent: 1 - - uid: 6083 + - uid: 4355 components: - type: Transform - pos: -25.5,-18.5 + pos: 19.5,27.5 parent: 1 - - uid: 6084 + - uid: 4356 components: - type: Transform - pos: -25.5,-16.5 + pos: 19.5,28.5 parent: 1 - - uid: 6085 + - uid: 4357 components: - type: Transform - pos: -25.5,-14.5 + pos: 19.5,29.5 parent: 1 - - uid: 6086 + - uid: 4358 components: - type: Transform - pos: -25.5,-12.5 + pos: 19.5,30.5 parent: 1 - - uid: 6087 + - uid: 4365 components: - type: Transform - pos: -25.5,-10.5 + pos: 19.5,31.5 parent: 1 - - uid: 6088 + - uid: 4366 components: - type: Transform - pos: -25.5,-8.5 + pos: 19.5,32.5 parent: 1 - - uid: 6089 + - uid: 4367 components: - type: Transform - pos: -25.5,-6.5 + pos: 19.5,33.5 parent: 1 - - uid: 6090 + - uid: 4368 components: - type: Transform - pos: -25.5,-4.5 + pos: 19.5,34.5 parent: 1 - - uid: 6091 + - uid: 4369 components: - type: Transform - pos: -25.5,-2.5 + pos: 22.5,35.5 parent: 1 - - uid: 6092 + - uid: 4370 components: - type: Transform - pos: -25.5,-0.5 + pos: 22.5,36.5 parent: 1 - - uid: 6093 + - uid: 4371 components: - type: Transform - pos: -25.5,1.5 + pos: 22.5,37.5 parent: 1 - - uid: 6094 + - uid: 4378 components: - type: Transform - pos: -25.5,3.5 + pos: 22.5,38.5 parent: 1 - - uid: 6095 + - uid: 4380 components: - type: Transform - pos: -25.5,5.5 + pos: 21.5,35.5 parent: 1 - - uid: 6096 + - uid: 4381 components: - type: Transform - pos: -25.5,7.5 + pos: 21.5,36.5 parent: 1 - - uid: 6097 + - uid: 4382 components: - type: Transform - pos: -25.5,9.5 + pos: 21.5,37.5 parent: 1 - - uid: 6098 + - uid: 4383 components: - type: Transform - pos: -25.5,11.5 + pos: 21.5,38.5 parent: 1 - - uid: 6099 + - uid: 4384 components: - type: Transform - pos: -25.5,13.5 + pos: 20.5,35.5 parent: 1 - - uid: 6100 + - uid: 4391 components: - type: Transform - pos: -25.5,15.5 + pos: 20.5,36.5 parent: 1 - - uid: 6101 + - uid: 4392 components: - type: Transform - pos: -25.5,17.5 + pos: 20.5,37.5 parent: 1 - - uid: 6102 + - uid: 4397 components: - type: Transform - pos: -25.5,19.5 + pos: 20.5,38.5 parent: 1 - - uid: 6103 + - uid: 4404 components: - type: Transform - pos: -25.5,21.5 + pos: 19.5,35.5 parent: 1 - - uid: 6104 + - uid: 4405 components: - type: Transform - pos: -25.5,24.5 + pos: 19.5,36.5 parent: 1 - - uid: 6105 + - uid: 4406 components: - type: Transform - pos: -25.5,26.5 + pos: 19.5,37.5 parent: 1 - - uid: 6106 + - uid: 4407 components: - type: Transform - pos: -25.5,28.5 + pos: 19.5,38.5 parent: 1 - - uid: 6107 + - uid: 4408 components: - type: Transform - pos: -25.5,30.5 + pos: 18.5,35.5 parent: 1 - - uid: 6108 + - uid: 4409 components: - type: Transform - pos: -25.5,22.5 + pos: 18.5,36.5 parent: 1 - - uid: 6109 + - uid: 4417 components: - type: Transform - pos: -25.5,33.5 + pos: 18.5,37.5 parent: 1 - - uid: 6110 + - uid: 4421 components: - type: Transform - pos: -25.5,35.5 + pos: 18.5,38.5 parent: 1 - - uid: 6111 + - uid: 4422 components: - type: Transform - pos: -25.5,37.5 + pos: 17.5,35.5 parent: 1 - - uid: 6112 + - uid: 4425 components: - type: Transform - pos: -26.5,-61.5 + pos: 17.5,36.5 parent: 1 - - uid: 6113 + - uid: 4426 components: - type: Transform - pos: -26.5,-59.5 + pos: 17.5,37.5 parent: 1 - - uid: 6114 + - uid: 4427 components: - type: Transform - pos: -26.5,-57.5 + pos: 17.5,38.5 parent: 1 - - uid: 6115 + - uid: 4428 components: - type: Transform - pos: -26.5,-55.5 + pos: 16.5,35.5 parent: 1 - - uid: 6116 + - uid: 4429 components: - type: Transform - pos: -26.5,1.5 + pos: 16.5,36.5 parent: 1 - - uid: 6117 + - uid: 4430 components: - type: Transform - pos: -26.5,33.5 + pos: 16.5,37.5 parent: 1 - - uid: 6118 + - uid: 4431 components: - type: Transform - pos: -21.5,-91.5 + pos: 16.5,38.5 parent: 1 - - uid: 6119 + - uid: 4432 components: - type: Transform - pos: -21.5,-90.5 + pos: 13.5,38.5 parent: 1 - - uid: 6120 + - uid: 4434 components: - type: Transform - pos: -21.5,-88.5 + pos: 10.5,38.5 parent: 1 - - uid: 6121 + - uid: 4439 components: - type: Transform - pos: -27.5,-58.5 + pos: -2.5,37.5 parent: 1 - - uid: 6122 + - uid: 4440 components: - type: Transform - pos: -27.5,-55.5 + pos: -3.5,38.5 parent: 1 - - uid: 6123 + - uid: 4441 components: - type: Transform - pos: -27.5,-47.5 + pos: -4.5,35.5 parent: 1 - - uid: 6124 + - uid: 4442 components: - type: Transform - pos: -27.5,-45.5 + pos: -4.5,37.5 parent: 1 - - uid: 6125 + - uid: 4443 components: - type: Transform - pos: -16.5,-12.5 + pos: -5.5,35.5 parent: 1 - - uid: 6126 + - uid: 4444 components: - type: Transform - pos: -27.5,-42.5 + pos: -5.5,37.5 parent: 1 - - uid: 6127 + - uid: 4445 components: - type: Transform - pos: -27.5,-37.5 + pos: -6.5,35.5 parent: 1 - - uid: 6128 + - uid: 4446 components: - type: Transform - pos: 4.5,-14.5 + pos: -6.5,37.5 parent: 1 - - uid: 6129 + - uid: 4447 components: - type: Transform - pos: 8.5,-20.5 + pos: -7.5,35.5 parent: 1 - - uid: 6130 + - uid: 4448 components: - type: Transform - pos: 2.5,-17.5 + pos: -9.5,35.5 parent: 1 - - uid: 6131 + - uid: 4449 components: - type: Transform - pos: -22.5,-106.5 + pos: -20.5,21.5 parent: 1 - - uid: 6132 + - uid: 4453 components: - type: Transform - pos: -22.5,-107.5 + pos: -8.5,-29.5 parent: 1 - - uid: 6133 + - uid: 4454 components: - type: Transform - pos: -22.5,-105.5 + pos: -21.5,-22.5 parent: 1 - - uid: 6134 + - uid: 4458 components: - type: Transform - pos: -22.5,-104.5 + pos: -21.5,-28.5 parent: 1 - - uid: 6135 + - uid: 4459 components: - type: Transform - pos: -22.5,-102.5 + pos: -21.5,-29.5 parent: 1 - - uid: 6136 + - uid: 4460 components: - type: Transform - pos: -28.5,7.5 + pos: -21.5,-30.5 parent: 1 - - uid: 6137 + - uid: 4463 components: - type: Transform - pos: -28.5,-10.5 + pos: -8.5,-28.5 parent: 1 - - uid: 6138 + - uid: 4464 components: - type: Transform - pos: -22.5,-96.5 + pos: -22.5,-20.5 parent: 1 - - uid: 6139 + - uid: 4465 components: - type: Transform - pos: -28.5,-16.5 + pos: -21.5,-32.5 parent: 1 - - uid: 6141 + - uid: 4466 components: - type: Transform - pos: 2.5,-18.5 + pos: -19.5,25.5 parent: 1 - - uid: 6142 + - uid: 4470 components: - type: Transform - pos: -22.5,-90.5 + pos: -21.5,-33.5 parent: 1 - - uid: 6143 + - uid: 4472 components: - type: Transform - pos: -22.5,-88.5 + pos: -9.5,32.5 parent: 1 - - uid: 6146 + - uid: 4476 components: - type: Transform - pos: -27.5,-41.5 + pos: -21.5,-34.5 parent: 1 - - uid: 6147 + - uid: 4478 components: - type: Transform - pos: -27.5,-39.5 + pos: -21.5,-35.5 parent: 1 - - uid: 6148 + - uid: 4479 components: - type: Transform - pos: -28.5,22.5 + pos: -18.5,33.5 parent: 1 - - uid: 6149 + - uid: 4483 components: - type: Transform - pos: 8.5,-17.5 + pos: -21.5,-37.5 parent: 1 - - uid: 6150 + - uid: 4489 components: - type: Transform - pos: -22.5,-73.5 + pos: -21.5,-38.5 parent: 1 - - uid: 6151 + - uid: 4491 components: - type: Transform - pos: -27.5,-51.5 + pos: -21.5,-40.5 parent: 1 - - uid: 6152 + - uid: 4500 components: - type: Transform - pos: -23.5,-111.5 + pos: -21.5,-41.5 parent: 1 - - uid: 6153 + - uid: 4505 components: - type: Transform - pos: 5.5,-18.5 + pos: -21.5,-42.5 parent: 1 - - uid: 6154 + - uid: 4508 components: - type: Transform - pos: -23.5,-107.5 + pos: -21.5,-43.5 parent: 1 - - uid: 6155 + - uid: 4511 components: - type: Transform - pos: -23.5,-105.5 + pos: -21.5,-45.5 parent: 1 - - uid: 6156 + - uid: 4513 components: - type: Transform - pos: -22.5,-71.5 + pos: -21.5,-46.5 parent: 1 - - uid: 6157 + - uid: 4515 components: - type: Transform - pos: -22.5,-69.5 + pos: -21.5,-47.5 parent: 1 - - uid: 6158 + - uid: 4517 components: - type: Transform - pos: -22.5,-67.5 + pos: -21.5,-48.5 parent: 1 - - uid: 6159 + - uid: 4522 components: - type: Transform - pos: -22.5,-65.5 + pos: -26.5,-113.5 parent: 1 - - uid: 6160 + - uid: 4525 components: - type: Transform - pos: -22.5,-63.5 + pos: -14.5,27.5 parent: 1 - - uid: 6161 + - uid: 4531 components: - type: Transform - pos: -23.5,-102.5 + pos: -26.5,-114.5 parent: 1 - - uid: 6162 + - uid: 4532 components: - type: Transform - pos: -23.5,-100.5 + pos: -26.5,-115.5 parent: 1 - - uid: 6163 + - uid: 4533 components: - type: Transform - pos: -28.5,-7.5 + pos: -26.5,-116.5 parent: 1 - - uid: 6164 + - uid: 4535 components: - type: Transform - pos: -28.5,-12.5 + pos: -26.5,-117.5 parent: 1 - - uid: 6165 + - uid: 4536 components: - type: Transform - pos: -28.5,-18.5 + pos: -26.5,-118.5 parent: 1 - - uid: 6166 + - uid: 4537 components: - type: Transform - pos: 6.5,-16.5 + pos: -26.5,-119.5 parent: 1 - - uid: 6167 + - uid: 4538 components: - type: Transform - pos: -23.5,-90.5 + pos: -25.5,-113.5 parent: 1 - - uid: 6168 + - uid: 4541 components: - type: Transform - pos: -23.5,-88.5 + pos: -19.5,17.5 parent: 1 - - uid: 6169 + - uid: 4542 components: - type: Transform - pos: -20.5,-15.5 + pos: -17.5,11.5 parent: 1 - - uid: 6170 + - uid: 4543 components: - type: Transform - pos: -19.5,-11.5 + pos: -17.5,33.5 parent: 1 - - uid: 6171 + - uid: 4544 components: - type: Transform - pos: -27.5,-40.5 + pos: -17.5,21.5 parent: 1 - - uid: 6172 + - uid: 4548 components: - type: Transform - pos: -18.5,-11.5 + pos: -12.5,30.5 parent: 1 - - uid: 6173 + - uid: 4549 components: - type: Transform - pos: 4.5,-17.5 + pos: -14.5,32.5 parent: 1 - - uid: 6174 + - uid: 4550 components: - type: Transform - pos: -28.5,37.5 + pos: -7.5,34.5 parent: 1 - - uid: 6175 + - uid: 4551 components: - type: Transform - pos: -23.5,-74.5 + pos: -16.5,32.5 parent: 1 - - uid: 6176 + - uid: 4552 components: - type: Transform - pos: -23.5,-72.5 + pos: -14.5,33.5 parent: 1 - - uid: 6177 + - uid: 4553 components: - type: Transform - pos: -23.5,-70.5 + pos: 12.5,31.5 parent: 1 - - uid: 6178 + - uid: 4554 components: - type: Transform - pos: -23.5,-68.5 + pos: 11.5,31.5 parent: 1 - - uid: 6179 + - uid: 4555 components: - type: Transform - pos: -23.5,-66.5 + pos: 12.5,32.5 parent: 1 - - uid: 6180 + - uid: 4556 components: - type: Transform - pos: -23.5,-64.5 + pos: 11.5,32.5 parent: 1 - - uid: 6181 + - uid: 4557 components: - type: Transform - pos: -23.5,-62.5 + pos: 10.5,32.5 parent: 1 - - uid: 6182 + - uid: 4558 components: - type: Transform - pos: 7.5,-19.5 + pos: 11.5,33.5 parent: 1 - - uid: 6183 + - uid: 4559 components: - type: Transform - pos: 4.5,-15.5 + pos: 11.5,34.5 parent: 1 - - uid: 6184 + - uid: 4560 components: - type: Transform - pos: -24.5,-106.5 + pos: 13.5,32.5 parent: 1 - - uid: 6185 + - uid: 4561 components: - type: Transform - pos: -24.5,-104.5 + pos: 18.5,26.5 parent: 1 - - uid: 6186 + - uid: 4562 components: - type: Transform - pos: -24.5,-102.5 + pos: 15.5,27.5 parent: 1 - - uid: 6187 + - uid: 4563 components: - type: Transform - pos: -24.5,-100.5 + pos: 15.5,34.5 parent: 1 - - uid: 6188 + - uid: 4564 components: - type: Transform - pos: -24.5,-98.5 + pos: 18.5,24.5 parent: 1 - - uid: 6189 + - uid: 4565 components: - type: Transform - pos: -28.5,-14.5 + pos: 18.5,33.5 parent: 1 - - uid: 6190 + - uid: 4566 components: - type: Transform - pos: -28.5,-20.5 + pos: 17.5,26.5 parent: 1 - - uid: 6191 + - uid: 4571 components: - type: Transform - pos: 7.5,-22.5 + pos: 16.5,30.5 parent: 1 - - uid: 6192 + - uid: 4577 components: - type: Transform - pos: 2.5,-16.5 + pos: -25.5,-119.5 parent: 1 - - uid: 6194 + - uid: 4578 components: - type: Transform - pos: -28.5,23.5 + pos: -24.5,-113.5 parent: 1 - - uid: 6195 + - uid: 4579 components: - type: Transform - pos: 8.5,-19.5 + pos: -24.5,-119.5 parent: 1 - - uid: 6196 + - uid: 4581 components: - type: Transform - pos: -24.5,-64.5 + pos: -23.5,-114.5 parent: 1 - - uid: 6197 + - uid: 4584 components: - type: Transform - pos: -24.5,-63.5 + pos: -23.5,-115.5 parent: 1 - - uid: 6204 + - uid: 4586 components: - type: Transform - pos: 5.5,-21.5 + pos: -23.5,-116.5 parent: 1 - - uid: 6205 + - uid: 4589 components: - type: Transform - pos: -25.5,-107.5 + pos: 16.5,29.5 parent: 1 - - uid: 6206 + - uid: 4591 components: - type: Transform - pos: -25.5,-106.5 + pos: -23.5,-117.5 parent: 1 - - uid: 6207 + - uid: 4592 components: - type: Transform - pos: -25.5,-105.5 + pos: -23.5,-118.5 parent: 1 - - uid: 6208 + - uid: 4593 components: - type: Transform - pos: -25.5,-104.5 + pos: 17.5,34.5 parent: 1 - - uid: 6209 + - uid: 4594 components: - type: Transform - pos: -25.5,-102.5 + pos: 18.5,23.5 parent: 1 - - uid: 6211 + - uid: 4598 components: - type: Transform - pos: -25.5,-101.5 + pos: 14.5,26.5 parent: 1 - - uid: 6213 + - uid: 4600 components: - type: Transform - pos: 8.5,-18.5 + pos: 14.5,27.5 parent: 1 - - uid: 6216 + - uid: 4604 components: - type: Transform - pos: -28.5,27.5 + pos: -7.5,-31.5 parent: 1 - - uid: 6217 + - uid: 4609 components: - type: Transform - pos: -25.5,-99.5 + pos: -7.5,-30.5 parent: 1 - - uid: 6218 + - uid: 4612 components: - type: Transform - pos: -25.5,-98.5 + pos: 14.5,28.5 parent: 1 - - uid: 6219 + - uid: 4613 components: - type: Transform - pos: 5.5,-19.5 + pos: 16.5,28.5 parent: 1 - - uid: 6220 + - uid: 4614 components: - type: Transform - pos: 7.5,-16.5 + pos: 16.5,27.5 parent: 1 - - uid: 6221 + - uid: 4615 components: - type: Transform - pos: 4.5,-18.5 + pos: 16.5,26.5 parent: 1 - - uid: 6222 + - uid: 4616 components: - type: Transform - pos: -25.5,-89.5 + pos: 16.5,25.5 parent: 1 - - uid: 6223 + - uid: 4617 components: - type: Transform - pos: -25.5,-88.5 + pos: 16.5,23.5 parent: 1 - - uid: 6225 + - uid: 4618 components: - type: Transform - pos: -26.5,-62.5 + pos: 15.5,24.5 parent: 1 - - uid: 6227 + - uid: 4619 components: - type: Transform - pos: 7.5,-18.5 + pos: 14.5,22.5 parent: 1 - - uid: 6228 + - uid: 4620 components: - type: Transform - pos: 2.5,-14.5 + pos: 14.5,24.5 parent: 1 - - uid: 6229 + - uid: 4621 components: - type: Transform - pos: 2.5,-15.5 + pos: 13.5,25.5 parent: 1 - - uid: 6230 + - uid: 4628 components: - type: Transform - pos: 7.5,-17.5 + pos: 12.5,27.5 parent: 1 - - uid: 6231 + - uid: 4629 components: - type: Transform - pos: -27.5,-107.5 + pos: 11.5,29.5 parent: 1 - - uid: 6232 + - uid: 4630 components: - type: Transform - pos: -27.5,-105.5 + pos: 11.5,30.5 parent: 1 - - uid: 6233 + - uid: 4637 components: - type: Transform - pos: -27.5,-104.5 + pos: 10.5,31.5 parent: 1 - - uid: 6235 + - uid: 4638 components: - type: Transform - pos: -27.5,-103.5 + pos: 9.5,32.5 parent: 1 - - uid: 6236 + - uid: 4639 components: - type: Transform - pos: -27.5,-102.5 + pos: 6.5,32.5 parent: 1 - - uid: 6237 + - uid: 4646 components: - type: Transform - pos: 5.5,-22.5 + pos: 6.5,34.5 parent: 1 - - uid: 6238 + - uid: 4647 components: - type: Transform - pos: 5.5,-20.5 + pos: 4.5,32.5 parent: 1 - - uid: 6239 + - uid: 4648 components: - type: Transform - pos: 6.5,-22.5 + pos: 2.5,32.5 parent: 1 - - uid: 6240 + - uid: 4655 components: - type: Transform - pos: 23.5,-114.5 + pos: 1.5,32.5 parent: 1 - - uid: 6245 + - uid: 4656 components: - type: Transform - pos: -28.5,33.5 + pos: 0.5,33.5 parent: 1 - - uid: 6246 + - uid: 4657 components: - type: Transform - pos: -28.5,26.5 + pos: -1.5,33.5 parent: 1 - - uid: 6247 + - uid: 4664 components: - type: Transform - pos: -28.5,24.5 + pos: -4.5,33.5 parent: 1 - - uid: 6248 + - uid: 4665 components: - type: Transform - pos: -28.5,25.5 + pos: -4.5,34.5 parent: 1 - - uid: 6249 + - uid: 4666 components: - type: Transform - pos: 23.5,-99.5 + pos: -7.5,32.5 parent: 1 - - uid: 6252 + - uid: 4667 components: - type: Transform - pos: 23.5,-102.5 + pos: -5.5,33.5 parent: 1 - - uid: 6253 + - uid: 4668 components: - type: Transform - pos: -25.5,-73.5 + pos: -6.5,33.5 parent: 1 - - uid: 6255 + - uid: 4669 components: - type: Transform - pos: -25.5,-71.5 + pos: -5.5,34.5 parent: 1 - - uid: 6256 + - uid: 4670 components: - type: Transform - pos: -25.5,-72.5 + pos: -3.5,33.5 parent: 1 - - uid: 6257 + - uid: 4671 components: - type: Transform - pos: -25.5,-69.5 + pos: -11.5,30.5 parent: 1 - - uid: 6261 + - uid: 4672 components: - type: Transform - pos: -25.5,-70.5 + pos: -10.5,30.5 parent: 1 - - uid: 6262 + - uid: 4673 components: - type: Transform - pos: -25.5,-67.5 + pos: -13.5,27.5 parent: 1 - - uid: 6263 + - uid: 4674 components: - type: Transform - pos: -25.5,-68.5 + pos: -8.5,31.5 parent: 1 - - uid: 6264 + - uid: 4675 components: - type: Transform - pos: -25.5,-65.5 + pos: -12.5,29.5 parent: 1 - - uid: 6265 + - uid: 4676 components: - type: Transform - pos: -25.5,-66.5 + pos: -14.5,25.5 parent: 1 - - uid: 6270 + - uid: 4677 components: - type: Transform - pos: -25.5,-63.5 + pos: -15.5,23.5 parent: 1 - - uid: 6271 + - uid: 4678 components: - type: Transform - pos: -25.5,-64.5 + pos: -8.5,32.5 parent: 1 - - uid: 6272 + - uid: 4679 components: - type: Transform - pos: -40.5,-5.5 + pos: -9.5,31.5 parent: 1 - - uid: 6273 + - uid: 4680 components: - type: Transform - pos: -25.5,-62.5 + pos: -8.5,15.5 parent: 1 - - uid: 6278 + - uid: 4681 components: - type: Transform - pos: 23.5,-100.5 + pos: -10.5,14.5 parent: 1 - - uid: 6280 + - uid: 4682 components: - type: Transform - pos: -26.5,-107.5 + pos: -11.5,15.5 parent: 1 - - uid: 6281 + - uid: 4683 components: - type: Transform - pos: 23.5,-110.5 + pos: -12.5,15.5 parent: 1 - - uid: 6286 + - uid: 4684 components: - type: Transform - pos: -26.5,-105.5 + pos: -12.5,17.5 parent: 1 - - uid: 6287 + - uid: 4685 components: - type: Transform - pos: -26.5,-103.5 + pos: -7.5,-29.5 parent: 1 - - uid: 6288 + - uid: 4686 components: - type: Transform - pos: -26.5,-104.5 + pos: -13.5,14.5 parent: 1 - - uid: 6289 + - uid: 4687 components: - type: Transform - pos: -26.5,-101.5 + pos: -7.5,-28.5 parent: 1 - - uid: 6294 + - uid: 4688 components: - type: Transform - pos: -26.5,-102.5 + pos: -13.5,16.5 parent: 1 - - uid: 6295 + - uid: 4693 components: - type: Transform - pos: -26.5,-99.5 + pos: -13.5,18.5 parent: 1 - - uid: 6296 + - uid: 4694 components: - type: Transform - pos: -26.5,-100.5 + pos: -14.5,16.5 parent: 1 - - uid: 6297 + - uid: 4695 components: - type: Transform - pos: -26.5,-97.5 + pos: -14.5,19.5 parent: 1 - - uid: 6302 + - uid: 4697 components: - type: Transform - pos: -26.5,-98.5 + pos: -15.5,16.5 parent: 1 - - uid: 6303 + - uid: 4698 components: - type: Transform - pos: 23.5,-98.5 + pos: -15.5,19.5 parent: 1 - - uid: 6309 + - uid: 4699 components: - type: Transform - pos: -40.5,-4.5 + pos: -16.5,14.5 parent: 1 - - uid: 6310 + - uid: 4700 components: - type: Transform - pos: 23.5,-97.5 + pos: -16.5,16.5 parent: 1 - - uid: 6312 + - uid: 4702 components: - type: Transform - pos: -26.5,-89.5 + pos: -16.5,18.5 parent: 1 - - uid: 6316 + - uid: 4703 components: - type: Transform - pos: -28.5,30.5 + pos: -16.5,20.5 parent: 1 - - uid: 6317 + - uid: 4704 components: - type: Transform - pos: -28.5,29.5 + pos: -16.5,22.5 parent: 1 - - uid: 6319 + - uid: 4705 components: - type: Transform - pos: -28.5,35.5 + pos: -6.5,-29.5 parent: 1 - - uid: 6320 + - uid: 4706 components: - type: Transform - pos: -26.5,-74.5 + pos: -15.5,21.5 parent: 1 - - uid: 6321 + - uid: 4707 components: - type: Transform - pos: 23.5,-103.5 + pos: -14.5,20.5 parent: 1 - - uid: 6323 + - uid: 4708 components: - type: Transform - pos: -26.5,-72.5 + pos: -12.5,19.5 parent: 1 - - uid: 6324 + - uid: 4709 components: - type: Transform - pos: -26.5,-73.5 + pos: -11.5,19.5 parent: 1 - - uid: 6325 + - uid: 4710 components: - type: Transform - pos: -26.5,-88.5 + pos: -6.5,-28.5 parent: 1 - - uid: 6326 + - uid: 4711 components: - type: Transform - pos: -26.5,-71.5 + pos: -10.5,19.5 parent: 1 - - uid: 6329 + - uid: 4715 components: - type: Transform - pos: -25.5,-96.5 + pos: -10.5,18.5 parent: 1 - - uid: 6330 + - uid: 4717 components: - type: Transform - pos: -25.5,-95.5 + pos: -6.5,-30.5 parent: 1 - - uid: 6332 + - uid: 4718 components: - type: Transform - pos: -25.5,-94.5 + pos: -9.5,18.5 parent: 1 - - uid: 6333 + - uid: 4720 components: - type: Transform - pos: -25.5,-103.5 + pos: -9.5,17.5 parent: 1 - - uid: 6334 + - uid: 4721 components: - type: Transform - pos: 23.5,-104.5 + pos: -8.5,17.5 parent: 1 - - uid: 6335 + - uid: 4722 components: - type: Transform - pos: 23.5,-15.5 + pos: -7.5,17.5 parent: 1 - - uid: 6336 + - uid: 4723 components: - type: Transform - pos: 23.5,-5.5 + pos: -5.5,-34.5 parent: 1 - - uid: 6337 + - uid: 4724 components: - type: Transform - pos: 23.5,-107.5 + pos: -7.5,16.5 parent: 1 - - uid: 6339 + - uid: 4725 components: - type: Transform - pos: 23.5,-108.5 + pos: -5.5,-30.5 parent: 1 - - uid: 6340 + - uid: 4726 components: - type: Transform - pos: -40.5,-0.5 + pos: -6.5,16.5 parent: 1 - - uid: 6341 + - uid: 4727 components: - type: Transform - pos: -26.5,-68.5 + pos: -6.5,15.5 parent: 1 - - uid: 6342 + - uid: 4728 components: - type: Transform - pos: -26.5,-69.5 + pos: -5.5,14.5 parent: 1 - - uid: 6343 + - uid: 4729 components: - type: Transform - pos: -26.5,-66.5 + pos: -6.5,14.5 parent: 1 - - uid: 6344 + - uid: 4730 components: - type: Transform - pos: -26.5,-67.5 + pos: -5.5,15.5 parent: 1 - - uid: 6345 + - uid: 4731 components: - type: Transform - pos: -26.5,-64.5 + pos: -4.5,14.5 parent: 1 - - uid: 6347 + - uid: 4732 components: - type: Transform - pos: -26.5,-65.5 + pos: -5.5,-29.5 parent: 1 - - uid: 6348 + - uid: 4733 components: - type: Transform - pos: -27.5,-88.5 + pos: 5.5,14.5 parent: 1 - - uid: 6349 + - uid: 4734 components: - type: Transform - pos: -27.5,-89.5 + pos: -5.5,-28.5 parent: 1 - - uid: 6352 + - uid: 4735 components: - type: Transform - pos: -40.5,-3.5 + pos: 4.5,14.5 parent: 1 - - uid: 6353 + - uid: 4736 components: - type: Transform - pos: -27.5,-100.5 + pos: 6.5,14.5 parent: 1 - - uid: 6357 + - uid: 4737 components: - type: Transform - pos: -40.5,-1.5 + pos: 6.5,15.5 parent: 1 - - uid: 6358 + - uid: 4738 components: - type: Transform - pos: 23.5,-106.5 + pos: 6.5,16.5 parent: 1 - - uid: 6359 + - uid: 4739 components: - type: Transform - pos: -27.5,-71.5 + pos: 8.5,14.5 parent: 1 - - uid: 6360 + - uid: 4740 components: - type: Transform - pos: -27.5,-72.5 + pos: 8.5,15.5 parent: 1 - - uid: 6361 + - uid: 4741 components: - type: Transform - pos: -27.5,-69.5 + pos: 8.5,16.5 parent: 1 - - uid: 6363 + - uid: 4742 components: - type: Transform - pos: -27.5,-70.5 + pos: 8.5,17.5 parent: 1 - - uid: 6364 + - uid: 4747 components: - type: Transform - pos: -27.5,-67.5 + pos: 7.5,14.5 parent: 1 - - uid: 6365 + - uid: 4748 components: - type: Transform - pos: -27.5,-68.5 + pos: 7.5,15.5 parent: 1 - - uid: 6366 + - uid: 4749 components: - type: Transform - pos: 23.5,-105.5 + pos: 7.5,16.5 parent: 1 - - uid: 6367 + - uid: 4750 components: - type: Transform - pos: -27.5,-62.5 + pos: 7.5,17.5 parent: 1 - - uid: 6368 + - uid: 4751 components: - type: Transform - pos: 23.5,-94.5 + pos: 9.5,14.5 parent: 1 - - uid: 6369 + - uid: 4752 components: - type: Transform - pos: 23.5,-96.5 + pos: 9.5,15.5 parent: 1 - - uid: 6371 + - uid: 4753 components: - type: Transform - pos: -28.5,34.5 + pos: 9.5,16.5 parent: 1 - - uid: 6374 + - uid: 4754 components: - type: Transform - pos: -28.5,-106.5 + pos: 9.5,17.5 parent: 1 - - uid: 6375 + - uid: 4755 components: - type: Transform - pos: -28.5,-107.5 + pos: 9.5,18.5 parent: 1 - - uid: 6377 + - uid: 4756 components: - type: Transform - pos: -27.5,-65.5 + pos: 11.5,18.5 parent: 1 - - uid: 6378 + - uid: 4757 components: - type: Transform - pos: -27.5,-64.5 + pos: 11.5,19.5 parent: 1 - - uid: 6380 + - uid: 4758 components: - type: Transform - pos: -27.5,-74.5 + pos: 10.5,14.5 parent: 1 - - uid: 6381 + - uid: 4759 components: - type: Transform - pos: 22.5,-103.5 + pos: 10.5,15.5 parent: 1 - - uid: 6383 + - uid: 4760 components: - type: Transform - pos: 22.5,-101.5 + pos: 10.5,16.5 parent: 1 - - uid: 6384 + - uid: 4761 components: - type: Transform - pos: 22.5,-102.5 + pos: 10.5,17.5 parent: 1 - - uid: 6385 + - uid: 4762 components: - type: Transform - pos: 22.5,-99.5 + pos: 10.5,18.5 parent: 1 - - uid: 6386 + - uid: 4763 components: - type: Transform - pos: 22.5,-100.5 + pos: 10.5,19.5 parent: 1 - - uid: 6388 + - uid: 4764 components: - type: Transform - pos: 20.5,-103.5 + pos: 11.5,14.5 parent: 1 - - uid: 6389 + - uid: 4765 components: - type: Transform - pos: 21.5,-98.5 + pos: 11.5,15.5 parent: 1 - - uid: 6390 + - uid: 4952 components: - type: Transform - pos: 20.5,-101.5 + pos: 11.5,17.5 parent: 1 - - uid: 6391 + - uid: 4970 components: - type: Transform - pos: 20.5,-102.5 + pos: 15.5,15.5 parent: 1 - - uid: 6392 + - uid: 4971 components: - type: Transform - pos: -28.5,-103.5 + pos: 15.5,17.5 parent: 1 - - uid: 6393 + - uid: 4972 components: - type: Transform - pos: -28.5,-104.5 + pos: 15.5,19.5 parent: 1 - - uid: 6394 + - uid: 4973 components: - type: Transform - pos: -28.5,-101.5 + pos: 14.5,14.5 parent: 1 - - uid: 6395 + - uid: 4975 components: - type: Transform - pos: -28.5,-102.5 + pos: 14.5,16.5 parent: 1 - - uid: 6397 + - uid: 4978 components: - type: Transform - pos: -28.5,-100.5 + pos: 14.5,18.5 parent: 1 - - uid: 6398 + - uid: 4979 components: - type: Transform - pos: -28.5,-74.5 + pos: 14.5,20.5 parent: 1 - - uid: 6399 + - uid: 4980 components: - type: Transform - pos: 19.5,-101.5 + pos: 13.5,15.5 parent: 1 - - uid: 6400 + - uid: 4981 components: - type: Transform - pos: 20.5,-98.5 + pos: 13.5,17.5 parent: 1 - - uid: 6401 + - uid: 4982 components: - type: Transform - pos: 20.5,-99.5 + pos: 13.5,19.5 parent: 1 - - uid: 6402 + - uid: 4983 components: - type: Transform - pos: 21.5,-102.5 + pos: 12.5,14.5 parent: 1 - - uid: 6403 + - uid: 4984 components: - type: Transform - pos: 21.5,-103.5 + pos: 12.5,16.5 parent: 1 - - uid: 6404 + - uid: 4985 components: - type: Transform - pos: 21.5,-100.5 + pos: 12.5,18.5 parent: 1 - - uid: 6405 + - uid: 4986 components: - type: Transform - pos: 21.5,-101.5 + pos: 12.5,20.5 parent: 1 - - uid: 6406 + - uid: 4987 components: - type: Transform - pos: -28.5,-71.5 + pos: 18.5,15.5 parent: 1 - - uid: 6407 + - uid: 4988 components: - type: Transform - pos: -28.5,-66.5 + pos: 18.5,17.5 parent: 1 - - uid: 6408 + - uid: 4989 components: - type: Transform - pos: -28.5,-70.5 + pos: 18.5,19.5 parent: 1 - - uid: 6409 + - uid: 4990 components: - type: Transform - pos: -28.5,-72.5 + pos: 18.5,21.5 parent: 1 - - uid: 6410 + - uid: 4991 components: - type: Transform - pos: 17.5,-102.5 + pos: 17.5,15.5 parent: 1 - - uid: 6411 + - uid: 4992 components: - type: Transform - pos: 17.5,-103.5 + pos: 17.5,17.5 parent: 1 - - uid: 6412 + - uid: 4993 components: - type: Transform - pos: 16.5,-103.5 + pos: 17.5,19.5 parent: 1 - - uid: 6413 + - uid: 4994 components: - type: Transform - pos: 17.5,-98.5 + pos: 17.5,21.5 parent: 1 - - uid: 6414 + - uid: 4996 components: - type: Transform - pos: 16.5,-100.5 + pos: 16.5,15.5 parent: 1 - - uid: 6415 + - uid: 4997 components: - type: Transform - pos: 16.5,-101.5 + pos: 16.5,17.5 parent: 1 - - uid: 6416 + - uid: 5004 components: - type: Transform - pos: 16.5,-98.5 + pos: 16.5,19.5 parent: 1 - - uid: 6419 + - uid: 5028 components: - type: Transform - pos: 22.5,-111.5 + pos: 16.5,21.5 parent: 1 - - uid: 6420 + - uid: 5080 components: - type: Transform - pos: 22.5,-106.5 + pos: 17.5,22.5 parent: 1 - - uid: 6421 + - uid: 5081 components: - type: Transform - pos: 22.5,-105.5 + pos: 15.5,22.5 parent: 1 - - uid: 6422 + - uid: 5082 components: - type: Transform - pos: 22.5,-104.5 + pos: 14.5,21.5 parent: 1 - - uid: 6423 + - uid: 5083 components: - type: Transform - pos: 21.5,-110.5 + pos: 12.5,21.5 parent: 1 - - uid: 6424 + - uid: 5084 components: - type: Transform - pos: 21.5,-108.5 + pos: 10.5,20.5 parent: 1 - - uid: 6425 + - uid: 5085 components: - type: Transform - pos: 21.5,-107.5 + pos: 9.5,19.5 parent: 1 - - uid: 6426 + - uid: 5086 components: - type: Transform - pos: 21.5,-106.5 + pos: 18.5,-10.5 parent: 1 - - uid: 6427 + - uid: 5087 components: - type: Transform - pos: 21.5,-105.5 + pos: 18.5,-8.5 parent: 1 - - uid: 6428 + - uid: 5088 components: - type: Transform - pos: 20.5,-111.5 + pos: 18.5,-6.5 parent: 1 - - uid: 6429 + - uid: 5089 components: - type: Transform - pos: 20.5,-110.5 + pos: 18.5,-4.5 parent: 1 - - uid: 6430 + - uid: 5090 components: - type: Transform - pos: 21.5,-111.5 + pos: 17.5,-10.5 parent: 1 - - uid: 6431 + - uid: 5091 components: - type: Transform - pos: 20.5,-109.5 + pos: 17.5,-8.5 parent: 1 - - uid: 6432 + - uid: 5092 components: - type: Transform - pos: 20.5,-106.5 + pos: 17.5,-6.5 parent: 1 - - uid: 6433 + - uid: 5094 components: - type: Transform - pos: 20.5,-107.5 + pos: 17.5,-4.5 parent: 1 - - uid: 6434 + - uid: 5095 components: - type: Transform - pos: 20.5,-104.5 + pos: 16.5,-10.5 parent: 1 - - uid: 6435 + - uid: 5096 components: - type: Transform - pos: 20.5,-105.5 + pos: 16.5,-8.5 parent: 1 - - uid: 6437 + - uid: 5097 components: - type: Transform - pos: -40.5,3.5 + pos: 16.5,-6.5 parent: 1 - - uid: 6438 + - uid: 5098 components: - type: Transform - pos: 18.5,-107.5 + pos: 16.5,-5.5 parent: 1 - - uid: 6439 + - uid: 5099 components: - type: Transform - pos: -40.5,0.5 + pos: 16.5,-4.5 parent: 1 - - uid: 6440 + - uid: 5100 components: - type: Transform - pos: 17.5,-107.5 + pos: 4.5,16.5 parent: 1 - - uid: 6448 + - uid: 5101 components: - type: Transform - pos: 19.5,-108.5 + pos: 15.5,-10.5 parent: 1 - - uid: 6449 + - uid: 5102 components: - type: Transform - pos: 19.5,-107.5 + pos: 15.5,-9.5 parent: 1 - - uid: 6450 + - uid: 5103 components: - type: Transform - pos: 19.5,-106.5 + pos: 15.5,-8.5 parent: 1 - - uid: 6451 + - uid: 5104 components: - type: Transform - pos: 19.5,-105.5 + pos: 15.5,-7.5 parent: 1 - - uid: 6452 + - uid: 5105 components: - type: Transform - pos: 19.5,-104.5 + pos: 15.5,-6.5 parent: 1 - - uid: 6454 + - uid: 5106 components: - type: Transform - pos: 23.5,-93.5 + pos: 15.5,-5.5 parent: 1 - - uid: 6455 + - uid: 5107 components: - type: Transform - pos: 23.5,-95.5 + pos: 15.5,-4.5 parent: 1 - - uid: 6456 + - uid: 5138 components: - type: Transform - pos: 18.5,-108.5 + pos: 4.5,15.5 parent: 1 - - uid: 6457 + - uid: 5140 components: - type: Transform - pos: 23.5,-91.5 + pos: 14.5,-10.5 parent: 1 - - uid: 6460 + - uid: 5145 components: - type: Transform - pos: -40.5,1.5 + pos: 14.5,-9.5 parent: 1 - - uid: 6461 + - uid: 5146 components: - type: Transform - pos: -40.5,2.5 + pos: 14.5,-8.5 parent: 1 - - uid: 6463 + - uid: 5147 components: - type: Transform - pos: 16.5,-108.5 + pos: 14.5,-7.5 parent: 1 - - uid: 6464 + - uid: 5148 components: - type: Transform - pos: 16.5,-107.5 + pos: 7.5,18.5 parent: 1 - - uid: 6465 + - uid: 5149 components: - type: Transform - pos: 16.5,-106.5 + pos: 13.5,-5.5 parent: 1 - - uid: 6467 + - uid: 5150 components: - type: Transform - pos: 16.5,-104.5 + pos: 11.5,-10.5 parent: 1 - - uid: 6469 + - uid: 5151 components: - type: Transform - pos: 15.5,-108.5 + pos: 18.5,11.5 parent: 1 - - uid: 6470 + - uid: 5152 components: - type: Transform - pos: 15.5,-107.5 + pos: 17.5,12.5 parent: 1 - - uid: 6471 + - uid: 5153 components: - type: Transform - pos: 15.5,-106.5 + pos: 16.5,10.5 parent: 1 - - uid: 6472 + - uid: 5154 components: - type: Transform - pos: 15.5,-104.5 + pos: 16.5,3.5 parent: 1 - - uid: 6473 + - uid: 5155 components: - type: Transform - pos: 14.5,-111.5 + pos: 15.5,7.5 parent: 1 - - uid: 6474 + - uid: 5156 components: - type: Transform - pos: 15.5,-111.5 + pos: 14.5,13.5 parent: 1 - - uid: 6485 + - uid: 5157 components: - type: Transform - pos: -40.5,6.5 + pos: 13.5,10.5 parent: 1 - - uid: 6498 + - uid: 5185 components: - type: Transform - pos: 14.5,-108.5 + pos: -4.5,-34.5 parent: 1 - - uid: 6499 + - uid: 5188 components: - type: Transform - pos: 14.5,-107.5 + pos: -14.5,13.5 parent: 1 - - uid: 6508 + - uid: 5190 components: - type: Transform - pos: -40.5,-14.5 + pos: -4.5,-33.5 parent: 1 - - uid: 6518 + - uid: 5191 components: - type: Transform - pos: 14.5,-104.5 + pos: -4.5,-28.5 parent: 1 - - uid: 6520 + - uid: 5202 components: - type: Transform - pos: 16.5,-111.5 + pos: -15.5,13.5 parent: 1 - - uid: 6521 + - uid: 5207 components: - type: Transform - pos: -40.5,-13.5 + pos: -16.5,11.5 parent: 1 - - uid: 6525 + - uid: 5208 components: - type: Transform - pos: -40.5,4.5 + pos: -16.5,12.5 parent: 1 - - uid: 6527 + - uid: 5209 components: - type: Transform - pos: -40.5,-16.5 + pos: -16.5,13.5 parent: 1 - - uid: 6528 + - uid: 5215 components: - type: Transform - pos: 12.5,-106.5 + pos: -3.5,-32.5 parent: 1 - - uid: 6529 + - uid: 5216 components: - type: Transform - pos: 12.5,-107.5 + pos: -3.5,-31.5 parent: 1 - - uid: 6530 + - uid: 5217 components: - type: Transform - pos: -40.5,-15.5 + pos: 9.5,-10.5 parent: 1 - - uid: 6532 + - uid: 5218 components: - type: Transform - pos: 11.5,-109.5 + pos: 9.5,-9.5 parent: 1 - - uid: 6533 + - uid: 5219 components: - type: Transform - pos: -40.5,-18.5 + pos: 9.5,-8.5 parent: 1 - - uid: 6535 + - uid: 5220 components: - type: Transform - pos: 13.5,-106.5 + pos: 9.5,-7.5 parent: 1 - - uid: 6537 + - uid: 5221 components: - type: Transform - pos: -40.5,-17.5 + pos: 9.5,-6.5 parent: 1 - - uid: 6539 + - uid: 5222 components: - type: Transform - pos: 13.5,-104.5 + pos: 9.5,-5.5 parent: 1 - - uid: 6540 + - uid: 5223 components: - type: Transform - pos: 12.5,-109.5 + pos: 9.5,-4.5 parent: 1 - - uid: 6541 + - uid: 5224 components: - type: Transform - pos: -40.5,-20.5 + pos: 8.5,-10.5 parent: 1 - - uid: 6542 + - uid: 5225 components: - type: Transform - pos: 21.5,1.5 + pos: 8.5,-9.5 parent: 1 - - uid: 6543 + - uid: 5226 components: - type: Transform - pos: 21.5,2.5 + pos: 8.5,-8.5 parent: 1 - - uid: 6544 + - uid: 5227 components: - type: Transform - pos: 21.5,3.5 + pos: 8.5,-7.5 parent: 1 - - uid: 6545 + - uid: 5228 components: - type: Transform - pos: 21.5,4.5 + pos: 8.5,-6.5 parent: 1 - - uid: 6546 + - uid: 5229 components: - type: Transform - pos: 21.5,5.5 + pos: 8.5,-5.5 parent: 1 - - uid: 6547 + - uid: 5230 components: - type: Transform - pos: 21.5,6.5 + pos: 8.5,-4.5 parent: 1 - - uid: 6548 + - uid: 5231 components: - type: Transform - pos: 15.5,35.5 + pos: 8.5,-3.5 parent: 1 - - uid: 6549 + - uid: 5232 components: - type: Transform - pos: 15.5,36.5 + pos: 7.5,-10.5 parent: 1 - - uid: 6550 + - uid: 5234 components: - type: Transform - pos: 15.5,38.5 + pos: 7.5,-9.5 parent: 1 - - uid: 6551 + - uid: 5235 components: - type: Transform - pos: 15.5,37.5 + pos: 7.5,-8.5 parent: 1 - - uid: 6552 + - uid: 5236 components: - type: Transform - pos: 14.5,36.5 + pos: 7.5,-7.5 parent: 1 - - uid: 6553 + - uid: 5237 components: - type: Transform - pos: 14.5,35.5 + pos: 7.5,-6.5 parent: 1 - - uid: 6554 + - uid: 5238 components: - type: Transform - pos: 14.5,38.5 + pos: 7.5,-5.5 parent: 1 - - uid: 6555 + - uid: 5239 components: - type: Transform - pos: 14.5,37.5 + pos: 7.5,-4.5 parent: 1 - - uid: 6556 + - uid: 5240 components: - type: Transform - pos: 13.5,36.5 + pos: 7.5,-3.5 parent: 1 - - uid: 6557 + - uid: 5241 components: - type: Transform - pos: 13.5,35.5 + pos: 6.5,-10.5 parent: 1 - - uid: 6575 + - uid: 5242 components: - type: Transform - pos: 13.5,37.5 + pos: 6.5,-9.5 parent: 1 - - uid: 6576 + - uid: 5243 components: - type: Transform - pos: 12.5,35.5 + pos: 6.5,-8.5 parent: 1 - - uid: 6577 + - uid: 5244 components: - type: Transform - pos: 12.5,36.5 + pos: 6.5,-7.5 parent: 1 - - uid: 6578 + - uid: 5245 components: - type: Transform - pos: 12.5,38.5 + pos: 6.5,-6.5 parent: 1 - - uid: 6579 + - uid: 5246 components: - type: Transform - pos: 12.5,37.5 + pos: 6.5,-5.5 parent: 1 - - uid: 6580 + - uid: 5247 components: - type: Transform - pos: 11.5,36.5 + pos: 6.5,-4.5 parent: 1 - - uid: 6581 + - uid: 5248 components: - type: Transform - pos: 11.5,35.5 + pos: 6.5,-3.5 parent: 1 - - uid: 6582 + - uid: 5249 components: - type: Transform - pos: 11.5,38.5 + pos: 5.5,-10.5 parent: 1 - - uid: 6583 + - uid: 5251 components: - type: Transform - pos: 11.5,37.5 + pos: 5.5,-9.5 parent: 1 - - uid: 6584 + - uid: 5252 components: - type: Transform - pos: 10.5,36.5 + pos: 5.5,-8.5 parent: 1 - - uid: 6585 + - uid: 5253 components: - type: Transform - pos: 10.5,35.5 + pos: 5.5,-7.5 parent: 1 - - uid: 6586 + - uid: 5254 components: - type: Transform - pos: 10.5,37.5 + pos: 5.5,-6.5 parent: 1 - - uid: 6587 + - uid: 5255 components: - type: Transform - pos: 9.5,35.5 + pos: 5.5,-5.5 parent: 1 - - uid: 6588 + - uid: 5256 components: - type: Transform - pos: 9.5,36.5 + pos: 5.5,-4.5 parent: 1 - - uid: 6589 + - uid: 5257 components: - type: Transform - pos: 9.5,38.5 + pos: 5.5,-3.5 parent: 1 - - uid: 6590 + - uid: 5258 components: - type: Transform - pos: 9.5,37.5 + pos: 4.5,-10.5 parent: 1 - - uid: 6591 + - uid: 5259 components: - type: Transform - pos: 8.5,36.5 + pos: 4.5,-9.5 parent: 1 - - uid: 6592 + - uid: 5260 components: - type: Transform - pos: 8.5,35.5 + pos: 4.5,-8.5 parent: 1 - - uid: 6593 + - uid: 5261 components: - type: Transform - pos: 8.5,38.5 + pos: 4.5,-7.5 parent: 1 - - uid: 6594 + - uid: 5262 components: - type: Transform - pos: 8.5,37.5 + pos: 4.5,-6.5 parent: 1 - - uid: 6595 + - uid: 5263 components: - type: Transform - pos: 7.5,36.5 + pos: 4.5,-5.5 parent: 1 - - uid: 6596 + - uid: 5265 components: - type: Transform - pos: 7.5,35.5 + pos: 4.5,-4.5 parent: 1 - - uid: 6597 + - uid: 5266 components: - type: Transform - pos: 7.5,38.5 + pos: 4.5,-3.5 parent: 1 - - uid: 6598 + - uid: 5267 components: - type: Transform - pos: 7.5,37.5 + pos: 3.5,-10.5 parent: 1 - - uid: 6599 + - uid: 5268 components: - type: Transform - pos: 6.5,36.5 + pos: 3.5,-9.5 parent: 1 - - uid: 6600 + - uid: 5269 components: - type: Transform - pos: 6.5,35.5 + pos: 3.5,-8.5 parent: 1 - - uid: 6601 + - uid: 5270 components: - type: Transform - pos: 6.5,38.5 + pos: 3.5,-7.5 parent: 1 - - uid: 6602 + - uid: 5271 components: - type: Transform - pos: 6.5,37.5 + pos: 3.5,-6.5 parent: 1 - - uid: 6603 + - uid: 5272 components: - type: Transform - pos: 3.5,37.5 + pos: 3.5,-5.5 parent: 1 - - uid: 6604 + - uid: 5273 components: - type: Transform - pos: 5.5,35.5 + pos: 3.5,-4.5 parent: 1 - - uid: 6605 + - uid: 5274 components: - type: Transform - pos: 2.5,35.5 + pos: 3.5,-3.5 parent: 1 - - uid: 6606 + - uid: 5275 components: - type: Transform - pos: 3.5,38.5 + pos: 2.5,-10.5 parent: 1 - - uid: 6607 + - uid: 5276 components: - type: Transform - pos: 2.5,37.5 + pos: 2.5,-9.5 parent: 1 - - uid: 6608 + - uid: 5277 components: - type: Transform - pos: 2.5,36.5 + pos: 2.5,-8.5 parent: 1 - - uid: 6609 + - uid: 5278 components: - type: Transform - pos: 1.5,35.5 + pos: 2.5,-7.5 parent: 1 - - uid: 6610 + - uid: 5280 components: - type: Transform - pos: 2.5,38.5 + pos: 2.5,-6.5 parent: 1 - - uid: 6611 + - uid: 5281 components: - type: Transform - pos: 1.5,37.5 + pos: 2.5,-5.5 parent: 1 - - uid: 6612 + - uid: 5282 components: - type: Transform - pos: 1.5,36.5 + pos: 2.5,-4.5 parent: 1 - - uid: 6613 + - uid: 5283 components: - type: Transform - pos: 5.5,37.5 + pos: 2.5,-3.5 parent: 1 - - uid: 6614 + - uid: 5284 components: - type: Transform - pos: 5.5,36.5 + pos: -3.5,-10.5 parent: 1 - - uid: 6615 + - uid: 5285 components: - type: Transform - pos: 4.5,35.5 + pos: -3.5,-9.5 parent: 1 - - uid: 6616 + - uid: 5286 components: - type: Transform - pos: 5.5,38.5 + pos: -3.5,-8.5 parent: 1 - - uid: 6617 + - uid: 5287 components: - type: Transform - pos: 4.5,37.5 + pos: -3.5,-7.5 parent: 1 - - uid: 6618 + - uid: 5288 components: - type: Transform - pos: 4.5,36.5 + pos: -3.5,-6.5 parent: 1 - - uid: 6619 + - uid: 5289 components: - type: Transform - pos: 3.5,35.5 + pos: -3.5,-5.5 parent: 1 - - uid: 6620 + - uid: 5290 components: - type: Transform - pos: 4.5,38.5 + pos: -3.5,-4.5 parent: 1 - - uid: 6621 + - uid: 5291 components: - type: Transform - pos: 1.5,38.5 + pos: -3.5,-3.5 parent: 1 - - uid: 6622 + - uid: 5292 components: - type: Transform - pos: 3.5,36.5 + pos: -4.5,-10.5 parent: 1 - - uid: 6623 + - uid: 5293 components: - type: Transform - pos: 0.5,36.5 + pos: -4.5,-9.5 parent: 1 - - uid: 6624 + - uid: 5294 components: - type: Transform - pos: 0.5,35.5 + pos: -4.5,-8.5 parent: 1 - - uid: 6625 + - uid: 5296 components: - type: Transform - pos: 0.5,38.5 + pos: -4.5,-7.5 parent: 1 - - uid: 6626 + - uid: 5297 components: - type: Transform - pos: 0.5,37.5 + pos: -4.5,-6.5 parent: 1 - - uid: 6627 + - uid: 5298 components: - type: Transform - pos: -0.5,36.5 + pos: -4.5,-5.5 parent: 1 - - uid: 6628 + - uid: 5299 components: - type: Transform - pos: -0.5,35.5 + pos: -4.5,-4.5 parent: 1 - - uid: 6629 + - uid: 5300 components: - type: Transform - pos: -0.5,38.5 + pos: -4.5,-3.5 parent: 1 - - uid: 6630 + - uid: 5301 components: - type: Transform - pos: -0.5,37.5 + pos: -5.5,-10.5 parent: 1 - - uid: 6631 + - uid: 5302 components: - type: Transform - pos: -1.5,36.5 + pos: -5.5,-9.5 parent: 1 - - uid: 6632 + - uid: 5303 components: - type: Transform - pos: -1.5,35.5 + pos: -5.5,-8.5 parent: 1 - - uid: 6633 + - uid: 5304 components: - type: Transform - pos: -1.5,38.5 + pos: -5.5,-7.5 parent: 1 - - uid: 6634 + - uid: 5305 components: - type: Transform - pos: -1.5,37.5 + pos: -5.5,-6.5 parent: 1 - - uid: 6635 + - uid: 5310 components: - type: Transform - pos: -2.5,36.5 + pos: -6.5,-9.5 parent: 1 - - uid: 6636 + - uid: 5311 components: - type: Transform - pos: -2.5,35.5 + pos: -6.5,-8.5 parent: 1 - - uid: 6637 + - uid: 5317 components: - type: Transform - pos: -2.5,38.5 + pos: -25.5,-79.5 parent: 1 - - uid: 6638 + - uid: 5318 components: - type: Transform - pos: -3.5,35.5 + pos: -30.5,-79.5 parent: 1 - - uid: 6639 + - uid: 5319 components: - type: Transform - pos: -3.5,37.5 + pos: -7.5,-9.5 parent: 1 - - uid: 6640 + - uid: 5320 components: - type: Transform - pos: -3.5,36.5 + pos: -31.5,-79.5 parent: 1 - - uid: 6641 + - uid: 5322 components: - type: Transform - pos: -4.5,36.5 + pos: -28.5,-79.5 parent: 1 - - uid: 6642 + - uid: 5323 components: - type: Transform - pos: -4.5,38.5 + pos: -27.5,-78.5 parent: 1 - - uid: 6643 + - uid: 5324 components: - type: Transform - pos: -5.5,36.5 + pos: -27.5,-79.5 parent: 1 - - uid: 6644 + - uid: 5325 components: - type: Transform - pos: -5.5,38.5 + pos: -31.5,-78.5 parent: 1 - - uid: 6645 + - uid: 5326 components: - type: Transform - pos: -6.5,36.5 + pos: -32.5,-78.5 parent: 1 - - uid: 6646 + - uid: 5327 components: - type: Transform - pos: -6.5,38.5 + pos: -8.5,-9.5 parent: 1 - - uid: 6647 + - uid: 5328 components: - type: Transform - pos: -7.5,36.5 + pos: -32.5,-79.5 parent: 1 - - uid: 6648 + - uid: 5329 components: - type: Transform - pos: -7.5,37.5 + pos: -29.5,-78.5 parent: 1 - - uid: 6649 + - uid: 5335 components: - type: Transform - pos: -7.5,38.5 + pos: -30.5,-78.5 parent: 1 - - uid: 6650 + - uid: 5363 components: - type: Transform - pos: -8.5,36.5 + pos: -7.5,13.5 parent: 1 - - uid: 6651 + - uid: 5380 components: - type: Transform - pos: -8.5,35.5 + pos: -6.5,13.5 parent: 1 - - uid: 6652 + - uid: 5381 components: - type: Transform - pos: -8.5,38.5 + pos: -6.5,12.5 parent: 1 - - uid: 6653 + - uid: 5395 components: - type: Transform - pos: -8.5,37.5 + pos: -23.5,-19.5 parent: 1 - - uid: 6654 + - uid: 5397 components: - type: Transform - pos: -9.5,36.5 + pos: 3.5,-15.5 parent: 1 - - uid: 6655 + - uid: 5409 components: - type: Transform - pos: -11.5,37.5 + pos: -5.5,13.5 parent: 1 - - uid: 6656 + - uid: 5410 components: - type: Transform - pos: -9.5,37.5 + pos: -5.5,12.5 parent: 1 - - uid: 6657 + - uid: 5411 components: - type: Transform - pos: -9.5,38.5 + pos: -5.5,11.5 parent: 1 - - uid: 6658 + - uid: 5430 components: - type: Transform - pos: -10.5,35.5 + pos: 8.5,-21.5 parent: 1 - - uid: 6659 + - uid: 5450 components: - type: Transform - pos: -10.5,36.5 + pos: -4.5,13.5 parent: 1 - - uid: 6660 + - uid: 5454 components: - type: Transform - pos: -10.5,37.5 + pos: 2.5,-19.5 parent: 1 - - uid: 6661 + - uid: 5473 components: - type: Transform - pos: -10.5,38.5 + pos: -4.5,12.5 parent: 1 - - uid: 6662 + - uid: 5474 components: - type: Transform - pos: -11.5,35.5 + pos: -4.5,11.5 parent: 1 - - uid: 6663 + - uid: 5475 components: - type: Transform - pos: -11.5,36.5 + pos: -4.5,10.5 parent: 1 - - uid: 6664 + - uid: 5476 components: - type: Transform - pos: -12.5,38.5 + pos: -4.5,9.5 parent: 1 - - uid: 6665 + - uid: 5477 components: - type: Transform - pos: -11.5,38.5 + pos: -4.5,8.5 parent: 1 - - uid: 6666 + - uid: 5478 components: - type: Transform - pos: -12.5,35.5 + pos: -4.5,7.5 parent: 1 - - uid: 6667 + - uid: 5479 components: - type: Transform - pos: -12.5,36.5 + pos: -4.5,6.5 parent: 1 - - uid: 6668 + - uid: 5490 components: - type: Transform - pos: -12.5,37.5 + pos: -4.5,4.5 parent: 1 - - uid: 6669 + - uid: 5513 components: - type: Transform - pos: -14.5,35.5 + pos: -4.5,2.5 parent: 1 - - uid: 6670 + - uid: 5541 components: - type: Transform - pos: -13.5,35.5 + pos: -3.5,12.5 parent: 1 - - uid: 6671 + - uid: 5562 components: - type: Transform - pos: -13.5,36.5 + pos: -3.5,10.5 parent: 1 - - uid: 6672 + - uid: 5563 components: - type: Transform - pos: -13.5,37.5 + pos: -3.5,8.5 parent: 1 - - uid: 6673 + - uid: 5573 components: - type: Transform - pos: -13.5,38.5 + pos: -3.5,6.5 parent: 1 - - uid: 6674 + - uid: 5574 components: - type: Transform - pos: -14.5,37.5 + pos: -3.5,4.5 parent: 1 - - uid: 6675 + - uid: 5589 components: - type: Transform - pos: -14.5,36.5 + pos: -3.5,2.5 parent: 1 - - uid: 6676 + - uid: 5590 components: - type: Transform - pos: -15.5,35.5 + pos: 9.5,12.5 parent: 1 - - uid: 6677 + - uid: 5591 components: - type: Transform - pos: -14.5,38.5 + pos: 9.5,10.5 parent: 1 - - uid: 6678 + - uid: 5595 components: - type: Transform - pos: -15.5,37.5 + pos: 9.5,9.5 parent: 1 - - uid: 6679 + - uid: 5599 components: - type: Transform - pos: -15.5,36.5 + pos: 9.5,8.5 parent: 1 - - uid: 6680 + - uid: 5600 components: - type: Transform - pos: -16.5,35.5 + pos: 9.5,7.5 parent: 1 - - uid: 6681 + - uid: 5601 components: - type: Transform - pos: -15.5,38.5 + pos: 9.5,6.5 parent: 1 - - uid: 6682 + - uid: 5602 components: - type: Transform - pos: -16.5,37.5 + pos: 9.5,5.5 parent: 1 - - uid: 6683 + - uid: 5603 components: - type: Transform - pos: -16.5,36.5 + pos: 9.5,4.5 parent: 1 - - uid: 6684 + - uid: 5605 components: - type: Transform - pos: -20.5,38.5 + pos: 9.5,3.5 parent: 1 - - uid: 6685 + - uid: 5606 components: - type: Transform - pos: -16.5,38.5 + pos: 8.5,13.5 parent: 1 - - uid: 6686 + - uid: 5607 components: - type: Transform - pos: -20.5,36.5 + pos: 8.5,12.5 parent: 1 - - uid: 6687 + - uid: 5612 components: - type: Transform - pos: -20.5,37.5 + pos: 8.5,11.5 parent: 1 - - uid: 6688 + - uid: 5613 components: - type: Transform - pos: -20.5,34.5 + pos: 8.5,10.5 parent: 1 - - uid: 6689 + - uid: 5615 components: - type: Transform - pos: -20.5,35.5 + pos: 8.5,9.5 parent: 1 - - uid: 6690 + - uid: 5616 components: - type: Transform - pos: -20.5,32.5 + pos: 8.5,8.5 parent: 1 - - uid: 6691 + - uid: 5619 components: - type: Transform - pos: -20.5,33.5 + pos: 8.5,7.5 parent: 1 - - uid: 6692 + - uid: 5620 components: - type: Transform - pos: -20.5,30.5 + pos: 8.5,6.5 parent: 1 - - uid: 6693 + - uid: 5621 components: - type: Transform - pos: -20.5,31.5 + pos: 8.5,5.5 parent: 1 - - uid: 6694 + - uid: 5622 components: - type: Transform - pos: -20.5,28.5 + pos: 8.5,3.5 parent: 1 - - uid: 6695 + - uid: 5623 components: - type: Transform - pos: -20.5,29.5 + pos: 7.5,13.5 parent: 1 - - uid: 6696 + - uid: 5624 components: - type: Transform - pos: -20.5,26.5 + pos: 7.5,10.5 parent: 1 - - uid: 6697 + - uid: 5625 components: - type: Transform - pos: -20.5,27.5 + pos: 7.5,7.5 parent: 1 - - uid: 6698 + - uid: 5634 components: - type: Transform - pos: -20.5,24.5 + pos: 7.5,4.5 parent: 1 - - uid: 6699 + - uid: 5635 components: - type: Transform - pos: -20.5,25.5 + pos: 6.5,13.5 parent: 1 - - uid: 6700 + - uid: 5642 components: - type: Transform - pos: -20.5,22.5 + pos: 6.5,10.5 parent: 1 - - uid: 6701 + - uid: 5657 components: - type: Transform - pos: -20.5,23.5 + pos: 6.5,7.5 parent: 1 - - uid: 6702 + - uid: 5658 components: - type: Transform - pos: -20.5,17.5 + pos: 5.5,7.5 parent: 1 - - uid: 6703 + - uid: 5659 components: - type: Transform - pos: -20.5,19.5 + pos: 5.5,4.5 parent: 1 - - uid: 6704 + - uid: 5660 components: - type: Transform - pos: -20.5,20.5 + pos: 4.5,13.5 parent: 1 - - uid: 6705 + - uid: 5664 components: - type: Transform - pos: -20.5,18.5 + pos: 6.5,4.5 parent: 1 - - uid: 6706 + - uid: 5666 components: - type: Transform - pos: -20.5,16.5 + pos: 5.5,13.5 parent: 1 - - uid: 6707 + - uid: 5667 components: - type: Transform - pos: -20.5,7.5 + pos: 5.5,10.5 parent: 1 - - uid: 6708 + - uid: 5668 components: - type: Transform - pos: -20.5,15.5 + pos: 4.5,10.5 parent: 1 - - uid: 6709 + - uid: 5670 components: - type: Transform - pos: -20.5,14.5 + pos: 4.5,9.5 parent: 1 - - uid: 6710 + - uid: 5671 components: - type: Transform - pos: -20.5,10.5 + pos: 4.5,8.5 parent: 1 - - uid: 6711 + - uid: 5672 components: - type: Transform - pos: -20.5,11.5 + pos: 4.5,7.5 parent: 1 - - uid: 6712 + - uid: 5673 components: - type: Transform - pos: -20.5,12.5 + pos: 4.5,6.5 parent: 1 - - uid: 6713 + - uid: 5674 components: - type: Transform - pos: -20.5,13.5 + pos: 4.5,5.5 parent: 1 - - uid: 6714 + - uid: 5675 components: - type: Transform - pos: -20.5,8.5 + pos: 4.5,4.5 parent: 1 - - uid: 6715 + - uid: 5679 components: - type: Transform - pos: -20.5,9.5 + pos: 4.5,3.5 parent: 1 - - uid: 6716 + - uid: 5680 components: - type: Transform - pos: -20.5,6.5 + pos: 4.5,2.5 parent: 1 - - uid: 6717 + - uid: 5681 components: - type: Transform - pos: -18.5,29.5 + pos: 3.5,13.5 parent: 1 - - uid: 6718 + - uid: 5682 components: - type: Transform - pos: -18.5,31.5 + pos: 3.5,12.5 parent: 1 - - uid: 6719 + - uid: 5683 components: - type: Transform - pos: -18.5,32.5 + pos: 3.5,11.5 parent: 1 - - uid: 6720 + - uid: 5684 components: - type: Transform - pos: -18.5,30.5 + pos: 3.5,10.5 parent: 1 - - uid: 6721 + - uid: 5685 components: - type: Transform - pos: -18.5,28.5 + pos: 3.5,8.5 parent: 1 - - uid: 6722 + - uid: 5686 components: - type: Transform - pos: -18.5,19.5 + pos: 3.5,6.5 parent: 1 - - uid: 6723 + - uid: 5687 components: - type: Transform - pos: -18.5,27.5 + pos: 3.5,4.5 parent: 1 - - uid: 6724 + - uid: 5688 components: - type: Transform - pos: -18.5,26.5 + pos: 3.5,2.5 parent: 1 - - uid: 6725 + - uid: 5689 components: - type: Transform - pos: -18.5,22.5 + pos: 2.5,12.5 parent: 1 - - uid: 6726 + - uid: 5690 components: - type: Transform - pos: -18.5,23.5 + pos: 2.5,10.5 parent: 1 - - uid: 6727 + - uid: 5691 components: - type: Transform - pos: -18.5,24.5 + pos: 2.5,8.5 parent: 1 - - uid: 6728 + - uid: 5692 components: - type: Transform - pos: -18.5,25.5 + pos: 2.5,6.5 parent: 1 - - uid: 6729 + - uid: 5693 components: - type: Transform - pos: -18.5,20.5 + pos: 2.5,4.5 parent: 1 - - uid: 6730 + - uid: 5694 components: - type: Transform - pos: -18.5,21.5 + pos: 2.5,2.5 parent: 1 - - uid: 6731 + - uid: 5705 components: - type: Transform - pos: -18.5,-2.5 + pos: -23.5,-24.5 parent: 1 - - uid: 6732 + - uid: 5706 components: - type: Transform - pos: -18.5,17.5 + pos: -23.5,-22.5 parent: 1 - - uid: 6733 + - uid: 5707 components: - type: Transform - pos: -18.5,18.5 + pos: -23.5,-20.5 parent: 1 - - uid: 6734 + - uid: 5723 components: - type: Transform - pos: -18.5,15.5 + pos: -23.5,11.5 parent: 1 - - uid: 6735 + - uid: 5724 components: - type: Transform - pos: -18.5,16.5 + pos: -23.5,13.5 parent: 1 - - uid: 6736 + - uid: 5725 components: - type: Transform - pos: -18.5,13.5 + pos: -23.5,15.5 parent: 1 - - uid: 6737 + - uid: 5726 components: - type: Transform - pos: -18.5,14.5 + pos: -23.5,17.5 parent: 1 - - uid: 6738 + - uid: 5727 components: - type: Transform - pos: -18.5,-1.5 + pos: -23.5,19.5 parent: 1 - - uid: 6739 + - uid: 5728 components: - type: Transform - pos: -18.5,11.5 + pos: -23.5,21.5 parent: 1 - - uid: 6740 + - uid: 5729 components: - type: Transform - pos: -18.5,12.5 + pos: -23.5,23.5 parent: 1 - - uid: 6741 + - uid: 5730 components: - type: Transform - pos: -18.5,9.5 + pos: -23.5,25.5 parent: 1 - - uid: 6742 + - uid: 5731 components: - type: Transform - pos: -18.5,10.5 + pos: -23.5,27.5 parent: 1 - - uid: 6743 + - uid: 5732 components: - type: Transform - pos: -18.5,7.5 + pos: -23.5,29.5 parent: 1 - - uid: 6744 + - uid: 5733 components: - type: Transform - pos: -18.5,8.5 + pos: -23.5,31.5 parent: 1 - - uid: 6745 + - uid: 5734 components: - type: Transform - pos: -18.5,5.5 + pos: -23.5,33.5 parent: 1 - - uid: 6746 + - uid: 5735 components: - type: Transform - pos: -18.5,6.5 + pos: -23.5,35.5 parent: 1 - - uid: 6747 + - uid: 5736 components: - type: Transform - pos: -18.5,3.5 + pos: -23.5,37.5 parent: 1 - - uid: 6748 + - uid: 5737 components: - type: Transform - pos: -18.5,4.5 + pos: -24.5,-61.5 parent: 1 - - uid: 6749 + - uid: 5738 components: - type: Transform - pos: -18.5,1.5 + pos: -24.5,-59.5 parent: 1 - - uid: 6750 + - uid: 5739 components: - type: Transform - pos: -18.5,2.5 + pos: -24.5,-57.5 parent: 1 - - uid: 6751 + - uid: 5740 components: - type: Transform - pos: -18.5,-0.5 + pos: -24.5,-55.5 parent: 1 - - uid: 6752 + - uid: 5741 components: - type: Transform - pos: -18.5,0.5 + pos: -24.5,-53.5 parent: 1 - - uid: 6753 + - uid: 5742 components: - type: Transform - pos: -18.5,-3.5 + pos: -24.5,-51.5 parent: 1 - - uid: 6754 + - uid: 5743 components: - type: Transform - pos: -19.5,37.5 + pos: -24.5,-49.5 parent: 1 - - uid: 6755 + - uid: 5744 components: - type: Transform - pos: -20.5,-10.5 + pos: -24.5,-47.5 parent: 1 - - uid: 6756 + - uid: 5751 components: - type: Transform - pos: -20.5,-9.5 + pos: -24.5,-45.5 parent: 1 - - uid: 6757 + - uid: 5752 components: - type: Transform - pos: -19.5,38.5 + pos: -24.5,-43.5 parent: 1 - - uid: 6758 + - uid: 5769 components: - type: Transform - pos: -19.5,36.5 + pos: -24.5,-41.5 parent: 1 - - uid: 6759 + - uid: 5770 components: - type: Transform - pos: -19.5,27.5 + pos: -24.5,-39.5 parent: 1 - - uid: 6760 + - uid: 5776 components: - type: Transform - pos: -19.5,35.5 + pos: -24.5,-37.5 parent: 1 - - uid: 6761 + - uid: 5777 components: - type: Transform - pos: -19.5,34.5 + pos: -24.5,-35.5 parent: 1 - - uid: 6762 + - uid: 5778 components: - type: Transform - pos: -19.5,30.5 + pos: -24.5,-33.5 parent: 1 - - uid: 6763 + - uid: 5779 components: - type: Transform - pos: -19.5,31.5 + pos: -24.5,-31.5 parent: 1 - - uid: 6764 + - uid: 5780 components: - type: Transform - pos: -19.5,32.5 + pos: -24.5,-29.5 parent: 1 - - uid: 6765 + - uid: 5781 components: - type: Transform - pos: -19.5,33.5 + pos: -24.5,-27.5 parent: 1 - - uid: 6766 + - uid: 5782 components: - type: Transform - pos: -19.5,28.5 + pos: -24.5,-25.5 parent: 1 - - uid: 6767 + - uid: 5783 components: - type: Transform - pos: -19.5,29.5 + pos: -24.5,-23.5 parent: 1 - - uid: 6768 + - uid: 5784 components: - type: Transform - pos: -19.5,26.5 + pos: -24.5,-21.5 parent: 1 - - uid: 6769 + - uid: 5785 components: - type: Transform - pos: -19.5,12.5 + pos: -24.5,-19.5 parent: 1 - - uid: 6770 + - uid: 5845 components: - type: Transform - pos: -19.5,14.5 + pos: 5.5,-17.5 parent: 1 - - uid: 6771 + - uid: 5847 components: - type: Transform - pos: -19.5,15.5 + pos: 6.5,-15.5 parent: 1 - - uid: 6772 + - uid: 5848 components: - type: Transform - pos: -19.5,13.5 + pos: -24.5,12.5 parent: 1 - - uid: 6773 + - uid: 5882 components: - type: Transform - pos: -19.5,11.5 + rot: 1.5707963267948966 rad + pos: -29.5,-121.5 parent: 1 - - uid: 6774 + - uid: 5929 components: - type: Transform - pos: -19.5,2.5 + pos: 5.5,-14.5 parent: 1 - - uid: 6775 + - uid: 5944 components: - type: Transform - pos: -19.5,10.5 + pos: 7.5,-15.5 parent: 1 - - uid: 6776 + - uid: 5945 components: - type: Transform - pos: -19.5,9.5 + pos: 4.5,-16.5 parent: 1 - - uid: 6777 + - uid: 5954 components: - type: Transform - pos: -19.5,5.5 + pos: -24.5,14.5 parent: 1 - - uid: 6778 + - uid: 5962 components: - type: Transform - pos: -19.5,6.5 + pos: -24.5,16.5 parent: 1 - - uid: 6779 + - uid: 5963 components: - type: Transform - pos: -19.5,7.5 + pos: -24.5,18.5 parent: 1 - - uid: 6780 + - uid: 5964 components: - type: Transform - pos: -19.5,8.5 + pos: -24.5,20.5 parent: 1 - - uid: 6781 + - uid: 5972 components: - type: Transform - pos: -19.5,16.5 + pos: -2.5,-125.5 parent: 1 - - uid: 6782 + - uid: 5973 components: - type: Transform - pos: -19.5,3.5 + pos: -2.5,-126.5 parent: 1 - - uid: 6783 + - uid: 5974 components: - type: Transform - pos: -19.5,4.5 + pos: -2.5,-127.5 parent: 1 - - uid: 6784 + - uid: 5979 components: - type: Transform - pos: -19.5,1.5 + pos: -21.5,-125.5 parent: 1 - - uid: 6785 + - uid: 5980 components: - type: Transform - pos: -16.5,27.5 + pos: -20.5,-126.5 parent: 1 - - uid: 6786 + - uid: 5981 components: - type: Transform - pos: -15.5,27.5 + pos: -20.5,-127.5 parent: 1 - - uid: 6787 + - uid: 5982 components: - type: Transform - pos: -15.5,26.5 + pos: -19.5,-125.5 parent: 1 - - uid: 6788 + - uid: 5988 components: - type: Transform - pos: -16.5,26.5 + pos: -18.5,-127.5 parent: 1 - - uid: 6789 + - uid: 5992 components: - type: Transform - pos: -6.5,34.5 + pos: -24.5,22.5 parent: 1 - - uid: 6790 + - uid: 6007 components: - type: Transform - pos: -11.5,31.5 + pos: -18.5,-126.5 parent: 1 - - uid: 6791 + - uid: 6012 components: - type: Transform - pos: -8.5,33.5 + pos: -24.5,24.5 parent: 1 - - uid: 6792 + - uid: 6013 components: - type: Transform - pos: -17.5,7.5 + pos: -24.5,26.5 parent: 1 - - uid: 6793 + - uid: 6031 components: - type: Transform - pos: -17.5,9.5 + pos: -24.5,28.5 parent: 1 - - uid: 6794 + - uid: 6040 components: - type: Transform - pos: -17.5,10.5 + pos: -17.5,-125.5 parent: 1 - - uid: 6795 + - uid: 6049 components: - type: Transform - pos: -17.5,8.5 + pos: -15.5,-127.5 parent: 1 - - uid: 6796 + - uid: 6052 components: - type: Transform - pos: -17.5,6.5 + pos: -15.5,-126.5 parent: 1 - - uid: 6797 + - uid: 6054 components: - type: Transform - pos: -17.5,5.5 + pos: 47.5,-108.5 parent: 1 - - uid: 6798 + - uid: 6055 components: - type: Transform - pos: -18.5,36.5 + pos: -15.5,-125.5 parent: 1 - - uid: 6799 + - uid: 6056 components: - type: Transform - pos: -18.5,38.5 + pos: -24.5,30.5 parent: 1 - - uid: 6800 + - uid: 6057 components: - type: Transform - pos: -19.5,-10.5 + pos: -24.5,32.5 parent: 1 - - uid: 6801 + - uid: 6058 components: - type: Transform - pos: -18.5,37.5 + pos: -24.5,34.5 parent: 1 - - uid: 6802 + - uid: 6060 components: - type: Transform - pos: -18.5,35.5 + pos: -24.5,36.5 parent: 1 - - uid: 6803 + - uid: 6061 components: - type: Transform - pos: -18.5,34.5 + pos: -24.5,38.5 parent: 1 - - uid: 6804 + - uid: 6062 components: - type: Transform - pos: -17.5,0.5 + pos: -25.5,-60.5 parent: 1 - - uid: 6805 + - uid: 6063 components: - type: Transform - pos: -17.5,2.5 + pos: -25.5,-58.5 parent: 1 - - uid: 6806 + - uid: 6064 components: - type: Transform - pos: -17.5,3.5 + pos: -25.5,-56.5 parent: 1 - - uid: 6807 + - uid: 6065 components: - type: Transform - pos: -17.5,1.5 + pos: -25.5,-54.5 parent: 1 - - uid: 6808 + - uid: 6066 components: - type: Transform - pos: -17.5,-0.5 + pos: -25.5,-52.5 parent: 1 - - uid: 6809 + - uid: 6067 components: - type: Transform - pos: -16.5,24.5 + pos: -25.5,-50.5 parent: 1 - - uid: 6810 + - uid: 6068 components: - type: Transform - pos: -17.5,-1.5 + pos: -25.5,-48.5 parent: 1 - - uid: 6811 + - uid: 6069 components: - type: Transform - pos: -17.5,-2.5 + pos: -25.5,-46.5 parent: 1 - - uid: 6812 + - uid: 6070 components: - type: Transform - pos: -16.5,23.5 + pos: -25.5,-44.5 parent: 1 - - uid: 6813 + - uid: 6071 components: - type: Transform - pos: -17.5,-10.5 + pos: -25.5,-42.5 parent: 1 - - uid: 6814 + - uid: 6072 components: - type: Transform - pos: -17.5,-4.5 + pos: -25.5,-40.5 parent: 1 - - uid: 6815 + - uid: 6073 components: - type: Transform - pos: -17.5,-3.5 + pos: -25.5,-38.5 parent: 1 - - uid: 6816 + - uid: 6074 components: - type: Transform - pos: -17.5,-9.5 + pos: -25.5,-36.5 parent: 1 - - uid: 6817 + - uid: 6075 components: - type: Transform - pos: -17.5,-5.5 + pos: -25.5,-34.5 parent: 1 - - uid: 6818 + - uid: 6076 components: - type: Transform - pos: -17.5,-6.5 + pos: -25.5,-32.5 parent: 1 - - uid: 6819 + - uid: 6077 components: - type: Transform - pos: -17.5,-8.5 + pos: -25.5,-30.5 parent: 1 - - uid: 6820 + - uid: 6078 components: - type: Transform - pos: -17.5,-7.5 + pos: -25.5,-28.5 parent: 1 - - uid: 6821 + - uid: 6079 components: - type: Transform - pos: -16.5,25.5 + pos: -25.5,-26.5 parent: 1 - - uid: 6822 + - uid: 6080 components: - type: Transform - pos: -19.5,21.5 + pos: -25.5,-24.5 parent: 1 - - uid: 6823 + - uid: 6081 components: - type: Transform - pos: -19.5,23.5 + pos: -25.5,-22.5 parent: 1 - - uid: 6824 + - uid: 6082 components: - type: Transform - pos: -19.5,24.5 + pos: -25.5,-20.5 parent: 1 - - uid: 6825 + - uid: 6083 components: - type: Transform - pos: -19.5,22.5 + pos: -25.5,-18.5 parent: 1 - - uid: 6826 + - uid: 6089 components: - type: Transform - pos: -19.5,20.5 + pos: -10.5,-9.5 parent: 1 - - uid: 6827 + - uid: 6090 components: - type: Transform - pos: -19.5,19.5 + pos: 47.5,-121.5 parent: 1 - - uid: 6828 + - uid: 6095 components: - type: Transform - pos: -19.5,18.5 + pos: -9.5,-9.5 parent: 1 - - uid: 6829 + - uid: 6096 components: - type: Transform - pos: -17.5,20.5 + pos: 47.5,-109.5 parent: 1 - - uid: 6830 + - uid: 6098 components: - type: Transform - pos: -17.5,14.5 + pos: -25.5,11.5 parent: 1 - - uid: 6831 + - uid: 6099 components: - type: Transform - pos: -17.5,19.5 + pos: -25.5,13.5 parent: 1 - - uid: 6832 + - uid: 6100 components: - type: Transform - pos: -17.5,18.5 + pos: -25.5,15.5 parent: 1 - - uid: 6833 + - uid: 6101 components: - type: Transform - pos: -17.5,17.5 + pos: -25.5,17.5 parent: 1 - - uid: 6834 + - uid: 6102 components: - type: Transform - pos: -17.5,15.5 + pos: -25.5,19.5 parent: 1 - - uid: 6835 + - uid: 6103 components: - type: Transform - pos: -17.5,16.5 + pos: -25.5,21.5 parent: 1 - - uid: 6836 + - uid: 6104 components: - type: Transform - pos: -17.5,13.5 + pos: -25.5,24.5 parent: 1 - - uid: 6837 + - uid: 6105 components: - type: Transform - pos: -17.5,12.5 + pos: -25.5,26.5 parent: 1 - - uid: 6838 + - uid: 6106 components: - type: Transform - pos: -18.5,-5.5 + pos: -25.5,28.5 parent: 1 - - uid: 6839 + - uid: 6107 components: - type: Transform - pos: -17.5,38.5 + pos: -25.5,30.5 parent: 1 - - uid: 6840 + - uid: 6108 components: - type: Transform - pos: -18.5,-6.5 + pos: -25.5,22.5 parent: 1 - - uid: 6841 + - uid: 6109 components: - type: Transform - pos: -18.5,-7.5 + pos: -25.5,33.5 parent: 1 - - uid: 6842 + - uid: 6110 components: - type: Transform - pos: -18.5,-8.5 + pos: -25.5,35.5 parent: 1 - - uid: 6843 + - uid: 6111 components: - type: Transform - pos: -18.5,-10.5 + pos: -25.5,37.5 parent: 1 - - uid: 6844 + - uid: 6112 components: - type: Transform - pos: -18.5,-9.5 + pos: -26.5,-61.5 parent: 1 - - uid: 6845 + - uid: 6113 components: - type: Transform - pos: -17.5,37.5 + pos: -26.5,-59.5 parent: 1 - - uid: 6846 + - uid: 6114 components: - type: Transform - pos: -17.5,36.5 + pos: -26.5,-57.5 parent: 1 - - uid: 6847 + - uid: 6115 components: - type: Transform - pos: -17.5,34.5 + pos: -26.5,-55.5 parent: 1 - - uid: 6848 + - uid: 6117 components: - type: Transform - pos: -17.5,35.5 + pos: -26.5,33.5 parent: 1 - - uid: 6849 + - uid: 6121 components: - type: Transform - pos: -17.5,32.5 + pos: -27.5,-58.5 parent: 1 - - uid: 6850 + - uid: 6122 components: - type: Transform - pos: -17.5,26.5 + pos: -27.5,-55.5 parent: 1 - - uid: 6851 + - uid: 6123 components: - type: Transform - pos: -17.5,31.5 + pos: -27.5,-47.5 parent: 1 - - uid: 6852 + - uid: 6124 components: - type: Transform - pos: -17.5,30.5 + pos: -27.5,-45.5 parent: 1 - - uid: 6853 + - uid: 6125 components: - type: Transform - pos: -17.5,29.5 + pos: 47.5,-115.5 parent: 1 - - uid: 6854 + - uid: 6126 components: - type: Transform - pos: -17.5,27.5 + pos: -27.5,-42.5 parent: 1 - - uid: 6855 + - uid: 6127 components: - type: Transform - pos: -17.5,28.5 + pos: -27.5,-37.5 parent: 1 - - uid: 6856 + - uid: 6128 components: - type: Transform - pos: -17.5,25.5 + pos: 4.5,-14.5 parent: 1 - - uid: 6857 + - uid: 6129 components: - type: Transform - pos: -17.5,24.5 + pos: 8.5,-20.5 parent: 1 - - uid: 6858 + - uid: 6130 components: - type: Transform - pos: -17.5,22.5 + pos: 2.5,-17.5 parent: 1 - - uid: 6859 + - uid: 6141 components: - type: Transform - pos: -17.5,23.5 + pos: 2.5,-18.5 parent: 1 - - uid: 6860 + - uid: 6145 components: - type: Transform - pos: -20.5,0.5 + pos: 46.5,-103.5 parent: 1 - - uid: 6861 + - uid: 6146 components: - type: Transform - pos: -20.5,-5.5 + pos: -27.5,-41.5 parent: 1 - - uid: 6862 + - uid: 6147 components: - type: Transform - pos: -20.5,-0.5 + pos: -27.5,-39.5 parent: 1 - - uid: 6863 + - uid: 6148 components: - type: Transform - pos: -20.5,-1.5 + pos: -28.5,22.5 parent: 1 - - uid: 6864 + - uid: 6149 components: - type: Transform - pos: -20.5,-2.5 + pos: 8.5,-17.5 parent: 1 - - uid: 6865 + - uid: 6151 components: - type: Transform - pos: -20.5,-4.5 + pos: -27.5,-51.5 parent: 1 - - uid: 6866 + - uid: 6153 components: - type: Transform - pos: -20.5,-3.5 + pos: 5.5,-18.5 parent: 1 - - uid: 6867 + - uid: 6156 components: - type: Transform - pos: -20.5,-6.5 + pos: -22.5,-71.5 parent: 1 - - uid: 6868 + - uid: 6157 components: - type: Transform - pos: -20.5,-7.5 + pos: -22.5,-69.5 parent: 1 - - uid: 6869 + - uid: 6158 components: - type: Transform - pos: -19.5,-0.5 + pos: -22.5,-67.5 parent: 1 - - uid: 6870 + - uid: 6159 components: - type: Transform - pos: -19.5,-6.5 + pos: -22.5,-65.5 parent: 1 - - uid: 6871 + - uid: 6160 components: - type: Transform - pos: -19.5,-1.5 + pos: -22.5,-63.5 parent: 1 - - uid: 6872 + - uid: 6165 components: - type: Transform - pos: -19.5,-2.5 + pos: -28.5,-18.5 parent: 1 - - uid: 6873 + - uid: 6166 components: - type: Transform - pos: -19.5,-3.5 + pos: 6.5,-16.5 parent: 1 - - uid: 6874 + - uid: 6171 components: - type: Transform - pos: -19.5,-5.5 + pos: -27.5,-40.5 parent: 1 - - uid: 6875 + - uid: 6173 components: - type: Transform - pos: -19.5,-4.5 + pos: 4.5,-17.5 parent: 1 - - uid: 6876 + - uid: 6174 components: - type: Transform - pos: -19.5,-7.5 + pos: -28.5,37.5 parent: 1 - - uid: 6877 + - uid: 6175 components: - type: Transform - pos: -19.5,-8.5 + pos: 47.5,-114.5 parent: 1 - - uid: 6878 + - uid: 6177 components: - type: Transform - pos: -20.5,4.5 + pos: -23.5,-70.5 parent: 1 - - uid: 6879 + - uid: 6178 components: - type: Transform - pos: -20.5,2.5 + pos: -23.5,-68.5 parent: 1 - - uid: 6880 + - uid: 6179 components: - type: Transform - pos: -20.5,3.5 + pos: -23.5,-66.5 parent: 1 - - uid: 6881 + - uid: 6180 components: - type: Transform - pos: -12.5,32.5 + pos: -23.5,-64.5 parent: 1 - - uid: 6882 + - uid: 6181 components: - type: Transform - pos: -10.5,32.5 + pos: -23.5,-62.5 parent: 1 - - uid: 6883 + - uid: 6182 components: - type: Transform - pos: -9.5,33.5 + pos: 7.5,-19.5 parent: 1 - - uid: 6884 + - uid: 6183 components: - type: Transform - pos: -11.5,32.5 + pos: 4.5,-15.5 parent: 1 - - uid: 6885 + - uid: 6189 components: - type: Transform - pos: -10.5,33.5 + pos: -23.5,-18.5 parent: 1 - - uid: 6886 + - uid: 6190 components: - type: Transform - pos: -12.5,33.5 + pos: -28.5,-20.5 parent: 1 - - uid: 6887 + - uid: 6191 components: - type: Transform - pos: -11.5,33.5 + pos: 7.5,-22.5 parent: 1 - - uid: 6888 + - uid: 6192 components: - type: Transform - pos: -12.5,31.5 + pos: 2.5,-16.5 parent: 1 - - uid: 6889 + - uid: 6194 components: - type: Transform - pos: -13.5,31.5 + pos: -28.5,23.5 parent: 1 - - uid: 6890 + - uid: 6195 components: - type: Transform - pos: -13.5,29.5 + pos: 8.5,-19.5 parent: 1 - - uid: 6891 + - uid: 6196 components: - type: Transform - pos: -13.5,28.5 + pos: -24.5,-64.5 parent: 1 - - uid: 6892 + - uid: 6197 components: - type: Transform - pos: -13.5,30.5 + pos: -24.5,-63.5 parent: 1 - - uid: 6893 + - uid: 6204 components: - type: Transform - pos: -14.5,29.5 + pos: 5.5,-21.5 parent: 1 - - uid: 6894 + - uid: 6205 components: - type: Transform - pos: -13.5,33.5 + pos: 46.5,-78.5 parent: 1 - - uid: 6895 + - uid: 6207 components: - type: Transform - pos: -13.5,32.5 + pos: 47.5,-110.5 parent: 1 - - uid: 6896 + - uid: 6213 components: - type: Transform - pos: -14.5,28.5 + pos: 8.5,-18.5 parent: 1 - - uid: 6897 + - uid: 6216 components: - type: Transform - pos: -14.5,30.5 + pos: -28.5,27.5 parent: 1 - - uid: 6898 + - uid: 6219 components: - type: Transform - pos: -14.5,31.5 + pos: 5.5,-19.5 parent: 1 - - uid: 6899 + - uid: 6220 components: - type: Transform - pos: -14.5,34.5 + pos: 7.5,-16.5 parent: 1 - - uid: 6900 + - uid: 6221 components: - type: Transform - pos: -16.5,34.5 + pos: 4.5,-18.5 parent: 1 - - uid: 6901 + - uid: 6225 components: - type: Transform - pos: -16.5,33.5 + pos: -26.5,-62.5 parent: 1 - - uid: 6902 + - uid: 6227 components: - type: Transform - pos: -15.5,34.5 + pos: 7.5,-18.5 parent: 1 - - uid: 6903 + - uid: 6228 components: - type: Transform - pos: -10.5,34.5 + pos: 2.5,-14.5 parent: 1 - - uid: 6904 + - uid: 6229 components: - type: Transform - pos: -12.5,34.5 + pos: 2.5,-15.5 parent: 1 - - uid: 6905 + - uid: 6230 components: - type: Transform - pos: -13.5,34.5 + pos: 7.5,-17.5 parent: 1 - - uid: 6906 + - uid: 6232 components: - type: Transform - pos: -11.5,34.5 + pos: 47.5,-123.5 parent: 1 - - uid: 6907 + - uid: 6237 components: - type: Transform - pos: -9.5,34.5 + pos: 5.5,-22.5 parent: 1 - - uid: 6908 + - uid: 6238 components: - type: Transform - pos: -8.5,34.5 + pos: 5.5,-20.5 parent: 1 - - uid: 6909 + - uid: 6239 components: - type: Transform - pos: -15.5,31.5 + pos: 6.5,-22.5 parent: 1 - - uid: 6910 + - uid: 6245 components: - type: Transform - pos: -15.5,29.5 + pos: -28.5,33.5 parent: 1 - - uid: 6911 + - uid: 6246 components: - type: Transform - pos: -15.5,28.5 + pos: -28.5,26.5 parent: 1 - - uid: 6912 + - uid: 6247 components: - type: Transform - pos: -15.5,30.5 + pos: -28.5,24.5 parent: 1 - - uid: 6913 + - uid: 6248 components: - type: Transform - pos: -16.5,29.5 + pos: -28.5,25.5 parent: 1 - - uid: 6914 + - uid: 6249 components: - type: Transform - pos: -15.5,33.5 + pos: -13.5,-125.5 parent: 1 - - uid: 6915 + - uid: 6252 components: - type: Transform - pos: -15.5,32.5 + pos: -13.5,-126.5 parent: 1 - - uid: 6916 + - uid: 6255 components: - type: Transform - pos: -16.5,28.5 + pos: -25.5,-71.5 parent: 1 - - uid: 6917 + - uid: 6257 components: - type: Transform - pos: -16.5,30.5 + pos: -25.5,-69.5 parent: 1 - - uid: 6918 + - uid: 6261 components: - type: Transform - pos: -16.5,31.5 + pos: -25.5,-70.5 parent: 1 - - uid: 6919 + - uid: 6262 components: - type: Transform - pos: 2.5,34.5 + pos: -25.5,-67.5 parent: 1 - - uid: 6920 + - uid: 6263 components: - type: Transform - pos: -2.5,34.5 + pos: -25.5,-68.5 parent: 1 - - uid: 6921 + - uid: 6264 components: - type: Transform - pos: -1.5,34.5 + pos: -25.5,-65.5 parent: 1 - - uid: 6922 + - uid: 6265 components: - type: Transform - pos: 1.5,34.5 + pos: -25.5,-66.5 parent: 1 - - uid: 6923 + - uid: 6270 components: - type: Transform - pos: -0.5,34.5 + pos: -25.5,-63.5 parent: 1 - - uid: 6924 + - uid: 6271 components: - type: Transform - pos: 4.5,34.5 + pos: -25.5,-64.5 parent: 1 - - uid: 6925 + - uid: 6272 components: - type: Transform - pos: 3.5,34.5 + pos: -40.5,-5.5 parent: 1 - - uid: 6926 + - uid: 6273 components: - type: Transform - pos: 5.5,34.5 + pos: -25.5,-62.5 parent: 1 - - uid: 6927 + - uid: 6278 components: - type: Transform - pos: 7.5,34.5 + pos: -13.5,-127.5 parent: 1 - - uid: 6928 + - uid: 6309 components: - type: Transform - pos: 12.5,29.5 + pos: -40.5,-4.5 parent: 1 - - uid: 6929 + - uid: 6316 components: - type: Transform - pos: 12.5,30.5 + pos: -28.5,30.5 parent: 1 - - uid: 6930 + - uid: 6317 components: - type: Transform - pos: 10.5,34.5 + pos: -28.5,29.5 parent: 1 - - uid: 6931 + - uid: 6319 components: - type: Transform - pos: 10.5,33.5 + pos: -28.5,35.5 parent: 1 - - uid: 6932 + - uid: 6326 components: - type: Transform - pos: 9.5,34.5 + pos: -26.5,-71.5 parent: 1 - - uid: 6933 + - uid: 6335 components: - type: Transform - pos: 9.5,33.5 + pos: 23.5,-15.5 parent: 1 - - uid: 6934 + - uid: 6336 components: - type: Transform - pos: 8.5,33.5 + pos: 23.5,-5.5 parent: 1 - - uid: 6935 + - uid: 6340 components: - type: Transform - pos: 12.5,34.5 + pos: -40.5,-0.5 parent: 1 - - uid: 6936 + - uid: 6341 components: - type: Transform - pos: 12.5,33.5 + pos: -26.5,-68.5 parent: 1 - - uid: 6937 + - uid: 6342 components: - type: Transform - pos: 8.5,34.5 + pos: -26.5,-69.5 parent: 1 - - uid: 6938 + - uid: 6343 components: - type: Transform - pos: 13.5,34.5 + pos: -26.5,-66.5 parent: 1 - - uid: 6939 + - uid: 6344 components: - type: Transform - pos: 13.5,33.5 + pos: -26.5,-67.5 parent: 1 - - uid: 6940 + - uid: 6345 components: - type: Transform - pos: 18.5,30.5 + pos: -26.5,-64.5 parent: 1 - - uid: 6941 + - uid: 6347 components: - type: Transform - pos: 18.5,29.5 + pos: -26.5,-65.5 parent: 1 - - uid: 6942 + - uid: 6352 components: - type: Transform - pos: 18.5,31.5 + pos: -40.5,-3.5 parent: 1 - - uid: 6943 + - uid: 6357 components: - type: Transform - pos: 18.5,32.5 + pos: -40.5,-1.5 parent: 1 - - uid: 6944 + - uid: 6359 components: - type: Transform - pos: 18.5,28.5 + pos: -27.5,-71.5 parent: 1 - - uid: 6945 + - uid: 6361 components: - type: Transform - pos: 18.5,27.5 + pos: -27.5,-69.5 parent: 1 - - uid: 6946 + - uid: 6363 components: - type: Transform - pos: 13.5,29.5 + pos: -27.5,-70.5 parent: 1 - - uid: 6947 + - uid: 6364 components: - type: Transform - pos: 13.5,28.5 + pos: -27.5,-67.5 parent: 1 - - uid: 6948 + - uid: 6365 components: - type: Transform - pos: 13.5,30.5 + pos: -27.5,-68.5 parent: 1 - - uid: 6949 + - uid: 6367 components: - type: Transform - pos: 13.5,31.5 + pos: -27.5,-62.5 parent: 1 - - uid: 6950 + - uid: 6371 components: - type: Transform - pos: 13.5,27.5 + pos: -28.5,34.5 parent: 1 - - uid: 6951 + - uid: 6377 components: - type: Transform - pos: 15.5,26.5 + pos: -27.5,-65.5 parent: 1 - - uid: 6952 + - uid: 6378 components: - type: Transform - pos: 15.5,30.5 + pos: -27.5,-64.5 parent: 1 - - uid: 6953 + - uid: 6383 components: - type: Transform - pos: 15.5,31.5 + pos: -11.5,-125.5 parent: 1 - - uid: 6954 + - uid: 6384 components: - type: Transform - pos: 15.5,29.5 + pos: -10.5,-125.5 parent: 1 - - uid: 6955 + - uid: 6385 components: - type: Transform - pos: 15.5,28.5 + pos: -9.5,-125.5 parent: 1 - - uid: 6956 + - uid: 6386 components: - type: Transform - pos: 15.5,32.5 + pos: -9.5,-126.5 parent: 1 - - uid: 6957 + - uid: 6388 components: - type: Transform - pos: 15.5,33.5 + pos: -9.5,-127.5 parent: 1 - - uid: 6958 + - uid: 6389 components: - type: Transform - pos: 18.5,25.5 + pos: -11.5,-127.5 parent: 1 - - uid: 6959 + - uid: 6390 components: - type: Transform - pos: 14.5,29.5 + pos: -10.5,-127.5 parent: 1 - - uid: 6960 + - uid: 6401 components: - type: Transform - pos: 14.5,30.5 + pos: -6.5,-125.5 parent: 1 - - uid: 6961 + - uid: 6402 components: - type: Transform - pos: 14.5,31.5 + pos: -6.5,-126.5 parent: 1 - - uid: 6962 + - uid: 6403 components: - type: Transform - pos: 14.5,32.5 + pos: -6.5,-127.5 parent: 1 - - uid: 6963 + - uid: 6406 components: - type: Transform - pos: 14.5,34.5 + pos: -28.5,-71.5 parent: 1 - - uid: 6964 + - uid: 6407 components: - type: Transform - pos: 14.5,33.5 + pos: -28.5,-66.5 parent: 1 - - uid: 6965 + - uid: 6408 components: - type: Transform - pos: 18.5,34.5 + pos: -28.5,-70.5 parent: 1 - - uid: 6966 + - uid: 6409 components: - type: Transform - pos: 17.5,33.5 + pos: -28.5,-72.5 parent: 1 - - uid: 6967 + - uid: 6410 components: - type: Transform - pos: 17.5,32.5 + pos: -13.5,-57.5 parent: 1 - - uid: 6968 + - uid: 6411 components: - type: Transform - pos: 17.5,31.5 + pos: -23.5,-111.5 parent: 1 - - uid: 6969 + - uid: 6412 components: - type: Transform - pos: 17.5,30.5 + pos: -4.5,-125.5 parent: 1 - - uid: 6970 + - uid: 6413 components: - type: Transform - pos: 17.5,28.5 + pos: -4.5,-126.5 parent: 1 - - uid: 6971 + - uid: 6414 components: - type: Transform - pos: 17.5,29.5 + pos: -4.5,-127.5 parent: 1 - - uid: 6972 + - uid: 6415 components: - type: Transform - pos: 17.5,27.5 + pos: -1.5,-127.5 parent: 1 - - uid: 6973 + - uid: 6416 components: - type: Transform - pos: 17.5,25.5 + pos: -0.5,-127.5 parent: 1 - - uid: 6974 + - uid: 6431 components: - type: Transform - pos: 17.5,24.5 + pos: -13.5,-56.5 parent: 1 - - uid: 6975 + - uid: 6432 components: - type: Transform - pos: 17.5,23.5 + pos: -23.5,-72.5 parent: 1 - - uid: 6976 + - uid: 6437 components: - type: Transform - pos: 16.5,34.5 + pos: -40.5,3.5 parent: 1 - - uid: 6977 + - uid: 6439 components: - type: Transform - pos: 16.5,32.5 + pos: -40.5,0.5 parent: 1 - - uid: 6978 + - uid: 6454 components: - type: Transform - pos: 16.5,33.5 + pos: 46.5,-111.5 parent: 1 - - uid: 6979 + - uid: 6455 components: - type: Transform - pos: 16.5,31.5 + pos: -12.5,-53.5 parent: 1 - - uid: 6980 + - uid: 6456 components: - type: Transform - pos: 16.5,24.5 + pos: -25.5,-72.5 parent: 1 - - uid: 6981 + - uid: 6460 components: - type: Transform - pos: 14.5,25.5 + pos: -40.5,1.5 parent: 1 - - uid: 6982 + - uid: 6461 components: - type: Transform - pos: 15.5,23.5 + pos: -40.5,2.5 parent: 1 - - uid: 6983 + - uid: 6470 components: - type: Transform - pos: 14.5,23.5 + pos: -12.5,-52.5 parent: 1 - - uid: 6984 + - uid: 6472 components: - type: Transform - pos: 15.5,25.5 + pos: -26.5,-72.5 parent: 1 - - uid: 6985 + - uid: 6473 components: - type: Transform - pos: 13.5,26.5 + pos: -13.5,-67.5 parent: 1 - - uid: 6986 + - uid: 6474 components: - type: Transform - pos: 12.5,28.5 + pos: -27.5,-72.5 parent: 1 - - uid: 6987 + - uid: 6485 components: - type: Transform - pos: 10.5,30.5 + pos: -40.5,6.5 parent: 1 - - uid: 6988 + - uid: 6486 components: - type: Transform - pos: 9.5,31.5 + pos: -27.5,-74.5 parent: 1 - - uid: 6989 + - uid: 6490 components: - type: Transform - pos: 8.5,32.5 + pos: 1.5,-127.5 parent: 1 - - uid: 6990 + - uid: 6492 components: - type: Transform - pos: 7.5,32.5 + pos: -28.5,-74.5 parent: 1 - - uid: 6991 + - uid: 6503 components: - type: Transform - pos: 7.5,33.5 + pos: 3.5,-127.5 parent: 1 - - uid: 6992 + - uid: 6508 components: - type: Transform - pos: 6.5,33.5 + pos: -40.5,-14.5 parent: 1 - - uid: 6993 + - uid: 6512 components: - type: Transform - pos: 5.5,33.5 + pos: 5.5,-127.5 parent: 1 - - uid: 6994 + - uid: 6513 components: - type: Transform - pos: 4.5,33.5 + pos: 6.5,-127.5 parent: 1 - - uid: 6995 + - uid: 6514 components: - type: Transform - pos: 3.5,33.5 + pos: 7.5,-127.5 parent: 1 - - uid: 6996 + - uid: 6521 components: - type: Transform - pos: 2.5,33.5 + pos: -40.5,-13.5 parent: 1 - - uid: 6997 + - uid: 6523 components: - type: Transform - pos: 1.5,33.5 + pos: 7.5,-124.5 parent: 1 - - uid: 6998 + - uid: 6525 components: - type: Transform - pos: 0.5,34.5 + pos: -40.5,4.5 parent: 1 - - uid: 6999 + - uid: 6527 components: - type: Transform - pos: -0.5,33.5 + pos: -40.5,-16.5 parent: 1 - - uid: 7000 + - uid: 6530 components: - type: Transform - pos: -1.5,32.5 + pos: -40.5,-15.5 parent: 1 - - uid: 7001 + - uid: 6533 components: - type: Transform - pos: -3.5,34.5 + pos: -40.5,-18.5 parent: 1 - - uid: 7002 + - uid: 6537 components: - type: Transform - pos: -2.5,33.5 + pos: -40.5,-17.5 parent: 1 - - uid: 7003 + - uid: 6541 components: - type: Transform - pos: -15.5,24.5 + pos: -40.5,-20.5 parent: 1 - - uid: 7004 + - uid: 6542 components: - type: Transform - pos: -13.5,26.5 + pos: 21.5,1.5 parent: 1 - - uid: 7005 + - uid: 6543 components: - type: Transform - pos: -11.5,29.5 + pos: 21.5,2.5 parent: 1 - - uid: 7006 + - uid: 6544 components: - type: Transform - pos: -12.5,28.5 + pos: 21.5,3.5 parent: 1 - - uid: 7007 + - uid: 6545 components: - type: Transform - pos: -14.5,26.5 + pos: 21.5,4.5 parent: 1 - - uid: 7008 + - uid: 6546 components: - type: Transform - pos: -7.5,33.5 + pos: 21.5,5.5 parent: 1 - - uid: 7009 + - uid: 6547 components: - type: Transform - pos: -15.5,25.5 + pos: 21.5,6.5 parent: 1 - - uid: 7010 + - uid: 6548 components: - type: Transform - pos: -6.5,32.5 + pos: 15.5,35.5 parent: 1 - - uid: 7011 + - uid: 6549 components: - type: Transform - pos: -7.5,15.5 + pos: 15.5,36.5 parent: 1 - - uid: 7012 + - uid: 6550 components: - type: Transform - pos: -10.5,31.5 + pos: 15.5,38.5 parent: 1 - - uid: 7013 + - uid: 6551 components: - type: Transform - pos: -7.5,14.5 + pos: 15.5,37.5 parent: 1 - - uid: 7014 + - uid: 6552 components: - type: Transform - pos: -8.5,14.5 + pos: 14.5,36.5 parent: 1 - - uid: 7015 + - uid: 6553 components: - type: Transform - pos: -9.5,15.5 + pos: 14.5,35.5 parent: 1 - - uid: 7016 + - uid: 6554 components: - type: Transform - pos: -8.5,16.5 + pos: 14.5,38.5 parent: 1 - - uid: 7017 + - uid: 6555 components: - type: Transform - pos: -9.5,14.5 + pos: 14.5,37.5 parent: 1 - - uid: 7018 + - uid: 6556 components: - type: Transform - pos: -9.5,16.5 + pos: 13.5,36.5 parent: 1 - - uid: 7019 + - uid: 6557 components: - type: Transform - pos: -10.5,17.5 + pos: 13.5,35.5 parent: 1 - - uid: 7020 + - uid: 6575 components: - type: Transform - pos: -10.5,15.5 + pos: 13.5,37.5 parent: 1 - - uid: 7021 + - uid: 6576 components: - type: Transform - pos: -10.5,16.5 + pos: 12.5,35.5 parent: 1 - - uid: 7022 + - uid: 6577 components: - type: Transform - pos: -11.5,14.5 + pos: 12.5,36.5 parent: 1 - - uid: 7023 + - uid: 6578 components: - type: Transform - pos: -11.5,18.5 + pos: 12.5,38.5 parent: 1 - - uid: 7024 + - uid: 6579 components: - type: Transform - pos: -11.5,16.5 + pos: 12.5,37.5 parent: 1 - - uid: 7025 + - uid: 6580 components: - type: Transform - pos: -11.5,17.5 + pos: 11.5,36.5 parent: 1 - - uid: 7026 + - uid: 6581 components: - type: Transform - pos: -12.5,14.5 + pos: 11.5,35.5 parent: 1 - - uid: 7027 + - uid: 6582 components: - type: Transform - pos: -12.5,16.5 + pos: 11.5,38.5 parent: 1 - - uid: 7028 + - uid: 6583 components: - type: Transform - pos: -12.5,18.5 + pos: 11.5,37.5 parent: 1 - - uid: 7029 + - uid: 6584 components: - type: Transform - pos: -13.5,15.5 + pos: 10.5,36.5 parent: 1 - - uid: 7030 + - uid: 6585 components: - type: Transform - pos: -13.5,17.5 + pos: 10.5,35.5 parent: 1 - - uid: 7031 + - uid: 6586 components: - type: Transform - pos: -14.5,14.5 + pos: 10.5,37.5 parent: 1 - - uid: 7032 + - uid: 6587 components: - type: Transform - pos: -14.5,15.5 + pos: 9.5,35.5 parent: 1 - - uid: 7033 + - uid: 6588 components: - type: Transform - pos: -14.5,17.5 + pos: 9.5,36.5 parent: 1 - - uid: 7034 + - uid: 6589 components: - type: Transform - pos: -14.5,18.5 + pos: 9.5,38.5 parent: 1 - - uid: 7035 + - uid: 6590 components: - type: Transform - pos: -15.5,14.5 + pos: 9.5,37.5 parent: 1 - - uid: 7036 + - uid: 6591 components: - type: Transform - pos: -15.5,15.5 + pos: 8.5,36.5 parent: 1 - - uid: 7037 + - uid: 6592 components: - type: Transform - pos: -15.5,17.5 + pos: 8.5,35.5 parent: 1 - - uid: 7038 + - uid: 6593 components: - type: Transform - pos: -15.5,18.5 + pos: 8.5,38.5 parent: 1 - - uid: 7039 + - uid: 6594 components: - type: Transform - pos: -15.5,20.5 + pos: 8.5,37.5 parent: 1 - - uid: 7040 + - uid: 6595 components: - type: Transform - pos: -16.5,15.5 + pos: 7.5,36.5 parent: 1 - - uid: 7041 + - uid: 6596 components: - type: Transform - pos: -16.5,17.5 + pos: 7.5,35.5 parent: 1 - - uid: 7042 + - uid: 6597 components: - type: Transform - pos: -16.5,19.5 + pos: 7.5,38.5 parent: 1 - - uid: 7043 + - uid: 6598 components: - type: Transform - pos: -16.5,21.5 + pos: 7.5,37.5 parent: 1 - - uid: 7044 + - uid: 6599 components: - type: Transform - pos: -15.5,22.5 + pos: 6.5,36.5 parent: 1 - - uid: 7045 + - uid: 6600 components: - type: Transform - pos: -14.5,21.5 + pos: 6.5,35.5 parent: 1 - - uid: 7046 + - uid: 6601 components: - type: Transform - pos: -13.5,20.5 + pos: 6.5,38.5 parent: 1 - - uid: 7047 + - uid: 6602 components: - type: Transform - pos: -13.5,19.5 + pos: 6.5,37.5 parent: 1 - - uid: 7048 + - uid: 6603 components: - type: Transform - pos: 11.5,16.5 + pos: 3.5,37.5 parent: 1 - - uid: 7049 + - uid: 6604 components: - type: Transform - pos: 15.5,14.5 + pos: 5.5,35.5 parent: 1 - - uid: 7050 + - uid: 6605 components: - type: Transform - pos: 15.5,16.5 + pos: 2.5,35.5 parent: 1 - - uid: 7051 + - uid: 6606 components: - type: Transform - pos: 15.5,18.5 + pos: 3.5,38.5 parent: 1 - - uid: 7052 + - uid: 6607 components: - type: Transform - pos: 15.5,20.5 + pos: 2.5,37.5 parent: 1 - - uid: 7053 + - uid: 6608 components: - type: Transform - pos: 14.5,15.5 + pos: 2.5,36.5 parent: 1 - - uid: 7054 + - uid: 6609 components: - type: Transform - pos: 14.5,17.5 + pos: 1.5,35.5 parent: 1 - - uid: 7055 + - uid: 6610 components: - type: Transform - pos: 14.5,19.5 + pos: 2.5,38.5 parent: 1 - - uid: 7056 + - uid: 6611 components: - type: Transform - pos: 13.5,14.5 + pos: 1.5,37.5 parent: 1 - - uid: 7057 + - uid: 6612 components: - type: Transform - pos: 13.5,16.5 + pos: 1.5,36.5 parent: 1 - - uid: 7058 + - uid: 6613 components: - type: Transform - pos: 13.5,18.5 + pos: 5.5,37.5 parent: 1 - - uid: 7059 + - uid: 6614 components: - type: Transform - pos: 13.5,20.5 + pos: 5.5,36.5 parent: 1 - - uid: 7060 + - uid: 6615 components: - type: Transform - pos: 12.5,15.5 + pos: 4.5,35.5 parent: 1 - - uid: 7061 + - uid: 6616 components: - type: Transform - pos: 12.5,17.5 + pos: 5.5,38.5 parent: 1 - - uid: 7062 + - uid: 6617 components: - type: Transform - pos: 12.5,19.5 + pos: 4.5,37.5 parent: 1 - - uid: 7063 + - uid: 6618 components: - type: Transform - pos: 18.5,14.5 + pos: 4.5,36.5 parent: 1 - - uid: 7064 + - uid: 6619 components: - type: Transform - pos: 18.5,16.5 + pos: 3.5,35.5 parent: 1 - - uid: 7065 + - uid: 6620 components: - type: Transform - pos: 18.5,18.5 + pos: 4.5,38.5 parent: 1 - - uid: 7066 + - uid: 6621 components: - type: Transform - pos: 18.5,20.5 + pos: 1.5,38.5 parent: 1 - - uid: 7067 + - uid: 6622 components: - type: Transform - pos: 17.5,14.5 + pos: 3.5,36.5 parent: 1 - - uid: 7068 + - uid: 6623 components: - type: Transform - pos: 17.5,16.5 + pos: 0.5,36.5 parent: 1 - - uid: 7069 + - uid: 6624 components: - type: Transform - pos: 17.5,18.5 + pos: 0.5,35.5 parent: 1 - - uid: 7070 + - uid: 6625 components: - type: Transform - pos: 17.5,20.5 + pos: 0.5,38.5 parent: 1 - - uid: 7071 + - uid: 6626 components: - type: Transform - pos: 16.5,14.5 + pos: 0.5,37.5 parent: 1 - - uid: 7072 + - uid: 6627 components: - type: Transform - pos: 16.5,16.5 + pos: -0.5,36.5 parent: 1 - - uid: 7073 + - uid: 6628 components: - type: Transform - pos: 16.5,18.5 + pos: -0.5,35.5 parent: 1 - - uid: 7074 + - uid: 6629 components: - type: Transform - pos: 16.5,20.5 + pos: -0.5,38.5 parent: 1 - - uid: 7075 + - uid: 6630 components: - type: Transform - pos: 18.5,22.5 + pos: -0.5,37.5 parent: 1 - - uid: 7076 + - uid: 6631 components: - type: Transform - pos: 16.5,22.5 + pos: -1.5,36.5 parent: 1 - - uid: 7077 + - uid: 6632 components: - type: Transform - pos: 15.5,21.5 + pos: -1.5,35.5 parent: 1 - - uid: 7078 + - uid: 6633 components: - type: Transform - pos: 13.5,21.5 + pos: -1.5,38.5 parent: 1 - - uid: 7079 + - uid: 6634 components: - type: Transform - pos: 11.5,20.5 + pos: -1.5,37.5 parent: 1 - - uid: 7080 + - uid: 6635 components: - type: Transform - pos: 9.5,20.5 + pos: -2.5,36.5 parent: 1 - - uid: 7081 + - uid: 6636 components: - type: Transform - pos: 8.5,18.5 + pos: -2.5,35.5 parent: 1 - - uid: 7082 + - uid: 6637 components: - type: Transform - pos: 18.5,-9.5 + pos: -2.5,38.5 parent: 1 - - uid: 7083 + - uid: 6638 components: - type: Transform - pos: 18.5,-7.5 + pos: -3.5,35.5 parent: 1 - - uid: 7084 + - uid: 6639 components: - type: Transform - pos: 18.5,-5.5 + pos: -3.5,37.5 parent: 1 - - uid: 7085 + - uid: 6640 components: - type: Transform - pos: 5.5,15.5 + pos: -3.5,36.5 parent: 1 - - uid: 7086 + - uid: 6641 components: - type: Transform - pos: 17.5,-9.5 + pos: -4.5,36.5 parent: 1 - - uid: 7087 + - uid: 6642 components: - type: Transform - pos: 17.5,-7.5 + pos: -4.5,38.5 parent: 1 - - uid: 7088 + - uid: 6643 components: - type: Transform - pos: 17.5,-5.5 + pos: -5.5,36.5 parent: 1 - - uid: 7089 + - uid: 6644 components: - type: Transform - pos: 3.5,14.5 + pos: -5.5,38.5 parent: 1 - - uid: 7090 + - uid: 6645 components: - type: Transform - pos: 16.5,-9.5 + pos: -6.5,36.5 parent: 1 - - uid: 7091 + - uid: 6646 components: - type: Transform - pos: 16.5,-7.5 + pos: -6.5,38.5 parent: 1 - - uid: 7092 + - uid: 6647 components: - type: Transform - pos: 14.5,-6.5 + pos: -7.5,36.5 parent: 1 - - uid: 7093 + - uid: 6648 components: - type: Transform - pos: 14.5,-5.5 + pos: -7.5,37.5 parent: 1 - - uid: 7094 + - uid: 6649 components: - type: Transform - pos: 14.5,-4.5 + pos: -7.5,38.5 parent: 1 - - uid: 7095 + - uid: 6650 components: - type: Transform - pos: 13.5,-10.5 + pos: -8.5,36.5 parent: 1 - - uid: 7096 + - uid: 6651 components: - type: Transform - pos: 13.5,-9.5 + pos: -8.5,35.5 parent: 1 - - uid: 7097 + - uid: 6652 components: - type: Transform - pos: 13.5,-8.5 + pos: -8.5,38.5 parent: 1 - - uid: 7098 + - uid: 6653 components: - type: Transform - pos: 13.5,-7.5 + pos: -8.5,37.5 parent: 1 - - uid: 7099 + - uid: 6654 components: - type: Transform - pos: 13.5,-6.5 + pos: -9.5,36.5 parent: 1 - - uid: 7100 + - uid: 6655 components: - type: Transform - pos: 12.5,-10.5 + pos: -11.5,37.5 parent: 1 - - uid: 7101 + - uid: 6656 components: - type: Transform - pos: 13.5,-4.5 + pos: -9.5,37.5 parent: 1 - - uid: 7102 + - uid: 6657 components: - type: Transform - pos: 5.5,16.5 + pos: -9.5,38.5 parent: 1 - - uid: 7103 + - uid: 6658 components: - type: Transform - pos: 12.5,-7.5 + pos: -10.5,35.5 parent: 1 - - uid: 7104 + - uid: 6659 components: - type: Transform - pos: 12.5,-9.5 + pos: -10.5,36.5 parent: 1 - - uid: 7105 + - uid: 6660 components: - type: Transform - pos: 12.5,-8.5 + pos: -10.5,37.5 parent: 1 - - uid: 7106 + - uid: 6661 components: - type: Transform - pos: 12.5,-6.5 + pos: -10.5,38.5 parent: 1 - - uid: 7107 + - uid: 6662 components: - type: Transform - pos: 12.5,-5.5 + pos: -11.5,35.5 parent: 1 - - uid: 7108 + - uid: 6663 components: - type: Transform - pos: 12.5,-4.5 + pos: -11.5,36.5 parent: 1 - - uid: 7109 + - uid: 6664 components: - type: Transform - pos: 6.5,17.5 + pos: -12.5,38.5 parent: 1 - - uid: 7110 + - uid: 6665 components: - type: Transform - pos: 11.5,-6.5 + pos: -11.5,38.5 parent: 1 - - uid: 7111 + - uid: 6666 components: - type: Transform - pos: 11.5,-8.5 + pos: -12.5,35.5 parent: 1 - - uid: 7112 + - uid: 6667 components: - type: Transform - pos: 11.5,-9.5 + pos: -12.5,36.5 parent: 1 - - uid: 7113 + - uid: 6668 components: - type: Transform - pos: 11.5,-7.5 + pos: -12.5,37.5 parent: 1 - - uid: 7114 + - uid: 6669 components: - type: Transform - pos: 10.5,-10.5 + pos: -14.5,35.5 parent: 1 - - uid: 7115 + - uid: 6670 components: - type: Transform - pos: 11.5,-4.5 + pos: -13.5,35.5 parent: 1 - - uid: 7116 + - uid: 6671 components: - type: Transform - pos: 11.5,-5.5 + pos: -13.5,36.5 parent: 1 - - uid: 7117 + - uid: 6672 components: - type: Transform - pos: 2.5,14.5 + pos: -13.5,37.5 parent: 1 - - uid: 7118 + - uid: 6673 components: - type: Transform - pos: 10.5,-9.5 + pos: -13.5,38.5 parent: 1 - - uid: 7119 + - uid: 6674 components: - type: Transform - pos: 10.5,-8.5 + pos: -14.5,37.5 parent: 1 - - uid: 7120 + - uid: 6675 components: - type: Transform - pos: 10.5,-6.5 + pos: -14.5,36.5 parent: 1 - - uid: 7121 + - uid: 6676 components: - type: Transform - pos: 10.5,-7.5 + pos: -15.5,35.5 parent: 1 - - uid: 7122 + - uid: 6677 components: - type: Transform - pos: 10.5,-4.5 + pos: -14.5,38.5 parent: 1 - - uid: 7123 + - uid: 6678 components: - type: Transform - pos: 10.5,-5.5 + pos: -15.5,37.5 parent: 1 - - uid: 7124 + - uid: 6679 components: - type: Transform - pos: 18.5,12.5 + pos: -15.5,36.5 parent: 1 - - uid: 7125 + - uid: 6680 components: - type: Transform - pos: 18.5,13.5 + pos: -16.5,35.5 parent: 1 - - uid: 7126 + - uid: 6681 components: - type: Transform - pos: 18.5,10.5 + pos: -15.5,38.5 parent: 1 - - uid: 7127 + - uid: 6682 components: - type: Transform - pos: 18.5,9.5 + pos: -16.5,37.5 parent: 1 - - uid: 7128 + - uid: 6683 components: - type: Transform - pos: 18.5,8.5 + pos: -16.5,36.5 parent: 1 - - uid: 7129 + - uid: 6684 components: - type: Transform - pos: 18.5,7.5 + pos: -20.5,38.5 parent: 1 - - uid: 7130 + - uid: 6685 components: - type: Transform - pos: 18.5,6.5 + pos: -16.5,38.5 parent: 1 - - uid: 7131 + - uid: 6686 components: - type: Transform - pos: 18.5,5.5 + pos: -20.5,36.5 parent: 1 - - uid: 7132 + - uid: 6687 components: - type: Transform - pos: 18.5,4.5 + pos: -20.5,37.5 parent: 1 - - uid: 7133 + - uid: 6688 components: - type: Transform - pos: 18.5,3.5 + pos: -20.5,34.5 parent: 1 - - uid: 7134 + - uid: 6689 components: - type: Transform - pos: 17.5,13.5 + pos: -20.5,35.5 parent: 1 - - uid: 7135 + - uid: 6690 components: - type: Transform - pos: 17.5,10.5 + pos: -20.5,32.5 parent: 1 - - uid: 7136 + - uid: 6691 components: - type: Transform - pos: 17.5,11.5 + pos: -20.5,33.5 parent: 1 - - uid: 7137 + - uid: 6692 components: - type: Transform - pos: 17.5,8.5 + pos: -20.5,30.5 parent: 1 - - uid: 7138 + - uid: 6693 components: - type: Transform - pos: 17.5,9.5 + pos: -20.5,31.5 parent: 1 - - uid: 7139 + - uid: 6694 components: - type: Transform - pos: 17.5,6.5 + pos: -20.5,28.5 parent: 1 - - uid: 7140 + - uid: 6695 components: - type: Transform - pos: 17.5,7.5 + pos: -20.5,29.5 parent: 1 - - uid: 7141 + - uid: 6696 components: - type: Transform - pos: 17.5,4.5 + pos: -20.5,26.5 parent: 1 - - uid: 7142 + - uid: 6697 components: - type: Transform - pos: 17.5,5.5 + pos: -20.5,27.5 parent: 1 - - uid: 7143 + - uid: 6698 components: - type: Transform - pos: 16.5,13.5 + pos: -20.5,24.5 parent: 1 - - uid: 7144 + - uid: 6699 components: - type: Transform - pos: 17.5,3.5 + pos: -20.5,25.5 parent: 1 - - uid: 7145 + - uid: 6700 components: - type: Transform - pos: 16.5,11.5 + pos: -20.5,22.5 parent: 1 - - uid: 7146 + - uid: 6701 components: - type: Transform - pos: 16.5,12.5 + pos: -20.5,23.5 parent: 1 - - uid: 7147 + - uid: 6702 components: - type: Transform - pos: 16.5,8.5 + pos: -20.5,17.5 parent: 1 - - uid: 7148 + - uid: 6703 components: - type: Transform - pos: 16.5,9.5 + pos: -20.5,19.5 parent: 1 - - uid: 7149 + - uid: 6704 components: - type: Transform - pos: 16.5,6.5 + pos: -20.5,20.5 parent: 1 - - uid: 7150 + - uid: 6705 components: - type: Transform - pos: 16.5,7.5 + pos: -20.5,18.5 parent: 1 - - uid: 7151 + - uid: 6706 components: - type: Transform - pos: 16.5,4.5 + pos: -20.5,16.5 parent: 1 - - uid: 7152 + - uid: 6708 components: - type: Transform - pos: 16.5,5.5 + pos: -20.5,15.5 parent: 1 - - uid: 7153 + - uid: 6709 components: - type: Transform - pos: 15.5,12.5 + pos: -20.5,14.5 parent: 1 - - uid: 7154 + - uid: 6711 components: - type: Transform - pos: 15.5,13.5 + pos: -20.5,11.5 parent: 1 - - uid: 7155 + - uid: 6712 components: - type: Transform - pos: 15.5,10.5 + pos: -20.5,12.5 parent: 1 - - uid: 7156 + - uid: 6713 components: - type: Transform - pos: 15.5,11.5 + pos: -20.5,13.5 parent: 1 - - uid: 7157 + - uid: 6714 components: - type: Transform - pos: 15.5,8.5 + pos: -10.5,-10.5 parent: 1 - - uid: 7158 + - uid: 6717 components: - type: Transform - pos: 15.5,9.5 + pos: -18.5,29.5 parent: 1 - - uid: 7159 + - uid: 6718 components: - type: Transform - pos: 15.5,6.5 + pos: -18.5,31.5 parent: 1 - - uid: 7160 + - uid: 6719 components: - type: Transform - pos: 15.5,5.5 + pos: -18.5,32.5 parent: 1 - - uid: 7161 + - uid: 6720 components: - type: Transform - pos: 15.5,4.5 + pos: -18.5,30.5 parent: 1 - - uid: 7162 + - uid: 6721 components: - type: Transform - pos: 15.5,3.5 + pos: -18.5,28.5 parent: 1 - - uid: 7163 + - uid: 6722 components: - type: Transform - pos: 14.5,10.5 + pos: -18.5,19.5 parent: 1 - - uid: 7164 + - uid: 6723 components: - type: Transform - pos: 14.5,11.5 + pos: -18.5,27.5 parent: 1 - - uid: 7165 + - uid: 6724 components: - type: Transform - pos: 14.5,12.5 + pos: -18.5,26.5 parent: 1 - - uid: 7166 + - uid: 6725 components: - type: Transform - pos: 14.5,7.5 + pos: -18.5,22.5 parent: 1 - - uid: 7167 + - uid: 6726 components: - type: Transform - pos: 14.5,8.5 + pos: -18.5,23.5 parent: 1 - - uid: 7168 + - uid: 6727 components: - type: Transform - pos: 14.5,9.5 + pos: -18.5,24.5 parent: 1 - - uid: 7169 + - uid: 6728 components: - type: Transform - pos: 14.5,4.5 + pos: -18.5,25.5 parent: 1 - - uid: 7170 + - uid: 6729 components: - type: Transform - pos: 14.5,5.5 + pos: -18.5,20.5 parent: 1 - - uid: 7171 + - uid: 6730 components: - type: Transform - pos: 14.5,6.5 + pos: -18.5,21.5 parent: 1 - - uid: 7172 + - uid: 6732 components: - type: Transform - pos: 13.5,12.5 + pos: -18.5,17.5 parent: 1 - - uid: 7173 + - uid: 6733 components: - type: Transform - pos: 13.5,13.5 + pos: -18.5,18.5 parent: 1 - - uid: 7174 + - uid: 6734 components: - type: Transform - pos: 14.5,3.5 + pos: -18.5,15.5 parent: 1 - - uid: 7175 + - uid: 6735 components: - type: Transform - pos: 13.5,11.5 + pos: -18.5,16.5 parent: 1 - - uid: 7176 + - uid: 6736 components: - type: Transform - pos: 13.5,7.5 + pos: -18.5,13.5 parent: 1 - - uid: 7177 + - uid: 6737 components: - type: Transform - pos: 13.5,9.5 + pos: -18.5,14.5 parent: 1 - - uid: 7178 + - uid: 6739 components: - type: Transform - pos: 13.5,8.5 + pos: -18.5,11.5 parent: 1 - - uid: 7179 + - uid: 6740 components: - type: Transform - pos: 13.5,5.5 + pos: -18.5,12.5 parent: 1 - - uid: 7180 + - uid: 6741 components: - type: Transform - pos: 13.5,6.5 + rot: 3.141592653589793 rad + pos: 5.5,-126.5 parent: 1 - - uid: 7181 + - uid: 6754 components: - type: Transform - pos: 12.5,5.5 + pos: -19.5,37.5 parent: 1 - - uid: 7182 + - uid: 6755 components: - type: Transform - pos: 12.5,6.5 + pos: 9.5,-127.5 parent: 1 - - uid: 7183 + - uid: 6757 components: - type: Transform - pos: 12.5,3.5 + pos: -19.5,38.5 parent: 1 - - uid: 7184 + - uid: 6758 components: - type: Transform - pos: 12.5,4.5 + pos: -19.5,36.5 parent: 1 - - uid: 7185 + - uid: 6759 components: - type: Transform - pos: 11.5,12.5 + pos: -19.5,27.5 parent: 1 - - uid: 7186 + - uid: 6760 components: - type: Transform - pos: 11.5,13.5 + pos: -19.5,35.5 parent: 1 - - uid: 7187 + - uid: 6761 components: - type: Transform - pos: 11.5,10.5 + pos: -19.5,34.5 parent: 1 - - uid: 7188 + - uid: 6762 components: - type: Transform - pos: 11.5,11.5 + pos: -19.5,30.5 parent: 1 - - uid: 7189 + - uid: 6763 components: - type: Transform - pos: 13.5,4.5 + pos: -19.5,31.5 parent: 1 - - uid: 7190 + - uid: 6764 components: - type: Transform - pos: 11.5,9.5 + pos: -19.5,32.5 parent: 1 - - uid: 7191 + - uid: 6765 components: - type: Transform - pos: 12.5,13.5 + pos: -19.5,33.5 parent: 1 - - uid: 7192 + - uid: 6766 components: - type: Transform - pos: 13.5,3.5 + pos: -19.5,28.5 parent: 1 - - uid: 7193 + - uid: 6767 components: - type: Transform - pos: 12.5,11.5 + pos: -19.5,29.5 parent: 1 - - uid: 7194 + - uid: 6768 components: - type: Transform - pos: 12.5,12.5 + pos: -19.5,26.5 parent: 1 - - uid: 7195 + - uid: 6769 components: - type: Transform - pos: 12.5,9.5 + pos: -19.5,12.5 parent: 1 - - uid: 7196 + - uid: 6770 components: - type: Transform - pos: 12.5,10.5 + pos: -19.5,14.5 parent: 1 - - uid: 7197 + - uid: 6771 components: - type: Transform - pos: 12.5,7.5 + pos: -19.5,15.5 parent: 1 - - uid: 7198 + - uid: 6772 components: - type: Transform - pos: 12.5,8.5 + pos: -19.5,13.5 parent: 1 - - uid: 7199 + - uid: 6773 components: - type: Transform - pos: 11.5,7.5 + pos: -19.5,11.5 parent: 1 - - uid: 7200 + - uid: 6781 components: - type: Transform - pos: 11.5,8.5 + pos: -19.5,16.5 parent: 1 - - uid: 7201 + - uid: 6782 components: - type: Transform - pos: 11.5,4.5 + pos: -24.5,-18.5 parent: 1 - - uid: 7202 + - uid: 6785 components: - type: Transform - pos: 11.5,6.5 + pos: -16.5,27.5 parent: 1 - - uid: 7203 + - uid: 6786 components: - type: Transform - pos: 11.5,5.5 + pos: -15.5,27.5 parent: 1 - - uid: 7204 + - uid: 6787 components: - type: Transform - pos: 10.5,13.5 + pos: -15.5,26.5 parent: 1 - - uid: 7205 + - uid: 6788 components: - type: Transform - pos: 11.5,3.5 + pos: -16.5,26.5 parent: 1 - - uid: 7206 + - uid: 6789 components: - type: Transform - pos: 10.5,11.5 + pos: -6.5,34.5 parent: 1 - - uid: 7207 + - uid: 6790 components: - type: Transform - pos: 10.5,12.5 + pos: -11.5,31.5 parent: 1 - - uid: 7208 + - uid: 6791 components: - type: Transform - pos: 10.5,9.5 + pos: -8.5,33.5 parent: 1 - - uid: 7209 + - uid: 6798 components: - type: Transform - pos: 10.5,10.5 + pos: -18.5,36.5 parent: 1 - - uid: 7210 + - uid: 6799 components: - type: Transform - pos: 10.5,7.5 + pos: -18.5,38.5 parent: 1 - - uid: 7211 + - uid: 6800 components: - type: Transform - pos: 10.5,8.5 + pos: 11.5,-127.5 parent: 1 - - uid: 7212 + - uid: 6801 components: - type: Transform - pos: 10.5,5.5 + pos: -18.5,37.5 parent: 1 - - uid: 7213 + - uid: 6802 components: - type: Transform - pos: 10.5,6.5 + pos: -18.5,35.5 parent: 1 - - uid: 7214 + - uid: 6803 components: - type: Transform - pos: 10.5,3.5 + pos: -18.5,34.5 parent: 1 - - uid: 7215 + - uid: 6809 components: - type: Transform - pos: 10.5,4.5 + pos: -16.5,24.5 parent: 1 - - uid: 7216 + - uid: 6812 components: - type: Transform - pos: -10.5,-10.5 + pos: -16.5,23.5 parent: 1 - - uid: 7217 + - uid: 6813 components: - type: Transform - pos: -10.5,-9.5 + pos: 13.5,-127.5 parent: 1 - - uid: 7218 + - uid: 6821 components: - type: Transform - pos: -10.5,-8.5 + pos: -16.5,25.5 parent: 1 - - uid: 7219 + - uid: 6822 components: - type: Transform - pos: -10.5,-7.5 + pos: -19.5,21.5 parent: 1 - - uid: 7220 + - uid: 6823 components: - type: Transform - pos: -10.5,-6.5 + pos: -19.5,23.5 parent: 1 - - uid: 7221 + - uid: 6824 components: - type: Transform - pos: -11.5,-10.5 + pos: -19.5,24.5 parent: 1 - - uid: 7222 + - uid: 6825 components: - type: Transform - pos: -11.5,-9.5 + pos: -19.5,22.5 parent: 1 - - uid: 7223 + - uid: 6826 components: - type: Transform - pos: -11.5,-8.5 + pos: -19.5,20.5 parent: 1 - - uid: 7224 + - uid: 6827 components: - type: Transform - pos: -11.5,-7.5 + pos: -19.5,19.5 parent: 1 - - uid: 7225 + - uid: 6828 components: - type: Transform - pos: -11.5,-6.5 + pos: -19.5,18.5 parent: 1 - - uid: 7226 + - uid: 6829 components: - type: Transform - pos: -12.5,-10.5 + pos: -17.5,20.5 parent: 1 - - uid: 7227 + - uid: 6830 components: - type: Transform - pos: -12.5,-9.5 + pos: -17.5,14.5 parent: 1 - - uid: 7228 + - uid: 6831 components: - type: Transform - pos: -12.5,-8.5 + pos: -17.5,19.5 parent: 1 - - uid: 7229 + - uid: 6832 components: - type: Transform - pos: -12.5,-7.5 + pos: -17.5,18.5 parent: 1 - - uid: 7230 + - uid: 6833 components: - type: Transform - pos: -13.5,-10.5 + pos: -17.5,17.5 parent: 1 - - uid: 7231 + - uid: 6834 components: - type: Transform - pos: -13.5,-9.5 + pos: -17.5,15.5 parent: 1 - - uid: 7232 + - uid: 6835 components: - type: Transform - pos: -13.5,-8.5 + pos: -17.5,16.5 parent: 1 - - uid: 7233 + - uid: 6836 components: - type: Transform - pos: -13.5,-7.5 + pos: -17.5,13.5 parent: 1 - - uid: 7234 + - uid: 6837 components: - type: Transform - pos: -13.5,-6.5 + pos: -17.5,12.5 parent: 1 - - uid: 7235 + - uid: 6839 components: - type: Transform - pos: -13.5,-5.5 + pos: -17.5,38.5 parent: 1 - - uid: 7236 + - uid: 6845 components: - type: Transform - pos: -14.5,-10.5 + pos: -17.5,37.5 parent: 1 - - uid: 7237 + - uid: 6846 components: - type: Transform - pos: -14.5,-4.5 + pos: -17.5,36.5 parent: 1 - - uid: 7238 + - uid: 6847 components: - type: Transform - pos: -14.5,-8.5 + pos: -17.5,34.5 parent: 1 - - uid: 7239 + - uid: 6848 components: - type: Transform - pos: -14.5,-7.5 + pos: -17.5,35.5 parent: 1 - - uid: 7240 + - uid: 6849 components: - type: Transform - pos: -14.5,-6.5 + pos: -17.5,32.5 parent: 1 - - uid: 7241 + - uid: 6850 components: - type: Transform - pos: -14.5,-5.5 + pos: -17.5,26.5 parent: 1 - - uid: 7242 + - uid: 6851 components: - type: Transform - pos: -16.5,-7.5 + pos: -17.5,31.5 parent: 1 - - uid: 7243 + - uid: 6852 components: - type: Transform - pos: -16.5,-5.5 + pos: -17.5,30.5 parent: 1 - - uid: 7244 + - uid: 6853 components: - type: Transform - pos: -16.5,-6.5 + pos: -17.5,29.5 parent: 1 - - uid: 7245 + - uid: 6854 components: - type: Transform - pos: -16.5,-3.5 + pos: -17.5,27.5 parent: 1 - - uid: 7246 + - uid: 6855 components: - type: Transform - pos: -16.5,-4.5 + pos: -17.5,28.5 parent: 1 - - uid: 7247 + - uid: 6856 components: - type: Transform - pos: -16.5,-1.5 + pos: -17.5,25.5 parent: 1 - - uid: 7248 + - uid: 6857 components: - type: Transform - pos: -16.5,-10.5 + pos: -17.5,24.5 parent: 1 - - uid: 7249 + - uid: 6858 components: - type: Transform - pos: -16.5,-9.5 + pos: -17.5,22.5 parent: 1 - - uid: 7250 + - uid: 6859 components: - type: Transform - pos: -15.5,3.5 + pos: -17.5,23.5 parent: 1 - - uid: 7251 + - uid: 6881 components: - type: Transform - pos: -10.5,5.5 + pos: -12.5,32.5 parent: 1 - - uid: 7252 + - uid: 6882 components: - type: Transform - pos: -10.5,6.5 + pos: -10.5,32.5 parent: 1 - - uid: 7253 + - uid: 6883 components: - type: Transform - pos: -10.5,8.5 + pos: -9.5,33.5 parent: 1 - - uid: 7254 + - uid: 6884 components: - type: Transform - pos: -10.5,9.5 + pos: -11.5,32.5 parent: 1 - - uid: 7255 + - uid: 6885 components: - type: Transform - pos: -10.5,10.5 + pos: -10.5,33.5 parent: 1 - - uid: 7256 + - uid: 6886 components: - type: Transform - pos: -10.5,11.5 + pos: -12.5,33.5 parent: 1 - - uid: 7257 + - uid: 6887 components: - type: Transform - pos: -10.5,12.5 + pos: -11.5,33.5 parent: 1 - - uid: 7258 + - uid: 6888 components: - type: Transform - pos: -10.5,13.5 + pos: -12.5,31.5 parent: 1 - - uid: 7259 + - uid: 6889 components: - type: Transform - pos: -11.5,6.5 + pos: -13.5,31.5 parent: 1 - - uid: 7260 + - uid: 6890 components: - type: Transform - pos: -11.5,7.5 + pos: -13.5,29.5 parent: 1 - - uid: 7261 + - uid: 6891 components: - type: Transform - pos: -11.5,8.5 + pos: -13.5,28.5 parent: 1 - - uid: 7262 + - uid: 6892 components: - type: Transform - pos: -11.5,9.5 + pos: -13.5,30.5 parent: 1 - - uid: 7263 + - uid: 6893 components: - type: Transform - pos: -11.5,10.5 + pos: -14.5,29.5 parent: 1 - - uid: 7264 + - uid: 6894 components: - type: Transform - pos: -11.5,11.5 + pos: -13.5,33.5 parent: 1 - - uid: 7265 + - uid: 6895 components: - type: Transform - pos: -11.5,13.5 + pos: -13.5,32.5 parent: 1 - - uid: 7266 + - uid: 6896 components: - type: Transform - pos: -12.5,5.5 + pos: -14.5,28.5 parent: 1 - - uid: 7267 + - uid: 6897 components: - type: Transform - pos: -12.5,6.5 + pos: -14.5,30.5 parent: 1 - - uid: 7268 + - uid: 6898 components: - type: Transform - pos: -12.5,7.5 + pos: -14.5,31.5 parent: 1 - - uid: 7269 + - uid: 6899 components: - type: Transform - pos: -12.5,8.5 + pos: -14.5,34.5 parent: 1 - - uid: 7270 + - uid: 6900 components: - type: Transform - pos: -12.5,9.5 + pos: -16.5,34.5 parent: 1 - - uid: 7271 + - uid: 6901 components: - type: Transform - pos: -12.5,13.5 + pos: -16.5,33.5 parent: 1 - - uid: 7272 + - uid: 6902 components: - type: Transform - pos: -12.5,12.5 + pos: -15.5,34.5 parent: 1 - - uid: 7273 + - uid: 6903 components: - type: Transform - pos: -12.5,11.5 + pos: -10.5,34.5 parent: 1 - - uid: 7274 + - uid: 6904 components: - type: Transform - pos: -14.5,10.5 + pos: -12.5,34.5 parent: 1 - - uid: 7275 + - uid: 6905 components: - type: Transform - pos: -14.5,11.5 + pos: -13.5,34.5 parent: 1 - - uid: 7276 + - uid: 6906 components: - type: Transform - pos: -14.5,12.5 + pos: -11.5,34.5 parent: 1 - - uid: 7277 + - uid: 6907 components: - type: Transform - pos: -14.5,6.5 + pos: -9.5,34.5 parent: 1 - - uid: 7278 + - uid: 6908 components: - type: Transform - pos: -14.5,7.5 + pos: -8.5,34.5 parent: 1 - - uid: 7279 + - uid: 6909 components: - type: Transform - pos: -14.5,8.5 + pos: -15.5,31.5 parent: 1 - - uid: 7280 + - uid: 6910 components: - type: Transform - pos: -13.5,12.5 + pos: -15.5,29.5 parent: 1 - - uid: 7281 + - uid: 6911 components: - type: Transform - pos: -13.5,13.5 + pos: -15.5,28.5 parent: 1 - - uid: 7282 + - uid: 6912 components: - type: Transform - pos: -14.5,4.5 + pos: -15.5,30.5 parent: 1 - - uid: 7283 + - uid: 6913 components: - type: Transform - pos: -13.5,8.5 + pos: -16.5,29.5 parent: 1 - - uid: 7284 + - uid: 6914 components: - type: Transform - pos: -13.5,9.5 + pos: -15.5,33.5 parent: 1 - - uid: 7285 + - uid: 6915 components: - type: Transform - pos: -13.5,10.5 + pos: -15.5,32.5 parent: 1 - - uid: 7286 + - uid: 6916 components: - type: Transform - pos: -15.5,12.5 + pos: -16.5,28.5 parent: 1 - - uid: 7287 + - uid: 6917 components: - type: Transform - pos: -15.5,11.5 + pos: -16.5,30.5 parent: 1 - - uid: 7288 + - uid: 6918 components: - type: Transform - pos: -15.5,10.5 + pos: -16.5,31.5 parent: 1 - - uid: 7289 + - uid: 6919 components: - type: Transform - pos: -15.5,9.5 + pos: 2.5,34.5 parent: 1 - - uid: 7290 + - uid: 6920 components: - type: Transform - pos: -15.5,8.5 + pos: -2.5,34.5 parent: 1 - - uid: 7291 + - uid: 6921 components: - type: Transform - pos: -15.5,7.5 + pos: -1.5,34.5 parent: 1 - - uid: 7292 + - uid: 6922 components: - type: Transform - pos: -15.5,6.5 + pos: 1.5,34.5 parent: 1 - - uid: 7293 + - uid: 6923 components: - type: Transform - pos: -4.5,5.5 + pos: -0.5,34.5 parent: 1 - - uid: 7294 + - uid: 6924 components: - type: Transform - pos: -4.5,3.5 + pos: 4.5,34.5 parent: 1 - - uid: 7295 + - uid: 6925 components: - type: Transform - pos: -3.5,13.5 + pos: 3.5,34.5 parent: 1 - - uid: 7296 + - uid: 6926 components: - type: Transform - pos: -3.5,11.5 + pos: 5.5,34.5 parent: 1 - - uid: 7297 + - uid: 6927 components: - type: Transform - pos: -3.5,9.5 + pos: 7.5,34.5 parent: 1 - - uid: 7298 + - uid: 6928 components: - type: Transform - pos: -3.5,7.5 + pos: 12.5,29.5 parent: 1 - - uid: 7299 + - uid: 6929 components: - type: Transform - pos: -3.5,5.5 + pos: 12.5,30.5 parent: 1 - - uid: 7300 + - uid: 6930 components: - type: Transform - pos: -3.5,3.5 + pos: 10.5,34.5 parent: 1 - - uid: 7301 + - uid: 6931 components: - type: Transform - pos: 9.5,13.5 + pos: 10.5,33.5 parent: 1 - - uid: 7302 + - uid: 6932 components: - type: Transform - pos: 9.5,11.5 + pos: 9.5,34.5 parent: 1 - - uid: 7303 + - uid: 6933 components: - type: Transform - pos: 8.5,4.5 + pos: 9.5,33.5 parent: 1 - - uid: 7304 + - uid: 6934 components: - type: Transform - pos: 8.5,2.5 + pos: 8.5,33.5 parent: 1 - - uid: 7305 + - uid: 6935 components: - type: Transform - pos: 7.5,11.5 + pos: 12.5,34.5 parent: 1 - - uid: 7306 + - uid: 6936 components: - type: Transform - pos: 7.5,12.5 + pos: 12.5,33.5 parent: 1 - - uid: 7307 + - uid: 6937 components: - type: Transform - pos: 7.5,8.5 + pos: 8.5,34.5 parent: 1 - - uid: 7308 + - uid: 6938 components: - type: Transform - pos: 7.5,9.5 + pos: 13.5,34.5 parent: 1 - - uid: 7309 + - uid: 6939 components: - type: Transform - pos: 7.5,5.5 + pos: 13.5,33.5 parent: 1 - - uid: 7310 + - uid: 6940 components: - type: Transform - pos: 7.5,6.5 + pos: 18.5,30.5 parent: 1 - - uid: 7311 + - uid: 6941 components: - type: Transform - pos: 7.5,2.5 + pos: 18.5,29.5 parent: 1 - - uid: 7312 + - uid: 6942 components: - type: Transform - pos: 7.5,3.5 + pos: 18.5,31.5 parent: 1 - - uid: 7313 + - uid: 6943 components: - type: Transform - pos: 6.5,11.5 + pos: 18.5,32.5 parent: 1 - - uid: 7314 + - uid: 6944 components: - type: Transform - pos: 6.5,12.5 + pos: 18.5,28.5 parent: 1 - - uid: 7315 + - uid: 6945 components: - type: Transform - pos: 6.5,8.5 + pos: 18.5,27.5 parent: 1 - - uid: 7316 + - uid: 6946 components: - type: Transform - pos: 6.5,9.5 + pos: 13.5,29.5 parent: 1 - - uid: 7317 + - uid: 6947 components: - type: Transform - pos: 5.5,8.5 + pos: 13.5,28.5 parent: 1 - - uid: 7318 + - uid: 6948 components: - type: Transform - pos: 5.5,9.5 + pos: 13.5,30.5 parent: 1 - - uid: 7319 + - uid: 6949 components: - type: Transform - pos: 5.5,5.5 + pos: 13.5,31.5 parent: 1 - - uid: 7320 + - uid: 6950 components: - type: Transform - pos: 5.5,6.5 + pos: 13.5,27.5 parent: 1 - - uid: 7321 + - uid: 6951 components: - type: Transform - pos: 5.5,2.5 + pos: 15.5,26.5 parent: 1 - - uid: 7322 + - uid: 6952 components: - type: Transform - pos: 5.5,3.5 + pos: 15.5,30.5 parent: 1 - - uid: 7323 + - uid: 6953 components: - type: Transform - pos: 6.5,5.5 + pos: 15.5,31.5 parent: 1 - - uid: 7324 + - uid: 6954 components: - type: Transform - pos: 6.5,6.5 + pos: 15.5,29.5 parent: 1 - - uid: 7325 + - uid: 6955 components: - type: Transform - pos: 6.5,2.5 + pos: 15.5,28.5 parent: 1 - - uid: 7326 + - uid: 6956 components: - type: Transform - pos: 6.5,3.5 + pos: 15.5,32.5 parent: 1 - - uid: 7327 + - uid: 6957 components: - type: Transform - pos: 5.5,11.5 + pos: 15.5,33.5 parent: 1 - - uid: 7328 + - uid: 6958 components: - type: Transform - pos: 5.5,12.5 + pos: 18.5,25.5 parent: 1 - - uid: 7329 + - uid: 6959 components: - type: Transform - pos: 4.5,11.5 + pos: 14.5,29.5 parent: 1 - - uid: 7330 + - uid: 6960 components: - type: Transform - pos: 4.5,12.5 + pos: 14.5,30.5 parent: 1 - - uid: 7331 + - uid: 6961 components: - type: Transform - pos: 3.5,9.5 + pos: 14.5,31.5 parent: 1 - - uid: 7332 + - uid: 6962 components: - type: Transform - pos: 3.5,7.5 + pos: 14.5,32.5 parent: 1 - - uid: 7333 + - uid: 6963 components: - type: Transform - pos: 3.5,5.5 + pos: 14.5,34.5 parent: 1 - - uid: 7334 + - uid: 6964 components: - type: Transform - pos: 3.5,3.5 + pos: 14.5,33.5 parent: 1 - - uid: 7335 + - uid: 6965 components: - type: Transform - pos: 2.5,13.5 + pos: 18.5,34.5 parent: 1 - - uid: 7336 + - uid: 6966 components: - type: Transform - pos: 2.5,11.5 + pos: 17.5,33.5 parent: 1 - - uid: 7337 + - uid: 6967 components: - type: Transform - pos: 2.5,9.5 + pos: 17.5,32.5 parent: 1 - - uid: 7338 + - uid: 6968 components: - type: Transform - pos: 2.5,7.5 + pos: 17.5,31.5 parent: 1 - - uid: 7339 + - uid: 6969 components: - type: Transform - pos: 2.5,5.5 + pos: 17.5,30.5 parent: 1 - - uid: 7340 + - uid: 6970 components: - type: Transform - pos: 2.5,3.5 + pos: 17.5,28.5 parent: 1 - - uid: 7341 + - uid: 6971 components: - type: Transform - pos: -9.5,-3.5 + pos: 17.5,29.5 parent: 1 - - uid: 7342 + - uid: 6972 components: - type: Transform - pos: -11.5,-5.5 + pos: 17.5,27.5 parent: 1 - - uid: 7343 + - uid: 6973 components: - type: Transform - pos: -13.5,-4.5 + pos: 17.5,25.5 parent: 1 - - uid: 7344 + - uid: 6974 components: - type: Transform - pos: -14.5,-2.5 + pos: 17.5,24.5 parent: 1 - - uid: 7345 + - uid: 6975 components: - type: Transform - pos: -15.5,-0.5 + pos: 17.5,23.5 parent: 1 - - uid: 7346 + - uid: 6976 components: - type: Transform - pos: -16.5,0.5 + pos: 16.5,34.5 parent: 1 - - uid: 7347 + - uid: 6977 components: - type: Transform - pos: -15.5,2.5 + pos: 16.5,32.5 parent: 1 - - uid: 7348 + - uid: 6978 components: - type: Transform - pos: -13.5,3.5 + pos: 16.5,33.5 parent: 1 - - uid: 7349 + - uid: 6979 components: - type: Transform - pos: -12.5,4.5 + pos: 16.5,31.5 parent: 1 - - uid: 7350 + - uid: 6980 components: - type: Transform - pos: -9.5,3.5 + pos: 16.5,24.5 parent: 1 - - uid: 7351 + - uid: 6981 components: - type: Transform - pos: -23.5,-28.5 + pos: 14.5,25.5 parent: 1 - - uid: 7352 + - uid: 6982 components: - type: Transform - pos: -18.5,-122.5 + pos: 15.5,23.5 parent: 1 - - uid: 7353 + - uid: 6983 components: - type: Transform - pos: 5.5,-128.5 + pos: 14.5,23.5 parent: 1 - - uid: 7354 + - uid: 6984 components: - type: Transform - pos: 6.5,-128.5 + pos: 15.5,25.5 parent: 1 - - uid: 7355 + - uid: 6985 components: - type: Transform - pos: 2.5,-123.5 + pos: 13.5,26.5 parent: 1 - - uid: 7356 + - uid: 6986 components: - type: Transform - pos: 3.5,-128.5 + pos: 12.5,28.5 parent: 1 - - uid: 7357 + - uid: 6987 components: - type: Transform - pos: 4.5,-128.5 + pos: 10.5,30.5 parent: 1 - - uid: 7358 + - uid: 6988 components: - type: Transform - pos: 4.5,-127.5 + pos: 9.5,31.5 parent: 1 - - uid: 7359 + - uid: 6989 components: - type: Transform - pos: 4.5,-126.5 + pos: 8.5,32.5 parent: 1 - - uid: 7360 + - uid: 6990 components: - type: Transform - pos: 4.5,-125.5 + pos: 7.5,32.5 parent: 1 - - uid: 7361 + - uid: 6991 components: - type: Transform - pos: 4.5,-124.5 + pos: 7.5,33.5 parent: 1 - - uid: 7362 + - uid: 6992 components: - type: Transform - pos: 4.5,-123.5 + pos: 6.5,33.5 parent: 1 - - uid: 7363 + - uid: 6993 components: - type: Transform - pos: 4.5,-122.5 + pos: 5.5,33.5 parent: 1 - - uid: 7364 + - uid: 6994 components: - type: Transform - pos: 3.5,-124.5 + pos: 4.5,33.5 parent: 1 - - uid: 7365 + - uid: 6995 components: - type: Transform - pos: 1.5,-128.5 + pos: 3.5,33.5 parent: 1 - - uid: 7366 + - uid: 6996 components: - type: Transform - pos: 2.5,-128.5 + pos: 2.5,33.5 parent: 1 - - uid: 7367 + - uid: 6997 components: - type: Transform - pos: 2.5,-127.5 + pos: 1.5,33.5 parent: 1 - - uid: 7368 + - uid: 6998 components: - type: Transform - pos: 2.5,-126.5 + pos: 0.5,34.5 parent: 1 - - uid: 7369 + - uid: 6999 components: - type: Transform - pos: 2.5,-125.5 + pos: -0.5,33.5 parent: 1 - - uid: 7370 + - uid: 7000 components: - type: Transform - pos: -0.5,-128.5 + pos: -1.5,32.5 parent: 1 - - uid: 7371 + - uid: 7001 components: - type: Transform - pos: -1.5,-128.5 + pos: -3.5,34.5 parent: 1 - - uid: 7372 + - uid: 7002 components: - type: Transform - pos: -2.5,-128.5 + pos: -2.5,33.5 parent: 1 - - uid: 7373 + - uid: 7003 components: - type: Transform - pos: -0.5,-126.5 + pos: -15.5,24.5 parent: 1 - - uid: 7374 + - uid: 7004 components: - type: Transform - pos: -0.5,-125.5 + pos: -13.5,26.5 parent: 1 - - uid: 7375 + - uid: 7005 components: - type: Transform - pos: -1.5,-126.5 + pos: -11.5,29.5 parent: 1 - - uid: 7376 + - uid: 7006 components: - type: Transform - pos: -1.5,-125.5 + pos: -12.5,28.5 parent: 1 - - uid: 7377 + - uid: 7007 components: - type: Transform - pos: 0.5,-128.5 + pos: -14.5,26.5 parent: 1 - - uid: 7378 + - uid: 7008 components: - type: Transform - pos: 0.5,-127.5 + pos: -7.5,33.5 parent: 1 - - uid: 7379 + - uid: 7009 components: - type: Transform - pos: 0.5,-126.5 + pos: -15.5,25.5 parent: 1 - - uid: 7380 + - uid: 7010 components: - type: Transform - pos: 0.5,-125.5 + pos: -6.5,32.5 parent: 1 - - uid: 7381 + - uid: 7011 components: - type: Transform - pos: 0.5,-124.5 + pos: -7.5,15.5 parent: 1 - - uid: 7382 + - uid: 7012 components: - type: Transform - pos: 0.5,-122.5 + pos: -10.5,31.5 parent: 1 - - uid: 7383 + - uid: 7013 components: - type: Transform - pos: 0.5,-123.5 + pos: -7.5,14.5 parent: 1 - - uid: 7384 + - uid: 7014 components: - type: Transform - pos: -0.5,-123.5 + pos: -8.5,14.5 parent: 1 - - uid: 7385 + - uid: 7015 components: - type: Transform - pos: -1.5,-123.5 + pos: -9.5,15.5 parent: 1 - - uid: 7386 + - uid: 7016 components: - type: Transform - pos: -3.5,-122.5 + pos: -8.5,16.5 parent: 1 - - uid: 7387 + - uid: 7017 components: - type: Transform - pos: -3.5,-123.5 + pos: -9.5,14.5 parent: 1 - - uid: 7388 + - uid: 7018 components: - type: Transform - pos: -3.5,-124.5 + pos: -9.5,16.5 parent: 1 - - uid: 7389 + - uid: 7019 components: - type: Transform - pos: -3.5,-125.5 + pos: -10.5,17.5 parent: 1 - - uid: 7390 + - uid: 7020 components: - type: Transform - pos: -3.5,-126.5 + pos: -10.5,15.5 parent: 1 - - uid: 7391 + - uid: 7021 components: - type: Transform - pos: -3.5,-127.5 + pos: -10.5,16.5 parent: 1 - - uid: 7392 + - uid: 7022 components: - type: Transform - pos: -3.5,-128.5 + pos: -11.5,14.5 parent: 1 - - uid: 7393 + - uid: 7023 components: - type: Transform - pos: -4.5,-128.5 + pos: -11.5,18.5 parent: 1 - - uid: 7394 + - uid: 7024 components: - type: Transform - pos: -5.5,-128.5 + pos: -11.5,16.5 parent: 1 - - uid: 7395 + - uid: 7025 components: - type: Transform - pos: -6.5,-128.5 + pos: -11.5,17.5 parent: 1 - - uid: 7396 + - uid: 7026 components: - type: Transform - pos: -5.5,-127.5 + pos: -12.5,14.5 parent: 1 - - uid: 7397 + - uid: 7027 components: - type: Transform - pos: -5.5,-126.5 + pos: -12.5,16.5 parent: 1 - - uid: 7398 + - uid: 7028 components: - type: Transform - pos: 7.5,-128.5 + pos: -12.5,18.5 parent: 1 - - uid: 7399 + - uid: 7029 components: - type: Transform - pos: -5.5,-125.5 + pos: -13.5,15.5 parent: 1 - - uid: 7400 + - uid: 7030 components: - type: Transform - pos: -5.5,-123.5 + pos: -13.5,17.5 parent: 1 - - uid: 7401 + - uid: 7031 components: - type: Transform - pos: -5.5,-122.5 + pos: -14.5,14.5 parent: 1 - - uid: 7402 + - uid: 7032 components: - type: Transform - pos: -9.5,-124.5 + pos: -14.5,15.5 parent: 1 - - uid: 7403 + - uid: 7033 components: - type: Transform - pos: -9.5,-123.5 + pos: -14.5,17.5 parent: 1 - - uid: 7404 + - uid: 7034 components: - type: Transform - pos: -10.5,-124.5 + pos: -14.5,18.5 parent: 1 - - uid: 7405 + - uid: 7035 components: - type: Transform - pos: -10.5,-123.5 + pos: -15.5,14.5 parent: 1 - - uid: 7406 + - uid: 7036 components: - type: Transform - pos: -7.5,-127.5 + pos: -15.5,15.5 parent: 1 - - uid: 7407 + - uid: 7037 components: - type: Transform - pos: -7.5,-126.5 + pos: -15.5,17.5 parent: 1 - - uid: 7408 + - uid: 7038 components: - type: Transform - pos: -7.5,-125.5 + pos: -15.5,18.5 parent: 1 - - uid: 7409 + - uid: 7039 components: - type: Transform - pos: -7.5,-124.5 + pos: -15.5,20.5 parent: 1 - - uid: 7410 + - uid: 7040 components: - type: Transform - pos: -7.5,-123.5 + pos: -16.5,15.5 parent: 1 - - uid: 7411 + - uid: 7041 components: - type: Transform - pos: -7.5,-122.5 + pos: -16.5,17.5 parent: 1 - - uid: 7412 + - uid: 7042 components: - type: Transform - pos: -8.5,-127.5 + pos: -16.5,19.5 parent: 1 - - uid: 7413 + - uid: 7043 components: - type: Transform - pos: -8.5,-126.5 + pos: -16.5,21.5 parent: 1 - - uid: 7414 + - uid: 7044 components: - type: Transform - pos: -8.5,-125.5 + pos: -15.5,22.5 parent: 1 - - uid: 7415 + - uid: 7045 components: - type: Transform - pos: -8.5,-124.5 + pos: -14.5,21.5 parent: 1 - - uid: 7416 + - uid: 7046 components: - type: Transform - pos: -8.5,-123.5 + pos: -13.5,20.5 parent: 1 - - uid: 7417 + - uid: 7047 components: - type: Transform - pos: -8.5,-122.5 + pos: -13.5,19.5 parent: 1 - - uid: 7418 + - uid: 7048 components: - type: Transform - pos: -7.5,-128.5 + pos: 11.5,16.5 parent: 1 - - uid: 7419 + - uid: 7049 components: - type: Transform - pos: -8.5,-128.5 + pos: 15.5,14.5 parent: 1 - - uid: 7420 + - uid: 7050 components: - type: Transform - pos: -9.5,-128.5 + pos: 15.5,16.5 parent: 1 - - uid: 7421 + - uid: 7051 components: - type: Transform - pos: -10.5,-128.5 + pos: 15.5,18.5 parent: 1 - - uid: 7422 + - uid: 7052 components: - type: Transform - pos: -11.5,-128.5 + pos: 15.5,20.5 parent: 1 - - uid: 7423 + - uid: 7053 components: - type: Transform - pos: -10.5,-126.5 + pos: 14.5,15.5 parent: 1 - - uid: 7424 + - uid: 7054 components: - type: Transform - pos: -11.5,-126.5 + pos: 14.5,17.5 parent: 1 - - uid: 7425 + - uid: 7055 components: - type: Transform - pos: -13.5,-128.5 + pos: 14.5,19.5 parent: 1 - - uid: 7426 + - uid: 7056 components: - type: Transform - pos: -12.5,-128.5 + pos: 13.5,14.5 parent: 1 - - uid: 7427 + - uid: 7057 components: - type: Transform - pos: -12.5,-127.5 + pos: 13.5,16.5 parent: 1 - - uid: 7428 + - uid: 7058 components: - type: Transform - pos: -12.5,-126.5 + pos: 13.5,18.5 parent: 1 - - uid: 7429 + - uid: 7059 components: - type: Transform - pos: -12.5,-125.5 + pos: 13.5,20.5 parent: 1 - - uid: 7430 + - uid: 7060 components: - type: Transform - pos: -12.5,-124.5 + pos: 12.5,15.5 parent: 1 - - uid: 7431 + - uid: 7061 components: - type: Transform - pos: -12.5,-123.5 + pos: 12.5,17.5 parent: 1 - - uid: 7432 + - uid: 7062 components: - type: Transform - pos: -12.5,-122.5 + pos: 12.5,19.5 parent: 1 - - uid: 7433 + - uid: 7063 components: - type: Transform - pos: -14.5,-123.5 + pos: 18.5,14.5 parent: 1 - - uid: 7434 + - uid: 7064 components: - type: Transform - pos: -15.5,-128.5 + pos: 18.5,16.5 parent: 1 - - uid: 7435 + - uid: 7065 components: - type: Transform - pos: -14.5,-128.5 + pos: 18.5,18.5 parent: 1 - - uid: 7436 + - uid: 7066 components: - type: Transform - pos: -14.5,-127.5 + pos: 18.5,20.5 parent: 1 - - uid: 7437 + - uid: 7067 components: - type: Transform - pos: -14.5,-126.5 + pos: 17.5,14.5 parent: 1 - - uid: 7438 + - uid: 7068 components: - type: Transform - pos: -14.5,-125.5 + pos: 17.5,16.5 parent: 1 - - uid: 7439 + - uid: 7069 components: - type: Transform - pos: -18.5,-128.5 + pos: 17.5,18.5 parent: 1 - - uid: 7440 + - uid: 7070 components: - type: Transform - pos: -17.5,-128.5 + pos: 17.5,20.5 parent: 1 - - uid: 7441 + - uid: 7071 components: - type: Transform - pos: -17.5,-127.5 + pos: 16.5,14.5 parent: 1 - - uid: 7442 + - uid: 7072 components: - type: Transform - pos: -17.5,-126.5 + pos: 16.5,16.5 parent: 1 - - uid: 7443 + - uid: 7073 components: - type: Transform - pos: -16.5,-128.5 + pos: 16.5,18.5 parent: 1 - - uid: 7444 + - uid: 7074 components: - type: Transform - pos: -16.5,-127.5 + pos: 16.5,20.5 parent: 1 - - uid: 7445 + - uid: 7075 components: - type: Transform - pos: -16.5,-126.5 + pos: 18.5,22.5 parent: 1 - - uid: 7446 + - uid: 7076 components: - type: Transform - pos: -16.5,-125.5 + pos: 16.5,22.5 parent: 1 - - uid: 7447 + - uid: 7077 components: - type: Transform - pos: -16.5,-124.5 + pos: 15.5,21.5 parent: 1 - - uid: 7448 + - uid: 7078 components: - type: Transform - pos: -16.5,-123.5 + pos: 13.5,21.5 parent: 1 - - uid: 7449 + - uid: 7079 components: - type: Transform - pos: -16.5,-122.5 + pos: 11.5,20.5 parent: 1 - - uid: 7450 + - uid: 7080 components: - type: Transform - pos: -18.5,-125.5 + pos: 9.5,20.5 parent: 1 - - uid: 7451 + - uid: 7081 components: - type: Transform - pos: -18.5,-124.5 + pos: 8.5,18.5 parent: 1 - - uid: 7452 + - uid: 7082 components: - type: Transform - pos: -18.5,-123.5 + pos: 18.5,-9.5 parent: 1 - - uid: 7453 + - uid: 7083 components: - type: Transform - pos: 17.5,-122.5 + pos: 18.5,-7.5 parent: 1 - - uid: 7454 + - uid: 7084 components: - type: Transform - pos: -20.5,-128.5 + pos: 18.5,-5.5 parent: 1 - - uid: 7455 + - uid: 7085 components: - type: Transform - pos: -19.5,-128.5 + pos: 5.5,15.5 parent: 1 - - uid: 7456 + - uid: 7086 components: - type: Transform - pos: -19.5,-127.5 + pos: 17.5,-9.5 parent: 1 - - uid: 7457 + - uid: 7087 components: - type: Transform - pos: -19.5,-126.5 + pos: 17.5,-7.5 parent: 1 - - uid: 7458 + - uid: 7088 components: - type: Transform - pos: -20.5,-125.5 + pos: 17.5,-5.5 parent: 1 - - uid: 7459 + - uid: 7089 components: - type: Transform - pos: -20.5,-124.5 + pos: 3.5,14.5 parent: 1 - - uid: 7460 + - uid: 7090 components: - type: Transform - pos: -20.5,-123.5 + pos: 16.5,-9.5 parent: 1 - - uid: 7461 + - uid: 7091 components: - type: Transform - pos: -20.5,-122.5 + pos: 16.5,-7.5 parent: 1 - - uid: 7462 + - uid: 7092 components: - type: Transform - pos: -21.5,-128.5 + pos: 14.5,-6.5 parent: 1 - - uid: 7463 + - uid: 7093 components: - type: Transform - pos: -21.5,-127.5 + pos: 14.5,-5.5 parent: 1 - - uid: 7464 + - uid: 7094 components: - type: Transform - pos: -21.5,-126.5 + pos: 14.5,-4.5 parent: 1 - - uid: 7465 + - uid: 7095 components: - type: Transform - pos: -22.5,-128.5 + pos: 13.5,-10.5 parent: 1 - - uid: 7466 + - uid: 7096 components: - type: Transform - pos: -22.5,-127.5 + pos: 13.5,-9.5 parent: 1 - - uid: 7467 + - uid: 7097 components: - type: Transform - pos: -22.5,-126.5 + pos: 13.5,-8.5 parent: 1 - - uid: 7468 + - uid: 7098 components: - type: Transform - pos: -22.5,-125.5 + pos: 13.5,-7.5 parent: 1 - - uid: 7469 + - uid: 7099 components: - type: Transform - pos: -22.5,-124.5 + pos: 13.5,-6.5 parent: 1 - - uid: 7470 + - uid: 7100 components: - type: Transform - pos: -22.5,-123.5 + pos: 12.5,-10.5 parent: 1 - - uid: 7471 + - uid: 7101 components: - type: Transform - pos: -22.5,-122.5 + pos: 13.5,-4.5 parent: 1 - - uid: 7472 + - uid: 7102 components: - type: Transform - pos: -23.5,-128.5 + pos: 5.5,16.5 parent: 1 - - uid: 7473 + - uid: 7103 components: - type: Transform - pos: -40.5,-19.5 + pos: 12.5,-7.5 parent: 1 - - uid: 7477 + - uid: 7104 components: - type: Transform - pos: -40.5,-22.5 + pos: 12.5,-9.5 parent: 1 - - uid: 7478 + - uid: 7105 components: - type: Transform - pos: -23.5,-125.5 + pos: 12.5,-8.5 parent: 1 - - uid: 7479 + - uid: 7106 components: - type: Transform - pos: -23.5,-124.5 + pos: 12.5,-6.5 parent: 1 - - uid: 7481 + - uid: 7107 components: - type: Transform - pos: -23.5,-123.5 + pos: 12.5,-5.5 parent: 1 - - uid: 7482 + - uid: 7108 components: - type: Transform - pos: -23.5,-122.5 + pos: 12.5,-4.5 parent: 1 - - uid: 7483 + - uid: 7109 components: - type: Transform - pos: -24.5,-128.5 + pos: 6.5,17.5 parent: 1 - - uid: 7485 + - uid: 7110 components: - type: Transform - pos: -40.5,-26.5 + pos: 11.5,-6.5 parent: 1 - - uid: 7488 + - uid: 7111 components: - type: Transform - pos: -24.5,-125.5 + pos: 11.5,-8.5 parent: 1 - - uid: 7493 + - uid: 7112 components: - type: Transform - pos: -24.5,-124.5 + pos: 11.5,-9.5 parent: 1 - - uid: 7498 + - uid: 7113 components: - type: Transform - pos: -24.5,-123.5 + pos: 11.5,-7.5 parent: 1 - - uid: 7501 + - uid: 7114 components: - type: Transform - pos: -24.5,-122.5 + pos: 10.5,-10.5 parent: 1 - - uid: 7506 + - uid: 7115 components: - type: Transform - pos: -25.5,-128.5 + pos: 11.5,-4.5 parent: 1 - - uid: 7511 + - uid: 7116 components: - type: Transform - pos: -25.5,-127.5 + pos: 11.5,-5.5 parent: 1 - - uid: 7514 + - uid: 7117 components: - type: Transform - pos: -40.5,-21.5 + pos: 2.5,14.5 parent: 1 - - uid: 7515 + - uid: 7118 components: - type: Transform - pos: -25.5,-123.5 + pos: 10.5,-9.5 parent: 1 - - uid: 7516 + - uid: 7119 components: - type: Transform - pos: -25.5,-122.5 + pos: 10.5,-8.5 parent: 1 - - uid: 7517 + - uid: 7120 components: - type: Transform - pos: -26.5,-128.5 + pos: 10.5,-6.5 parent: 1 - - uid: 7518 + - uid: 7121 components: - type: Transform - pos: -26.5,-127.5 + pos: 10.5,-7.5 parent: 1 - - uid: 7519 + - uid: 7122 components: - type: Transform - pos: -26.5,-126.5 + pos: 10.5,-4.5 parent: 1 - - uid: 7521 + - uid: 7123 components: - type: Transform - pos: -40.5,-25.5 + pos: 10.5,-5.5 parent: 1 - - uid: 7522 + - uid: 7124 components: - type: Transform - pos: -40.5,-24.5 + pos: 18.5,12.5 parent: 1 - - uid: 7523 + - uid: 7125 components: - type: Transform - pos: -40.5,-11.5 + pos: 18.5,13.5 parent: 1 - - uid: 7532 + - uid: 7126 components: - type: Transform - pos: -40.5,-23.5 + pos: 18.5,10.5 parent: 1 - - uid: 7663 + - uid: 7127 components: - type: Transform - pos: -27.5,-128.5 + pos: 18.5,9.5 parent: 1 - - uid: 7664 + - uid: 7128 components: - type: Transform - pos: -27.5,-127.5 + pos: 18.5,8.5 parent: 1 - - uid: 7665 + - uid: 7129 components: - type: Transform - pos: -27.5,-126.5 + pos: 18.5,7.5 parent: 1 - - uid: 7670 + - uid: 7130 components: - type: Transform - pos: -28.5,-128.5 + pos: 18.5,6.5 parent: 1 - - uid: 7671 + - uid: 7131 components: - type: Transform - pos: -28.5,-127.5 + pos: 18.5,5.5 parent: 1 - - uid: 7672 + - uid: 7132 components: - type: Transform - pos: -28.5,-126.5 + pos: 18.5,4.5 parent: 1 - - uid: 7673 + - uid: 7133 components: - type: Transform - pos: -24.5,-121.5 + pos: 18.5,3.5 parent: 1 - - uid: 7674 + - uid: 7134 components: - type: Transform - pos: -25.5,-121.5 + pos: 17.5,13.5 parent: 1 - - uid: 7675 + - uid: 7135 components: - type: Transform - pos: -28.5,-125.5 + pos: 17.5,10.5 parent: 1 - - uid: 7676 + - uid: 7136 components: - type: Transform - pos: -23.5,-121.5 + pos: 17.5,11.5 parent: 1 - - uid: 7677 + - uid: 7137 components: - type: Transform - pos: -22.5,-121.5 + pos: 17.5,8.5 parent: 1 - - uid: 7678 + - uid: 7138 components: - type: Transform - pos: -21.5,-121.5 + pos: 17.5,9.5 parent: 1 - - uid: 7679 + - uid: 7139 components: - type: Transform - pos: -20.5,-121.5 + pos: 17.5,6.5 parent: 1 - - uid: 7680 + - uid: 7140 components: - type: Transform - pos: -19.5,-121.5 + pos: 17.5,7.5 parent: 1 - - uid: 7681 + - uid: 7141 components: - type: Transform - pos: -18.5,-121.5 + pos: 17.5,4.5 parent: 1 - - uid: 7689 + - uid: 7142 components: - type: Transform - pos: -17.5,-121.5 + pos: 17.5,5.5 parent: 1 - - uid: 7690 + - uid: 7143 components: - type: Transform - pos: -16.5,-121.5 + pos: 16.5,13.5 parent: 1 - - uid: 7692 + - uid: 7144 components: - type: Transform - pos: -15.5,-121.5 + pos: 17.5,3.5 parent: 1 - - uid: 7693 + - uid: 7145 components: - type: Transform - pos: -14.5,-121.5 + pos: 16.5,11.5 parent: 1 - - uid: 7694 + - uid: 7146 components: - type: Transform - pos: -13.5,-121.5 + pos: 16.5,12.5 parent: 1 - - uid: 7695 + - uid: 7147 components: - type: Transform - pos: -12.5,-121.5 + pos: 16.5,8.5 parent: 1 - - uid: 7696 + - uid: 7148 components: - type: Transform - pos: -11.5,-121.5 + pos: 16.5,9.5 parent: 1 - - uid: 7698 + - uid: 7149 components: - type: Transform - pos: -10.5,-121.5 + pos: 16.5,6.5 parent: 1 - - uid: 7699 + - uid: 7150 components: - type: Transform - pos: -9.5,-121.5 + pos: 16.5,7.5 parent: 1 - - uid: 7701 + - uid: 7151 components: - type: Transform - pos: 23.5,37.5 + pos: 16.5,4.5 parent: 1 - - uid: 7702 + - uid: 7152 components: - type: Transform - pos: 23.5,38.5 + pos: 16.5,5.5 parent: 1 - - uid: 7703 + - uid: 7153 components: - type: Transform - pos: 23.5,36.5 + pos: 15.5,12.5 parent: 1 - - uid: 7704 + - uid: 7154 components: - type: Transform - pos: -28.5,-121.5 + pos: 15.5,13.5 parent: 1 - - uid: 7705 + - uid: 7155 components: - type: Transform - pos: -8.5,-121.5 + pos: 15.5,10.5 parent: 1 - - uid: 7707 + - uid: 7156 components: - type: Transform - pos: -7.5,-121.5 + pos: 15.5,11.5 parent: 1 - - uid: 7708 + - uid: 7157 components: - type: Transform - pos: -6.5,-121.5 + pos: 15.5,8.5 parent: 1 - - uid: 7709 + - uid: 7158 components: - type: Transform - pos: -5.5,-121.5 + pos: 15.5,9.5 parent: 1 - - uid: 7715 + - uid: 7159 components: - type: Transform - pos: -4.5,-121.5 + pos: 15.5,6.5 parent: 1 - - uid: 7716 + - uid: 7160 components: - type: Transform - pos: -3.5,-121.5 + pos: 15.5,5.5 parent: 1 - - uid: 7717 + - uid: 7161 components: - type: Transform - pos: -2.5,-121.5 + pos: 15.5,4.5 parent: 1 - - uid: 7718 + - uid: 7162 components: - type: Transform - pos: -1.5,-121.5 + pos: 15.5,3.5 parent: 1 - - uid: 7719 + - uid: 7163 components: - type: Transform - pos: -0.5,-121.5 + pos: 14.5,10.5 parent: 1 - - uid: 7720 + - uid: 7164 components: - type: Transform - pos: 0.5,-121.5 + pos: 14.5,11.5 parent: 1 - - uid: 7721 + - uid: 7165 components: - type: Transform - pos: 1.5,-121.5 + pos: 14.5,12.5 parent: 1 - - uid: 7722 + - uid: 7166 components: - type: Transform - pos: 2.5,-121.5 + pos: 14.5,7.5 parent: 1 - - uid: 7723 + - uid: 7167 components: - type: Transform - pos: 3.5,-121.5 + pos: 14.5,8.5 parent: 1 - - uid: 7724 + - uid: 7168 components: - type: Transform - pos: 4.5,-121.5 + pos: 14.5,9.5 parent: 1 - - uid: 7725 + - uid: 7169 components: - type: Transform - pos: 5.5,-121.5 + pos: 14.5,4.5 parent: 1 - - uid: 7726 + - uid: 7170 components: - type: Transform - pos: 6.5,-121.5 + pos: 14.5,5.5 parent: 1 - - uid: 7734 + - uid: 7171 components: - type: Transform - pos: 7.5,-121.5 + pos: 14.5,6.5 parent: 1 - - uid: 7735 + - uid: 7172 components: - type: Transform - pos: 7.5,-123.5 + pos: 13.5,12.5 parent: 1 - - uid: 7737 + - uid: 7173 components: - type: Transform - pos: -27.5,-121.5 + pos: 13.5,13.5 parent: 1 - - uid: 7738 + - uid: 7174 components: - type: Transform - pos: 6.5,-123.5 + pos: 14.5,3.5 parent: 1 - - uid: 7739 + - uid: 7175 components: - type: Transform - pos: 6.5,-126.5 + pos: 13.5,11.5 parent: 1 - - uid: 7740 + - uid: 7176 components: - type: Transform - pos: 7.5,-125.5 + pos: 13.5,7.5 parent: 1 - - uid: 7741 + - uid: 7177 components: - type: Transform - pos: 6.5,-125.5 + pos: 13.5,9.5 parent: 1 - - uid: 7743 + - uid: 7178 components: - type: Transform - pos: 7.5,-126.5 + pos: 13.5,8.5 parent: 1 - - uid: 7744 + - uid: 7179 components: - type: Transform - pos: 12.5,-127.5 + pos: 13.5,5.5 parent: 1 - - uid: 7746 + - uid: 7180 components: - type: Transform - pos: 10.5,-127.5 + pos: 13.5,6.5 parent: 1 - - uid: 7747 + - uid: 7181 components: - type: Transform - pos: 8.5,-127.5 + pos: 12.5,5.5 parent: 1 - - uid: 7748 + - uid: 7182 components: - type: Transform - pos: 8.5,-128.5 + pos: 12.5,6.5 parent: 1 - - uid: 7749 + - uid: 7183 components: - type: Transform - pos: 9.5,-128.5 + pos: 12.5,3.5 parent: 1 - - uid: 7750 + - uid: 7184 components: - type: Transform - pos: -26.5,-121.5 + pos: 12.5,4.5 parent: 1 - - uid: 7752 + - uid: 7185 components: - type: Transform - pos: 10.5,-128.5 + pos: 11.5,12.5 parent: 1 - - uid: 7753 + - uid: 7186 components: - type: Transform - pos: 11.5,-128.5 + pos: 11.5,13.5 parent: 1 - - uid: 7761 + - uid: 7187 components: - type: Transform - pos: 12.5,-128.5 + pos: 11.5,10.5 parent: 1 - - uid: 7762 + - uid: 7188 components: - type: Transform - pos: 13.5,-128.5 + pos: 11.5,11.5 parent: 1 - - uid: 7763 + - uid: 7189 components: - type: Transform - pos: 14.5,-128.5 + pos: 13.5,4.5 parent: 1 - - uid: 7764 + - uid: 7190 components: - type: Transform - pos: 15.5,-128.5 + pos: 11.5,9.5 parent: 1 - - uid: 7765 + - uid: 7191 components: - type: Transform - pos: 16.5,-128.5 + pos: 12.5,13.5 parent: 1 - - uid: 7766 + - uid: 7192 components: - type: Transform - pos: 17.5,-128.5 + pos: 13.5,3.5 parent: 1 - - uid: 7767 + - uid: 7193 components: - type: Transform - pos: 18.5,-128.5 + pos: 12.5,11.5 parent: 1 - - uid: 7768 + - uid: 7194 components: - type: Transform - pos: 19.5,-128.5 + pos: 12.5,12.5 parent: 1 - - uid: 7769 + - uid: 7195 components: - type: Transform - pos: 20.5,-128.5 + pos: 12.5,9.5 parent: 1 - - uid: 7770 + - uid: 7196 components: - type: Transform - pos: 21.5,-128.5 + pos: 12.5,10.5 parent: 1 - - uid: 7771 + - uid: 7197 components: - type: Transform - pos: 22.5,-128.5 + pos: 12.5,7.5 parent: 1 - - uid: 7779 + - uid: 7198 components: - type: Transform - pos: 22.5,-127.5 + pos: 12.5,8.5 parent: 1 - - uid: 7780 + - uid: 7199 components: - type: Transform - pos: 21.5,-127.5 + pos: 11.5,7.5 parent: 1 - - uid: 7781 + - uid: 7200 components: - type: Transform - pos: 20.5,-127.5 + pos: 11.5,8.5 parent: 1 - - uid: 7782 + - uid: 7201 components: - type: Transform - pos: 19.5,-127.5 + pos: 11.5,4.5 parent: 1 - - uid: 7783 + - uid: 7202 components: - type: Transform - pos: 18.5,-127.5 + pos: 11.5,6.5 parent: 1 - - uid: 7784 + - uid: 7203 components: - type: Transform - pos: 17.5,-127.5 + pos: 11.5,5.5 parent: 1 - - uid: 7785 + - uid: 7204 components: - type: Transform - pos: 16.5,-127.5 + pos: 10.5,13.5 parent: 1 - - uid: 7786 + - uid: 7205 components: - type: Transform - pos: 15.5,-127.5 + pos: 11.5,3.5 parent: 1 - - uid: 7788 + - uid: 7206 components: - type: Transform - pos: 14.5,-127.5 + pos: 10.5,11.5 parent: 1 - - uid: 7789 + - uid: 7207 components: - type: Transform - pos: 21.5,-124.5 + pos: 10.5,12.5 parent: 1 - - uid: 7790 + - uid: 7208 components: - type: Transform - pos: 21.5,-123.5 + pos: 10.5,9.5 parent: 1 - - uid: 7791 + - uid: 7209 components: - type: Transform - pos: 21.5,-122.5 + pos: 10.5,10.5 parent: 1 - - uid: 7792 + - uid: 7210 components: - type: Transform - pos: 21.5,-121.5 + pos: 10.5,7.5 parent: 1 - - uid: 7793 + - uid: 7211 components: - type: Transform - pos: 20.5,-126.5 + pos: 10.5,8.5 parent: 1 - - uid: 7794 + - uid: 7212 components: - type: Transform - pos: 20.5,-125.5 + pos: 10.5,5.5 parent: 1 - - uid: 7795 + - uid: 7213 components: - type: Transform - pos: 20.5,-124.5 + pos: 10.5,6.5 parent: 1 - - uid: 7797 + - uid: 7214 components: - type: Transform - pos: 20.5,-123.5 + pos: 10.5,3.5 parent: 1 - - uid: 7798 + - uid: 7215 components: - type: Transform - pos: 20.5,-122.5 + pos: 10.5,4.5 parent: 1 - - uid: 7805 + - uid: 7281 components: - type: Transform - pos: 22.5,-126.5 + pos: -13.5,13.5 parent: 1 - - uid: 7806 + - uid: 7286 components: - type: Transform - pos: 22.5,-125.5 + pos: -15.5,12.5 parent: 1 - - uid: 7807 + - uid: 7293 components: - type: Transform - pos: 22.5,-124.5 + pos: -4.5,5.5 parent: 1 - - uid: 7808 + - uid: 7294 components: - type: Transform - pos: 22.5,-123.5 + pos: -4.5,3.5 parent: 1 - - uid: 7809 + - uid: 7295 components: - type: Transform - pos: 22.5,-122.5 + pos: -3.5,13.5 parent: 1 - - uid: 7810 + - uid: 7296 components: - type: Transform - pos: 22.5,-121.5 + pos: -3.5,11.5 parent: 1 - - uid: 7811 + - uid: 7297 components: - type: Transform - pos: 21.5,-126.5 + pos: -3.5,9.5 parent: 1 - - uid: 7812 + - uid: 7298 components: - type: Transform - pos: 21.5,-125.5 + pos: -3.5,7.5 parent: 1 - - uid: 7813 + - uid: 7299 components: - type: Transform - pos: 20.5,-121.5 + pos: -3.5,5.5 parent: 1 - - uid: 7814 + - uid: 7300 components: - type: Transform - pos: 19.5,-126.5 + pos: -3.5,3.5 parent: 1 - - uid: 7815 + - uid: 7301 components: - type: Transform - pos: 19.5,-125.5 + pos: 9.5,13.5 parent: 1 - - uid: 7816 + - uid: 7302 components: - type: Transform - pos: 19.5,-124.5 + pos: 9.5,11.5 parent: 1 - - uid: 7824 + - uid: 7303 components: - type: Transform - pos: 19.5,-123.5 + pos: 8.5,4.5 parent: 1 - - uid: 7825 + - uid: 7304 components: - type: Transform - pos: 19.5,-122.5 + pos: 8.5,2.5 parent: 1 - - uid: 7827 + - uid: 7305 components: - type: Transform - pos: 19.5,-121.5 + pos: 7.5,11.5 parent: 1 - - uid: 7828 + - uid: 7306 components: - type: Transform - pos: 18.5,-126.5 + pos: 7.5,12.5 parent: 1 - - uid: 7830 + - uid: 7307 components: - type: Transform - pos: 18.5,-125.5 + pos: 7.5,8.5 parent: 1 - - uid: 7831 + - uid: 7308 components: - type: Transform - pos: 18.5,-122.5 + pos: 7.5,9.5 parent: 1 - - uid: 7833 + - uid: 7309 components: - type: Transform - pos: 18.5,-121.5 + pos: 7.5,5.5 parent: 1 - - uid: 7834 + - uid: 7310 components: - type: Transform - pos: 17.5,-126.5 + pos: 7.5,6.5 parent: 1 - - uid: 7835 + - uid: 7311 components: - type: Transform - pos: 17.5,-125.5 + pos: 7.5,2.5 parent: 1 - - uid: 7838 + - uid: 7312 components: - type: Transform - pos: 17.5,-124.5 + pos: 7.5,3.5 parent: 1 - - uid: 7841 + - uid: 7313 components: - type: Transform - pos: 17.5,-123.5 + pos: 6.5,11.5 parent: 1 - - uid: 7842 + - uid: 7314 components: - type: Transform - pos: -15.5,-120.5 + pos: 6.5,12.5 parent: 1 - - uid: 7843 + - uid: 7315 components: - type: Transform - pos: 17.5,-121.5 + pos: 6.5,8.5 parent: 1 - - uid: 7844 + - uid: 7316 components: - type: Transform - pos: 16.5,-126.5 + pos: 6.5,9.5 parent: 1 - - uid: 7845 + - uid: 7317 components: - type: Transform - pos: 18.5,-124.5 + pos: 5.5,8.5 parent: 1 - - uid: 7846 + - uid: 7318 components: - type: Transform - pos: 18.5,-123.5 + pos: 5.5,9.5 parent: 1 - - uid: 7847 + - uid: 7319 components: - type: Transform - pos: 16.5,-125.5 + pos: 5.5,5.5 parent: 1 - - uid: 7848 + - uid: 7320 components: - type: Transform - pos: 16.5,-124.5 + pos: 5.5,6.5 parent: 1 - - uid: 7849 + - uid: 7321 components: - type: Transform - pos: 16.5,-123.5 + pos: 5.5,2.5 parent: 1 - - uid: 7850 + - uid: 7322 components: - type: Transform - pos: 16.5,-122.5 + pos: 5.5,3.5 parent: 1 - - uid: 7851 + - uid: 7323 components: - type: Transform - pos: 15.5,-126.5 + pos: 6.5,5.5 parent: 1 - - uid: 7852 + - uid: 7324 components: - type: Transform - pos: 15.5,-124.5 + pos: 6.5,6.5 parent: 1 - - uid: 7860 + - uid: 7325 components: - type: Transform - pos: 15.5,-122.5 + pos: 6.5,2.5 parent: 1 - - uid: 7861 + - uid: 7326 components: - type: Transform - pos: 14.5,-126.5 + pos: 6.5,3.5 parent: 1 - - uid: 7862 + - uid: 7327 components: - type: Transform - pos: 14.5,-124.5 + pos: 5.5,11.5 parent: 1 - - uid: 7863 + - uid: 7328 components: - type: Transform - pos: 14.5,-122.5 + pos: 5.5,12.5 parent: 1 - - uid: 7864 + - uid: 7329 components: - type: Transform - pos: 13.5,-126.5 + pos: 4.5,11.5 parent: 1 - - uid: 7865 + - uid: 7330 components: - type: Transform - pos: 13.5,-124.5 + pos: 4.5,12.5 parent: 1 - - uid: 7866 + - uid: 7331 components: - type: Transform - pos: 13.5,-122.5 + pos: 3.5,9.5 parent: 1 - - uid: 7867 + - uid: 7332 components: - type: Transform - pos: 12.5,-126.5 + pos: 3.5,7.5 parent: 1 - - uid: 7869 + - uid: 7333 components: - type: Transform - pos: 12.5,-125.5 + pos: 3.5,5.5 parent: 1 - - uid: 7870 + - uid: 7334 components: - type: Transform - pos: 12.5,-124.5 + pos: 3.5,3.5 parent: 1 - - uid: 7871 + - uid: 7335 components: - type: Transform - pos: 12.5,-123.5 + pos: 2.5,13.5 parent: 1 - - uid: 7872 + - uid: 7336 components: - type: Transform - pos: 12.5,-122.5 + pos: 2.5,11.5 parent: 1 - - uid: 7873 + - uid: 7337 components: - type: Transform - pos: 12.5,-121.5 + pos: 2.5,9.5 parent: 1 - - uid: 7874 + - uid: 7338 components: - type: Transform - pos: 11.5,-126.5 + pos: 2.5,7.5 parent: 1 - - uid: 7875 + - uid: 7339 components: - type: Transform - pos: 11.5,-125.5 + pos: 2.5,5.5 parent: 1 - - uid: 7876 + - uid: 7340 components: - type: Transform - pos: 11.5,-124.5 + pos: 2.5,3.5 parent: 1 - - uid: 7878 + - uid: 7351 components: - type: Transform - pos: 11.5,-123.5 + pos: -23.5,-28.5 parent: 1 - - uid: 7879 + - uid: 7353 components: - type: Transform - pos: 11.5,-122.5 + pos: 5.5,-128.5 parent: 1 - - uid: 7880 + - uid: 7354 components: - type: Transform - pos: 11.5,-121.5 + pos: 6.5,-128.5 parent: 1 - - uid: 7881 + - uid: 7356 components: - type: Transform - pos: 10.5,-126.5 + pos: 3.5,-128.5 parent: 1 - - uid: 7882 + - uid: 7357 components: - type: Transform - pos: 10.5,-125.5 + pos: 4.5,-128.5 parent: 1 - - uid: 7883 + - uid: 7365 components: - type: Transform - pos: 10.5,-124.5 + pos: 1.5,-128.5 parent: 1 - - uid: 7884 + - uid: 7366 components: - type: Transform - pos: 10.5,-123.5 + pos: 2.5,-128.5 parent: 1 - - uid: 7885 + - uid: 7370 components: - type: Transform - pos: 10.5,-122.5 + pos: -0.5,-128.5 parent: 1 - - uid: 7886 + - uid: 7371 components: - type: Transform - pos: 10.5,-121.5 + pos: -1.5,-128.5 parent: 1 - - uid: 7887 + - uid: 7372 components: - type: Transform - pos: 9.5,-126.5 + pos: -2.5,-128.5 parent: 1 - - uid: 7888 + - uid: 7377 components: - type: Transform - pos: 9.5,-125.5 + pos: 0.5,-128.5 parent: 1 - - uid: 7896 + - uid: 7392 components: - type: Transform - pos: 9.5,-124.5 + pos: -3.5,-128.5 parent: 1 - - uid: 7897 + - uid: 7393 components: - type: Transform - pos: 9.5,-123.5 + pos: -4.5,-128.5 parent: 1 - - uid: 7899 + - uid: 7394 components: - type: Transform - pos: 9.5,-122.5 + pos: -5.5,-128.5 parent: 1 - - uid: 7900 + - uid: 7395 components: - type: Transform - pos: 9.5,-121.5 + pos: -6.5,-128.5 parent: 1 - - uid: 7902 + - uid: 7398 components: - type: Transform - pos: 8.5,-126.5 + pos: 7.5,-128.5 parent: 1 - - uid: 7903 + - uid: 7418 components: - type: Transform - pos: 8.5,-125.5 + pos: -7.5,-128.5 parent: 1 - - uid: 7905 + - uid: 7419 components: - type: Transform - pos: 8.5,-124.5 + pos: -8.5,-128.5 parent: 1 - - uid: 7906 + - uid: 7420 components: - type: Transform - pos: 8.5,-123.5 + pos: -9.5,-128.5 parent: 1 - - uid: 7908 + - uid: 7421 components: - type: Transform - pos: 8.5,-122.5 + pos: -10.5,-128.5 parent: 1 - - uid: 7909 + - uid: 7422 components: - type: Transform - pos: 8.5,-121.5 + pos: -11.5,-128.5 parent: 1 - - uid: 7911 + - uid: 7425 components: - type: Transform - pos: 22.5,-120.5 + pos: -13.5,-128.5 parent: 1 - - uid: 7912 + - uid: 7426 components: - type: Transform - pos: 22.5,-119.5 + pos: -12.5,-128.5 parent: 1 - - uid: 7914 + - uid: 7434 components: - type: Transform - pos: 22.5,-118.5 + pos: -15.5,-128.5 parent: 1 - - uid: 7915 + - uid: 7435 components: - type: Transform - pos: 22.5,-117.5 + pos: -14.5,-128.5 parent: 1 - - uid: 7916 + - uid: 7439 components: - type: Transform - pos: 22.5,-116.5 + pos: -18.5,-128.5 parent: 1 - - uid: 7917 + - uid: 7440 components: - type: Transform - pos: 22.5,-115.5 + pos: -17.5,-128.5 parent: 1 - - uid: 7918 + - uid: 7443 components: - type: Transform - pos: 22.5,-114.5 + pos: -16.5,-128.5 parent: 1 - - uid: 7919 + - uid: 7454 components: - type: Transform - pos: 22.5,-113.5 + pos: -20.5,-128.5 parent: 1 - - uid: 7920 + - uid: 7455 components: - type: Transform - pos: 22.5,-112.5 + pos: -19.5,-128.5 parent: 1 - - uid: 7921 + - uid: 7462 components: - type: Transform - pos: 21.5,-120.5 + pos: -21.5,-128.5 parent: 1 - - uid: 7922 + - uid: 7473 components: - type: Transform - pos: 21.5,-119.5 + pos: -40.5,-19.5 parent: 1 - - uid: 7923 + - uid: 7477 components: - type: Transform - pos: 21.5,-118.5 + pos: -40.5,-22.5 parent: 1 - - uid: 7924 + - uid: 7485 components: - type: Transform - pos: 21.5,-117.5 + pos: -40.5,-26.5 parent: 1 - - uid: 7932 + - uid: 7497 components: - type: Transform - pos: 21.5,-116.5 + pos: -15.5,-50.5 parent: 1 - - uid: 7933 + - uid: 7499 components: - type: Transform - pos: 21.5,-115.5 + pos: -15.5,-49.5 parent: 1 - - uid: 7935 + - uid: 7500 components: - type: Transform - pos: 21.5,-114.5 + pos: -16.5,-50.5 parent: 1 - - uid: 7936 + - uid: 7502 components: - type: Transform - pos: 20.5,-118.5 + pos: -16.5,-49.5 parent: 1 - - uid: 7937 + - uid: 7503 components: - type: Transform - pos: 20.5,-112.5 + pos: -17.5,-50.5 parent: 1 - - uid: 7938 + - uid: 7504 components: - type: Transform - pos: 19.5,-120.5 + pos: -17.5,-49.5 parent: 1 - - uid: 7939 + - uid: 7505 components: - type: Transform - pos: 19.5,-119.5 + pos: -18.5,-50.5 parent: 1 - - uid: 7941 + - uid: 7507 components: - type: Transform - pos: 21.5,-113.5 + pos: -18.5,-49.5 parent: 1 - - uid: 7942 + - uid: 7508 components: - type: Transform - pos: 21.5,-112.5 + pos: -19.5,-50.5 parent: 1 - - uid: 7944 + - uid: 7509 components: - type: Transform - pos: 20.5,-117.5 + pos: -19.5,-49.5 parent: 1 - - uid: 7945 + - uid: 7510 components: - type: Transform - pos: 20.5,-116.5 + pos: -20.5,-50.5 parent: 1 - - uid: 7946 + - uid: 7514 components: - type: Transform - pos: 19.5,-118.5 + pos: -40.5,-21.5 parent: 1 - - uid: 7947 + - uid: 7520 components: - type: Transform - pos: 19.5,-117.5 + pos: -22.5,-128.5 parent: 1 - - uid: 7948 + - uid: 7521 components: - type: Transform - pos: 19.5,-116.5 + pos: -40.5,-25.5 parent: 1 - - uid: 7949 + - uid: 7522 components: - type: Transform - pos: 18.5,-120.5 + pos: -40.5,-24.5 parent: 1 - - uid: 7950 + - uid: 7523 components: - type: Transform - pos: 17.5,-114.5 + pos: -40.5,-11.5 parent: 1 - - uid: 7951 + - uid: 7527 components: - type: Transform - pos: 16.5,-114.5 + pos: -22.5,-127.5 parent: 1 - - uid: 7955 + - uid: 7532 components: - type: Transform - pos: 15.5,-114.5 + pos: -40.5,-23.5 parent: 1 - - uid: 7956 + - uid: 7535 components: - type: Transform - pos: 13.5,-118.5 + pos: -22.5,-126.5 parent: 1 - - uid: 7957 + - uid: 7536 components: - type: Transform - pos: 12.5,-112.5 + pos: -22.5,-125.5 parent: 1 - - uid: 7959 + - uid: 7540 components: - type: Transform - pos: 11.5,-113.5 + pos: -23.5,-128.5 parent: 1 - - uid: 7960 + - uid: 7541 components: - type: Transform - pos: 9.5,-120.5 + pos: -23.5,-125.5 parent: 1 - - uid: 7961 + - uid: 7545 components: - type: Transform - pos: 7.5,-120.5 + pos: -24.5,-128.5 parent: 1 - - uid: 7962 + - uid: 7546 components: - type: Transform - pos: 7.5,-119.5 + pos: -24.5,-125.5 parent: 1 - - uid: 7963 + - uid: 7547 components: - type: Transform - pos: 7.5,-118.5 + pos: -24.5,-124.5 parent: 1 - - uid: 7968 + - uid: 7558 components: - type: Transform - pos: 7.5,-117.5 + pos: -25.5,-128.5 parent: 1 - - uid: 7969 + - uid: 7559 components: - type: Transform - pos: 7.5,-116.5 + pos: -25.5,-127.5 parent: 1 - - uid: 7970 + - uid: 7564 components: - type: Transform - pos: 7.5,-115.5 + pos: -26.5,-128.5 parent: 1 - - uid: 7971 + - uid: 7565 components: - type: Transform - pos: 7.5,-114.5 + pos: -26.5,-127.5 parent: 1 - - uid: 7972 + - uid: 7566 components: - type: Transform - pos: 7.5,-113.5 + pos: -26.5,-126.5 parent: 1 - - uid: 7974 + - uid: 7568 components: - type: Transform - pos: 6.5,-120.5 + pos: -27.5,-128.5 parent: 1 - - uid: 7975 + - uid: 7598 components: - type: Transform - pos: 6.5,-112.5 + pos: -27.5,-127.5 parent: 1 - - uid: 7976 + - uid: 7627 components: - type: Transform - pos: 16.5,-121.5 + pos: -20.5,-49.5 parent: 1 - - uid: 7977 + - uid: 7648 components: - type: Transform - pos: 15.5,-125.5 + pos: -27.5,-126.5 parent: 1 - - uid: 7978 + - uid: 7663 components: - type: Transform - pos: 15.5,-123.5 + pos: -28.5,-128.5 parent: 1 - - uid: 7986 + - uid: 7664 components: - type: Transform - pos: 15.5,-121.5 + pos: -28.5,-127.5 parent: 1 - - uid: 7987 + - uid: 7665 components: - type: Transform - pos: 14.5,-125.5 + pos: -28.5,-126.5 parent: 1 - - uid: 7988 + - uid: 7669 components: - type: Transform - pos: 14.5,-123.5 + pos: -28.5,-125.5 parent: 1 - - uid: 7989 + - uid: 7682 components: - type: Transform - pos: 14.5,-121.5 + pos: -15.5,-47.5 parent: 1 - - uid: 7990 + - uid: 7685 components: - type: Transform - pos: 13.5,-125.5 + pos: -16.5,-47.5 parent: 1 - - uid: 7991 + - uid: 7686 components: - type: Transform - pos: 13.5,-123.5 + pos: -17.5,-47.5 parent: 1 - - uid: 7992 + - uid: 7687 components: - type: Transform - pos: 13.5,-121.5 + pos: -19.5,-38.5 parent: 1 - - uid: 7993 + - uid: 7688 components: - type: Transform - pos: 5.5,-120.5 + pos: -19.5,-47.5 parent: 1 - - uid: 7994 + - uid: 7691 components: - type: Transform - pos: 5.5,-118.5 + pos: -19.5,-37.5 parent: 1 - - uid: 7995 + - uid: 7697 components: - type: Transform - pos: 5.5,-117.5 + pos: -20.5,-47.5 parent: 1 - - uid: 7996 + - uid: 7700 components: - type: Transform - pos: 5.5,-115.5 + pos: -15.5,-46.5 parent: 1 - - uid: 8004 + - uid: 7701 components: - type: Transform - pos: 5.5,-114.5 + pos: 23.5,37.5 parent: 1 - - uid: 8005 + - uid: 7702 components: - type: Transform - pos: 5.5,-112.5 + pos: 23.5,38.5 parent: 1 - - uid: 8007 + - uid: 7703 components: - type: Transform - pos: 3.5,-115.5 + pos: 23.5,36.5 parent: 1 - - uid: 8008 + - uid: 7704 components: - type: Transform - pos: 5.5,-113.5 + pos: -28.5,-121.5 parent: 1 - - uid: 8010 + - uid: 7706 components: - type: Transform - pos: 4.5,-120.5 + pos: -15.5,-45.5 parent: 1 - - uid: 8011 + - uid: 7710 components: - type: Transform - pos: 3.5,-114.5 + pos: -15.5,-44.5 parent: 1 - - uid: 8013 + - uid: 7711 components: - type: Transform - pos: 3.5,-113.5 + pos: -15.5,-42.5 parent: 1 - - uid: 8014 + - uid: 7712 components: - type: Transform - pos: 3.5,-112.5 + pos: -15.5,-41.5 parent: 1 - - uid: 8016 + - uid: 7713 components: - type: Transform - pos: 2.5,-120.5 + pos: -15.5,-39.5 parent: 1 - - uid: 8017 + - uid: 7714 components: - type: Transform - pos: 2.5,-118.5 + pos: -15.5,-36.5 parent: 1 - - uid: 8019 + - uid: 7727 components: - type: Transform - pos: 2.5,-117.5 + pos: -16.5,-46.5 parent: 1 - - uid: 8020 + - uid: 7728 components: - type: Transform - pos: 2.5,-116.5 + pos: -16.5,-45.5 parent: 1 - - uid: 8022 + - uid: 7729 components: - type: Transform - pos: 4.5,-112.5 + pos: -16.5,-44.5 parent: 1 - - uid: 8023 + - uid: 7730 components: - type: Transform - pos: 3.5,-120.5 + pos: -16.5,-42.5 parent: 1 - - uid: 8024 + - uid: 7731 components: - type: Transform - pos: 3.5,-119.5 + pos: -16.5,-41.5 parent: 1 - - uid: 8025 + - uid: 7732 components: - type: Transform - pos: 3.5,-118.5 + pos: -16.5,-39.5 parent: 1 - - uid: 8026 + - uid: 7733 components: - type: Transform - pos: 3.5,-117.5 + pos: -16.5,-36.5 parent: 1 - - uid: 8027 + - uid: 7735 components: - type: Transform - pos: 3.5,-116.5 + pos: -16.5,-35.5 parent: 1 - - uid: 8028 + - uid: 7736 components: - type: Transform - pos: 2.5,-115.5 + pos: -17.5,-46.5 parent: 1 - - uid: 8029 + - uid: 7738 components: - type: Transform - pos: 2.5,-114.5 + pos: -17.5,-45.5 parent: 1 - - uid: 8030 + - uid: 7739 components: - type: Transform - pos: 20.5,-119.5 + pos: -17.5,-44.5 parent: 1 - - uid: 8031 + - uid: 7740 components: - type: Transform - pos: 20.5,-114.5 + pos: -17.5,-42.5 parent: 1 - - uid: 8032 + - uid: 7741 components: - type: Transform - pos: 2.5,-112.5 + pos: -17.5,-41.5 parent: 1 - - uid: 8037 + - uid: 7742 components: - type: Transform - pos: 1.5,-120.5 + pos: -17.5,-39.5 parent: 1 - - uid: 8038 + - uid: 7743 components: - type: Transform - pos: 1.5,-118.5 + pos: -17.5,-36.5 parent: 1 - - uid: 8039 + - uid: 7744 components: - type: Transform - pos: 1.5,-117.5 + pos: -17.5,-35.5 parent: 1 - - uid: 8041 + - uid: 7745 components: - type: Transform - pos: 1.5,-116.5 + pos: -18.5,-44.5 parent: 1 - - uid: 8042 + - uid: 7746 components: - type: Transform - pos: 1.5,-115.5 + pos: -18.5,-42.5 parent: 1 - - uid: 8044 + - uid: 7747 components: - type: Transform - pos: 1.5,-114.5 + pos: -19.5,-46.5 parent: 1 - - uid: 8045 + - uid: 7748 components: - type: Transform - pos: 1.5,-112.5 + pos: 8.5,-128.5 parent: 1 - - uid: 8047 + - uid: 7749 components: - type: Transform - pos: 0.5,-120.5 + pos: 9.5,-128.5 parent: 1 - - uid: 8049 + - uid: 7751 components: - type: Transform - pos: 0.5,-112.5 + pos: -19.5,-44.5 parent: 1 - - uid: 8050 + - uid: 7752 components: - type: Transform - pos: -0.5,-120.5 + pos: 10.5,-128.5 parent: 1 - - uid: 8052 + - uid: 7753 components: - type: Transform - pos: 19.5,-112.5 + pos: 11.5,-128.5 parent: 1 - - uid: 8053 + - uid: 7754 components: - type: Transform - pos: 19.5,-115.5 + pos: -19.5,-39.5 parent: 1 - - uid: 8058 + - uid: 7755 components: - type: Transform - pos: -0.5,-119.5 + pos: -18.5,-40.5 parent: 1 - - uid: 8059 + - uid: 7756 components: - type: Transform - pos: 18.5,-112.5 + pos: -18.5,-39.5 parent: 1 - - uid: 8060 + - uid: 7757 components: - type: Transform - pos: 17.5,-120.5 + pos: -18.5,-36.5 parent: 1 - - uid: 8061 + - uid: 7758 components: - type: Transform - pos: 17.5,-119.5 + pos: -19.5,-36.5 parent: 1 - - uid: 8062 + - uid: 7759 components: - type: Transform - pos: 17.5,-118.5 + pos: -20.5,-46.5 parent: 1 - - uid: 8063 + - uid: 7760 components: - type: Transform - pos: 17.5,-112.5 + pos: -20.5,-44.5 parent: 1 - - uid: 8064 + - uid: 7761 components: - type: Transform - pos: 16.5,-120.5 + pos: 12.5,-128.5 parent: 1 - - uid: 8065 + - uid: 7762 components: - type: Transform - pos: 16.5,-119.5 + pos: 13.5,-128.5 parent: 1 - - uid: 8066 + - uid: 7763 components: - type: Transform - pos: 16.5,-118.5 + pos: 14.5,-128.5 parent: 1 - - uid: 8067 + - uid: 7764 components: - type: Transform - pos: 16.5,-112.5 + pos: 15.5,-128.5 parent: 1 - - uid: 8068 + - uid: 7765 components: - type: Transform - pos: 15.5,-120.5 + pos: 16.5,-128.5 parent: 1 - - uid: 8070 + - uid: 7766 components: - type: Transform - pos: 15.5,-119.5 + pos: 17.5,-128.5 parent: 1 - - uid: 8071 + - uid: 7767 components: - type: Transform - pos: 15.5,-118.5 + pos: 18.5,-128.5 parent: 1 - - uid: 8072 + - uid: 7768 components: - type: Transform - pos: 15.5,-113.5 + pos: 19.5,-128.5 parent: 1 - - uid: 8073 + - uid: 7769 components: - type: Transform - pos: 15.5,-112.5 + pos: 20.5,-128.5 parent: 1 - - uid: 8074 + - uid: 7770 components: - type: Transform - pos: 14.5,-120.5 + pos: 21.5,-128.5 parent: 1 - - uid: 8075 + - uid: 7771 components: - type: Transform - pos: 14.5,-115.5 + pos: 22.5,-128.5 parent: 1 - - uid: 8076 + - uid: 7772 components: - type: Transform - pos: 13.5,-115.5 + pos: -20.5,-42.5 parent: 1 - - uid: 8077 + - uid: 7773 components: - type: Transform - pos: 13.5,-114.5 + pos: -20.5,-41.5 parent: 1 - - uid: 8079 + - uid: 7774 components: - type: Transform - pos: 13.5,-112.5 + pos: -20.5,-39.5 parent: 1 - - uid: 8080 + - uid: 7775 components: - type: Transform - pos: 12.5,-120.5 + pos: -20.5,-36.5 parent: 1 - - uid: 8081 + - uid: 7776 components: - type: Transform - pos: 11.5,-120.5 + pos: -20.5,-34.5 parent: 1 - - uid: 8082 + - uid: 7777 components: - type: Transform - pos: 11.5,-119.5 + pos: -20.5,-33.5 parent: 1 - - uid: 8083 + - uid: 7778 components: - type: Transform - pos: 11.5,-118.5 + pos: -20.5,-32.5 parent: 1 - - uid: 8084 + - uid: 7779 components: - type: Transform - pos: 11.5,-117.5 + pos: 22.5,-127.5 parent: 1 - - uid: 8085 + - uid: 7780 components: - type: Transform - pos: 11.5,-112.5 + pos: 21.5,-127.5 parent: 1 - - uid: 8086 + - uid: 7781 components: - type: Transform - pos: 10.5,-120.5 + pos: 20.5,-127.5 parent: 1 - - uid: 8094 + - uid: 7782 components: - type: Transform - pos: 10.5,-118.5 + pos: 19.5,-127.5 parent: 1 - - uid: 8095 + - uid: 7783 components: - type: Transform - pos: 10.5,-117.5 + pos: 18.5,-127.5 parent: 1 - - uid: 8097 + - uid: 7784 components: - type: Transform - pos: 9.5,-118.5 + pos: 17.5,-127.5 parent: 1 - - uid: 8098 + - uid: 7785 components: - type: Transform - pos: 9.5,-117.5 + pos: 16.5,-127.5 parent: 1 - - uid: 8099 + - uid: 7786 components: - type: Transform - pos: 9.5,-115.5 + pos: 15.5,-127.5 parent: 1 - - uid: 8100 + - uid: 7788 components: - type: Transform - pos: 9.5,-114.5 + pos: 14.5,-127.5 parent: 1 - - uid: 8101 + - uid: 7789 components: - type: Transform - pos: -0.5,-118.5 + pos: 21.5,-124.5 parent: 1 - - uid: 8102 + - uid: 7790 components: - type: Transform - pos: -0.5,-117.5 + pos: 21.5,-123.5 parent: 1 - - uid: 8103 + - uid: 7791 components: - type: Transform - pos: -0.5,-116.5 + pos: 21.5,-122.5 parent: 1 - - uid: 8104 + - uid: 7793 components: - type: Transform - pos: -0.5,-115.5 + pos: 20.5,-126.5 parent: 1 - - uid: 8105 + - uid: 7794 components: - type: Transform - pos: -0.5,-114.5 + pos: 20.5,-125.5 parent: 1 - - uid: 8106 + - uid: 7795 components: - type: Transform - pos: -0.5,-113.5 + pos: 20.5,-124.5 parent: 1 - - uid: 8107 + - uid: 7797 components: - type: Transform - pos: -0.5,-112.5 + pos: 20.5,-123.5 parent: 1 - - uid: 8108 + - uid: 7798 components: - type: Transform - pos: 20.5,-120.5 + pos: 20.5,-122.5 parent: 1 - - uid: 8109 + - uid: 7799 components: - type: Transform - pos: 20.5,-115.5 + pos: -20.5,-26.5 parent: 1 - - uid: 8110 + - uid: 7800 components: - type: Transform - pos: -1.5,-120.5 + pos: -20.5,-23.5 parent: 1 - - uid: 8112 + - uid: 7801 components: - type: Transform - pos: -1.5,-118.5 + pos: -20.5,-21.5 parent: 1 - - uid: 8113 + - uid: 7805 components: - type: Transform - pos: -1.5,-117.5 + pos: 22.5,-126.5 parent: 1 - - uid: 8114 + - uid: 7806 components: - type: Transform - pos: -1.5,-115.5 + pos: 22.5,-125.5 parent: 1 - - uid: 8115 + - uid: 7807 components: - type: Transform - pos: -1.5,-114.5 + pos: 22.5,-124.5 parent: 1 - - uid: 8116 + - uid: 7808 components: - type: Transform - pos: -1.5,-112.5 + pos: 22.5,-123.5 parent: 1 - - uid: 8117 + - uid: 7809 components: - type: Transform - pos: -2.5,-120.5 + pos: 22.5,-122.5 parent: 1 - - uid: 8118 + - uid: 7811 components: - type: Transform - pos: -2.5,-118.5 + pos: 21.5,-126.5 parent: 1 - - uid: 8119 + - uid: 7812 components: - type: Transform - pos: -2.5,-117.5 + pos: 21.5,-125.5 parent: 1 - - uid: 8120 + - uid: 7814 components: - type: Transform - pos: -2.5,-115.5 + pos: 19.5,-126.5 parent: 1 - - uid: 8121 + - uid: 7815 components: - type: Transform - pos: -2.5,-114.5 + pos: 19.5,-125.5 parent: 1 - - uid: 8122 + - uid: 7816 components: - type: Transform - pos: -2.5,-112.5 + pos: 19.5,-124.5 parent: 1 - - uid: 8123 + - uid: 7818 components: - type: Transform - pos: -3.5,-120.5 + pos: -19.5,-34.5 parent: 1 - - uid: 8124 + - uid: 7819 components: - type: Transform - pos: -3.5,-112.5 + pos: -19.5,-33.5 parent: 1 - - uid: 8125 + - uid: 7820 components: - type: Transform - pos: -4.5,-120.5 + pos: -19.5,-32.5 parent: 1 - - uid: 8126 + - uid: 7824 components: - type: Transform - pos: -4.5,-119.5 + pos: 19.5,-123.5 parent: 1 - - uid: 8127 + - uid: 7825 components: - type: Transform - pos: -4.5,-118.5 + pos: 19.5,-122.5 parent: 1 - - uid: 8128 + - uid: 7826 components: - type: Transform - pos: -4.5,-117.5 + pos: -19.5,-23.5 parent: 1 - - uid: 8129 + - uid: 7828 components: - type: Transform - pos: -4.5,-116.5 + pos: 18.5,-126.5 parent: 1 - - uid: 8130 + - uid: 7829 components: - type: Transform - pos: -4.5,-115.5 + pos: -19.5,-21.5 parent: 1 - - uid: 8226 + - uid: 7830 components: - type: Transform - pos: -4.5,-114.5 + pos: 18.5,-125.5 parent: 1 - - uid: 8227 + - uid: 7832 components: - type: Transform - pos: -4.5,-113.5 + pos: -18.5,-20.5 parent: 1 - - uid: 8228 + - uid: 7834 components: - type: Transform - pos: -4.5,-112.5 + pos: 17.5,-126.5 parent: 1 - - uid: 8229 + - uid: 7835 components: - type: Transform - pos: 19.5,-114.5 + pos: 17.5,-125.5 parent: 1 - - uid: 8230 + - uid: 7838 components: - type: Transform - pos: 17.5,-117.5 + pos: 17.5,-124.5 parent: 1 - - uid: 8231 + - uid: 7841 components: - type: Transform - pos: 16.5,-117.5 + pos: 17.5,-123.5 parent: 1 - - uid: 8232 + - uid: 7844 components: - type: Transform - pos: 15.5,-117.5 + pos: 16.5,-126.5 parent: 1 - - uid: 8233 + - uid: 7845 components: - type: Transform - pos: 14.5,-114.5 + pos: 18.5,-124.5 parent: 1 - - uid: 8234 + - uid: 7846 components: - type: Transform - pos: 12.5,-118.5 + pos: 18.5,-123.5 parent: 1 - - uid: 8235 + - uid: 7847 components: - type: Transform - pos: 11.5,-116.5 + pos: 16.5,-125.5 parent: 1 - - uid: 8236 + - uid: 7848 components: - type: Transform - pos: 10.5,-115.5 + pos: 16.5,-124.5 parent: 1 - - uid: 8237 + - uid: 7849 components: - type: Transform - pos: 9.5,-112.5 + pos: 16.5,-123.5 parent: 1 - - uid: 8238 + - uid: 7851 components: - type: Transform - pos: -5.5,-120.5 + pos: 15.5,-126.5 parent: 1 - - uid: 8239 + - uid: 7852 components: - type: Transform - pos: -5.5,-118.5 + pos: 15.5,-124.5 parent: 1 - - uid: 8240 + - uid: 7856 components: - type: Transform - pos: -5.5,-117.5 + pos: -18.5,-26.5 parent: 1 - - uid: 8241 + - uid: 7857 components: - type: Transform - pos: -5.5,-116.5 + pos: -18.5,-24.5 parent: 1 - - uid: 8242 + - uid: 7858 components: - type: Transform - pos: -5.5,-115.5 + pos: -18.5,-21.5 parent: 1 - - uid: 8243 + - uid: 7859 components: - type: Transform - pos: -5.5,-114.5 + pos: -17.5,-20.5 parent: 1 - - uid: 8244 + - uid: 7861 components: - type: Transform - pos: -5.5,-113.5 + pos: 14.5,-126.5 parent: 1 - - uid: 8245 + - uid: 7862 components: - type: Transform - pos: -5.5,-112.5 + pos: 14.5,-124.5 parent: 1 - - uid: 8246 + - uid: 7863 components: - type: Transform - pos: -6.5,-120.5 + pos: 14.5,-122.5 parent: 1 - - uid: 8247 + - uid: 7868 components: - type: Transform - pos: -6.5,-118.5 + pos: -17.5,-34.5 parent: 1 - - uid: 8248 + - uid: 7869 components: - type: Transform - pos: 7.5,-112.5 + pos: -17.5,-33.5 parent: 1 - - uid: 8249 + - uid: 7871 components: - type: Transform - pos: -6.5,-117.5 + pos: -17.5,-29.5 parent: 1 - - uid: 8250 + - uid: 7874 components: - type: Transform - pos: -6.5,-116.5 + pos: -17.5,-26.5 parent: 1 - - uid: 8251 + - uid: 7875 components: - type: Transform - pos: 17.5,-115.5 + pos: -17.5,-24.5 parent: 1 - - uid: 8252 + - uid: 7876 components: - type: Transform - pos: 16.5,-115.5 + pos: -17.5,-21.5 parent: 1 - - uid: 8253 + - uid: 7884 components: - type: Transform - pos: 15.5,-115.5 + pos: -16.5,-34.5 parent: 1 - - uid: 8254 + - uid: 7885 components: - type: Transform - pos: 13.5,-120.5 + pos: -16.5,-33.5 parent: 1 - - uid: 8255 + - uid: 7886 components: - type: Transform - pos: 13.5,-117.5 + pos: 46.5,-119.5 parent: 1 - - uid: 8256 + - uid: 7890 components: - type: Transform - pos: 11.5,-114.5 + pos: -16.5,-26.5 parent: 1 - - uid: 8257 + - uid: 7891 components: - type: Transform - pos: 10.5,-112.5 + pos: -16.5,-24.5 parent: 1 - - uid: 8258 + - uid: 7892 components: - type: Transform - pos: 8.5,-112.5 + pos: -16.5,-23.5 parent: 1 - - uid: 8259 + - uid: 7893 components: - type: Transform - pos: 17.5,-116.5 + pos: -16.5,-21.5 parent: 1 - - uid: 8260 + - uid: 7902 components: - type: Transform - pos: 16.5,-116.5 + pos: -15.5,-26.5 parent: 1 - - uid: 8261 + - uid: 7903 components: - type: Transform - pos: 15.5,-116.5 + pos: -15.5,-24.5 parent: 1 - - uid: 8262 + - uid: 7904 components: - type: Transform - pos: 14.5,-112.5 + pos: -15.5,-23.5 parent: 1 - - uid: 8263 + - uid: 7905 components: - type: Transform - pos: 12.5,-117.5 + pos: -15.5,-21.5 parent: 1 - - uid: 8264 + - uid: 7908 components: - type: Transform - pos: 11.5,-115.5 + pos: 47.5,-127.5 parent: 1 - - uid: 8265 + - uid: 7911 components: - type: Transform - pos: 10.5,-114.5 + pos: 46.5,-110.5 parent: 1 - - uid: 8266 + - uid: 7913 components: - type: Transform - pos: 8.5,-120.5 + pos: 46.5,-118.5 parent: 1 - - uid: 8267 + - uid: 7916 components: - type: Transform - pos: -6.5,-115.5 + pos: 47.5,-126.5 parent: 1 - - uid: 8268 + - uid: 7922 components: - type: Transform - pos: -6.5,-114.5 + pos: 46.5,-109.5 parent: 1 - - uid: 8269 + - uid: 7923 components: - type: Transform - pos: -6.5,-113.5 + pos: 46.5,-116.5 parent: 1 - - uid: 8270 + - uid: 7930 components: - type: Transform - pos: -6.5,-112.5 + pos: 46.5,-115.5 parent: 1 - - uid: 8271 + - uid: 7932 components: - type: Transform - pos: -7.5,-120.5 + pos: 46.5,-94.5 parent: 1 - - uid: 8272 + - uid: 7933 components: - type: Transform - pos: -7.5,-112.5 + pos: 46.5,-86.5 parent: 1 - - uid: 8273 + - uid: 7934 components: - type: Transform - pos: -8.5,-120.5 + pos: 46.5,-87.5 parent: 1 - - uid: 8274 + - uid: 7977 components: - type: Transform - pos: -8.5,-119.5 + pos: 15.5,-125.5 parent: 1 - - uid: 8275 + - uid: 7978 components: - type: Transform - pos: -8.5,-118.5 + pos: 15.5,-123.5 parent: 1 - - uid: 8276 + - uid: 7987 components: - type: Transform - pos: -8.5,-117.5 + pos: 14.5,-125.5 parent: 1 - - uid: 8277 + - uid: 7988 components: - type: Transform - pos: -8.5,-116.5 + pos: 14.5,-123.5 parent: 1 - - uid: 8278 + - uid: 7998 components: - type: Transform - pos: -8.5,-115.5 + pos: 4.5,-127.5 parent: 1 - - uid: 8279 + - uid: 8006 components: - type: Transform - pos: -8.5,-114.5 + pos: 2.5,-127.5 parent: 1 - - uid: 8280 + - uid: 8012 components: - type: Transform - pos: -8.5,-113.5 + pos: -1.5,-126.5 parent: 1 - - uid: 8281 + - uid: 8015 components: - type: Transform - pos: -8.5,-112.5 + pos: 0.5,-127.5 parent: 1 - - uid: 8282 + - uid: 8029 components: - type: Transform - pos: -9.5,-120.5 + pos: -3.5,-125.5 parent: 1 - - uid: 8283 + - uid: 8030 components: - type: Transform - pos: -9.5,-119.5 + pos: -3.5,-126.5 parent: 1 - - uid: 8284 + - uid: 8031 components: - type: Transform - pos: -9.5,-116.5 + pos: -3.5,-127.5 parent: 1 - - uid: 8285 + - uid: 8033 components: - type: Transform - pos: -9.5,-113.5 + pos: -5.5,-127.5 parent: 1 - - uid: 8286 + - uid: 8034 components: - type: Transform - pos: -9.5,-112.5 + pos: -5.5,-126.5 parent: 1 - - uid: 8287 + - uid: 8035 components: - type: Transform - pos: -10.5,-120.5 + pos: -5.5,-125.5 parent: 1 - - uid: 8288 + - uid: 8042 components: - type: Transform - pos: -10.5,-118.5 + pos: 46.5,-82.5 parent: 1 - - uid: 8289 + - uid: 8043 components: - type: Transform - pos: -10.5,-117.5 + pos: -7.5,-127.5 parent: 1 - - uid: 8290 + - uid: 8044 components: - type: Transform - pos: -10.5,-115.5 + pos: -7.5,-126.5 parent: 1 - - uid: 8291 + - uid: 8046 components: - type: Transform - pos: -10.5,-114.5 + pos: -7.5,-125.5 parent: 1 - - uid: 8292 + - uid: 8047 components: - type: Transform - pos: -10.5,-112.5 + pos: 46.5,-77.5 parent: 1 - - uid: 8293 + - uid: 8048 components: - type: Transform - pos: -11.5,-120.5 + pos: 46.5,-90.5 parent: 1 - - uid: 8294 + - uid: 8050 components: - type: Transform - pos: -11.5,-112.5 + pos: 46.5,-89.5 parent: 1 - - uid: 8295 + - uid: 8054 components: - type: Transform - pos: -12.5,-120.5 + pos: -8.5,-127.5 parent: 1 - - uid: 8296 + - uid: 8055 components: - type: Transform - pos: -12.5,-119.5 + pos: -8.5,-126.5 parent: 1 - - uid: 8297 + - uid: 8056 components: - type: Transform - pos: -12.5,-118.5 + pos: -8.5,-125.5 parent: 1 - - uid: 8298 + - uid: 8057 components: - type: Transform - pos: -12.5,-117.5 + pos: 46.5,-88.5 parent: 1 - - uid: 8299 + - uid: 8061 components: - type: Transform - pos: -12.5,-116.5 + pos: 46.5,-92.5 parent: 1 - - uid: 8300 + - uid: 8062 components: - type: Transform - pos: -12.5,-115.5 + pos: -10.5,-126.5 parent: 1 - - uid: 8301 + - uid: 8063 components: - type: Transform - pos: -12.5,-114.5 + pos: 46.5,-93.5 parent: 1 - - uid: 8302 + - uid: 8065 components: - type: Transform - pos: -12.5,-113.5 + pos: -11.5,-126.5 parent: 1 - - uid: 8303 + - uid: 8066 components: - type: Transform - pos: -12.5,-112.5 + pos: -12.5,-127.5 parent: 1 - - uid: 8304 + - uid: 8067 components: - type: Transform - pos: -13.5,-120.5 + pos: 46.5,-91.5 parent: 1 - - uid: 8305 + - uid: 8069 components: - type: Transform - pos: -13.5,-119.5 + pos: -12.5,-126.5 parent: 1 - - uid: 8306 + - uid: 8070 components: - type: Transform - pos: 23.5,35.5 + pos: -12.5,-125.5 parent: 1 - - uid: 8307 + - uid: 8077 components: - type: Transform - pos: -14.5,-120.5 + pos: -14.5,-127.5 parent: 1 - - uid: 8308 + - uid: 8078 components: - type: Transform - pos: -14.5,-118.5 + pos: -14.5,-126.5 parent: 1 - - uid: 8309 + - uid: 8082 components: - type: Transform - pos: -14.5,-117.5 + pos: -14.5,-125.5 parent: 1 - - uid: 8310 + - uid: 8083 components: - type: Transform - pos: -14.5,-116.5 + pos: -17.5,-127.5 parent: 1 - - uid: 8311 + - uid: 8084 components: - type: Transform - pos: -14.5,-115.5 + pos: -17.5,-126.5 parent: 1 - - uid: 8312 + - uid: 8087 components: - type: Transform - pos: -14.5,-114.5 + pos: -16.5,-127.5 parent: 1 - - uid: 8313 + - uid: 8088 components: - type: Transform - pos: -14.5,-113.5 + pos: -16.5,-126.5 parent: 1 - - uid: 8314 + - uid: 8089 components: - type: Transform - pos: 5.5,-119.5 + pos: -16.5,-125.5 parent: 1 - - uid: 8315 + - uid: 8093 components: - type: Transform - pos: -14.5,-112.5 + pos: -18.5,-125.5 parent: 1 - - uid: 8316 + - uid: 8096 components: - type: Transform - pos: -23.5,-29.5 + pos: -19.5,-127.5 parent: 1 - - uid: 8317 + - uid: 8097 components: - type: Transform - pos: -15.5,-118.5 + pos: -19.5,-126.5 parent: 1 - - uid: 8318 + - uid: 8098 components: - type: Transform - pos: -15.5,-117.5 + pos: -20.5,-125.5 parent: 1 - - uid: 8319 + - uid: 8102 components: - type: Transform - pos: -15.5,-116.5 + pos: -21.5,-127.5 parent: 1 - - uid: 8320 + - uid: 8103 components: - type: Transform - pos: -15.5,-115.5 + pos: -21.5,-126.5 parent: 1 - - uid: 8321 + - uid: 8106 components: - type: Transform - pos: -15.5,-114.5 + pos: 6.5,-126.5 parent: 1 - - uid: 8322 + - uid: 8109 components: - type: Transform - pos: -15.5,-113.5 + pos: 7.5,-125.5 parent: 1 - - uid: 8323 + - uid: 8111 components: - type: Transform - pos: -15.5,-112.5 + pos: 6.5,-125.5 parent: 1 - - uid: 8324 + - uid: 8112 components: - type: Transform - pos: -16.5,-120.5 + pos: 7.5,-126.5 parent: 1 - - uid: 8325 + - uid: 8113 components: - type: Transform - pos: -17.5,-120.5 + pos: 12.5,-127.5 parent: 1 - - uid: 8326 + - uid: 8114 components: - type: Transform - pos: -17.5,-118.5 + pos: 10.5,-127.5 parent: 1 - - uid: 8327 + - uid: 8115 components: - type: Transform - pos: -17.5,-116.5 + pos: 8.5,-127.5 parent: 1 - - uid: 8328 + - uid: 8118 components: - type: Transform - pos: -17.5,-114.5 + pos: 13.5,-126.5 parent: 1 - - uid: 8329 + - uid: 8121 components: - type: Transform - pos: -17.5,-112.5 + pos: 12.5,-126.5 parent: 1 - - uid: 8330 + - uid: 8130 components: - type: Transform - pos: -18.5,-112.5 + pos: 11.5,-126.5 parent: 1 - - uid: 8331 + - uid: 8135 components: - type: Transform - pos: -19.5,-118.5 + pos: 10.5,-126.5 parent: 1 - - uid: 8332 + - uid: 8137 components: - type: Transform - pos: -19.5,-116.5 + pos: 47.5,-125.5 parent: 1 - - uid: 8333 + - uid: 8140 components: - type: Transform - pos: -19.5,-114.5 + pos: 9.5,-126.5 parent: 1 - - uid: 8334 + - uid: 8141 components: - type: Transform - pos: -20.5,-120.5 + pos: 47.5,-124.5 parent: 1 - - uid: 8335 + - uid: 8143 components: - type: Transform - pos: -20.5,-118.5 + pos: 46.5,-81.5 parent: 1 - - uid: 8336 + - uid: 8144 components: - type: Transform - pos: -20.5,-117.5 + pos: 46.5,-106.5 parent: 1 - - uid: 8337 + - uid: 8145 components: - type: Transform - pos: -20.5,-116.5 + pos: 8.5,-126.5 parent: 1 - - uid: 8338 + - uid: 8146 components: - type: Transform - pos: -20.5,-115.5 + pos: 46.5,-104.5 parent: 1 - - uid: 8339 + - uid: 8151 components: - type: Transform - pos: -20.5,-114.5 + pos: 47.5,-120.5 parent: 1 - - uid: 8340 + - uid: 8154 components: - type: Transform - pos: -20.5,-112.5 + pos: 46.5,-98.5 parent: 1 - - uid: 8341 + - uid: 8161 components: - type: Transform - pos: -21.5,-120.5 + pos: 47.5,-107.5 parent: 1 - - uid: 8342 + - uid: 8176 components: - type: Transform - pos: -22.5,-119.5 + pos: 46.5,-108.5 parent: 1 - - uid: 8343 + - uid: 8184 components: - type: Transform - pos: -22.5,-118.5 + pos: 46.5,-83.5 parent: 1 - - uid: 8344 + - uid: 8185 components: - type: Transform - pos: -22.5,-117.5 + pos: 46.5,-84.5 parent: 1 - - uid: 8345 + - uid: 8193 components: - type: Transform - pos: -22.5,-116.5 + pos: 46.5,-102.5 parent: 1 - - uid: 8346 + - uid: 8196 components: - type: Transform - pos: -22.5,-115.5 + pos: 47.5,-113.5 parent: 1 - - uid: 8347 + - uid: 8198 components: - type: Transform - pos: -22.5,-114.5 + pos: 47.5,-112.5 parent: 1 - - uid: 8348 + - uid: 8200 components: - type: Transform - pos: -22.5,-113.5 + pos: 47.5,-111.5 parent: 1 - - uid: 8349 + - uid: 8202 components: - type: Transform - pos: -22.5,-112.5 + pos: 46.5,-99.5 parent: 1 - - uid: 8350 + - uid: 8253 components: - type: Transform - pos: -23.5,-120.5 + pos: 46.5,-105.5 parent: 1 - - uid: 8351 + - uid: 8254 components: - type: Transform - pos: -21.5,-112.5 + pos: 46.5,-85.5 parent: 1 - - uid: 8352 + - uid: 8255 components: - type: Transform - pos: -22.5,-120.5 + pos: 47.5,-117.5 parent: 1 - - uid: 8353 + - uid: 8256 components: - type: Transform - pos: -23.5,-119.5 + pos: 47.5,-119.5 parent: 1 - - uid: 8354 + - uid: 8259 components: - type: Transform - pos: -23.5,-113.5 + pos: 46.5,-101.5 parent: 1 - - uid: 8355 + - uid: 8266 components: - type: Transform - pos: -23.5,-112.5 + pos: 46.5,-95.5 parent: 1 - - uid: 8356 + - uid: 8273 components: - type: Transform - pos: -24.5,-120.5 + pos: 46.5,-80.5 parent: 1 - - uid: 8357 + - uid: 8274 components: - type: Transform - pos: -24.5,-118.5 + pos: 46.5,-96.5 parent: 1 - - uid: 8358 + - uid: 8277 components: - type: Transform - pos: -24.5,-117.5 + pos: 47.5,-118.5 parent: 1 - - uid: 8359 + - uid: 8282 components: - type: Transform - pos: -24.5,-116.5 + pos: 46.5,-100.5 parent: 1 - - uid: 8360 + - uid: 8283 components: - type: Transform - pos: -24.5,-115.5 + pos: 46.5,-79.5 parent: 1 - - uid: 8361 + - uid: 8286 components: - type: Transform - pos: -24.5,-114.5 + pos: 47.5,-116.5 parent: 1 - - uid: 8362 + - uid: 8288 components: - type: Transform - pos: -24.5,-112.5 + pos: 46.5,-97.5 parent: 1 - - uid: 8363 + - uid: 8306 components: - type: Transform - pos: -25.5,-120.5 + pos: 23.5,35.5 parent: 1 - - uid: 8364 + - uid: 8316 components: - type: Transform - pos: -25.5,-118.5 + pos: -23.5,-29.5 parent: 1 - - uid: 8365 + - uid: 8347 components: - type: Transform - pos: -25.5,-117.5 + pos: -23.5,-112.5 parent: 1 - - uid: 8366 + - uid: 8357 components: - type: Transform - pos: -25.5,-116.5 + pos: -23.5,-113.5 parent: 1 - - uid: 8367 + - uid: 8362 components: - type: Transform - pos: -25.5,-115.5 + pos: -24.5,-112.5 parent: 1 - - uid: 8368 + - uid: 8367 components: - type: Transform - pos: -25.5,-114.5 + pos: -23.5,-119.5 parent: 1 - uid: 8369 components: @@ -48568,22 +59049,7 @@ entities: - uid: 8393 components: - type: Transform - pos: -21.5,-16.5 - parent: 1 - - uid: 8394 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 1 - - uid: 8395 - components: - - type: Transform - pos: -21.5,2.5 - parent: 1 - - uid: 8396 - components: - - type: Transform - pos: -21.5,10.5 + pos: -24.5,-118.5 parent: 1 - uid: 8397 components: @@ -48645,55 +59111,35 @@ entities: - type: Transform pos: -22.5,-55.5 parent: 1 - - uid: 8409 - components: - - type: Transform - pos: -16.5,-112.5 - parent: 1 - uid: 8410 components: - type: Transform - pos: -17.5,-119.5 + pos: -24.5,-117.5 parent: 1 - uid: 8411 components: - type: Transform - pos: -17.5,-117.5 + pos: -24.5,-116.5 parent: 1 - uid: 8412 components: - type: Transform - pos: -17.5,-115.5 + pos: -24.5,-115.5 parent: 1 - uid: 8413 components: - type: Transform - pos: -17.5,-113.5 - parent: 1 - - uid: 8414 - components: - - type: Transform - pos: -18.5,-120.5 - parent: 1 - - uid: 8415 - components: - - type: Transform - pos: -19.5,-120.5 + pos: -24.5,-114.5 parent: 1 - uid: 8416 components: - type: Transform - pos: -19.5,-117.5 + pos: -25.5,-118.5 parent: 1 - uid: 8417 components: - type: Transform - pos: -19.5,-115.5 - parent: 1 - - uid: 8418 - components: - - type: Transform - pos: -19.5,-112.5 + pos: -25.5,-117.5 parent: 1 - uid: 8419 components: @@ -48713,102 +59159,67 @@ entities: - uid: 8422 components: - type: Transform - pos: -22.5,-50.5 + pos: -25.5,-116.5 parent: 1 - uid: 8423 components: - type: Transform - pos: -22.5,-49.5 + pos: -25.5,-115.5 parent: 1 - uid: 8424 components: - type: Transform - pos: -22.5,-48.5 - parent: 1 - - uid: 8425 - components: - - type: Transform - pos: -22.5,-46.5 + pos: -25.5,-114.5 parent: 1 - uid: 8426 components: - type: Transform pos: -22.5,-58.5 parent: 1 - - uid: 8427 - components: - - type: Transform - pos: -22.5,-47.5 - parent: 1 - - uid: 8428 - components: - - type: Transform - pos: -22.5,-45.5 - parent: 1 - - uid: 8429 - components: - - type: Transform - pos: -22.5,-44.5 - parent: 1 - - uid: 8430 - components: - - type: Transform - pos: -22.5,-43.5 - parent: 1 - - uid: 8431 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 1 - - uid: 8432 - components: - - type: Transform - pos: -22.5,-41.5 - parent: 1 - uid: 8433 components: - type: Transform - pos: -22.5,-40.5 + pos: -22.5,-50.5 parent: 1 - uid: 8434 components: - type: Transform - pos: -22.5,-39.5 + pos: -22.5,-49.5 parent: 1 - uid: 8435 components: - type: Transform - pos: -22.5,-38.5 + pos: -22.5,-48.5 parent: 1 - uid: 8436 components: - type: Transform - pos: -22.5,-37.5 + pos: -22.5,-46.5 parent: 1 - uid: 8437 components: - type: Transform - pos: -22.5,-36.5 + pos: -22.5,-47.5 parent: 1 - uid: 8438 components: - type: Transform - pos: -22.5,-35.5 + pos: -22.5,-45.5 parent: 1 - uid: 8439 components: - type: Transform - pos: -22.5,-34.5 + pos: -22.5,-44.5 parent: 1 - uid: 8440 components: - type: Transform - pos: -22.5,-33.5 + pos: -22.5,-43.5 parent: 1 - uid: 8441 components: - type: Transform - pos: -22.5,-32.5 + pos: -22.5,-42.5 parent: 1 - uid: 8442 components: @@ -48853,12 +59264,12 @@ entities: - uid: 8450 components: - type: Transform - pos: -22.5,-25.5 + pos: -22.5,-41.5 parent: 1 - uid: 8451 components: - type: Transform - pos: -22.5,-24.5 + pos: -22.5,-40.5 parent: 1 - uid: 8452 components: @@ -48878,7 +59289,7 @@ entities: - uid: 8455 components: - type: Transform - pos: -22.5,-20.5 + pos: -22.5,-19.5 parent: 1 - uid: 8456 components: @@ -48890,11 +59301,6 @@ entities: - type: Transform pos: -21.5,-56.5 parent: 1 - - uid: 8458 - components: - - type: Transform - pos: -22.5,-19.5 - parent: 1 - uid: 8459 components: - type: Transform @@ -48908,92 +59314,42 @@ entities: - uid: 8461 components: - type: Transform - pos: -21.5,-50.5 + pos: -22.5,-39.5 parent: 1 - uid: 8462 components: - type: Transform - pos: -21.5,-49.5 + pos: -22.5,-38.5 parent: 1 - uid: 8463 components: - type: Transform - pos: -21.5,-26.5 + pos: -22.5,-37.5 parent: 1 - uid: 8464 components: - type: Transform - pos: -21.5,-24.5 + pos: -22.5,-36.5 parent: 1 - uid: 8465 components: - type: Transform - pos: -21.5,-23.5 + pos: -22.5,-35.5 parent: 1 - uid: 8466 components: - type: Transform - pos: -21.5,-21.5 + pos: -22.5,-34.5 parent: 1 - uid: 8467 components: - type: Transform - pos: -21.5,-15.5 + pos: -22.5,-33.5 parent: 1 - uid: 8468 components: - type: Transform - pos: -21.5,-11.5 - parent: 1 - - uid: 8469 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 1 - - uid: 8470 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 1 - - uid: 8471 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 1 - - uid: 8472 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 1 - - uid: 8473 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1 - - uid: 8474 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 1 - - uid: 8475 - components: - - type: Transform - pos: -21.5,3.5 - parent: 1 - - uid: 8476 - components: - - type: Transform - pos: -21.5,4.5 - parent: 1 - - uid: 8477 - components: - - type: Transform - pos: -21.5,5.5 - parent: 1 - - uid: 8478 - components: - - type: Transform - pos: -21.5,6.5 + pos: -22.5,-32.5 parent: 1 - uid: 8479 components: @@ -49055,40 +59411,15 @@ entities: - type: Transform pos: -21.5,30.5 parent: 1 - - uid: 8491 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 1 - uid: 8492 components: - type: Transform - pos: -22.5,-17.5 + pos: -26.5,-78.5 parent: 1 - uid: 8493 components: - type: Transform - pos: -22.5,-16.5 - parent: 1 - - uid: 8494 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 1 - - uid: 8495 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 1 - - uid: 8496 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 1 - - uid: 8497 - components: - - type: Transform - pos: -22.5,-12.5 + pos: -34.5,-84.5 parent: 1 - uid: 8498 components: @@ -49100,150 +59431,20 @@ entities: - type: Transform pos: 23.5,20.5 parent: 1 - - uid: 8500 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 1 - - uid: 8501 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 1 - - uid: 8502 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 1 - - uid: 8503 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 1 - - uid: 8504 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 1 - - uid: 8505 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 1 - - uid: 8506 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 1 - - uid: 8507 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 1 - - uid: 8508 - components: - - type: Transform - pos: -22.5,-3.5 - parent: 1 - - uid: 8509 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 1 - - uid: 8510 - components: - - type: Transform - pos: -22.5,-1.5 - parent: 1 - - uid: 8511 - components: - - type: Transform - pos: -22.5,-0.5 - parent: 1 - - uid: 8512 - components: - - type: Transform - pos: -22.5,0.5 - parent: 1 - - uid: 8513 - components: - - type: Transform - pos: -22.5,1.5 - parent: 1 - - uid: 8514 - components: - - type: Transform - pos: -22.5,2.5 - parent: 1 - - uid: 8515 - components: - - type: Transform - pos: -22.5,3.5 - parent: 1 - - uid: 8516 - components: - - type: Transform - pos: -22.5,4.5 - parent: 1 - - uid: 8517 - components: - - type: Transform - pos: -22.5,6.5 - parent: 1 - - uid: 8518 - components: - - type: Transform - pos: -22.5,7.5 - parent: 1 - - uid: 8519 - components: - - type: Transform - pos: -22.5,8.5 - parent: 1 - - uid: 8520 - components: - - type: Transform - pos: -22.5,9.5 - parent: 1 - - uid: 8521 - components: - - type: Transform - pos: -22.5,10.5 - parent: 1 - - uid: 8522 - components: - - type: Transform - pos: -22.5,11.5 - parent: 1 - - uid: 8523 - components: - - type: Transform - pos: -21.5,-55.5 - parent: 1 - - uid: 8524 - components: - - type: Transform - pos: -21.5,-44.5 - parent: 1 - - uid: 8525 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 1 - - uid: 8526 + - uid: 8522 components: - type: Transform - pos: -21.5,-8.5 + pos: -22.5,11.5 parent: 1 - - uid: 8527 + - uid: 8523 components: - type: Transform - pos: -21.5,-0.5 + pos: -21.5,-55.5 parent: 1 - - uid: 8528 + - uid: 8525 components: - type: Transform - pos: -21.5,7.5 + pos: -21.5,-50.5 parent: 1 - uid: 8529 components: @@ -49275,11 +59476,6 @@ entities: - type: Transform pos: -22.5,14.5 parent: 1 - - uid: 8535 - components: - - type: Transform - pos: -22.5,5.5 - parent: 1 - uid: 8536 components: - type: Transform @@ -49328,27 +59524,7 @@ entities: - uid: 8545 components: - type: Transform - pos: -21.5,-36.5 - parent: 1 - - uid: 8546 - components: - - type: Transform - pos: -21.5,-17.5 - parent: 1 - - uid: 8629 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 1 - - uid: 8630 - components: - - type: Transform - pos: -21.5,1.5 - parent: 1 - - uid: 8634 - components: - - type: Transform - pos: -21.5,9.5 + pos: -21.5,-49.5 parent: 1 - uid: 8635 components: @@ -49368,27 +59544,12 @@ entities: - uid: 8646 components: - type: Transform - pos: -21.5,-39.5 + pos: -21.5,-24.5 parent: 1 - uid: 8647 components: - type: Transform - pos: -21.5,-19.5 - parent: 1 - - uid: 8648 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 1 - - uid: 8649 - components: - - type: Transform - pos: -21.5,0.5 - parent: 1 - - uid: 8650 - components: - - type: Transform - pos: -21.5,8.5 + pos: -21.5,-23.5 parent: 1 - uid: 8651 components: @@ -49510,6 +59671,11 @@ entities: - type: Transform pos: 23.5,-19.5 parent: 1 + - uid: 8766 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 1 - uid: 8767 components: - type: Transform @@ -49665,6 +59831,50 @@ entities: - type: Transform pos: -23.5,-30.5 parent: 1 + - uid: 8826 + components: + - type: Transform + pos: -36.5,-88.5 + parent: 1 + - uid: 8827 + components: + - type: Transform + pos: -36.5,-89.5 + parent: 1 + - uid: 8828 + components: + - type: Transform + pos: -35.5,-89.5 + parent: 1 + - uid: 8871 + components: + - type: Transform + pos: -34.5,-89.5 + parent: 1 + - uid: 8881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-84.5 + parent: 1 + - uid: 8885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-84.5 + parent: 1 + - uid: 8888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-84.5 + parent: 1 + - uid: 8890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-84.5 + parent: 1 - uid: 8983 components: - type: Transform @@ -49715,25 +59925,20 @@ entities: - type: Transform pos: -40.5,15.5 parent: 1 - - uid: 8994 - components: - - type: Transform - pos: -40.5,16.5 - parent: 1 - - uid: 8996 + - uid: 8993 components: - type: Transform - pos: -36.5,-76.5 + pos: -21.5,-44.5 parent: 1 - - uid: 8997 + - uid: 8994 components: - type: Transform - pos: -36.5,-75.5 + pos: -40.5,16.5 parent: 1 - - uid: 8998 + - uid: 8999 components: - type: Transform - pos: -36.5,-77.5 + pos: -21.5,-36.5 parent: 1 - uid: 9000 components: @@ -49780,16 +59985,6 @@ entities: - type: Transform pos: 24.5,-43.5 parent: 1 - - uid: 9009 - components: - - type: Transform - pos: -36.5,-88.5 - parent: 1 - - uid: 9010 - components: - - type: Transform - pos: -36.5,-89.5 - parent: 1 - uid: 9011 components: - type: Transform @@ -49850,21 +60045,11 @@ entities: - type: Transform pos: -40.5,31.5 parent: 1 - - uid: 9023 - components: - - type: Transform - pos: -35.5,-89.5 - parent: 1 - uid: 9024 components: - type: Transform pos: -40.5,32.5 parent: 1 - - uid: 9025 - components: - - type: Transform - pos: -34.5,-89.5 - parent: 1 - uid: 9026 components: - type: Transform @@ -49895,11 +60080,6 @@ entities: - type: Transform pos: -40.5,38.5 parent: 1 - - uid: 9034 - components: - - type: Transform - pos: -29.5,-88.5 - parent: 1 - uid: 9066 components: - type: Transform @@ -50140,11589 +60320,12144 @@ entities: - type: Transform pos: -36.5,-8.5 parent: 1 - - uid: 9114 + - uid: 9143 components: - type: Transform - pos: -36.5,-9.5 + pos: -35.5,-74.5 parent: 1 - - uid: 9115 + - uid: 9166 components: - type: Transform - pos: -36.5,-10.5 + pos: -33.5,-74.5 parent: 1 - - uid: 9116 + - uid: 9169 components: - type: Transform - pos: -36.5,-11.5 + pos: -32.5,-74.5 parent: 1 - - uid: 9117 + - uid: 9170 components: - type: Transform - pos: -36.5,-12.5 + pos: -31.5,-74.5 parent: 1 - - uid: 9118 + - uid: 9171 components: - type: Transform - pos: -36.5,-13.5 + pos: -29.5,-74.5 parent: 1 - - uid: 9119 + - uid: 9172 components: - type: Transform - pos: -36.5,-14.5 + pos: -36.5,-90.5 parent: 1 - - uid: 9120 + - uid: 9173 components: - type: Transform - pos: -36.5,-15.5 + pos: -36.5,-91.5 parent: 1 - - uid: 9121 + - uid: 9174 components: - type: Transform - pos: -36.5,-16.5 + pos: -36.5,-92.5 parent: 1 - - uid: 9122 + - uid: 9175 components: - type: Transform - pos: -36.5,-17.5 + pos: -36.5,-122.5 parent: 1 - - uid: 9123 + - uid: 9176 components: - type: Transform - pos: -36.5,-18.5 + pos: -35.5,-90.5 parent: 1 - - uid: 9124 + - uid: 9177 components: - type: Transform - pos: -36.5,-19.5 + pos: -35.5,-91.5 parent: 1 - - uid: 9125 + - uid: 9178 + components: + - type: Transform + pos: -35.5,-92.5 + parent: 1 + - uid: 9179 + components: + - type: Transform + pos: -35.5,-122.5 + parent: 1 + - uid: 9180 + components: + - type: Transform + pos: -35.5,38.5 + parent: 1 + - uid: 9181 + components: + - type: Transform + pos: -35.5,37.5 + parent: 1 + - uid: 9182 + components: + - type: Transform + pos: -35.5,36.5 + parent: 1 + - uid: 9183 + components: + - type: Transform + pos: -35.5,35.5 + parent: 1 + - uid: 9184 + components: + - type: Transform + pos: -35.5,34.5 + parent: 1 + - uid: 9185 + components: + - type: Transform + pos: -35.5,33.5 + parent: 1 + - uid: 9186 + components: + - type: Transform + pos: -35.5,32.5 + parent: 1 + - uid: 9187 + components: + - type: Transform + pos: -35.5,31.5 + parent: 1 + - uid: 9188 + components: + - type: Transform + pos: -35.5,30.5 + parent: 1 + - uid: 9189 + components: + - type: Transform + pos: -35.5,29.5 + parent: 1 + - uid: 9190 + components: + - type: Transform + pos: -35.5,28.5 + parent: 1 + - uid: 9191 + components: + - type: Transform + pos: -35.5,27.5 + parent: 1 + - uid: 9192 + components: + - type: Transform + pos: -35.5,26.5 + parent: 1 + - uid: 9193 + components: + - type: Transform + pos: -35.5,25.5 + parent: 1 + - uid: 9194 + components: + - type: Transform + pos: -35.5,24.5 + parent: 1 + - uid: 9195 + components: + - type: Transform + pos: -35.5,23.5 + parent: 1 + - uid: 9196 + components: + - type: Transform + pos: -35.5,22.5 + parent: 1 + - uid: 9197 + components: + - type: Transform + pos: -35.5,21.5 + parent: 1 + - uid: 9198 + components: + - type: Transform + pos: -35.5,20.5 + parent: 1 + - uid: 9199 + components: + - type: Transform + pos: -35.5,19.5 + parent: 1 + - uid: 9200 + components: + - type: Transform + pos: -35.5,18.5 + parent: 1 + - uid: 9201 + components: + - type: Transform + pos: -35.5,17.5 + parent: 1 + - uid: 9202 + components: + - type: Transform + pos: -35.5,16.5 + parent: 1 + - uid: 9203 + components: + - type: Transform + pos: -35.5,15.5 + parent: 1 + - uid: 9204 + components: + - type: Transform + pos: -35.5,14.5 + parent: 1 + - uid: 9205 + components: + - type: Transform + pos: -35.5,13.5 + parent: 1 + - uid: 9206 + components: + - type: Transform + pos: -35.5,12.5 + parent: 1 + - uid: 9207 + components: + - type: Transform + pos: -35.5,11.5 + parent: 1 + - uid: 9208 + components: + - type: Transform + pos: -35.5,10.5 + parent: 1 + - uid: 9209 + components: + - type: Transform + pos: -35.5,9.5 + parent: 1 + - uid: 9210 + components: + - type: Transform + pos: -35.5,8.5 + parent: 1 + - uid: 9211 + components: + - type: Transform + pos: -35.5,7.5 + parent: 1 + - uid: 9212 + components: + - type: Transform + pos: -35.5,6.5 + parent: 1 + - uid: 9213 + components: + - type: Transform + pos: -35.5,5.5 + parent: 1 + - uid: 9214 + components: + - type: Transform + pos: -35.5,4.5 + parent: 1 + - uid: 9215 + components: + - type: Transform + pos: -35.5,3.5 + parent: 1 + - uid: 9216 + components: + - type: Transform + pos: -35.5,2.5 + parent: 1 + - uid: 9217 + components: + - type: Transform + pos: -35.5,1.5 + parent: 1 + - uid: 9218 + components: + - type: Transform + pos: -35.5,0.5 + parent: 1 + - uid: 9219 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 1 + - uid: 9220 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 1 + - uid: 9221 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 1 + - uid: 9222 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 1 + - uid: 9223 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 1 + - uid: 9224 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 1 + - uid: 9225 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 1 + - uid: 9226 + components: + - type: Transform + pos: -35.5,-123.5 + parent: 1 + - uid: 9227 + components: + - type: Transform + pos: -34.5,-90.5 + parent: 1 + - uid: 9228 + components: + - type: Transform + pos: -34.5,-91.5 + parent: 1 + - uid: 9229 + components: + - type: Transform + pos: -34.5,-92.5 + parent: 1 + - uid: 9230 + components: + - type: Transform + pos: -34.5,-93.5 + parent: 1 + - uid: 9231 + components: + - type: Transform + pos: -34.5,-94.5 + parent: 1 + - uid: 9232 + components: + - type: Transform + pos: -34.5,-95.5 + parent: 1 + - uid: 9233 + components: + - type: Transform + pos: -34.5,-96.5 + parent: 1 + - uid: 9234 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 1 + - uid: 9235 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 1 + - uid: 9236 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 1 + - uid: 9237 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 1 + - uid: 9238 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 1 + - uid: 9239 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 1 + - uid: 9240 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 1 + - uid: 9241 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 1 + - uid: 9242 components: - type: Transform - pos: -36.5,-20.5 + pos: -35.5,-23.5 parent: 1 - - uid: 9126 + - uid: 9243 components: - type: Transform - pos: -36.5,-21.5 + pos: -35.5,-24.5 parent: 1 - - uid: 9127 + - uid: 9244 components: - type: Transform - pos: -36.5,-22.5 + pos: -35.5,-25.5 parent: 1 - - uid: 9128 + - uid: 9245 components: - type: Transform - pos: -36.5,-23.5 + pos: -35.5,-26.5 parent: 1 - - uid: 9129 + - uid: 9246 components: - type: Transform - pos: -36.5,-24.5 + pos: -35.5,-27.5 parent: 1 - - uid: 9130 + - uid: 9247 components: - type: Transform - pos: -36.5,-25.5 + pos: -35.5,-28.5 parent: 1 - - uid: 9131 + - uid: 9248 components: - type: Transform - pos: -36.5,-26.5 + pos: -35.5,-29.5 parent: 1 - - uid: 9132 + - uid: 9249 components: - type: Transform - pos: -36.5,-27.5 + pos: -35.5,-30.5 parent: 1 - - uid: 9133 + - uid: 9250 components: - type: Transform - pos: -36.5,-28.5 + pos: -35.5,-31.5 parent: 1 - - uid: 9134 + - uid: 9251 components: - type: Transform - pos: -36.5,-29.5 + pos: -35.5,-32.5 parent: 1 - - uid: 9135 + - uid: 9252 components: - type: Transform - pos: -36.5,-30.5 + pos: -35.5,-33.5 parent: 1 - - uid: 9136 + - uid: 9253 components: - type: Transform - pos: -36.5,-31.5 + pos: -35.5,-34.5 parent: 1 - - uid: 9137 + - uid: 9254 components: - type: Transform - pos: -36.5,-32.5 + pos: -35.5,-35.5 parent: 1 - - uid: 9138 + - uid: 9255 components: - type: Transform - pos: -36.5,-33.5 + pos: -35.5,-36.5 parent: 1 - - uid: 9139 + - uid: 9256 components: - type: Transform - pos: -36.5,-34.5 + pos: -35.5,-37.5 parent: 1 - - uid: 9140 + - uid: 9257 components: - type: Transform - pos: -36.5,-35.5 + pos: -35.5,-38.5 parent: 1 - - uid: 9141 + - uid: 9258 components: - type: Transform - pos: -36.5,-36.5 + pos: -35.5,-39.5 parent: 1 - - uid: 9142 + - uid: 9259 components: - type: Transform - pos: -36.5,-37.5 + pos: -35.5,-40.5 parent: 1 - - uid: 9143 + - uid: 9260 components: - type: Transform - pos: -36.5,-38.5 + pos: -35.5,-41.5 parent: 1 - - uid: 9144 + - uid: 9261 components: - type: Transform - pos: -36.5,-39.5 + pos: -35.5,-42.5 parent: 1 - - uid: 9145 + - uid: 9262 components: - type: Transform - pos: -36.5,-40.5 + pos: -35.5,-43.5 parent: 1 - - uid: 9146 + - uid: 9263 components: - type: Transform - pos: -36.5,-41.5 + pos: -35.5,-44.5 parent: 1 - - uid: 9147 + - uid: 9264 components: - type: Transform - pos: -36.5,-42.5 + pos: -35.5,-45.5 parent: 1 - - uid: 9148 + - uid: 9265 components: - type: Transform - pos: -36.5,-43.5 + pos: -35.5,-46.5 parent: 1 - - uid: 9149 + - uid: 9266 components: - type: Transform - pos: -36.5,-44.5 + pos: -35.5,-47.5 parent: 1 - - uid: 9150 + - uid: 9267 components: - type: Transform - pos: -36.5,-45.5 + pos: -35.5,-48.5 parent: 1 - - uid: 9151 + - uid: 9268 components: - type: Transform - pos: -36.5,-46.5 + pos: -35.5,-49.5 parent: 1 - - uid: 9152 + - uid: 9269 components: - type: Transform - pos: -36.5,-47.5 + pos: -35.5,-50.5 parent: 1 - - uid: 9153 + - uid: 9270 components: - type: Transform - pos: -36.5,-48.5 + pos: -35.5,-51.5 parent: 1 - - uid: 9154 + - uid: 9271 components: - type: Transform - pos: -36.5,-49.5 + pos: -35.5,-52.5 parent: 1 - - uid: 9155 + - uid: 9272 components: - type: Transform - pos: -36.5,-50.5 + pos: -35.5,-53.5 parent: 1 - - uid: 9156 + - uid: 9273 components: - type: Transform - pos: -36.5,-51.5 + pos: -35.5,-54.5 parent: 1 - - uid: 9157 + - uid: 9274 components: - type: Transform - pos: -36.5,-52.5 + pos: -35.5,-55.5 parent: 1 - - uid: 9158 + - uid: 9275 components: - type: Transform - pos: -36.5,-53.5 + pos: -35.5,-56.5 parent: 1 - - uid: 9159 + - uid: 9276 components: - type: Transform - pos: -36.5,-54.5 + pos: -35.5,-57.5 parent: 1 - - uid: 9160 + - uid: 9277 components: - type: Transform - pos: -36.5,-55.5 + pos: -35.5,-58.5 parent: 1 - - uid: 9161 + - uid: 9278 components: - type: Transform - pos: -36.5,-56.5 + pos: -35.5,-59.5 parent: 1 - - uid: 9162 + - uid: 9279 components: - type: Transform - pos: -36.5,-57.5 + pos: -35.5,-60.5 parent: 1 - - uid: 9163 + - uid: 9280 components: - type: Transform - pos: -36.5,-58.5 + pos: -35.5,-61.5 parent: 1 - - uid: 9164 + - uid: 9281 components: - type: Transform - pos: -36.5,-59.5 + pos: -35.5,-62.5 parent: 1 - - uid: 9165 + - uid: 9282 components: - type: Transform - pos: -36.5,-60.5 + pos: -35.5,-63.5 parent: 1 - - uid: 9166 + - uid: 9283 components: - type: Transform - pos: -36.5,-61.5 + pos: -35.5,-64.5 parent: 1 - - uid: 9167 + - uid: 9284 components: - type: Transform - pos: -36.5,-62.5 + pos: -35.5,-65.5 parent: 1 - - uid: 9168 + - uid: 9285 components: - type: Transform - pos: -36.5,-63.5 + pos: -35.5,-66.5 parent: 1 - - uid: 9169 + - uid: 9286 components: - type: Transform - pos: -36.5,-64.5 + pos: -35.5,-67.5 parent: 1 - - uid: 9170 + - uid: 9287 components: - type: Transform - pos: -36.5,-65.5 + pos: -35.5,-68.5 parent: 1 - - uid: 9171 + - uid: 9288 components: - type: Transform - pos: -36.5,-66.5 + pos: -35.5,-69.5 parent: 1 - - uid: 9172 + - uid: 9289 components: - type: Transform - pos: -36.5,-67.5 + pos: -35.5,-70.5 parent: 1 - - uid: 9173 + - uid: 9290 components: - type: Transform - pos: -36.5,-68.5 + pos: -35.5,-71.5 parent: 1 - - uid: 9174 + - uid: 9291 components: - type: Transform - pos: -36.5,-69.5 + pos: -35.5,-72.5 parent: 1 - - uid: 9175 + - uid: 9292 components: - type: Transform - pos: -36.5,-70.5 + pos: -35.5,-73.5 parent: 1 - - uid: 9176 + - uid: 9293 components: - type: Transform - pos: -36.5,-71.5 + pos: -34.5,-97.5 parent: 1 - - uid: 9177 + - uid: 9294 components: - type: Transform - pos: -36.5,-72.5 + pos: -34.5,38.5 parent: 1 - - uid: 9178 + - uid: 9295 components: - type: Transform - pos: -36.5,-73.5 + pos: -34.5,37.5 parent: 1 - - uid: 9179 + - uid: 9296 components: - type: Transform - pos: -36.5,-74.5 + pos: -34.5,36.5 parent: 1 - - uid: 9180 + - uid: 9297 components: - type: Transform - pos: -35.5,38.5 + pos: -34.5,35.5 parent: 1 - - uid: 9181 + - uid: 9298 components: - type: Transform - pos: -35.5,37.5 + pos: -34.5,34.5 parent: 1 - - uid: 9182 + - uid: 9299 components: - type: Transform - pos: -35.5,36.5 + pos: -34.5,33.5 parent: 1 - - uid: 9183 + - uid: 9300 components: - type: Transform - pos: -35.5,35.5 + pos: -34.5,32.5 parent: 1 - - uid: 9184 + - uid: 9301 components: - type: Transform - pos: -35.5,34.5 + pos: -34.5,31.5 parent: 1 - - uid: 9185 + - uid: 9302 components: - type: Transform - pos: -35.5,33.5 + pos: -34.5,30.5 parent: 1 - - uid: 9186 + - uid: 9303 components: - type: Transform - pos: -35.5,32.5 + pos: -34.5,29.5 parent: 1 - - uid: 9187 + - uid: 9304 components: - type: Transform - pos: -35.5,31.5 + pos: -34.5,28.5 parent: 1 - - uid: 9188 + - uid: 9305 components: - type: Transform - pos: -35.5,30.5 + pos: -34.5,27.5 parent: 1 - - uid: 9189 + - uid: 9306 components: - type: Transform - pos: -35.5,29.5 + pos: -34.5,26.5 parent: 1 - - uid: 9190 + - uid: 9307 components: - type: Transform - pos: -35.5,28.5 + pos: -34.5,25.5 parent: 1 - - uid: 9191 + - uid: 9308 components: - type: Transform - pos: -35.5,27.5 + pos: -34.5,24.5 parent: 1 - - uid: 9192 + - uid: 9309 components: - type: Transform - pos: -35.5,26.5 + pos: -34.5,23.5 parent: 1 - - uid: 9193 + - uid: 9310 components: - type: Transform - pos: -35.5,25.5 + pos: -34.5,22.5 parent: 1 - - uid: 9194 + - uid: 9311 components: - type: Transform - pos: -35.5,24.5 + pos: -34.5,21.5 parent: 1 - - uid: 9195 + - uid: 9312 components: - type: Transform - pos: -35.5,23.5 + pos: -34.5,20.5 parent: 1 - - uid: 9196 + - uid: 9313 components: - type: Transform - pos: -35.5,22.5 + pos: -34.5,19.5 parent: 1 - - uid: 9197 + - uid: 9314 components: - type: Transform - pos: -35.5,21.5 + pos: -34.5,18.5 parent: 1 - - uid: 9198 + - uid: 9315 components: - type: Transform - pos: -35.5,20.5 + pos: -34.5,17.5 parent: 1 - - uid: 9199 + - uid: 9316 components: - type: Transform - pos: -35.5,19.5 + pos: -34.5,16.5 parent: 1 - - uid: 9200 + - uid: 9317 components: - type: Transform - pos: -35.5,18.5 + pos: -34.5,15.5 parent: 1 - - uid: 9201 + - uid: 9318 components: - type: Transform - pos: -35.5,17.5 + pos: -34.5,14.5 parent: 1 - - uid: 9202 + - uid: 9319 components: - type: Transform - pos: -35.5,16.5 + pos: -34.5,13.5 parent: 1 - - uid: 9203 + - uid: 9320 components: - type: Transform - pos: -35.5,15.5 + pos: -34.5,12.5 parent: 1 - - uid: 9204 + - uid: 9321 components: - type: Transform - pos: -35.5,14.5 + pos: -34.5,11.5 parent: 1 - - uid: 9205 + - uid: 9322 components: - type: Transform - pos: -35.5,13.5 + pos: -34.5,10.5 parent: 1 - - uid: 9206 + - uid: 9323 components: - type: Transform - pos: -35.5,12.5 + pos: -34.5,9.5 parent: 1 - - uid: 9207 + - uid: 9324 components: - type: Transform - pos: -35.5,11.5 + pos: -34.5,8.5 parent: 1 - - uid: 9208 + - uid: 9325 components: - type: Transform - pos: -35.5,10.5 + pos: -34.5,7.5 parent: 1 - - uid: 9209 + - uid: 9326 components: - type: Transform - pos: -35.5,9.5 + pos: -34.5,6.5 parent: 1 - - uid: 9210 + - uid: 9327 components: - type: Transform - pos: -35.5,8.5 + pos: -34.5,5.5 parent: 1 - - uid: 9211 + - uid: 9328 components: - type: Transform - pos: -35.5,7.5 + pos: -34.5,4.5 parent: 1 - - uid: 9212 + - uid: 9329 components: - type: Transform - pos: -35.5,6.5 + pos: -34.5,3.5 parent: 1 - - uid: 9213 + - uid: 9330 components: - type: Transform - pos: -35.5,5.5 + pos: -34.5,2.5 parent: 1 - - uid: 9214 + - uid: 9331 components: - type: Transform - pos: -35.5,4.5 + pos: -34.5,1.5 parent: 1 - - uid: 9215 + - uid: 9332 components: - type: Transform - pos: -35.5,3.5 + pos: -34.5,0.5 parent: 1 - - uid: 9216 + - uid: 9333 components: - type: Transform - pos: -35.5,2.5 + pos: -34.5,-0.5 parent: 1 - - uid: 9217 + - uid: 9334 components: - type: Transform - pos: -35.5,1.5 + pos: -34.5,-1.5 parent: 1 - - uid: 9218 + - uid: 9335 components: - type: Transform - pos: -35.5,0.5 + pos: -34.5,-2.5 parent: 1 - - uid: 9219 + - uid: 9336 components: - type: Transform - pos: -35.5,-0.5 + pos: -34.5,-3.5 parent: 1 - - uid: 9220 + - uid: 9337 components: - type: Transform - pos: -35.5,-1.5 + pos: -34.5,-4.5 parent: 1 - - uid: 9221 + - uid: 9338 components: - type: Transform - pos: -35.5,-2.5 + pos: -34.5,-98.5 parent: 1 - - uid: 9222 + - uid: 9339 components: - type: Transform - pos: -35.5,-3.5 + pos: -34.5,-99.5 parent: 1 - - uid: 9223 + - uid: 9340 components: - type: Transform - pos: -35.5,-4.5 + pos: -34.5,-100.5 parent: 1 - - uid: 9224 + - uid: 9341 components: - type: Transform - pos: -35.5,-5.5 + pos: -34.5,-122.5 parent: 1 - - uid: 9225 + - uid: 9342 components: - type: Transform - pos: -35.5,-6.5 + pos: -34.5,-123.5 parent: 1 - - uid: 9226 + - uid: 9343 components: - type: Transform - pos: -35.5,-7.5 + pos: -33.5,-90.5 parent: 1 - - uid: 9227 + - uid: 9344 components: - type: Transform - pos: -35.5,-8.5 + pos: -33.5,-91.5 parent: 1 - - uid: 9228 + - uid: 9345 components: - type: Transform - pos: -35.5,-9.5 + pos: -33.5,-92.5 parent: 1 - - uid: 9229 + - uid: 9346 components: - type: Transform - pos: -35.5,-10.5 + pos: -33.5,-93.5 parent: 1 - - uid: 9230 + - uid: 9347 components: - type: Transform - pos: -35.5,-11.5 + pos: -33.5,-94.5 parent: 1 - - uid: 9231 + - uid: 9348 components: - type: Transform - pos: -35.5,-12.5 + pos: -33.5,-95.5 parent: 1 - - uid: 9232 + - uid: 9349 components: - type: Transform - pos: -35.5,-13.5 + pos: -34.5,-16.5 parent: 1 - - uid: 9233 + - uid: 9350 components: - type: Transform - pos: -35.5,-14.5 + pos: -34.5,-17.5 parent: 1 - - uid: 9234 + - uid: 9351 components: - type: Transform - pos: -35.5,-15.5 + pos: -34.5,-18.5 parent: 1 - - uid: 9235 + - uid: 9352 components: - type: Transform - pos: -35.5,-16.5 + pos: -34.5,-19.5 parent: 1 - - uid: 9236 + - uid: 9353 components: - type: Transform - pos: -35.5,-17.5 + pos: -34.5,-20.5 parent: 1 - - uid: 9237 + - uid: 9354 components: - type: Transform - pos: -35.5,-18.5 + pos: -34.5,-21.5 parent: 1 - - uid: 9238 + - uid: 9355 components: - type: Transform - pos: -35.5,-19.5 + pos: -34.5,-22.5 parent: 1 - - uid: 9239 + - uid: 9356 components: - type: Transform - pos: -35.5,-20.5 + pos: -34.5,-23.5 parent: 1 - - uid: 9240 + - uid: 9357 components: - type: Transform - pos: -35.5,-21.5 + pos: -34.5,-24.5 parent: 1 - - uid: 9241 + - uid: 9358 components: - type: Transform - pos: -35.5,-22.5 + pos: -34.5,-25.5 parent: 1 - - uid: 9242 + - uid: 9359 components: - type: Transform - pos: -35.5,-23.5 + pos: -34.5,-26.5 parent: 1 - - uid: 9243 + - uid: 9360 components: - type: Transform - pos: -35.5,-24.5 + pos: -34.5,-27.5 parent: 1 - - uid: 9244 + - uid: 9361 components: - type: Transform - pos: -35.5,-25.5 + pos: -34.5,-28.5 parent: 1 - - uid: 9245 + - uid: 9362 components: - type: Transform - pos: -35.5,-26.5 + pos: -34.5,-29.5 parent: 1 - - uid: 9246 + - uid: 9363 components: - type: Transform - pos: -35.5,-27.5 + pos: -34.5,-30.5 parent: 1 - - uid: 9247 + - uid: 9364 components: - type: Transform - pos: -35.5,-28.5 + pos: -34.5,-31.5 parent: 1 - - uid: 9248 + - uid: 9365 components: - type: Transform - pos: -35.5,-29.5 + pos: -34.5,-32.5 parent: 1 - - uid: 9249 + - uid: 9366 components: - type: Transform - pos: -35.5,-30.5 + pos: -34.5,-33.5 parent: 1 - - uid: 9250 + - uid: 9367 components: - type: Transform - pos: -35.5,-31.5 + pos: -34.5,-34.5 parent: 1 - - uid: 9251 + - uid: 9368 components: - type: Transform - pos: -35.5,-32.5 + pos: -34.5,-35.5 parent: 1 - - uid: 9252 + - uid: 9369 components: - type: Transform - pos: -35.5,-33.5 + pos: -34.5,-36.5 parent: 1 - - uid: 9253 + - uid: 9370 components: - type: Transform - pos: -35.5,-34.5 + pos: -34.5,-37.5 parent: 1 - - uid: 9254 + - uid: 9371 components: - type: Transform - pos: -35.5,-35.5 + pos: -34.5,-38.5 parent: 1 - - uid: 9255 + - uid: 9372 components: - type: Transform - pos: -35.5,-36.5 + pos: -34.5,-39.5 parent: 1 - - uid: 9256 + - uid: 9373 components: - type: Transform - pos: -35.5,-37.5 + pos: -34.5,-40.5 parent: 1 - - uid: 9257 + - uid: 9374 components: - type: Transform - pos: -35.5,-38.5 + pos: -34.5,-41.5 parent: 1 - - uid: 9258 + - uid: 9375 components: - type: Transform - pos: -35.5,-39.5 + pos: -34.5,-42.5 parent: 1 - - uid: 9259 + - uid: 9376 components: - type: Transform - pos: -35.5,-40.5 + pos: -34.5,-43.5 parent: 1 - - uid: 9260 + - uid: 9377 components: - type: Transform - pos: -35.5,-41.5 + pos: -34.5,-44.5 parent: 1 - - uid: 9261 + - uid: 9378 components: - type: Transform - pos: -35.5,-42.5 + pos: -34.5,-45.5 parent: 1 - - uid: 9262 + - uid: 9379 components: - type: Transform - pos: -35.5,-43.5 + pos: -34.5,-46.5 parent: 1 - - uid: 9263 + - uid: 9380 components: - type: Transform - pos: -35.5,-44.5 + pos: -34.5,-47.5 parent: 1 - - uid: 9264 + - uid: 9381 components: - type: Transform - pos: -35.5,-45.5 + pos: -34.5,-48.5 parent: 1 - - uid: 9265 + - uid: 9382 components: - type: Transform - pos: -35.5,-46.5 + pos: -34.5,-49.5 parent: 1 - - uid: 9266 + - uid: 9383 components: - type: Transform - pos: -35.5,-47.5 + pos: -34.5,-50.5 parent: 1 - - uid: 9267 + - uid: 9384 components: - type: Transform - pos: -35.5,-48.5 + pos: -34.5,-51.5 parent: 1 - - uid: 9268 + - uid: 9385 components: - type: Transform - pos: -35.5,-49.5 + pos: -34.5,-52.5 parent: 1 - - uid: 9269 + - uid: 9386 components: - type: Transform - pos: -35.5,-50.5 + pos: -34.5,-53.5 parent: 1 - - uid: 9270 + - uid: 9387 components: - type: Transform - pos: -35.5,-51.5 + pos: -34.5,-54.5 parent: 1 - - uid: 9271 + - uid: 9388 components: - type: Transform - pos: -35.5,-52.5 + pos: -34.5,-55.5 parent: 1 - - uid: 9272 + - uid: 9389 components: - type: Transform - pos: -35.5,-53.5 + pos: -34.5,-56.5 parent: 1 - - uid: 9273 + - uid: 9390 components: - type: Transform - pos: -35.5,-54.5 + pos: -34.5,-57.5 parent: 1 - - uid: 9274 + - uid: 9391 components: - type: Transform - pos: -35.5,-55.5 + pos: -34.5,-58.5 parent: 1 - - uid: 9275 + - uid: 9392 components: - type: Transform - pos: -35.5,-56.5 + pos: -34.5,-59.5 parent: 1 - - uid: 9276 + - uid: 9393 components: - type: Transform - pos: -35.5,-57.5 + pos: -34.5,-60.5 parent: 1 - - uid: 9277 + - uid: 9394 components: - type: Transform - pos: -35.5,-58.5 + pos: -34.5,-61.5 parent: 1 - - uid: 9278 + - uid: 9395 components: - type: Transform - pos: -35.5,-59.5 + pos: -34.5,-62.5 parent: 1 - - uid: 9279 + - uid: 9396 components: - type: Transform - pos: -35.5,-60.5 + pos: -34.5,-63.5 parent: 1 - - uid: 9280 + - uid: 9397 components: - type: Transform - pos: -35.5,-61.5 + pos: -34.5,-64.5 parent: 1 - - uid: 9281 + - uid: 9398 components: - type: Transform - pos: -35.5,-62.5 + pos: -34.5,-65.5 parent: 1 - - uid: 9282 + - uid: 9399 components: - type: Transform - pos: -35.5,-63.5 + pos: -34.5,-66.5 parent: 1 - - uid: 9283 + - uid: 9400 components: - type: Transform - pos: -35.5,-64.5 + pos: -34.5,-67.5 parent: 1 - - uid: 9284 + - uid: 9401 components: - type: Transform - pos: -35.5,-65.5 + pos: -34.5,-68.5 parent: 1 - - uid: 9285 + - uid: 9402 components: - type: Transform - pos: -35.5,-66.5 + pos: -34.5,-69.5 parent: 1 - - uid: 9286 + - uid: 9403 components: - type: Transform - pos: -35.5,-67.5 + pos: -34.5,-70.5 parent: 1 - - uid: 9287 + - uid: 9404 components: - type: Transform - pos: -35.5,-68.5 + pos: -34.5,-71.5 parent: 1 - - uid: 9288 + - uid: 9405 components: - type: Transform - pos: -35.5,-69.5 + pos: -34.5,-72.5 parent: 1 - - uid: 9289 + - uid: 9406 components: - type: Transform - pos: -35.5,-70.5 + pos: -34.5,-73.5 parent: 1 - - uid: 9290 + - uid: 9407 components: - type: Transform - pos: -35.5,-71.5 + pos: -21.5,-39.5 parent: 1 - - uid: 9291 + - uid: 9408 components: - type: Transform - pos: -35.5,-72.5 + pos: -33.5,38.5 parent: 1 - - uid: 9292 + - uid: 9409 components: - type: Transform - pos: -35.5,-73.5 + pos: -33.5,37.5 parent: 1 - - uid: 9293 + - uid: 9410 components: - type: Transform - pos: -35.5,-74.5 + pos: -33.5,36.5 parent: 1 - - uid: 9294 + - uid: 9411 components: - type: Transform - pos: -34.5,38.5 + pos: -33.5,35.5 parent: 1 - - uid: 9295 + - uid: 9412 components: - type: Transform - pos: -34.5,37.5 + pos: -33.5,34.5 parent: 1 - - uid: 9296 + - uid: 9413 components: - type: Transform - pos: -34.5,36.5 + pos: -33.5,33.5 parent: 1 - - uid: 9297 + - uid: 9414 components: - type: Transform - pos: -34.5,35.5 + pos: -33.5,32.5 parent: 1 - - uid: 9298 + - uid: 9415 components: - type: Transform - pos: -34.5,34.5 + pos: -33.5,31.5 parent: 1 - - uid: 9299 + - uid: 9416 components: - type: Transform - pos: -34.5,33.5 + pos: -33.5,30.5 parent: 1 - - uid: 9300 + - uid: 9417 components: - type: Transform - pos: -34.5,32.5 + pos: -33.5,29.5 parent: 1 - - uid: 9301 + - uid: 9418 components: - type: Transform - pos: -34.5,31.5 + pos: -33.5,28.5 parent: 1 - - uid: 9302 + - uid: 9419 components: - type: Transform - pos: -34.5,30.5 + pos: -33.5,27.5 parent: 1 - - uid: 9303 + - uid: 9420 components: - type: Transform - pos: -34.5,29.5 + pos: -33.5,26.5 parent: 1 - - uid: 9304 + - uid: 9421 components: - type: Transform - pos: -34.5,28.5 + pos: -33.5,25.5 parent: 1 - - uid: 9305 + - uid: 9422 components: - type: Transform - pos: -34.5,27.5 + pos: -33.5,24.5 parent: 1 - - uid: 9306 + - uid: 9423 components: - type: Transform - pos: -34.5,26.5 + pos: -33.5,23.5 parent: 1 - - uid: 9307 + - uid: 9424 components: - type: Transform - pos: -34.5,25.5 + pos: -33.5,22.5 parent: 1 - - uid: 9308 + - uid: 9425 components: - type: Transform - pos: -34.5,24.5 + pos: -33.5,21.5 parent: 1 - - uid: 9309 + - uid: 9426 components: - type: Transform - pos: -34.5,23.5 + pos: -33.5,20.5 parent: 1 - - uid: 9310 + - uid: 9427 components: - type: Transform - pos: -34.5,22.5 + pos: -33.5,19.5 parent: 1 - - uid: 9311 + - uid: 9428 components: - type: Transform - pos: -34.5,21.5 + pos: -33.5,18.5 parent: 1 - - uid: 9312 + - uid: 9429 components: - type: Transform - pos: -34.5,20.5 + pos: -33.5,17.5 parent: 1 - - uid: 9313 + - uid: 9430 components: - type: Transform - pos: -34.5,19.5 + pos: -33.5,16.5 parent: 1 - - uid: 9314 + - uid: 9431 components: - type: Transform - pos: -34.5,18.5 + pos: -33.5,15.5 parent: 1 - - uid: 9315 + - uid: 9432 components: - type: Transform - pos: -34.5,17.5 + pos: -33.5,14.5 parent: 1 - - uid: 9316 + - uid: 9433 components: - type: Transform - pos: -34.5,16.5 + pos: -33.5,13.5 parent: 1 - - uid: 9317 + - uid: 9434 components: - type: Transform - pos: -34.5,15.5 + pos: -33.5,12.5 parent: 1 - - uid: 9318 + - uid: 9435 components: - type: Transform - pos: -34.5,14.5 + pos: -33.5,11.5 parent: 1 - - uid: 9319 + - uid: 9436 components: - type: Transform - pos: -34.5,13.5 + pos: -33.5,10.5 parent: 1 - - uid: 9320 + - uid: 9437 components: - type: Transform - pos: -34.5,12.5 + pos: -33.5,9.5 parent: 1 - - uid: 9321 + - uid: 9438 components: - type: Transform - pos: -34.5,11.5 + pos: -33.5,8.5 parent: 1 - - uid: 9322 + - uid: 9439 components: - type: Transform - pos: -34.5,10.5 + pos: -33.5,7.5 parent: 1 - - uid: 9323 + - uid: 9440 components: - type: Transform - pos: -34.5,9.5 + pos: -33.5,6.5 parent: 1 - - uid: 9324 + - uid: 9441 components: - type: Transform - pos: -34.5,8.5 + pos: -33.5,-96.5 parent: 1 - - uid: 9325 + - uid: 9442 components: - type: Transform - pos: -34.5,7.5 + pos: -33.5,-97.5 parent: 1 - - uid: 9326 + - uid: 9443 components: - type: Transform - pos: -34.5,6.5 + pos: -33.5,-98.5 parent: 1 - - uid: 9327 + - uid: 9444 components: - type: Transform - pos: -34.5,5.5 + pos: -33.5,2.5 parent: 1 - - uid: 9328 + - uid: 9445 components: - type: Transform - pos: -34.5,4.5 + pos: -33.5,-99.5 parent: 1 - - uid: 9329 + - uid: 9446 components: - type: Transform - pos: -34.5,3.5 + pos: -33.5,-100.5 parent: 1 - - uid: 9330 + - uid: 9447 components: - type: Transform - pos: -34.5,2.5 + pos: -33.5,-122.5 parent: 1 - - uid: 9331 + - uid: 9448 components: - type: Transform - pos: -34.5,1.5 + pos: -33.5,-1.5 parent: 1 - - uid: 9332 + - uid: 9449 components: - type: Transform - pos: -34.5,0.5 + pos: -33.5,-123.5 parent: 1 - - uid: 9333 + - uid: 9450 components: - type: Transform - pos: -34.5,-0.5 + pos: -33.5,-126.5 parent: 1 - - uid: 9334 + - uid: 9451 components: - type: Transform - pos: -34.5,-1.5 + pos: -33.5,-127.5 parent: 1 - - uid: 9335 + - uid: 9452 components: - type: Transform - pos: -34.5,-2.5 + pos: -33.5,-128.5 parent: 1 - - uid: 9336 + - uid: 9457 components: - type: Transform - pos: -34.5,-3.5 + pos: -32.5,-122.5 parent: 1 - - uid: 9337 + - uid: 9458 components: - type: Transform - pos: -34.5,-4.5 + pos: -32.5,-123.5 parent: 1 - - uid: 9338 + - uid: 9459 components: - type: Transform - pos: -34.5,-5.5 + pos: -32.5,-128.5 parent: 1 - - uid: 9339 + - uid: 9461 components: - type: Transform - pos: -34.5,-6.5 + pos: -31.5,-122.5 parent: 1 - - uid: 9340 + - uid: 9462 components: - type: Transform - pos: -34.5,-7.5 + pos: -31.5,-123.5 parent: 1 - - uid: 9341 + - uid: 9463 components: - type: Transform - pos: -34.5,-8.5 + pos: -31.5,-126.5 parent: 1 - - uid: 9342 + - uid: 9464 components: - type: Transform - pos: -34.5,-9.5 + pos: -33.5,-17.5 parent: 1 - - uid: 9343 + - uid: 9465 components: - type: Transform - pos: -34.5,-10.5 + pos: -33.5,-18.5 parent: 1 - - uid: 9344 + - uid: 9466 components: - type: Transform - pos: -34.5,-11.5 + pos: -33.5,-19.5 parent: 1 - - uid: 9345 + - uid: 9467 components: - type: Transform - pos: -34.5,-12.5 + pos: -33.5,-20.5 parent: 1 - - uid: 9346 + - uid: 9468 components: - type: Transform - pos: -34.5,-13.5 + pos: -33.5,-21.5 parent: 1 - - uid: 9347 + - uid: 9469 components: - type: Transform - pos: -34.5,-14.5 + pos: -33.5,-22.5 parent: 1 - - uid: 9348 + - uid: 9470 components: - type: Transform - pos: -34.5,-15.5 + pos: -33.5,-23.5 parent: 1 - - uid: 9349 + - uid: 9471 components: - type: Transform - pos: -34.5,-16.5 + pos: -33.5,-24.5 parent: 1 - - uid: 9350 + - uid: 9472 components: - type: Transform - pos: -34.5,-17.5 + pos: -33.5,-25.5 parent: 1 - - uid: 9351 + - uid: 9473 components: - type: Transform - pos: -34.5,-18.5 + pos: -33.5,-26.5 parent: 1 - - uid: 9352 + - uid: 9474 components: - type: Transform - pos: -34.5,-19.5 + pos: -33.5,-27.5 parent: 1 - - uid: 9353 + - uid: 9475 components: - type: Transform - pos: -34.5,-20.5 + pos: -33.5,-28.5 parent: 1 - - uid: 9354 + - uid: 9476 components: - type: Transform - pos: -34.5,-21.5 + pos: -33.5,-29.5 parent: 1 - - uid: 9355 + - uid: 9477 components: - type: Transform - pos: -34.5,-22.5 + pos: -33.5,-30.5 parent: 1 - - uid: 9356 + - uid: 9478 components: - type: Transform - pos: -34.5,-23.5 + pos: -33.5,-31.5 parent: 1 - - uid: 9357 + - uid: 9479 components: - type: Transform - pos: -34.5,-24.5 + pos: -33.5,-32.5 parent: 1 - - uid: 9358 + - uid: 9480 components: - type: Transform - pos: -34.5,-25.5 + pos: -33.5,-33.5 parent: 1 - - uid: 9359 + - uid: 9481 components: - type: Transform - pos: -34.5,-26.5 + pos: -33.5,-34.5 parent: 1 - - uid: 9360 + - uid: 9482 components: - type: Transform - pos: -34.5,-27.5 + pos: -33.5,-35.5 parent: 1 - - uid: 9361 + - uid: 9483 components: - type: Transform - pos: -34.5,-28.5 + pos: -33.5,-36.5 parent: 1 - - uid: 9362 + - uid: 9484 components: - type: Transform - pos: -34.5,-29.5 + pos: -33.5,-37.5 parent: 1 - - uid: 9363 + - uid: 9485 components: - type: Transform - pos: -34.5,-30.5 + pos: -33.5,-38.5 parent: 1 - - uid: 9364 + - uid: 9486 components: - type: Transform - pos: -34.5,-31.5 + pos: -33.5,-39.5 parent: 1 - - uid: 9365 + - uid: 9487 components: - type: Transform - pos: -34.5,-32.5 + pos: -33.5,-40.5 parent: 1 - - uid: 9366 + - uid: 9488 components: - type: Transform - pos: -34.5,-33.5 + pos: -33.5,-41.5 parent: 1 - - uid: 9367 + - uid: 9489 components: - type: Transform - pos: -34.5,-34.5 + pos: -33.5,-42.5 parent: 1 - - uid: 9368 + - uid: 9490 components: - type: Transform - pos: -34.5,-35.5 + pos: -33.5,-43.5 parent: 1 - - uid: 9369 + - uid: 9491 components: - type: Transform - pos: -34.5,-36.5 + pos: -33.5,-44.5 parent: 1 - - uid: 9370 + - uid: 9492 components: - type: Transform - pos: -34.5,-37.5 + pos: -33.5,-45.5 parent: 1 - - uid: 9371 + - uid: 9493 components: - type: Transform - pos: -34.5,-38.5 + pos: -33.5,-46.5 parent: 1 - - uid: 9372 + - uid: 9494 components: - type: Transform - pos: -34.5,-39.5 + pos: -33.5,-47.5 parent: 1 - - uid: 9373 + - uid: 9495 components: - type: Transform - pos: -34.5,-40.5 + pos: -33.5,-48.5 parent: 1 - - uid: 9374 + - uid: 9496 components: - type: Transform - pos: -34.5,-41.5 + pos: -33.5,-49.5 parent: 1 - - uid: 9375 + - uid: 9497 components: - type: Transform - pos: -34.5,-42.5 + pos: -33.5,-50.5 parent: 1 - - uid: 9376 + - uid: 9498 components: - type: Transform - pos: -34.5,-43.5 + pos: -33.5,-51.5 parent: 1 - - uid: 9377 + - uid: 9499 components: - type: Transform - pos: -34.5,-44.5 + pos: -33.5,-52.5 parent: 1 - - uid: 9378 + - uid: 9500 components: - type: Transform - pos: -34.5,-45.5 + pos: -33.5,-53.5 parent: 1 - - uid: 9379 + - uid: 9501 components: - type: Transform - pos: -34.5,-46.5 + pos: -33.5,-54.5 parent: 1 - - uid: 9380 + - uid: 9502 components: - type: Transform - pos: -34.5,-47.5 + pos: -33.5,-55.5 parent: 1 - - uid: 9381 + - uid: 9503 components: - type: Transform - pos: -34.5,-48.5 + pos: -33.5,-56.5 parent: 1 - - uid: 9382 + - uid: 9504 components: - type: Transform - pos: -34.5,-49.5 + pos: -33.5,-57.5 parent: 1 - - uid: 9383 + - uid: 9505 components: - type: Transform - pos: -34.5,-50.5 + pos: -33.5,-58.5 parent: 1 - - uid: 9384 + - uid: 9506 components: - type: Transform - pos: -34.5,-51.5 + pos: -33.5,-59.5 parent: 1 - - uid: 9385 + - uid: 9507 components: - type: Transform - pos: -34.5,-52.5 + pos: -33.5,-60.5 parent: 1 - - uid: 9386 + - uid: 9508 components: - type: Transform - pos: -34.5,-53.5 + pos: -33.5,-61.5 parent: 1 - - uid: 9387 + - uid: 9509 components: - type: Transform - pos: -34.5,-54.5 + pos: -33.5,-62.5 parent: 1 - - uid: 9388 + - uid: 9510 components: - type: Transform - pos: -34.5,-55.5 + pos: -33.5,-63.5 parent: 1 - - uid: 9389 + - uid: 9511 components: - type: Transform - pos: -34.5,-56.5 + pos: -33.5,-64.5 parent: 1 - - uid: 9390 + - uid: 9512 components: - type: Transform - pos: -34.5,-57.5 + pos: -33.5,-65.5 parent: 1 - - uid: 9391 + - uid: 9513 components: - type: Transform - pos: -34.5,-58.5 + pos: -33.5,-66.5 parent: 1 - - uid: 9392 + - uid: 9514 components: - type: Transform - pos: -34.5,-59.5 + pos: -33.5,-67.5 parent: 1 - - uid: 9393 + - uid: 9515 components: - type: Transform - pos: -34.5,-60.5 + pos: -33.5,-68.5 parent: 1 - - uid: 9394 + - uid: 9516 components: - type: Transform - pos: -34.5,-61.5 + pos: -33.5,-69.5 parent: 1 - - uid: 9395 + - uid: 9517 components: - type: Transform - pos: -34.5,-62.5 + pos: -33.5,-70.5 parent: 1 - - uid: 9396 + - uid: 9518 components: - type: Transform - pos: -34.5,-63.5 + pos: -33.5,-71.5 parent: 1 - - uid: 9397 + - uid: 9519 components: - type: Transform - pos: -34.5,-64.5 + pos: -33.5,-72.5 parent: 1 - - uid: 9398 + - uid: 9520 components: - type: Transform - pos: -34.5,-65.5 + pos: -33.5,-73.5 parent: 1 - - uid: 9399 + - uid: 9521 components: - type: Transform - pos: -34.5,-66.5 + pos: -31.5,-127.5 parent: 1 - - uid: 9400 + - uid: 9522 components: - type: Transform - pos: -34.5,-67.5 + pos: -32.5,38.5 parent: 1 - - uid: 9401 + - uid: 9523 components: - type: Transform - pos: -34.5,-68.5 + pos: -32.5,37.5 parent: 1 - - uid: 9402 + - uid: 9524 components: - type: Transform - pos: -34.5,-69.5 + pos: -32.5,36.5 parent: 1 - - uid: 9403 + - uid: 9525 components: - type: Transform - pos: -34.5,-70.5 + pos: -32.5,35.5 parent: 1 - - uid: 9404 + - uid: 9526 components: - type: Transform - pos: -34.5,-71.5 + pos: -32.5,34.5 parent: 1 - - uid: 9405 + - uid: 9527 components: - type: Transform - pos: -34.5,-72.5 + pos: -32.5,33.5 parent: 1 - - uid: 9406 + - uid: 9528 components: - type: Transform - pos: -34.5,-73.5 + pos: -32.5,32.5 parent: 1 - - uid: 9408 + - uid: 9529 components: - type: Transform - pos: -33.5,38.5 + pos: -32.5,31.5 parent: 1 - - uid: 9409 + - uid: 9530 components: - type: Transform - pos: -33.5,37.5 + pos: -32.5,30.5 parent: 1 - - uid: 9410 + - uid: 9531 components: - type: Transform - pos: -33.5,36.5 + pos: -32.5,29.5 parent: 1 - - uid: 9411 + - uid: 9532 components: - type: Transform - pos: -33.5,35.5 + pos: -32.5,28.5 parent: 1 - - uid: 9412 + - uid: 9533 components: - type: Transform - pos: -33.5,34.5 + pos: -32.5,27.5 parent: 1 - - uid: 9413 + - uid: 9534 components: - type: Transform - pos: -33.5,33.5 + pos: -32.5,26.5 parent: 1 - - uid: 9414 + - uid: 9535 components: - type: Transform - pos: -33.5,32.5 + pos: -32.5,25.5 parent: 1 - - uid: 9415 + - uid: 9536 components: - type: Transform - pos: -33.5,31.5 + pos: -32.5,24.5 parent: 1 - - uid: 9416 + - uid: 9537 components: - type: Transform - pos: -33.5,30.5 + pos: -32.5,23.5 parent: 1 - - uid: 9417 + - uid: 9538 components: - type: Transform - pos: -33.5,29.5 + pos: -32.5,22.5 parent: 1 - - uid: 9418 + - uid: 9539 components: - type: Transform - pos: -33.5,28.5 + pos: -32.5,21.5 parent: 1 - - uid: 9419 + - uid: 9540 components: - type: Transform - pos: -33.5,27.5 + pos: -32.5,20.5 parent: 1 - - uid: 9420 + - uid: 9541 components: - type: Transform - pos: -33.5,26.5 + pos: -32.5,19.5 parent: 1 - - uid: 9421 + - uid: 9542 components: - type: Transform - pos: -33.5,25.5 + pos: -32.5,18.5 parent: 1 - - uid: 9422 + - uid: 9543 components: - type: Transform - pos: -33.5,24.5 + pos: -32.5,17.5 parent: 1 - - uid: 9423 + - uid: 9544 components: - type: Transform - pos: -33.5,23.5 + pos: -32.5,16.5 parent: 1 - - uid: 9424 + - uid: 9545 components: - type: Transform - pos: -33.5,22.5 + pos: -32.5,15.5 parent: 1 - - uid: 9425 + - uid: 9546 components: - type: Transform - pos: -33.5,21.5 + pos: -32.5,14.5 parent: 1 - - uid: 9426 + - uid: 9547 components: - type: Transform - pos: -33.5,20.5 + pos: -32.5,13.5 parent: 1 - - uid: 9427 + - uid: 9548 components: - type: Transform - pos: -33.5,19.5 + pos: -32.5,12.5 parent: 1 - - uid: 9428 + - uid: 9549 components: - type: Transform - pos: -33.5,18.5 + pos: -32.5,11.5 parent: 1 - - uid: 9429 + - uid: 9550 components: - type: Transform - pos: -33.5,17.5 + pos: -32.5,10.5 parent: 1 - - uid: 9430 + - uid: 9551 components: - type: Transform - pos: -33.5,16.5 + pos: -32.5,9.5 parent: 1 - - uid: 9431 + - uid: 9552 components: - type: Transform - pos: -33.5,15.5 + pos: -32.5,8.5 parent: 1 - - uid: 9432 + - uid: 9553 components: - type: Transform - pos: -33.5,14.5 + pos: -31.5,-128.5 parent: 1 - - uid: 9433 + - uid: 9558 components: - type: Transform - pos: -33.5,13.5 + pos: -30.5,-125.5 parent: 1 - - uid: 9434 + - uid: 9559 components: - type: Transform - pos: -33.5,12.5 + pos: -30.5,-126.5 parent: 1 - - uid: 9435 + - uid: 9560 components: - type: Transform - pos: -33.5,11.5 + pos: -30.5,-127.5 parent: 1 - - uid: 9436 + - uid: 9561 components: - type: Transform - pos: -33.5,10.5 + pos: -30.5,-128.5 parent: 1 - - uid: 9437 + - uid: 9568 components: - type: Transform - pos: -33.5,9.5 + pos: -29.5,-124.5 parent: 1 - - uid: 9438 + - uid: 9569 components: - type: Transform - pos: -33.5,8.5 + pos: -29.5,-125.5 parent: 1 - - uid: 9439 + - uid: 9570 components: - type: Transform - pos: -33.5,7.5 + pos: -29.5,-126.5 parent: 1 - - uid: 9440 + - uid: 9571 components: - type: Transform - pos: -33.5,6.5 + pos: -29.5,-127.5 parent: 1 - - uid: 9441 + - uid: 9572 components: - type: Transform - pos: -33.5,5.5 + pos: -29.5,-128.5 parent: 1 - - uid: 9442 + - uid: 9573 components: - type: Transform - pos: -33.5,4.5 + pos: -39.5,-122.5 parent: 1 - - uid: 9443 + - uid: 9574 components: - type: Transform - pos: -33.5,3.5 + pos: -39.5,-123.5 parent: 1 - - uid: 9444 + - uid: 9575 components: - type: Transform - pos: -33.5,2.5 + pos: -39.5,-124.5 parent: 1 - - uid: 9445 + - uid: 9576 components: - type: Transform - pos: -33.5,1.5 + pos: -39.5,-125.5 parent: 1 - - uid: 9446 + - uid: 9577 components: - type: Transform - pos: -33.5,0.5 + pos: -39.5,-126.5 parent: 1 - - uid: 9447 + - uid: 9578 components: - type: Transform - pos: -33.5,-0.5 + pos: -32.5,-17.5 parent: 1 - - uid: 9448 + - uid: 9579 components: - type: Transform - pos: -33.5,-1.5 + pos: -32.5,-18.5 parent: 1 - - uid: 9449 + - uid: 9580 components: - type: Transform - pos: -33.5,-2.5 + pos: -32.5,-19.5 parent: 1 - - uid: 9450 + - uid: 9581 components: - type: Transform - pos: -33.5,-3.5 + pos: -32.5,-20.5 parent: 1 - - uid: 9451 + - uid: 9582 components: - type: Transform - pos: -33.5,-4.5 + pos: -32.5,-21.5 parent: 1 - - uid: 9452 + - uid: 9583 components: - type: Transform - pos: -33.5,-5.5 + pos: -32.5,-22.5 parent: 1 - - uid: 9453 + - uid: 9584 components: - type: Transform - pos: -33.5,-6.5 + pos: -32.5,-23.5 parent: 1 - - uid: 9454 + - uid: 9585 components: - type: Transform - pos: -33.5,-7.5 + pos: -32.5,-24.5 parent: 1 - - uid: 9455 + - uid: 9586 components: - type: Transform - pos: -33.5,-8.5 + pos: -32.5,-25.5 parent: 1 - - uid: 9456 + - uid: 9587 components: - type: Transform - pos: -33.5,-9.5 + pos: -32.5,-26.5 parent: 1 - - uid: 9457 + - uid: 9588 components: - type: Transform - pos: -33.5,-10.5 + pos: -32.5,-27.5 parent: 1 - - uid: 9458 + - uid: 9589 components: - type: Transform - pos: -33.5,-11.5 + pos: -32.5,-28.5 parent: 1 - - uid: 9459 + - uid: 9590 components: - type: Transform - pos: -33.5,-12.5 + pos: -32.5,-29.5 parent: 1 - - uid: 9460 + - uid: 9591 components: - type: Transform - pos: -33.5,-13.5 + pos: -32.5,-30.5 parent: 1 - - uid: 9461 + - uid: 9592 components: - type: Transform - pos: -33.5,-14.5 + pos: -32.5,-31.5 parent: 1 - - uid: 9462 + - uid: 9593 components: - type: Transform - pos: -33.5,-15.5 + pos: -32.5,-32.5 parent: 1 - - uid: 9463 + - uid: 9594 components: - type: Transform - pos: -33.5,-16.5 + pos: -32.5,-33.5 parent: 1 - - uid: 9464 + - uid: 9595 components: - type: Transform - pos: -33.5,-17.5 + pos: -32.5,-34.5 parent: 1 - - uid: 9465 + - uid: 9596 components: - type: Transform - pos: -33.5,-18.5 + pos: -32.5,-35.5 parent: 1 - - uid: 9466 + - uid: 9597 components: - type: Transform - pos: -33.5,-19.5 + pos: -32.5,-36.5 parent: 1 - - uid: 9467 + - uid: 9598 components: - type: Transform - pos: -33.5,-20.5 + pos: -32.5,-37.5 parent: 1 - - uid: 9468 + - uid: 9599 components: - type: Transform - pos: -33.5,-21.5 + pos: -32.5,-38.5 parent: 1 - - uid: 9469 + - uid: 9600 components: - type: Transform - pos: -33.5,-22.5 + pos: -32.5,-39.5 parent: 1 - - uid: 9470 + - uid: 9601 components: - type: Transform - pos: -33.5,-23.5 + pos: -32.5,-40.5 parent: 1 - - uid: 9471 + - uid: 9602 components: - type: Transform - pos: -33.5,-24.5 + pos: -32.5,-41.5 parent: 1 - - uid: 9472 + - uid: 9603 components: - type: Transform - pos: -33.5,-25.5 + pos: -32.5,-42.5 parent: 1 - - uid: 9473 + - uid: 9604 components: - type: Transform - pos: -33.5,-26.5 + pos: -32.5,-43.5 parent: 1 - - uid: 9474 + - uid: 9605 components: - type: Transform - pos: -33.5,-27.5 + pos: -32.5,-44.5 parent: 1 - - uid: 9475 + - uid: 9606 components: - type: Transform - pos: -33.5,-28.5 + pos: -32.5,-45.5 parent: 1 - - uid: 9476 + - uid: 9607 components: - type: Transform - pos: -33.5,-29.5 + pos: -32.5,-46.5 parent: 1 - - uid: 9477 + - uid: 9608 components: - type: Transform - pos: -33.5,-30.5 + pos: -32.5,-47.5 parent: 1 - - uid: 9478 + - uid: 9609 components: - type: Transform - pos: -33.5,-31.5 + pos: -32.5,-48.5 parent: 1 - - uid: 9479 + - uid: 9610 components: - type: Transform - pos: -33.5,-32.5 + pos: -32.5,-49.5 parent: 1 - - uid: 9480 + - uid: 9611 components: - type: Transform - pos: -33.5,-33.5 + pos: -32.5,-50.5 parent: 1 - - uid: 9481 + - uid: 9612 components: - type: Transform - pos: -33.5,-34.5 + pos: -32.5,-51.5 parent: 1 - - uid: 9482 + - uid: 9613 components: - type: Transform - pos: -33.5,-35.5 + pos: -32.5,-52.5 parent: 1 - - uid: 9483 + - uid: 9614 components: - type: Transform - pos: -33.5,-36.5 + pos: -32.5,-53.5 parent: 1 - - uid: 9484 + - uid: 9615 components: - type: Transform - pos: -33.5,-37.5 + pos: -32.5,-54.5 parent: 1 - - uid: 9485 + - uid: 9616 components: - type: Transform - pos: -33.5,-38.5 + pos: -32.5,-55.5 parent: 1 - - uid: 9486 + - uid: 9617 components: - type: Transform - pos: -33.5,-39.5 + pos: -32.5,-56.5 parent: 1 - - uid: 9487 + - uid: 9618 components: - type: Transform - pos: -33.5,-40.5 + pos: -32.5,-57.5 parent: 1 - - uid: 9488 + - uid: 9619 components: - type: Transform - pos: -33.5,-41.5 + pos: -32.5,-58.5 parent: 1 - - uid: 9489 + - uid: 9620 components: - type: Transform - pos: -33.5,-42.5 + pos: -32.5,-59.5 parent: 1 - - uid: 9490 + - uid: 9621 components: - type: Transform - pos: -33.5,-43.5 + pos: -32.5,-60.5 parent: 1 - - uid: 9491 + - uid: 9622 components: - type: Transform - pos: -33.5,-44.5 + pos: -32.5,-61.5 parent: 1 - - uid: 9492 + - uid: 9623 components: - type: Transform - pos: -33.5,-45.5 + pos: -32.5,-62.5 parent: 1 - - uid: 9493 + - uid: 9624 components: - type: Transform - pos: -33.5,-46.5 + pos: -32.5,-63.5 parent: 1 - - uid: 9494 + - uid: 9625 components: - type: Transform - pos: -33.5,-47.5 + pos: -32.5,-64.5 parent: 1 - - uid: 9495 + - uid: 9626 components: - type: Transform - pos: -33.5,-48.5 + pos: -32.5,-65.5 parent: 1 - - uid: 9496 + - uid: 9627 components: - type: Transform - pos: -33.5,-49.5 + pos: -32.5,-66.5 parent: 1 - - uid: 9497 + - uid: 9628 components: - type: Transform - pos: -33.5,-50.5 + pos: -32.5,-67.5 parent: 1 - - uid: 9498 + - uid: 9629 components: - type: Transform - pos: -33.5,-51.5 + pos: -32.5,-68.5 parent: 1 - - uid: 9499 + - uid: 9630 components: - type: Transform - pos: -33.5,-52.5 + pos: -32.5,-69.5 parent: 1 - - uid: 9500 + - uid: 9631 components: - type: Transform - pos: -33.5,-53.5 + pos: -32.5,-70.5 parent: 1 - - uid: 9501 + - uid: 9632 components: - type: Transform - pos: -33.5,-54.5 + pos: -32.5,-71.5 parent: 1 - - uid: 9502 + - uid: 9633 components: - type: Transform - pos: -33.5,-55.5 + pos: -32.5,-72.5 parent: 1 - - uid: 9503 + - uid: 9634 components: - type: Transform - pos: -33.5,-56.5 + pos: -32.5,-73.5 parent: 1 - - uid: 9504 + - uid: 9636 components: - type: Transform - pos: -33.5,-57.5 + pos: -31.5,38.5 parent: 1 - - uid: 9505 + - uid: 9637 components: - type: Transform - pos: -33.5,-58.5 + pos: -31.5,37.5 parent: 1 - - uid: 9506 + - uid: 9638 components: - type: Transform - pos: -33.5,-59.5 + pos: -31.5,36.5 parent: 1 - - uid: 9507 + - uid: 9639 components: - type: Transform - pos: -33.5,-60.5 + pos: -31.5,35.5 parent: 1 - - uid: 9508 + - uid: 9640 components: - type: Transform - pos: -33.5,-61.5 + pos: -31.5,34.5 parent: 1 - - uid: 9509 + - uid: 9641 components: - type: Transform - pos: -33.5,-62.5 + pos: -31.5,33.5 parent: 1 - - uid: 9510 + - uid: 9642 components: - type: Transform - pos: -33.5,-63.5 + pos: -31.5,32.5 parent: 1 - - uid: 9511 + - uid: 9643 components: - type: Transform - pos: -33.5,-64.5 + pos: -31.5,31.5 parent: 1 - - uid: 9512 + - uid: 9644 components: - type: Transform - pos: -33.5,-65.5 + pos: -31.5,30.5 parent: 1 - - uid: 9513 + - uid: 9645 components: - type: Transform - pos: -33.5,-66.5 + pos: -31.5,29.5 parent: 1 - - uid: 9514 + - uid: 9646 components: - type: Transform - pos: -33.5,-67.5 + pos: -31.5,28.5 parent: 1 - - uid: 9515 + - uid: 9647 components: - type: Transform - pos: -33.5,-68.5 + pos: -31.5,27.5 parent: 1 - - uid: 9516 + - uid: 9648 components: - type: Transform - pos: -33.5,-69.5 + pos: -31.5,26.5 parent: 1 - - uid: 9517 + - uid: 9649 components: - type: Transform - pos: -33.5,-70.5 + pos: -31.5,25.5 parent: 1 - - uid: 9518 + - uid: 9650 components: - type: Transform - pos: -33.5,-71.5 + pos: -31.5,24.5 parent: 1 - - uid: 9519 + - uid: 9651 components: - type: Transform - pos: -33.5,-72.5 + pos: -31.5,23.5 parent: 1 - - uid: 9520 + - uid: 9652 components: - type: Transform - pos: -33.5,-73.5 + pos: -31.5,22.5 parent: 1 - - uid: 9521 + - uid: 9653 components: - type: Transform - pos: -33.5,-74.5 + pos: -31.5,21.5 parent: 1 - - uid: 9522 + - uid: 9654 components: - type: Transform - pos: -32.5,38.5 + pos: -31.5,20.5 parent: 1 - - uid: 9523 + - uid: 9655 components: - type: Transform - pos: -32.5,37.5 + pos: -31.5,19.5 parent: 1 - - uid: 9524 + - uid: 9656 components: - type: Transform - pos: -32.5,36.5 + pos: -31.5,18.5 parent: 1 - - uid: 9525 + - uid: 9657 components: - type: Transform - pos: -32.5,35.5 + pos: -31.5,17.5 parent: 1 - - uid: 9526 + - uid: 9658 components: - type: Transform - pos: -32.5,34.5 + pos: -31.5,16.5 parent: 1 - - uid: 9527 + - uid: 9659 components: - type: Transform - pos: -32.5,33.5 + pos: -31.5,15.5 parent: 1 - - uid: 9528 + - uid: 9660 components: - type: Transform - pos: -32.5,32.5 + pos: -31.5,14.5 parent: 1 - - uid: 9529 + - uid: 9661 components: - type: Transform - pos: -32.5,31.5 + pos: -31.5,13.5 parent: 1 - - uid: 9530 + - uid: 9662 components: - type: Transform - pos: -32.5,30.5 + pos: -31.5,12.5 parent: 1 - - uid: 9531 + - uid: 9663 components: - type: Transform - pos: -32.5,29.5 + pos: -31.5,11.5 parent: 1 - - uid: 9532 + - uid: 9664 components: - type: Transform - pos: -32.5,28.5 + pos: -31.5,10.5 parent: 1 - - uid: 9533 + - uid: 9665 components: - type: Transform - pos: -32.5,27.5 + pos: -31.5,9.5 parent: 1 - - uid: 9534 + - uid: 9692 components: - type: Transform - pos: -32.5,26.5 + pos: -31.5,-17.5 parent: 1 - - uid: 9535 + - uid: 9693 components: - type: Transform - pos: -32.5,25.5 + pos: -31.5,-18.5 parent: 1 - - uid: 9536 + - uid: 9694 components: - type: Transform - pos: -32.5,24.5 + pos: -31.5,-19.5 parent: 1 - - uid: 9537 + - uid: 9695 components: - type: Transform - pos: -32.5,23.5 + pos: -31.5,-20.5 parent: 1 - - uid: 9538 + - uid: 9696 components: - type: Transform - pos: -32.5,22.5 + pos: -31.5,-21.5 parent: 1 - - uid: 9539 + - uid: 9697 components: - type: Transform - pos: -32.5,21.5 + pos: -31.5,-22.5 parent: 1 - - uid: 9540 + - uid: 9698 components: - type: Transform - pos: -32.5,20.5 + pos: -31.5,-23.5 parent: 1 - - uid: 9541 + - uid: 9699 components: - type: Transform - pos: -32.5,19.5 + pos: -31.5,-24.5 parent: 1 - - uid: 9542 + - uid: 9700 components: - type: Transform - pos: -32.5,18.5 + pos: -31.5,-25.5 parent: 1 - - uid: 9543 + - uid: 9701 components: - type: Transform - pos: -32.5,17.5 + pos: -31.5,-26.5 parent: 1 - - uid: 9544 + - uid: 9702 components: - type: Transform - pos: -32.5,16.5 + pos: -31.5,-27.5 parent: 1 - - uid: 9545 + - uid: 9703 components: - type: Transform - pos: -32.5,15.5 + pos: -31.5,-28.5 parent: 1 - - uid: 9546 + - uid: 9704 components: - type: Transform - pos: -32.5,14.5 + pos: -31.5,-29.5 parent: 1 - - uid: 9547 + - uid: 9705 components: - type: Transform - pos: -32.5,13.5 + pos: -31.5,-30.5 parent: 1 - - uid: 9548 + - uid: 9706 components: - type: Transform - pos: -32.5,12.5 + pos: -31.5,-31.5 parent: 1 - - uid: 9549 + - uid: 9707 components: - type: Transform - pos: -32.5,11.5 + pos: -31.5,-32.5 parent: 1 - - uid: 9550 + - uid: 9708 components: - type: Transform - pos: -32.5,10.5 + pos: -31.5,-33.5 parent: 1 - - uid: 9551 + - uid: 9709 components: - type: Transform - pos: -32.5,9.5 + pos: -31.5,-34.5 parent: 1 - - uid: 9552 + - uid: 9710 components: - type: Transform - pos: -32.5,8.5 + pos: -31.5,-35.5 parent: 1 - - uid: 9553 + - uid: 9711 components: - type: Transform - pos: -32.5,7.5 + pos: -31.5,-36.5 parent: 1 - - uid: 9554 + - uid: 9712 components: - type: Transform - pos: -32.5,6.5 + pos: -31.5,-37.5 parent: 1 - - uid: 9555 + - uid: 9713 components: - type: Transform - pos: -32.5,5.5 + pos: -31.5,-38.5 parent: 1 - - uid: 9556 + - uid: 9714 components: - type: Transform - pos: -32.5,4.5 + pos: -31.5,-39.5 parent: 1 - - uid: 9557 + - uid: 9715 components: - type: Transform - pos: -32.5,3.5 + pos: -31.5,-40.5 parent: 1 - - uid: 9558 + - uid: 9716 components: - type: Transform - pos: -32.5,2.5 + pos: -31.5,-41.5 parent: 1 - - uid: 9559 + - uid: 9717 components: - type: Transform - pos: -32.5,1.5 + pos: -31.5,-42.5 parent: 1 - - uid: 9560 + - uid: 9718 components: - type: Transform - pos: -32.5,0.5 + pos: -31.5,-43.5 parent: 1 - - uid: 9561 + - uid: 9719 components: - type: Transform - pos: -32.5,-0.5 + pos: -31.5,-44.5 parent: 1 - - uid: 9562 + - uid: 9720 components: - type: Transform - pos: -32.5,-1.5 + pos: -31.5,-45.5 parent: 1 - - uid: 9563 + - uid: 9721 components: - type: Transform - pos: -32.5,-2.5 + pos: -31.5,-46.5 parent: 1 - - uid: 9564 + - uid: 9722 components: - type: Transform - pos: -32.5,-3.5 + pos: -31.5,-47.5 parent: 1 - - uid: 9565 + - uid: 9723 components: - type: Transform - pos: -32.5,-4.5 + pos: -31.5,-48.5 parent: 1 - - uid: 9566 + - uid: 9724 components: - type: Transform - pos: -32.5,-5.5 + pos: -31.5,-49.5 parent: 1 - - uid: 9567 + - uid: 9725 components: - type: Transform - pos: -32.5,-6.5 + pos: -31.5,-50.5 parent: 1 - - uid: 9568 + - uid: 9726 components: - type: Transform - pos: -32.5,-7.5 + pos: -31.5,-51.5 parent: 1 - - uid: 9569 + - uid: 9727 components: - type: Transform - pos: -32.5,-8.5 + pos: -31.5,-52.5 parent: 1 - - uid: 9570 + - uid: 9728 components: - type: Transform - pos: -32.5,-9.5 + pos: -31.5,-53.5 parent: 1 - - uid: 9571 + - uid: 9729 components: - type: Transform - pos: -32.5,-10.5 + pos: -31.5,-54.5 parent: 1 - - uid: 9572 + - uid: 9730 components: - type: Transform - pos: -32.5,-11.5 + pos: -31.5,-55.5 parent: 1 - - uid: 9573 + - uid: 9731 components: - type: Transform - pos: -32.5,-12.5 + pos: -31.5,-56.5 parent: 1 - - uid: 9574 + - uid: 9732 components: - type: Transform - pos: -32.5,-13.5 + pos: -31.5,-57.5 parent: 1 - - uid: 9575 + - uid: 9733 components: - type: Transform - pos: -32.5,-14.5 + pos: -31.5,-58.5 parent: 1 - - uid: 9576 + - uid: 9734 components: - type: Transform - pos: -32.5,-15.5 + pos: -31.5,-59.5 parent: 1 - - uid: 9577 + - uid: 9735 components: - type: Transform - pos: -32.5,-16.5 + pos: -31.5,-60.5 parent: 1 - - uid: 9578 + - uid: 9736 components: - type: Transform - pos: -32.5,-17.5 + pos: -31.5,-61.5 parent: 1 - - uid: 9579 + - uid: 9737 components: - type: Transform - pos: -32.5,-18.5 + pos: -31.5,-62.5 parent: 1 - - uid: 9580 + - uid: 9738 components: - type: Transform - pos: -32.5,-19.5 + pos: -31.5,-63.5 parent: 1 - - uid: 9581 + - uid: 9739 components: - type: Transform - pos: -32.5,-20.5 + pos: -31.5,-64.5 parent: 1 - - uid: 9582 + - uid: 9740 components: - type: Transform - pos: -32.5,-21.5 + pos: -31.5,-65.5 parent: 1 - - uid: 9583 + - uid: 9741 components: - type: Transform - pos: -32.5,-22.5 + pos: -31.5,-66.5 parent: 1 - - uid: 9584 + - uid: 9742 components: - type: Transform - pos: -32.5,-23.5 + pos: -31.5,-67.5 parent: 1 - - uid: 9585 + - uid: 9743 components: - type: Transform - pos: -32.5,-24.5 + pos: -31.5,-68.5 parent: 1 - - uid: 9586 + - uid: 9744 components: - type: Transform - pos: -32.5,-25.5 + pos: -31.5,-69.5 parent: 1 - - uid: 9587 + - uid: 9745 components: - type: Transform - pos: -32.5,-26.5 + pos: -31.5,-70.5 parent: 1 - - uid: 9588 + - uid: 9746 components: - type: Transform - pos: -32.5,-27.5 + pos: -31.5,-71.5 parent: 1 - - uid: 9589 + - uid: 9747 components: - type: Transform - pos: -32.5,-28.5 + pos: -31.5,-72.5 parent: 1 - - uid: 9590 + - uid: 9748 components: - type: Transform - pos: -32.5,-29.5 + pos: -31.5,-73.5 parent: 1 - - uid: 9591 + - uid: 9750 components: - type: Transform - pos: -32.5,-30.5 + pos: -30.5,38.5 parent: 1 - - uid: 9592 + - uid: 9751 components: - type: Transform - pos: -32.5,-31.5 + pos: -30.5,37.5 parent: 1 - - uid: 9593 + - uid: 9752 components: - type: Transform - pos: -32.5,-32.5 + pos: -30.5,36.5 parent: 1 - - uid: 9594 + - uid: 9753 components: - type: Transform - pos: -32.5,-33.5 + pos: -30.5,35.5 parent: 1 - - uid: 9595 + - uid: 9754 components: - type: Transform - pos: -32.5,-34.5 + pos: -30.5,34.5 parent: 1 - - uid: 9596 + - uid: 9755 components: - type: Transform - pos: -32.5,-35.5 + pos: -30.5,33.5 parent: 1 - - uid: 9597 + - uid: 9756 components: - type: Transform - pos: -32.5,-36.5 + pos: -30.5,32.5 parent: 1 - - uid: 9598 + - uid: 9757 components: - type: Transform - pos: -32.5,-37.5 + pos: -30.5,31.5 parent: 1 - - uid: 9599 + - uid: 9758 components: - type: Transform - pos: -32.5,-38.5 + pos: -30.5,30.5 parent: 1 - - uid: 9600 + - uid: 9759 components: - type: Transform - pos: -32.5,-39.5 + pos: -30.5,29.5 parent: 1 - - uid: 9601 + - uid: 9760 components: - type: Transform - pos: -32.5,-40.5 + pos: -30.5,28.5 parent: 1 - - uid: 9602 + - uid: 9761 components: - type: Transform - pos: -32.5,-41.5 + pos: -30.5,27.5 parent: 1 - - uid: 9603 + - uid: 9762 components: - type: Transform - pos: -32.5,-42.5 + pos: -30.5,26.5 parent: 1 - - uid: 9604 + - uid: 9763 components: - type: Transform - pos: -32.5,-43.5 + pos: -30.5,25.5 parent: 1 - - uid: 9605 + - uid: 9764 components: - type: Transform - pos: -32.5,-44.5 + pos: -30.5,24.5 parent: 1 - - uid: 9606 + - uid: 9765 components: - type: Transform - pos: -32.5,-45.5 + pos: -30.5,23.5 parent: 1 - - uid: 9607 + - uid: 9766 components: - type: Transform - pos: -32.5,-46.5 + pos: -30.5,22.5 parent: 1 - - uid: 9608 + - uid: 9767 components: - type: Transform - pos: -32.5,-47.5 + pos: -30.5,21.5 parent: 1 - - uid: 9609 + - uid: 9768 components: - type: Transform - pos: -32.5,-48.5 + pos: -30.5,20.5 parent: 1 - - uid: 9610 + - uid: 9769 components: - type: Transform - pos: -32.5,-49.5 + pos: -30.5,19.5 parent: 1 - - uid: 9611 + - uid: 9770 components: - type: Transform - pos: -32.5,-50.5 + pos: -30.5,18.5 parent: 1 - - uid: 9612 + - uid: 9771 components: - type: Transform - pos: -32.5,-51.5 + pos: -30.5,17.5 parent: 1 - - uid: 9613 + - uid: 9772 components: - type: Transform - pos: -32.5,-52.5 + pos: -30.5,16.5 parent: 1 - - uid: 9614 + - uid: 9773 components: - type: Transform - pos: -32.5,-53.5 + pos: -30.5,15.5 parent: 1 - - uid: 9615 + - uid: 9774 components: - type: Transform - pos: -32.5,-54.5 + pos: -30.5,14.5 parent: 1 - - uid: 9616 + - uid: 9775 components: - type: Transform - pos: -32.5,-55.5 + pos: -30.5,13.5 parent: 1 - - uid: 9617 + - uid: 9776 components: - type: Transform - pos: -32.5,-56.5 + pos: -30.5,12.5 parent: 1 - - uid: 9618 + - uid: 9777 components: - type: Transform - pos: -32.5,-57.5 + pos: -30.5,11.5 parent: 1 - - uid: 9619 + - uid: 9778 components: - type: Transform - pos: -32.5,-58.5 + pos: -30.5,10.5 parent: 1 - - uid: 9620 + - uid: 9779 components: - type: Transform - pos: -32.5,-59.5 + pos: -30.5,9.5 parent: 1 - - uid: 9621 + - uid: 9807 components: - type: Transform - pos: -32.5,-60.5 + pos: -30.5,-18.5 parent: 1 - - uid: 9622 + - uid: 9808 components: - type: Transform - pos: -32.5,-61.5 + pos: -30.5,-19.5 parent: 1 - - uid: 9623 + - uid: 9809 components: - type: Transform - pos: -32.5,-62.5 + pos: -30.5,-20.5 parent: 1 - - uid: 9624 + - uid: 9810 components: - type: Transform - pos: -32.5,-63.5 + pos: -30.5,-21.5 parent: 1 - - uid: 9625 + - uid: 9811 components: - type: Transform - pos: -32.5,-64.5 + pos: -30.5,-22.5 parent: 1 - - uid: 9626 + - uid: 9812 components: - type: Transform - pos: -32.5,-65.5 + pos: -30.5,-23.5 parent: 1 - - uid: 9627 + - uid: 9813 components: - type: Transform - pos: -32.5,-66.5 + pos: -30.5,-24.5 parent: 1 - - uid: 9628 + - uid: 9814 components: - type: Transform - pos: -32.5,-67.5 + pos: -30.5,-25.5 parent: 1 - - uid: 9629 + - uid: 9815 components: - type: Transform - pos: -32.5,-68.5 + pos: -30.5,-26.5 parent: 1 - - uid: 9630 + - uid: 9816 components: - type: Transform - pos: -32.5,-69.5 + pos: -30.5,-27.5 parent: 1 - - uid: 9631 + - uid: 9817 components: - type: Transform - pos: -32.5,-70.5 + pos: -30.5,-28.5 parent: 1 - - uid: 9632 + - uid: 9818 components: - type: Transform - pos: -32.5,-71.5 + pos: -30.5,-29.5 parent: 1 - - uid: 9633 + - uid: 9819 components: - type: Transform - pos: -32.5,-72.5 + pos: -30.5,-30.5 parent: 1 - - uid: 9634 + - uid: 9820 components: - type: Transform - pos: -32.5,-73.5 + pos: -30.5,-31.5 parent: 1 - - uid: 9635 + - uid: 9821 components: - type: Transform - pos: -32.5,-74.5 + pos: -30.5,-32.5 parent: 1 - - uid: 9636 + - uid: 9822 components: - type: Transform - pos: -31.5,38.5 + pos: -30.5,-33.5 parent: 1 - - uid: 9637 + - uid: 9823 components: - type: Transform - pos: -31.5,37.5 + pos: -30.5,-34.5 parent: 1 - - uid: 9638 + - uid: 9824 components: - type: Transform - pos: -31.5,36.5 + pos: -30.5,-35.5 parent: 1 - - uid: 9639 + - uid: 9825 components: - type: Transform - pos: -31.5,35.5 + pos: -30.5,-36.5 parent: 1 - - uid: 9640 + - uid: 9826 components: - type: Transform - pos: -31.5,34.5 + pos: -30.5,-37.5 parent: 1 - - uid: 9641 + - uid: 9827 components: - type: Transform - pos: -31.5,33.5 + pos: -30.5,-38.5 parent: 1 - - uid: 9642 + - uid: 9828 components: - type: Transform - pos: -31.5,32.5 + pos: -30.5,-39.5 parent: 1 - - uid: 9643 + - uid: 9829 components: - type: Transform - pos: -31.5,31.5 + pos: -30.5,-40.5 parent: 1 - - uid: 9644 + - uid: 9830 components: - type: Transform - pos: -31.5,30.5 + pos: -30.5,-41.5 parent: 1 - - uid: 9645 + - uid: 9831 components: - type: Transform - pos: -31.5,29.5 + pos: -30.5,-42.5 parent: 1 - - uid: 9646 + - uid: 9832 components: - type: Transform - pos: -31.5,28.5 + pos: -30.5,-43.5 parent: 1 - - uid: 9647 + - uid: 9833 components: - type: Transform - pos: -31.5,27.5 + pos: -30.5,-44.5 parent: 1 - - uid: 9648 + - uid: 9834 components: - type: Transform - pos: -31.5,26.5 + pos: -30.5,-45.5 parent: 1 - - uid: 9649 + - uid: 9835 components: - type: Transform - pos: -31.5,25.5 + pos: -30.5,-46.5 parent: 1 - - uid: 9650 + - uid: 9836 components: - type: Transform - pos: -31.5,24.5 + pos: -30.5,-47.5 parent: 1 - - uid: 9651 + - uid: 9837 components: - type: Transform - pos: -31.5,23.5 + pos: -30.5,-48.5 parent: 1 - - uid: 9652 + - uid: 9838 components: - type: Transform - pos: -31.5,22.5 + pos: -30.5,-49.5 parent: 1 - - uid: 9653 + - uid: 9839 components: - type: Transform - pos: -31.5,21.5 + pos: -30.5,-50.5 parent: 1 - - uid: 9654 + - uid: 9840 components: - type: Transform - pos: -31.5,20.5 + pos: -30.5,-51.5 parent: 1 - - uid: 9655 + - uid: 9841 components: - type: Transform - pos: -31.5,19.5 + pos: -30.5,-52.5 parent: 1 - - uid: 9656 + - uid: 9842 components: - type: Transform - pos: -31.5,18.5 + pos: -30.5,-53.5 parent: 1 - - uid: 9657 + - uid: 9843 components: - type: Transform - pos: -31.5,17.5 + pos: -30.5,-54.5 parent: 1 - - uid: 9658 + - uid: 9844 components: - type: Transform - pos: -31.5,16.5 + pos: -30.5,-55.5 parent: 1 - - uid: 9659 + - uid: 9845 components: - type: Transform - pos: -31.5,15.5 + pos: -30.5,-56.5 parent: 1 - - uid: 9660 + - uid: 9846 components: - type: Transform - pos: -31.5,14.5 + pos: -30.5,-57.5 parent: 1 - - uid: 9661 + - uid: 9847 components: - type: Transform - pos: -31.5,13.5 + pos: -30.5,-58.5 parent: 1 - - uid: 9662 + - uid: 9848 components: - type: Transform - pos: -31.5,12.5 + pos: -30.5,-59.5 parent: 1 - - uid: 9663 + - uid: 9849 components: - type: Transform - pos: -31.5,11.5 + pos: -30.5,-60.5 parent: 1 - - uid: 9664 + - uid: 9850 components: - type: Transform - pos: -31.5,10.5 + pos: -30.5,-61.5 parent: 1 - - uid: 9665 + - uid: 9851 components: - type: Transform - pos: -31.5,9.5 + pos: -30.5,-62.5 parent: 1 - - uid: 9666 + - uid: 9852 components: - type: Transform - pos: -31.5,8.5 + pos: -30.5,-63.5 parent: 1 - - uid: 9667 + - uid: 9853 components: - type: Transform - pos: -31.5,7.5 + pos: -30.5,-64.5 parent: 1 - - uid: 9668 + - uid: 9854 components: - type: Transform - pos: -31.5,6.5 + pos: -30.5,-65.5 parent: 1 - - uid: 9669 + - uid: 9855 components: - type: Transform - pos: -31.5,5.5 + pos: -30.5,-66.5 parent: 1 - - uid: 9670 + - uid: 9856 components: - type: Transform - pos: -31.5,4.5 + pos: -30.5,-67.5 parent: 1 - - uid: 9671 + - uid: 9857 components: - type: Transform - pos: -31.5,3.5 + pos: -30.5,-68.5 parent: 1 - - uid: 9672 + - uid: 9858 components: - type: Transform - pos: -31.5,2.5 + pos: -30.5,-69.5 parent: 1 - - uid: 9673 + - uid: 9859 components: - type: Transform - pos: -31.5,1.5 + pos: -30.5,-70.5 parent: 1 - - uid: 9674 + - uid: 9860 components: - type: Transform - pos: -31.5,0.5 + pos: -30.5,-71.5 parent: 1 - - uid: 9675 + - uid: 9861 components: - type: Transform - pos: -31.5,-0.5 + pos: -30.5,-72.5 parent: 1 - - uid: 9676 + - uid: 9862 components: - type: Transform - pos: -31.5,-1.5 + pos: -30.5,-73.5 parent: 1 - - uid: 9677 + - uid: 9863 components: - type: Transform - pos: -31.5,-2.5 + pos: -40.5,12.5 parent: 1 - - uid: 9678 + - uid: 9864 components: - type: Transform - pos: -31.5,-3.5 + pos: -29.5,38.5 parent: 1 - - uid: 9679 + - uid: 9865 components: - type: Transform - pos: -31.5,-4.5 + pos: -29.5,37.5 parent: 1 - - uid: 9680 + - uid: 9866 components: - type: Transform - pos: -31.5,-5.5 + pos: -29.5,36.5 parent: 1 - - uid: 9681 + - uid: 9867 components: - type: Transform - pos: -31.5,-6.5 + pos: -29.5,35.5 parent: 1 - - uid: 9682 + - uid: 9868 components: - type: Transform - pos: -31.5,-7.5 + pos: -29.5,34.5 parent: 1 - - uid: 9683 + - uid: 9869 components: - type: Transform - pos: -31.5,-8.5 + pos: -29.5,33.5 parent: 1 - - uid: 9684 + - uid: 9870 components: - type: Transform - pos: -31.5,-9.5 + pos: -29.5,32.5 parent: 1 - - uid: 9685 + - uid: 9871 components: - type: Transform - pos: -31.5,-10.5 + pos: -29.5,31.5 parent: 1 - - uid: 9686 + - uid: 9872 components: - type: Transform - pos: -31.5,-11.5 + pos: -29.5,30.5 parent: 1 - - uid: 9687 + - uid: 9873 components: - type: Transform - pos: -31.5,-12.5 + pos: -29.5,29.5 parent: 1 - - uid: 9688 + - uid: 9874 components: - type: Transform - pos: -31.5,-13.5 + pos: -29.5,28.5 parent: 1 - - uid: 9689 + - uid: 9875 components: - type: Transform - pos: -31.5,-14.5 + pos: -29.5,27.5 parent: 1 - - uid: 9690 + - uid: 9876 components: - type: Transform - pos: -31.5,-15.5 + pos: -29.5,26.5 parent: 1 - - uid: 9691 + - uid: 9877 components: - type: Transform - pos: -31.5,-16.5 + pos: -29.5,25.5 parent: 1 - - uid: 9692 + - uid: 9878 components: - type: Transform - pos: -31.5,-17.5 + pos: -29.5,24.5 parent: 1 - - uid: 9693 + - uid: 9879 components: - type: Transform - pos: -31.5,-18.5 + pos: -29.5,23.5 parent: 1 - - uid: 9694 + - uid: 9880 components: - type: Transform - pos: -31.5,-19.5 + pos: -29.5,22.5 parent: 1 - - uid: 9695 + - uid: 9881 components: - type: Transform - pos: -31.5,-20.5 + pos: -29.5,21.5 parent: 1 - - uid: 9696 + - uid: 9882 components: - type: Transform - pos: -31.5,-21.5 + pos: -29.5,20.5 parent: 1 - - uid: 9697 + - uid: 9883 components: - type: Transform - pos: -31.5,-22.5 + pos: -29.5,19.5 parent: 1 - - uid: 9698 + - uid: 9884 components: - type: Transform - pos: -31.5,-23.5 + pos: -29.5,18.5 parent: 1 - - uid: 9699 + - uid: 9885 components: - type: Transform - pos: -31.5,-24.5 + pos: -29.5,17.5 parent: 1 - - uid: 9700 + - uid: 9886 components: - type: Transform - pos: -31.5,-25.5 + pos: -29.5,16.5 parent: 1 - - uid: 9701 + - uid: 9887 components: - type: Transform - pos: -31.5,-26.5 + pos: -29.5,15.5 parent: 1 - - uid: 9702 + - uid: 9888 components: - type: Transform - pos: -31.5,-27.5 + pos: -29.5,14.5 parent: 1 - - uid: 9703 + - uid: 9889 components: - type: Transform - pos: -31.5,-28.5 + pos: -29.5,13.5 parent: 1 - - uid: 9704 + - uid: 9890 components: - type: Transform - pos: -31.5,-29.5 + pos: -29.5,12.5 parent: 1 - - uid: 9705 + - uid: 9891 components: - type: Transform - pos: -31.5,-30.5 + pos: -29.5,11.5 parent: 1 - - uid: 9706 + - uid: 9892 components: - type: Transform - pos: -31.5,-31.5 + pos: -29.5,10.5 parent: 1 - - uid: 9707 + - uid: 9916 components: - type: Transform - pos: -31.5,-32.5 + pos: -38.5,-122.5 parent: 1 - - uid: 9708 + - uid: 9917 components: - type: Transform - pos: -31.5,-33.5 + pos: -38.5,-124.5 parent: 1 - - uid: 9709 + - uid: 9918 components: - type: Transform - pos: -31.5,-34.5 + pos: -38.5,-126.5 parent: 1 - - uid: 9710 + - uid: 9921 components: - type: Transform - pos: -31.5,-35.5 + pos: -29.5,-18.5 parent: 1 - - uid: 9711 + - uid: 9922 components: - type: Transform - pos: -31.5,-36.5 + pos: -29.5,-19.5 parent: 1 - - uid: 9712 + - uid: 9923 components: - type: Transform - pos: -31.5,-37.5 + pos: -29.5,-20.5 parent: 1 - - uid: 9713 + - uid: 9924 components: - type: Transform - pos: -31.5,-38.5 + pos: -29.5,-21.5 parent: 1 - - uid: 9714 + - uid: 9925 components: - type: Transform - pos: -31.5,-39.5 + pos: -29.5,-22.5 parent: 1 - - uid: 9715 + - uid: 9926 components: - type: Transform - pos: -31.5,-40.5 + pos: -29.5,-23.5 parent: 1 - - uid: 9716 + - uid: 9927 components: - type: Transform - pos: -31.5,-41.5 + pos: -29.5,-24.5 parent: 1 - - uid: 9717 + - uid: 9928 components: - type: Transform - pos: -31.5,-42.5 + pos: -29.5,-25.5 parent: 1 - - uid: 9718 + - uid: 9929 components: - type: Transform - pos: -31.5,-43.5 + pos: -29.5,-26.5 parent: 1 - - uid: 9719 + - uid: 9930 components: - type: Transform - pos: -31.5,-44.5 + pos: -29.5,-27.5 parent: 1 - - uid: 9720 + - uid: 9931 components: - type: Transform - pos: -31.5,-45.5 + pos: -29.5,-28.5 parent: 1 - - uid: 9721 + - uid: 9932 components: - type: Transform - pos: -31.5,-46.5 + pos: -29.5,-29.5 parent: 1 - - uid: 9722 + - uid: 9933 components: - type: Transform - pos: -31.5,-47.5 + pos: -29.5,-30.5 parent: 1 - - uid: 9723 + - uid: 9934 components: - type: Transform - pos: -31.5,-48.5 + pos: -29.5,-31.5 parent: 1 - - uid: 9724 + - uid: 9935 components: - type: Transform - pos: -31.5,-49.5 + pos: -29.5,-32.5 parent: 1 - - uid: 9725 + - uid: 9936 components: - type: Transform - pos: -31.5,-50.5 + pos: -29.5,-33.5 parent: 1 - - uid: 9726 + - uid: 9937 components: - type: Transform - pos: -31.5,-51.5 + pos: -29.5,-34.5 parent: 1 - - uid: 9727 + - uid: 9938 components: - type: Transform - pos: -31.5,-52.5 + pos: -29.5,-35.5 parent: 1 - - uid: 9728 + - uid: 9939 components: - type: Transform - pos: -31.5,-53.5 + pos: -29.5,-36.5 parent: 1 - - uid: 9729 + - uid: 9940 components: - type: Transform - pos: -31.5,-54.5 + pos: -29.5,-37.5 parent: 1 - - uid: 9730 + - uid: 9941 components: - type: Transform - pos: -31.5,-55.5 + pos: -29.5,-38.5 parent: 1 - - uid: 9731 + - uid: 9942 components: - type: Transform - pos: -31.5,-56.5 + pos: -29.5,-39.5 parent: 1 - - uid: 9732 + - uid: 9943 components: - type: Transform - pos: -31.5,-57.5 + pos: -29.5,-40.5 parent: 1 - - uid: 9733 + - uid: 9944 components: - type: Transform - pos: -31.5,-58.5 + pos: -29.5,-41.5 parent: 1 - - uid: 9734 + - uid: 9945 components: - type: Transform - pos: -31.5,-59.5 + pos: -29.5,-42.5 parent: 1 - - uid: 9735 + - uid: 9946 components: - type: Transform - pos: -31.5,-60.5 + pos: -29.5,-43.5 parent: 1 - - uid: 9736 + - uid: 9947 components: - type: Transform - pos: -31.5,-61.5 + pos: -29.5,-44.5 parent: 1 - - uid: 9737 + - uid: 9948 components: - type: Transform - pos: -31.5,-62.5 + pos: -29.5,-45.5 parent: 1 - - uid: 9738 + - uid: 9949 components: - type: Transform - pos: -31.5,-63.5 + pos: -29.5,-46.5 parent: 1 - - uid: 9739 + - uid: 9950 components: - type: Transform - pos: -31.5,-64.5 + pos: -29.5,-47.5 parent: 1 - - uid: 9740 + - uid: 9951 components: - type: Transform - pos: -31.5,-65.5 + pos: -29.5,-48.5 parent: 1 - - uid: 9741 + - uid: 9952 components: - type: Transform - pos: -31.5,-66.5 + pos: -29.5,-49.5 parent: 1 - - uid: 9742 + - uid: 9953 components: - type: Transform - pos: -31.5,-67.5 + pos: -29.5,-50.5 parent: 1 - - uid: 9743 + - uid: 9954 components: - type: Transform - pos: -31.5,-68.5 + pos: -29.5,-51.5 parent: 1 - - uid: 9744 + - uid: 9955 components: - type: Transform - pos: -31.5,-69.5 + pos: -29.5,-52.5 parent: 1 - - uid: 9745 + - uid: 9956 components: - type: Transform - pos: -31.5,-70.5 + pos: -29.5,-53.5 parent: 1 - - uid: 9746 + - uid: 9957 components: - type: Transform - pos: -31.5,-71.5 + pos: -29.5,-54.5 parent: 1 - - uid: 9747 + - uid: 9958 components: - type: Transform - pos: -31.5,-72.5 + pos: -29.5,-55.5 parent: 1 - - uid: 9748 + - uid: 9959 components: - type: Transform - pos: -31.5,-73.5 + pos: -29.5,-56.5 parent: 1 - - uid: 9749 + - uid: 9960 components: - type: Transform - pos: -31.5,-74.5 + pos: -29.5,-57.5 parent: 1 - - uid: 9750 + - uid: 9961 components: - type: Transform - pos: -30.5,38.5 + pos: -29.5,-58.5 parent: 1 - - uid: 9751 + - uid: 9962 components: - type: Transform - pos: -30.5,37.5 + pos: -29.5,-59.5 parent: 1 - - uid: 9752 + - uid: 9963 components: - type: Transform - pos: -30.5,36.5 + pos: -29.5,-60.5 parent: 1 - - uid: 9753 + - uid: 9964 components: - type: Transform - pos: -30.5,35.5 + pos: -29.5,-61.5 parent: 1 - - uid: 9754 + - uid: 9965 components: - type: Transform - pos: -30.5,34.5 + pos: -29.5,-62.5 parent: 1 - - uid: 9755 + - uid: 9966 components: - type: Transform - pos: -30.5,33.5 + pos: -29.5,-63.5 parent: 1 - - uid: 9756 + - uid: 9967 components: - type: Transform - pos: -30.5,32.5 + pos: -29.5,-64.5 parent: 1 - - uid: 9757 + - uid: 9968 components: - type: Transform - pos: -30.5,31.5 + pos: -29.5,-65.5 parent: 1 - - uid: 9758 + - uid: 9969 components: - type: Transform - pos: -30.5,30.5 + pos: -29.5,-66.5 parent: 1 - - uid: 9759 + - uid: 9970 components: - type: Transform - pos: -30.5,29.5 + pos: -29.5,-67.5 parent: 1 - - uid: 9760 + - uid: 9971 components: - type: Transform - pos: -30.5,28.5 + pos: -29.5,-68.5 parent: 1 - - uid: 9761 + - uid: 9972 components: - type: Transform - pos: -30.5,27.5 + pos: -29.5,-69.5 parent: 1 - - uid: 9762 + - uid: 9973 components: - type: Transform - pos: -30.5,26.5 + pos: -29.5,-70.5 parent: 1 - - uid: 9763 + - uid: 9974 components: - type: Transform - pos: -30.5,25.5 + pos: -29.5,-71.5 parent: 1 - - uid: 9764 + - uid: 9975 components: - type: Transform - pos: -30.5,24.5 + pos: -29.5,-72.5 parent: 1 - - uid: 9765 + - uid: 9976 components: - type: Transform - pos: -30.5,23.5 + pos: -29.5,-73.5 parent: 1 - - uid: 9766 + - uid: 9981 components: - type: Transform - pos: -30.5,22.5 + pos: -36.5,-93.5 parent: 1 - - uid: 9767 + - uid: 9982 components: - type: Transform - pos: -30.5,21.5 + pos: -36.5,-94.5 parent: 1 - - uid: 9768 + - uid: 9983 components: - type: Transform - pos: -30.5,20.5 + pos: -36.5,-95.5 parent: 1 - - uid: 9769 + - uid: 9984 components: - type: Transform - pos: -30.5,19.5 + pos: -36.5,-96.5 parent: 1 - - uid: 9770 + - uid: 9985 components: - type: Transform - pos: -30.5,18.5 + pos: -36.5,-97.5 parent: 1 - - uid: 9771 + - uid: 9986 components: - type: Transform - pos: -30.5,17.5 + pos: -36.5,-98.5 parent: 1 - - uid: 9772 + - uid: 9987 components: - type: Transform - pos: -30.5,16.5 + pos: -36.5,-99.5 parent: 1 - - uid: 9773 + - uid: 9988 components: - type: Transform - pos: -30.5,15.5 + pos: -36.5,-100.5 parent: 1 - - uid: 9774 + - uid: 9989 components: - type: Transform - pos: -30.5,14.5 + pos: -36.5,-101.5 parent: 1 - - uid: 9775 + - uid: 9990 components: - type: Transform - pos: -30.5,13.5 + pos: -36.5,-102.5 parent: 1 - - uid: 9776 + - uid: 9991 components: - type: Transform - pos: -30.5,12.5 + pos: -36.5,-103.5 parent: 1 - - uid: 9777 + - uid: 9992 components: - type: Transform - pos: -30.5,11.5 + pos: -36.5,-104.5 parent: 1 - - uid: 9778 + - uid: 9993 components: - type: Transform - pos: -30.5,10.5 + pos: -36.5,-105.5 parent: 1 - - uid: 9779 + - uid: 9994 components: - type: Transform - pos: -30.5,9.5 + pos: -36.5,-106.5 parent: 1 - - uid: 9780 + - uid: 9995 components: - type: Transform - pos: -30.5,8.5 + pos: -36.5,-107.5 parent: 1 - - uid: 9781 + - uid: 9996 components: - type: Transform - pos: -30.5,7.5 + pos: -36.5,-108.5 parent: 1 - - uid: 9782 + - uid: 9997 components: - type: Transform - pos: -30.5,6.5 + pos: 23.5,24.5 parent: 1 - - uid: 9783 + - uid: 9998 components: - type: Transform - pos: -30.5,5.5 + pos: 23.5,-25.5 parent: 1 - - uid: 9784 + - uid: 9999 components: - type: Transform - pos: -30.5,4.5 + pos: 23.5,-30.5 parent: 1 - - uid: 9785 + - uid: 10000 components: - type: Transform - pos: -30.5,3.5 + pos: 23.5,-29.5 parent: 1 - - uid: 9786 + - uid: 10001 components: - type: Transform - pos: -30.5,2.5 + pos: 23.5,-51.5 parent: 1 - - uid: 9787 + - uid: 10002 components: - type: Transform - pos: -30.5,1.5 + pos: 23.5,-40.5 parent: 1 - - uid: 9788 + - uid: 10003 components: - type: Transform - pos: -30.5,0.5 + pos: 23.5,-53.5 parent: 1 - - uid: 9789 + - uid: 10004 components: - type: Transform - pos: -30.5,-0.5 + pos: 23.5,-52.5 parent: 1 - - uid: 9790 + - uid: 10005 components: - type: Transform - pos: -30.5,-1.5 + pos: 23.5,-50.5 parent: 1 - - uid: 9791 + - uid: 10007 components: - type: Transform - pos: -30.5,-2.5 + pos: -36.5,-119.5 parent: 1 - - uid: 9792 + - uid: 10008 components: - type: Transform - pos: -30.5,-3.5 + pos: -36.5,-120.5 parent: 1 - - uid: 9793 + - uid: 10009 components: - type: Transform - pos: -30.5,-4.5 + pos: -36.5,-121.5 parent: 1 - - uid: 9794 + - uid: 10015 components: - type: Transform - pos: -30.5,-5.5 + pos: -36.5,-127.5 parent: 1 - - uid: 9795 + - uid: 10016 components: - type: Transform - pos: -30.5,-6.5 + pos: -36.5,-128.5 parent: 1 - - uid: 9796 + - uid: 10020 components: - type: Transform - pos: -30.5,-7.5 + pos: -35.5,-93.5 parent: 1 - - uid: 9797 + - uid: 10021 components: - type: Transform - pos: -30.5,-8.5 + pos: -35.5,-94.5 parent: 1 - - uid: 9798 + - uid: 10022 components: - type: Transform - pos: -30.5,-9.5 + pos: -35.5,-95.5 parent: 1 - - uid: 9799 + - uid: 10023 components: - type: Transform - pos: -30.5,-10.5 + pos: -35.5,-96.5 parent: 1 - - uid: 9800 + - uid: 10024 components: - type: Transform - pos: -30.5,-11.5 + pos: -35.5,-97.5 parent: 1 - - uid: 9801 + - uid: 10025 components: - type: Transform - pos: -30.5,-12.5 + pos: -35.5,-98.5 parent: 1 - - uid: 9802 + - uid: 10026 components: - type: Transform - pos: -30.5,-13.5 + pos: -35.5,-99.5 parent: 1 - - uid: 9803 + - uid: 10027 components: - type: Transform - pos: -30.5,-14.5 + pos: -35.5,-100.5 parent: 1 - - uid: 9804 + - uid: 10028 components: - type: Transform - pos: -30.5,-15.5 + pos: -35.5,-101.5 parent: 1 - - uid: 9805 + - uid: 10029 components: - type: Transform - pos: -30.5,-16.5 + pos: -35.5,-102.5 parent: 1 - - uid: 9806 + - uid: 10030 components: - type: Transform - pos: -30.5,-17.5 + pos: -35.5,-103.5 parent: 1 - - uid: 9807 + - uid: 10031 components: - type: Transform - pos: -30.5,-18.5 + pos: -35.5,-104.5 parent: 1 - - uid: 9808 + - uid: 10032 components: - type: Transform - pos: -30.5,-19.5 + pos: -35.5,-105.5 parent: 1 - - uid: 9809 + - uid: 10033 components: - type: Transform - pos: -30.5,-20.5 + pos: -35.5,-106.5 parent: 1 - - uid: 9810 + - uid: 10034 components: - type: Transform - pos: -30.5,-21.5 + pos: -35.5,-107.5 parent: 1 - - uid: 9811 + - uid: 10035 components: - type: Transform - pos: -30.5,-22.5 + pos: -35.5,-108.5 parent: 1 - - uid: 9812 + - uid: 10036 components: - type: Transform - pos: -30.5,-23.5 + pos: 23.5,-10.5 parent: 1 - - uid: 9813 + - uid: 10037 components: - type: Transform - pos: -30.5,-24.5 + pos: 23.5,-27.5 parent: 1 - - uid: 9814 + - uid: 10038 components: - type: Transform - pos: -30.5,-25.5 + pos: 23.5,-35.5 parent: 1 - - uid: 9815 + - uid: 10039 components: - type: Transform - pos: -30.5,-26.5 + pos: 23.5,-31.5 parent: 1 - - uid: 9816 + - uid: 10040 components: - type: Transform - pos: -30.5,-27.5 + pos: 23.5,-32.5 parent: 1 - - uid: 9817 + - uid: 10041 components: - type: Transform - pos: -30.5,-28.5 + pos: 23.5,-42.5 parent: 1 - - uid: 9818 + - uid: 10042 components: - type: Transform - pos: -30.5,-29.5 + pos: 23.5,-58.5 parent: 1 - - uid: 9819 + - uid: 10043 components: - type: Transform - pos: -30.5,-30.5 + pos: 23.5,-54.5 parent: 1 - - uid: 9820 + - uid: 10044 components: - type: Transform - pos: -30.5,-31.5 + pos: 23.5,-55.5 parent: 1 - - uid: 9821 + - uid: 10046 components: - type: Transform - pos: -30.5,-32.5 + pos: 23.5,25.5 parent: 1 - - uid: 9822 + - uid: 10047 components: - type: Transform - pos: -30.5,-33.5 + pos: -35.5,-120.5 parent: 1 - - uid: 9823 + - uid: 10048 components: - type: Transform - pos: -30.5,-34.5 + pos: -35.5,-121.5 parent: 1 - - uid: 9824 + - uid: 10054 components: - type: Transform - pos: -30.5,-35.5 + pos: -35.5,-127.5 parent: 1 - - uid: 9825 + - uid: 10055 components: - type: Transform - pos: -30.5,-36.5 + pos: -35.5,-128.5 parent: 1 - - uid: 9826 + - uid: 10067 components: - type: Transform - pos: -30.5,-37.5 + pos: -34.5,-101.5 parent: 1 - - uid: 9827 + - uid: 10068 components: - type: Transform - pos: -30.5,-38.5 + pos: -34.5,-102.5 parent: 1 - - uid: 9828 + - uid: 10069 components: - type: Transform - pos: -30.5,-39.5 + pos: -34.5,-103.5 parent: 1 - - uid: 9829 + - uid: 10070 components: - type: Transform - pos: -30.5,-40.5 + pos: -34.5,-104.5 parent: 1 - - uid: 9830 + - uid: 10071 components: - type: Transform - pos: -30.5,-41.5 + pos: -34.5,-105.5 parent: 1 - - uid: 9831 + - uid: 10072 components: - type: Transform - pos: -30.5,-42.5 + pos: -34.5,-106.5 parent: 1 - - uid: 9832 + - uid: 10073 components: - type: Transform - pos: -30.5,-43.5 + pos: -34.5,-107.5 parent: 1 - - uid: 9833 + - uid: 10075 components: - type: Transform - pos: -30.5,-44.5 + pos: 23.5,-9.5 parent: 1 - - uid: 9834 + - uid: 10076 components: - type: Transform - pos: -30.5,-45.5 + pos: 23.5,-26.5 parent: 1 - - uid: 9835 + - uid: 10077 components: - type: Transform - pos: -30.5,-46.5 + pos: 23.5,-37.5 parent: 1 - - uid: 9836 + - uid: 10078 components: - type: Transform - pos: -30.5,-47.5 + pos: 23.5,-33.5 parent: 1 - - uid: 9837 + - uid: 10079 components: - type: Transform - pos: -30.5,-48.5 + pos: 23.5,-34.5 parent: 1 - - uid: 9838 + - uid: 10080 components: - type: Transform - pos: -30.5,-49.5 + pos: 23.5,-41.5 parent: 1 - - uid: 9839 + - uid: 10082 components: - type: Transform - pos: -30.5,-50.5 + pos: 23.5,-56.5 parent: 1 - - uid: 9840 + - uid: 10083 components: - type: Transform - pos: -30.5,-51.5 + pos: 23.5,-57.5 parent: 1 - - uid: 9841 + - uid: 10085 components: - type: Transform - pos: -30.5,-52.5 + pos: 23.5,1.5 parent: 1 - - uid: 9842 + - uid: 10086 components: - type: Transform - pos: -30.5,-53.5 + pos: 23.5,7.5 parent: 1 - - uid: 9843 + - uid: 10087 components: - type: Transform - pos: -30.5,-54.5 + pos: -34.5,-121.5 parent: 1 - - uid: 9844 + - uid: 10093 components: - type: Transform - pos: -30.5,-55.5 + pos: -34.5,-127.5 parent: 1 - - uid: 9845 + - uid: 10094 components: - type: Transform - pos: -30.5,-56.5 + pos: -34.5,-128.5 parent: 1 - - uid: 9846 + - uid: 10106 components: - type: Transform - pos: -30.5,-57.5 + pos: -33.5,-101.5 parent: 1 - - uid: 9847 + - uid: 10114 components: - type: Transform - pos: -30.5,-58.5 + pos: 23.5,-11.5 parent: 1 - - uid: 9848 + - uid: 10115 components: - type: Transform - pos: -30.5,-59.5 + pos: 23.5,-28.5 parent: 1 - - uid: 9849 + - uid: 10116 components: - type: Transform - pos: -30.5,-60.5 + pos: 23.5,-36.5 parent: 1 - - uid: 9850 + - uid: 10117 components: - type: Transform - pos: -30.5,-61.5 + pos: 23.5,-38.5 parent: 1 - - uid: 9851 + - uid: 10118 components: - type: Transform - pos: -30.5,-62.5 + pos: 23.5,-39.5 parent: 1 - - uid: 9852 + - uid: 10119 components: - type: Transform - pos: -30.5,-63.5 + pos: 23.5,-43.5 parent: 1 - - uid: 9853 + - uid: 10120 components: - type: Transform - pos: -30.5,-64.5 + pos: 23.5,-59.5 parent: 1 - - uid: 9854 + - uid: 10121 components: - type: Transform - pos: -30.5,-65.5 + pos: 23.5,-61.5 parent: 1 - - uid: 9855 + - uid: 10122 components: - type: Transform - pos: -30.5,-66.5 + pos: 23.5,-60.5 parent: 1 - - uid: 9856 + - uid: 10124 components: - type: Transform - pos: -30.5,-67.5 + pos: 23.5,0.5 parent: 1 - - uid: 9857 + - uid: 10125 components: - type: Transform - pos: -30.5,-68.5 + pos: 23.5,6.5 parent: 1 - - uid: 9858 + - uid: 10126 components: - type: Transform - pos: -30.5,-69.5 + pos: 23.5,2.5 parent: 1 - - uid: 9859 + - uid: 10180 components: - type: Transform - pos: -30.5,-70.5 + pos: 23.5,-2.5 parent: 1 - - uid: 9860 + - uid: 10181 components: - type: Transform - pos: -30.5,-71.5 + pos: 23.5,-12.5 parent: 1 - - uid: 9861 + - uid: 10182 components: - type: Transform - pos: -30.5,-72.5 + pos: 23.5,-20.5 parent: 1 - - uid: 9862 + - uid: 10183 components: - type: Transform - pos: -30.5,-73.5 + pos: 23.5,-22.5 parent: 1 - - uid: 9863 + - uid: 10184 components: - type: Transform - pos: -40.5,12.5 + pos: 23.5,-21.5 parent: 1 - - uid: 9864 + - uid: 10185 components: - type: Transform - pos: -29.5,38.5 + pos: 23.5,-23.5 parent: 1 - - uid: 9865 + - uid: 10186 components: - type: Transform - pos: -29.5,37.5 + pos: 23.5,-24.5 parent: 1 - - uid: 9866 + - uid: 10191 components: - type: Transform - pos: -29.5,36.5 + pos: 23.5,-0.5 parent: 1 - - uid: 9867 + - uid: 10192 components: - type: Transform - pos: -29.5,35.5 + pos: 23.5,3.5 parent: 1 - - uid: 9868 + - uid: 10193 components: - type: Transform - pos: -29.5,34.5 + pos: -32.5,-121.5 parent: 1 - - uid: 9869 + - uid: 10203 components: - type: Transform - pos: -29.5,33.5 + pos: -11.5,-57.5 parent: 1 - - uid: 9870 + - uid: 10205 components: - type: Transform - pos: -29.5,32.5 + pos: -37.5,-88.5 parent: 1 - - uid: 9871 + - uid: 10206 components: - type: Transform - pos: -29.5,31.5 + pos: -37.5,-89.5 parent: 1 - - uid: 9872 + - uid: 10207 components: - type: Transform - pos: -29.5,30.5 + pos: -37.5,-90.5 parent: 1 - - uid: 9873 + - uid: 10208 components: - type: Transform - pos: -29.5,29.5 + pos: -37.5,-91.5 parent: 1 - - uid: 9874 + - uid: 10209 components: - type: Transform - pos: -29.5,28.5 + pos: -37.5,-92.5 parent: 1 - - uid: 9875 + - uid: 10218 components: - type: Transform - pos: -29.5,27.5 + pos: -31.5,-107.5 parent: 1 - - uid: 9876 + - uid: 10219 components: - type: Transform - pos: -29.5,26.5 + pos: 23.5,-3.5 parent: 1 - - uid: 9877 + - uid: 10220 components: - type: Transform - pos: -29.5,25.5 + pos: 23.5,-8.5 parent: 1 - - uid: 9878 + - uid: 10221 components: - type: Transform - pos: -29.5,24.5 + pos: 23.5,-44.5 parent: 1 - - uid: 9879 + - uid: 10222 components: - type: Transform - pos: -29.5,23.5 + pos: 23.5,-45.5 parent: 1 - - uid: 9880 + - uid: 10225 components: - type: Transform - pos: -29.5,22.5 + pos: 23.5,-74.5 parent: 1 - - uid: 9881 + - uid: 10226 components: - type: Transform - pos: -29.5,21.5 + pos: 23.5,-69.5 parent: 1 - - uid: 9882 + - uid: 10228 components: - type: Transform - pos: -29.5,20.5 + pos: 23.5,-75.5 parent: 1 - - uid: 9883 + - uid: 10230 components: - type: Transform - pos: -29.5,19.5 + pos: 23.5,5.5 parent: 1 - - uid: 9884 + - uid: 10231 components: - type: Transform - pos: -29.5,18.5 + pos: 23.5,4.5 parent: 1 - - uid: 9885 + - uid: 10232 components: - type: Transform - pos: -29.5,17.5 + pos: 23.5,26.5 parent: 1 - - uid: 9886 + - uid: 10237 components: - type: Transform - pos: -29.5,16.5 + pos: 46.5,-107.5 parent: 1 - - uid: 9887 + - uid: 10240 components: - type: Transform - pos: -29.5,15.5 + pos: 47.5,-122.5 parent: 1 - - uid: 9888 + - uid: 10243 components: - type: Transform - pos: -29.5,14.5 + pos: 46.5,-120.5 parent: 1 - - uid: 9889 + - uid: 10257 components: - type: Transform - pos: -29.5,13.5 + pos: -30.5,-107.5 parent: 1 - - uid: 9890 + - uid: 10258 components: - type: Transform - pos: -29.5,12.5 + pos: -30.5,-108.5 parent: 1 - - uid: 9891 + - uid: 10259 components: - type: Transform - pos: -29.5,11.5 + pos: 23.5,-7.5 parent: 1 - - uid: 9892 + - uid: 10260 components: - type: Transform - pos: -29.5,10.5 + pos: 23.5,-46.5 parent: 1 - - uid: 9893 + - uid: 10261 components: - type: Transform - pos: -29.5,9.5 + pos: 23.5,-47.5 parent: 1 - - uid: 9894 + - uid: 10263 components: - type: Transform - pos: -29.5,8.5 + pos: 23.5,-67.5 parent: 1 - - uid: 9895 + - uid: 10264 components: - type: Transform - pos: -29.5,7.5 + pos: 23.5,-71.5 parent: 1 - - uid: 9896 + - uid: 10265 components: - type: Transform - pos: -29.5,6.5 + pos: 23.5,-70.5 parent: 1 - - uid: 9897 + - uid: 10269 components: - type: Transform - pos: -29.5,5.5 + pos: 23.5,-1.5 parent: 1 - - uid: 9898 + - uid: 10270 components: - type: Transform - pos: -29.5,4.5 + pos: 23.5,28.5 parent: 1 - - uid: 9899 + - uid: 10271 components: - type: Transform - pos: -29.5,3.5 + pos: 23.5,27.5 parent: 1 - - uid: 9900 + - uid: 10272 components: - type: Transform - pos: -29.5,2.5 + pos: 23.5,31.5 parent: 1 - - uid: 9901 + - uid: 10273 components: - type: Transform - pos: -29.5,1.5 + pos: 23.5,32.5 parent: 1 - - uid: 9902 + - uid: 10274 components: - type: Transform - pos: -29.5,0.5 + pos: 46.5,-112.5 parent: 1 - - uid: 9903 + - uid: 10290 components: - type: Transform - pos: -29.5,-0.5 + pos: 45.5,-122.5 parent: 1 - - uid: 9904 + - uid: 10296 components: - type: Transform - pos: -29.5,-1.5 + pos: 46.5,-113.5 parent: 1 - - uid: 9905 + - uid: 10297 components: - type: Transform - pos: -29.5,-2.5 + pos: 23.5,-6.5 parent: 1 - - uid: 9906 + - uid: 10298 components: - type: Transform - pos: -29.5,-3.5 + pos: 23.5,-13.5 parent: 1 - - uid: 9907 + - uid: 10299 components: - type: Transform - pos: -29.5,-4.5 + pos: 23.5,-48.5 parent: 1 - - uid: 9908 + - uid: 10301 components: - type: Transform - pos: -29.5,-5.5 + pos: 23.5,-49.5 parent: 1 - - uid: 9909 + - uid: 10302 components: - type: Transform - pos: -29.5,-6.5 + pos: 23.5,-68.5 parent: 1 - - uid: 9910 + - uid: 10303 components: - type: Transform - pos: -29.5,-7.5 + pos: 23.5,-72.5 parent: 1 - - uid: 9911 + - uid: 10304 components: - type: Transform - pos: -29.5,-8.5 + pos: 23.5,-73.5 parent: 1 - - uid: 9912 + - uid: 10308 components: - type: Transform - pos: -29.5,-9.5 + pos: -29.5,-119.5 parent: 1 - - uid: 9913 + - uid: 10309 components: - type: Transform - pos: -29.5,-10.5 + pos: -29.5,-120.5 parent: 1 - - uid: 9914 + - uid: 10310 components: - type: Transform - pos: -29.5,-11.5 + pos: 23.5,29.5 parent: 1 - - uid: 9915 + - uid: 10311 components: - type: Transform - pos: -29.5,-12.5 + pos: 23.5,30.5 parent: 1 - - uid: 9916 + - uid: 10312 components: - type: Transform - pos: -29.5,-13.5 + pos: 23.5,33.5 parent: 1 - - uid: 9917 + - uid: 10318 components: - type: Transform - pos: -29.5,-14.5 + pos: -40.5,-76.5 parent: 1 - - uid: 9918 + - uid: 10319 components: - type: Transform - pos: -29.5,-15.5 + pos: -40.5,-77.5 parent: 1 - - uid: 9919 + - uid: 10320 components: - type: Transform - pos: -29.5,-16.5 + pos: -40.5,-78.5 parent: 1 - - uid: 9920 + - uid: 10321 components: - type: Transform - pos: -29.5,-17.5 + pos: -40.5,-79.5 parent: 1 - - uid: 9921 + - uid: 10322 components: - type: Transform - pos: -29.5,-18.5 + pos: -40.5,-80.5 parent: 1 - - uid: 9922 + - uid: 10323 components: - type: Transform - pos: -29.5,-19.5 + pos: -40.5,-81.5 parent: 1 - - uid: 9923 + - uid: 10324 components: - type: Transform - pos: -29.5,-20.5 + pos: -40.5,-82.5 parent: 1 - - uid: 9924 + - uid: 10325 components: - type: Transform - pos: -29.5,-21.5 + pos: -40.5,-83.5 parent: 1 - - uid: 9925 + - uid: 10326 components: - type: Transform - pos: -29.5,-22.5 + pos: -40.5,-84.5 parent: 1 - - uid: 9926 + - uid: 10327 components: - type: Transform - pos: -29.5,-23.5 + pos: -40.5,-85.5 parent: 1 - - uid: 9927 + - uid: 10328 components: - type: Transform - pos: -29.5,-24.5 + pos: -40.5,-86.5 parent: 1 - - uid: 9928 + - uid: 10329 components: - type: Transform - pos: -29.5,-25.5 + pos: -40.5,-87.5 parent: 1 - - uid: 9929 + - uid: 10330 components: - type: Transform - pos: -29.5,-26.5 + pos: -40.5,-88.5 parent: 1 - - uid: 9930 + - uid: 10331 components: - type: Transform - pos: -29.5,-27.5 + pos: -40.5,-89.5 parent: 1 - - uid: 9931 + - uid: 10332 components: - type: Transform - pos: -29.5,-28.5 + pos: -40.5,-90.5 parent: 1 - - uid: 9932 + - uid: 10333 components: - type: Transform - pos: -29.5,-29.5 + pos: -40.5,-91.5 parent: 1 - - uid: 9933 + - uid: 10334 components: - type: Transform - pos: -29.5,-30.5 + pos: -40.5,-92.5 parent: 1 - - uid: 9934 + - uid: 10335 components: - type: Transform - pos: -29.5,-31.5 + pos: -40.5,-93.5 parent: 1 - - uid: 9935 + - uid: 10336 components: - type: Transform - pos: -29.5,-32.5 + pos: -40.5,-94.5 parent: 1 - - uid: 9936 + - uid: 10337 components: - type: Transform - pos: -29.5,-33.5 + pos: -40.5,-95.5 parent: 1 - - uid: 9937 + - uid: 10338 components: - type: Transform - pos: -29.5,-34.5 + pos: -40.5,-96.5 parent: 1 - - uid: 9938 + - uid: 10339 components: - type: Transform - pos: -29.5,-35.5 + pos: -40.5,-97.5 parent: 1 - - uid: 9939 + - uid: 10340 components: - type: Transform - pos: -29.5,-36.5 + pos: -40.5,-98.5 parent: 1 - - uid: 9940 + - uid: 10341 components: - type: Transform - pos: -29.5,-37.5 + pos: -40.5,-99.5 parent: 1 - - uid: 9941 + - uid: 10342 components: - type: Transform - pos: -29.5,-38.5 + pos: -40.5,-100.5 parent: 1 - - uid: 9942 + - uid: 10343 components: - type: Transform - pos: -29.5,-39.5 + pos: -40.5,-101.5 parent: 1 - - uid: 9943 + - uid: 10344 components: - type: Transform - pos: -29.5,-40.5 + pos: -40.5,-102.5 parent: 1 - - uid: 9944 + - uid: 10345 components: - type: Transform - pos: -29.5,-41.5 + pos: -40.5,-103.5 parent: 1 - - uid: 9945 + - uid: 10346 components: - type: Transform - pos: -29.5,-42.5 + pos: -40.5,-104.5 parent: 1 - - uid: 9946 + - uid: 10347 components: - type: Transform - pos: -29.5,-43.5 + pos: -40.5,-105.5 parent: 1 - - uid: 9947 + - uid: 10348 components: - type: Transform - pos: -29.5,-44.5 + pos: -40.5,-106.5 parent: 1 - - uid: 9948 + - uid: 10349 components: - type: Transform - pos: -29.5,-45.5 + pos: -40.5,-107.5 parent: 1 - - uid: 9949 + - uid: 10350 components: - type: Transform - pos: -29.5,-46.5 + pos: -40.5,-108.5 parent: 1 - - uid: 9950 + - uid: 10351 components: - type: Transform - pos: -29.5,-47.5 + pos: -40.5,-109.5 parent: 1 - - uid: 9951 + - uid: 10352 components: - type: Transform - pos: -29.5,-48.5 + pos: -40.5,-110.5 parent: 1 - - uid: 9952 + - uid: 10353 components: - type: Transform - pos: -29.5,-49.5 + pos: -40.5,-111.5 parent: 1 - - uid: 9953 + - uid: 10354 components: - type: Transform - pos: -29.5,-50.5 + pos: -40.5,-112.5 parent: 1 - - uid: 9954 + - uid: 10355 components: - type: Transform - pos: -29.5,-51.5 + pos: -40.5,-113.5 parent: 1 - - uid: 9955 + - uid: 10356 components: - type: Transform - pos: -29.5,-52.5 + pos: -40.5,-114.5 parent: 1 - - uid: 9956 + - uid: 10357 components: - type: Transform - pos: -29.5,-53.5 + pos: -40.5,-115.5 parent: 1 - - uid: 9957 + - uid: 10358 components: - type: Transform - pos: -29.5,-54.5 + pos: -40.5,-116.5 parent: 1 - - uid: 9958 + - uid: 10359 components: - type: Transform - pos: -29.5,-55.5 + pos: -40.5,-117.5 parent: 1 - - uid: 9959 + - uid: 10360 components: - type: Transform - pos: -29.5,-56.5 + pos: -40.5,-118.5 parent: 1 - - uid: 9960 + - uid: 10361 components: - type: Transform - pos: -29.5,-57.5 + pos: -40.5,-119.5 parent: 1 - - uid: 9961 + - uid: 10362 components: - type: Transform - pos: -29.5,-58.5 + pos: -40.5,-120.5 parent: 1 - - uid: 9962 + - uid: 10363 components: - type: Transform - pos: -29.5,-59.5 + pos: -40.5,-121.5 parent: 1 - - uid: 9963 + - uid: 10364 components: - type: Transform - pos: -29.5,-60.5 + pos: -40.5,-122.5 parent: 1 - - uid: 9964 + - uid: 10365 components: - type: Transform - pos: -29.5,-61.5 + pos: -40.5,-123.5 parent: 1 - - uid: 9965 + - uid: 10366 components: - type: Transform - pos: -29.5,-62.5 + pos: -40.5,-124.5 parent: 1 - - uid: 9966 + - uid: 10367 components: - type: Transform - pos: -29.5,-63.5 + pos: -40.5,-125.5 parent: 1 - - uid: 9967 + - uid: 10368 components: - type: Transform - pos: -29.5,-64.5 + pos: -40.5,-126.5 parent: 1 - - uid: 9968 + - uid: 10369 components: - type: Transform - pos: -29.5,-65.5 + pos: -40.5,-127.5 parent: 1 - - uid: 9969 + - uid: 10370 components: - type: Transform - pos: -29.5,-66.5 + pos: -39.5,38.5 parent: 1 - - uid: 9970 + - uid: 10371 components: - type: Transform - pos: -29.5,-67.5 + pos: -39.5,37.5 parent: 1 - - uid: 9971 + - uid: 10372 components: - type: Transform - pos: -29.5,-68.5 + pos: -39.5,36.5 parent: 1 - - uid: 9972 + - uid: 10373 components: - type: Transform - pos: -29.5,-69.5 + pos: -39.5,35.5 parent: 1 - - uid: 9973 + - uid: 10374 components: - type: Transform - pos: -29.5,-70.5 + pos: -39.5,34.5 parent: 1 - - uid: 9974 + - uid: 10375 components: - type: Transform - pos: -29.5,-71.5 + pos: -39.5,33.5 parent: 1 - - uid: 9975 + - uid: 10376 components: - type: Transform - pos: -29.5,-72.5 + pos: -39.5,32.5 parent: 1 - - uid: 9976 + - uid: 10377 components: - type: Transform - pos: -29.5,-73.5 + pos: -39.5,31.5 parent: 1 - - uid: 9977 + - uid: 10378 components: - type: Transform - pos: -29.5,-74.5 + pos: -39.5,30.5 parent: 1 - - uid: 9978 + - uid: 10379 components: - type: Transform - pos: -36.5,-90.5 + pos: -39.5,29.5 parent: 1 - - uid: 9979 + - uid: 10380 components: - type: Transform - pos: -36.5,-91.5 + pos: -39.5,28.5 parent: 1 - - uid: 9980 + - uid: 10381 components: - type: Transform - pos: -36.5,-92.5 + pos: -39.5,27.5 parent: 1 - - uid: 9981 + - uid: 10382 components: - type: Transform - pos: -36.5,-93.5 + pos: -39.5,26.5 parent: 1 - - uid: 9982 + - uid: 10383 components: - type: Transform - pos: -36.5,-94.5 + pos: -39.5,25.5 parent: 1 - - uid: 9983 + - uid: 10384 components: - type: Transform - pos: -36.5,-95.5 + pos: -39.5,24.5 parent: 1 - - uid: 9984 + - uid: 10385 components: - type: Transform - pos: -36.5,-96.5 + pos: -39.5,23.5 parent: 1 - - uid: 9985 + - uid: 10386 components: - type: Transform - pos: -36.5,-97.5 + pos: -39.5,22.5 parent: 1 - - uid: 9986 + - uid: 10387 components: - type: Transform - pos: -36.5,-98.5 + pos: -39.5,21.5 parent: 1 - - uid: 9987 + - uid: 10388 components: - type: Transform - pos: -36.5,-99.5 + pos: -39.5,20.5 parent: 1 - - uid: 9988 + - uid: 10389 components: - type: Transform - pos: -36.5,-100.5 + pos: -39.5,19.5 parent: 1 - - uid: 9989 + - uid: 10390 components: - type: Transform - pos: -36.5,-101.5 + pos: -39.5,18.5 parent: 1 - - uid: 9990 + - uid: 10391 components: - type: Transform - pos: -36.5,-102.5 + pos: -39.5,17.5 parent: 1 - - uid: 9991 + - uid: 10392 components: - type: Transform - pos: -36.5,-103.5 + pos: -39.5,16.5 parent: 1 - - uid: 9992 + - uid: 10393 components: - type: Transform - pos: -36.5,-104.5 + pos: -39.5,15.5 parent: 1 - - uid: 9993 + - uid: 10394 components: - type: Transform - pos: -36.5,-105.5 + pos: -39.5,14.5 parent: 1 - - uid: 9994 + - uid: 10395 components: - type: Transform - pos: -36.5,-106.5 + pos: -39.5,13.5 parent: 1 - - uid: 9995 + - uid: 10396 components: - type: Transform - pos: -36.5,-107.5 + pos: -39.5,12.5 parent: 1 - - uid: 9996 + - uid: 10397 components: - type: Transform - pos: -36.5,-108.5 + pos: -39.5,11.5 parent: 1 - - uid: 9997 + - uid: 10398 components: - type: Transform - pos: 23.5,24.5 + pos: -39.5,10.5 parent: 1 - - uid: 9998 + - uid: 10399 components: - type: Transform - pos: 23.5,-25.5 + pos: -39.5,9.5 parent: 1 - - uid: 9999 + - uid: 10400 components: - type: Transform - pos: 23.5,-30.5 + pos: -39.5,8.5 parent: 1 - - uid: 10000 + - uid: 10401 components: - type: Transform - pos: 23.5,-29.5 + pos: -39.5,7.5 parent: 1 - - uid: 10001 + - uid: 10402 components: - type: Transform - pos: 23.5,-51.5 + pos: -39.5,6.5 parent: 1 - - uid: 10002 + - uid: 10403 components: - type: Transform - pos: 23.5,-40.5 + pos: -39.5,5.5 parent: 1 - - uid: 10003 + - uid: 10404 components: - type: Transform - pos: 23.5,-53.5 + pos: -39.5,4.5 parent: 1 - - uid: 10004 + - uid: 10405 components: - type: Transform - pos: 23.5,-52.5 + pos: -39.5,3.5 parent: 1 - - uid: 10005 + - uid: 10406 components: - type: Transform - pos: 23.5,-50.5 + pos: -39.5,2.5 parent: 1 - - uid: 10007 + - uid: 10407 components: - type: Transform - pos: -36.5,-119.5 + pos: -39.5,1.5 parent: 1 - - uid: 10008 + - uid: 10408 components: - type: Transform - pos: -36.5,-120.5 + pos: -39.5,0.5 parent: 1 - - uid: 10009 + - uid: 10409 components: - type: Transform - pos: -36.5,-121.5 + pos: -39.5,-0.5 parent: 1 - - uid: 10010 + - uid: 10410 components: - type: Transform - pos: -36.5,-122.5 + pos: -39.5,-1.5 parent: 1 - - uid: 10015 + - uid: 10411 components: - type: Transform - pos: -36.5,-127.5 + pos: -39.5,-2.5 parent: 1 - - uid: 10016 + - uid: 10412 components: - type: Transform - pos: -36.5,-128.5 + pos: -39.5,-3.5 parent: 1 - - uid: 10017 + - uid: 10413 components: - type: Transform - pos: -35.5,-90.5 + pos: -39.5,-4.5 parent: 1 - - uid: 10018 + - uid: 10414 components: - type: Transform - pos: -35.5,-91.5 + pos: -39.5,-5.5 parent: 1 - - uid: 10019 + - uid: 10415 components: - type: Transform - pos: -35.5,-92.5 + pos: -39.5,-6.5 parent: 1 - - uid: 10020 + - uid: 10416 components: - type: Transform - pos: -35.5,-93.5 + pos: -39.5,-7.5 parent: 1 - - uid: 10021 + - uid: 10417 components: - type: Transform - pos: -35.5,-94.5 + pos: -39.5,-8.5 parent: 1 - - uid: 10022 + - uid: 10418 components: - type: Transform - pos: -35.5,-95.5 + pos: -39.5,-9.5 parent: 1 - - uid: 10023 + - uid: 10419 components: - type: Transform - pos: -35.5,-96.5 + pos: -39.5,-10.5 parent: 1 - - uid: 10024 + - uid: 10420 components: - type: Transform - pos: -35.5,-97.5 + pos: -39.5,-11.5 parent: 1 - - uid: 10025 + - uid: 10421 components: - type: Transform - pos: -35.5,-98.5 + pos: -39.5,-12.5 parent: 1 - - uid: 10026 + - uid: 10422 components: - type: Transform - pos: -35.5,-99.5 + pos: -39.5,-13.5 parent: 1 - - uid: 10027 + - uid: 10423 components: - type: Transform - pos: -35.5,-100.5 + pos: -39.5,-14.5 parent: 1 - - uid: 10028 + - uid: 10424 components: - type: Transform - pos: -35.5,-101.5 + pos: -39.5,-15.5 parent: 1 - - uid: 10029 + - uid: 10425 components: - type: Transform - pos: -35.5,-102.5 + pos: -39.5,-16.5 parent: 1 - - uid: 10030 + - uid: 10426 components: - type: Transform - pos: -35.5,-103.5 + pos: -39.5,-17.5 parent: 1 - - uid: 10031 + - uid: 10427 components: - type: Transform - pos: -35.5,-104.5 + pos: -39.5,-18.5 parent: 1 - - uid: 10032 + - uid: 10428 components: - type: Transform - pos: -35.5,-105.5 + pos: -39.5,-19.5 parent: 1 - - uid: 10033 + - uid: 10429 components: - type: Transform - pos: -35.5,-106.5 + pos: -39.5,-20.5 parent: 1 - - uid: 10034 + - uid: 10430 components: - type: Transform - pos: -35.5,-107.5 + pos: -39.5,-21.5 parent: 1 - - uid: 10035 + - uid: 10431 components: - type: Transform - pos: -35.5,-108.5 + pos: -39.5,-22.5 parent: 1 - - uid: 10036 + - uid: 10432 components: - type: Transform - pos: 23.5,-10.5 + pos: -39.5,-23.5 parent: 1 - - uid: 10037 + - uid: 10433 components: - type: Transform - pos: 23.5,-27.5 + pos: -39.5,-24.5 parent: 1 - - uid: 10038 + - uid: 10434 components: - type: Transform - pos: 23.5,-35.5 + pos: -39.5,-25.5 parent: 1 - - uid: 10039 + - uid: 10435 components: - type: Transform - pos: 23.5,-31.5 + pos: -39.5,-26.5 parent: 1 - - uid: 10040 + - uid: 10436 components: - type: Transform - pos: 23.5,-32.5 + pos: -39.5,-27.5 parent: 1 - - uid: 10041 + - uid: 10437 components: - type: Transform - pos: 23.5,-42.5 + pos: -39.5,-28.5 parent: 1 - - uid: 10042 + - uid: 10438 components: - type: Transform - pos: 23.5,-58.5 + pos: -39.5,-29.5 parent: 1 - - uid: 10043 + - uid: 10439 components: - type: Transform - pos: 23.5,-54.5 + pos: -39.5,-30.5 parent: 1 - - uid: 10044 + - uid: 10440 components: - type: Transform - pos: 23.5,-55.5 + pos: -39.5,-31.5 parent: 1 - - uid: 10046 + - uid: 10441 components: - type: Transform - pos: 23.5,25.5 + pos: -39.5,-32.5 parent: 1 - - uid: 10047 + - uid: 10442 components: - type: Transform - pos: -35.5,-120.5 + pos: -39.5,-33.5 parent: 1 - - uid: 10048 + - uid: 10443 components: - type: Transform - pos: -35.5,-121.5 + pos: -39.5,-34.5 parent: 1 - - uid: 10049 + - uid: 10444 components: - type: Transform - pos: -35.5,-122.5 + pos: -39.5,-35.5 parent: 1 - - uid: 10050 + - uid: 10445 components: - type: Transform - pos: -35.5,-123.5 + pos: -39.5,-36.5 parent: 1 - - uid: 10054 + - uid: 10446 components: - type: Transform - pos: -35.5,-127.5 + pos: -39.5,-37.5 parent: 1 - - uid: 10055 + - uid: 10447 components: - type: Transform - pos: -35.5,-128.5 + pos: -39.5,-38.5 parent: 1 - - uid: 10056 + - uid: 10448 components: - type: Transform - pos: -34.5,-90.5 + pos: -39.5,-39.5 parent: 1 - - uid: 10057 + - uid: 10449 components: - type: Transform - pos: -34.5,-91.5 + pos: -39.5,-40.5 parent: 1 - - uid: 10058 + - uid: 10450 components: - type: Transform - pos: -34.5,-92.5 + pos: -39.5,-41.5 parent: 1 - - uid: 10059 + - uid: 10451 components: - type: Transform - pos: -34.5,-93.5 + pos: -39.5,-42.5 parent: 1 - - uid: 10060 + - uid: 10452 components: - type: Transform - pos: -34.5,-94.5 + pos: -39.5,-43.5 parent: 1 - - uid: 10061 + - uid: 10453 components: - type: Transform - pos: -34.5,-95.5 + pos: -39.5,-44.5 parent: 1 - - uid: 10062 + - uid: 10454 components: - type: Transform - pos: -34.5,-96.5 + pos: -39.5,-45.5 parent: 1 - - uid: 10063 + - uid: 10455 components: - type: Transform - pos: -34.5,-97.5 + pos: -39.5,-46.5 parent: 1 - - uid: 10064 + - uid: 10456 components: - type: Transform - pos: -34.5,-98.5 + pos: -39.5,-47.5 parent: 1 - - uid: 10065 + - uid: 10457 components: - type: Transform - pos: -34.5,-99.5 + pos: -39.5,-48.5 parent: 1 - - uid: 10066 + - uid: 10458 components: - type: Transform - pos: -34.5,-100.5 + pos: -39.5,-49.5 parent: 1 - - uid: 10067 + - uid: 10459 components: - type: Transform - pos: -34.5,-101.5 + pos: -39.5,-50.5 parent: 1 - - uid: 10068 + - uid: 10460 components: - type: Transform - pos: -34.5,-102.5 + pos: -39.5,-51.5 parent: 1 - - uid: 10069 + - uid: 10461 components: - type: Transform - pos: -34.5,-103.5 + pos: -39.5,-52.5 parent: 1 - - uid: 10070 + - uid: 10462 components: - type: Transform - pos: -34.5,-104.5 + pos: -39.5,-53.5 parent: 1 - - uid: 10071 + - uid: 10463 components: - type: Transform - pos: -34.5,-105.5 + pos: -39.5,-54.5 parent: 1 - - uid: 10072 + - uid: 10464 components: - type: Transform - pos: -34.5,-106.5 + pos: -39.5,-55.5 parent: 1 - - uid: 10073 + - uid: 10465 components: - type: Transform - pos: -34.5,-107.5 + pos: -39.5,-56.5 parent: 1 - - uid: 10075 + - uid: 10466 components: - type: Transform - pos: 23.5,-9.5 + pos: -39.5,-57.5 parent: 1 - - uid: 10076 + - uid: 10467 components: - type: Transform - pos: 23.5,-26.5 + pos: -39.5,-58.5 parent: 1 - - uid: 10077 + - uid: 10468 components: - type: Transform - pos: 23.5,-37.5 + pos: -39.5,-59.5 parent: 1 - - uid: 10078 + - uid: 10469 components: - type: Transform - pos: 23.5,-33.5 + pos: -39.5,-60.5 parent: 1 - - uid: 10079 + - uid: 10470 components: - type: Transform - pos: 23.5,-34.5 + pos: -39.5,-61.5 parent: 1 - - uid: 10080 + - uid: 10471 components: - type: Transform - pos: 23.5,-41.5 + pos: -39.5,-62.5 parent: 1 - - uid: 10081 + - uid: 10472 components: - type: Transform - pos: 23.5,-84.5 + pos: -39.5,-63.5 parent: 1 - - uid: 10082 + - uid: 10473 components: - type: Transform - pos: 23.5,-56.5 + pos: -39.5,-64.5 parent: 1 - - uid: 10083 + - uid: 10474 components: - type: Transform - pos: 23.5,-57.5 + pos: -39.5,-65.5 parent: 1 - - uid: 10085 + - uid: 10475 components: - type: Transform - pos: 23.5,1.5 + pos: -39.5,-66.5 parent: 1 - - uid: 10086 + - uid: 10476 components: - type: Transform - pos: 23.5,7.5 + pos: -39.5,-67.5 parent: 1 - - uid: 10087 + - uid: 10477 components: - type: Transform - pos: -34.5,-121.5 + pos: -39.5,-68.5 parent: 1 - - uid: 10088 + - uid: 10478 components: - type: Transform - pos: -34.5,-122.5 + pos: -39.5,-69.5 parent: 1 - - uid: 10089 + - uid: 10479 components: - type: Transform - pos: -34.5,-123.5 + pos: -39.5,-70.5 parent: 1 - - uid: 10093 + - uid: 10480 components: - type: Transform - pos: -34.5,-127.5 + pos: -39.5,-71.5 parent: 1 - - uid: 10094 + - uid: 10481 components: - type: Transform - pos: -34.5,-128.5 + pos: -39.5,-72.5 parent: 1 - - uid: 10095 + - uid: 10482 components: - type: Transform - pos: -33.5,-90.5 + pos: -39.5,-73.5 parent: 1 - - uid: 10096 + - uid: 10483 components: - type: Transform - pos: -33.5,-91.5 + pos: -39.5,-74.5 parent: 1 - - uid: 10097 + - uid: 10484 components: - type: Transform - pos: -33.5,-92.5 + pos: -39.5,-75.5 parent: 1 - - uid: 10098 + - uid: 10485 components: - type: Transform - pos: -33.5,-93.5 + pos: -39.5,-76.5 parent: 1 - - uid: 10099 + - uid: 10486 components: - type: Transform - pos: -33.5,-94.5 + pos: -39.5,-77.5 parent: 1 - - uid: 10100 + - uid: 10487 components: - type: Transform - pos: -33.5,-95.5 + pos: -39.5,-78.5 parent: 1 - - uid: 10101 + - uid: 10488 components: - type: Transform - pos: -33.5,-96.5 + pos: -39.5,-79.5 parent: 1 - - uid: 10102 + - uid: 10489 components: - type: Transform - pos: -33.5,-97.5 + pos: -39.5,-80.5 parent: 1 - - uid: 10103 + - uid: 10490 components: - type: Transform - pos: -33.5,-98.5 + pos: -39.5,-81.5 parent: 1 - - uid: 10104 + - uid: 10491 components: - type: Transform - pos: -33.5,-99.5 + pos: -39.5,-82.5 parent: 1 - - uid: 10105 + - uid: 10492 components: - type: Transform - pos: -33.5,-100.5 + pos: -39.5,-83.5 parent: 1 - - uid: 10106 + - uid: 10493 components: - type: Transform - pos: -33.5,-101.5 + pos: -39.5,-84.5 parent: 1 - - uid: 10114 + - uid: 10494 components: - type: Transform - pos: 23.5,-11.5 + pos: -39.5,-85.5 parent: 1 - - uid: 10115 + - uid: 10495 components: - type: Transform - pos: 23.5,-28.5 + pos: -39.5,-86.5 parent: 1 - - uid: 10116 + - uid: 10496 components: - type: Transform - pos: 23.5,-36.5 + pos: -39.5,-87.5 parent: 1 - - uid: 10117 + - uid: 10497 components: - type: Transform - pos: 23.5,-38.5 + pos: -39.5,-88.5 parent: 1 - - uid: 10118 + - uid: 10498 components: - type: Transform - pos: 23.5,-39.5 + pos: -39.5,-89.5 parent: 1 - - uid: 10119 + - uid: 10499 components: - type: Transform - pos: 23.5,-43.5 + pos: -39.5,-90.5 parent: 1 - - uid: 10120 + - uid: 10500 components: - type: Transform - pos: 23.5,-59.5 + pos: -39.5,-91.5 parent: 1 - - uid: 10121 + - uid: 10501 components: - type: Transform - pos: 23.5,-61.5 + pos: -39.5,-92.5 parent: 1 - - uid: 10122 + - uid: 10502 components: - type: Transform - pos: 23.5,-60.5 + pos: -39.5,-93.5 parent: 1 - - uid: 10124 + - uid: 10503 components: - type: Transform - pos: 23.5,0.5 + pos: -39.5,-94.5 parent: 1 - - uid: 10125 + - uid: 10504 components: - type: Transform - pos: 23.5,6.5 + pos: -39.5,-95.5 parent: 1 - - uid: 10126 + - uid: 10505 components: - type: Transform - pos: 23.5,2.5 + pos: -39.5,-96.5 parent: 1 - - uid: 10127 + - uid: 10506 components: - type: Transform - pos: -33.5,-122.5 + pos: -39.5,-97.5 parent: 1 - - uid: 10128 + - uid: 10507 components: - type: Transform - pos: -33.5,-123.5 + pos: -39.5,-98.5 parent: 1 - - uid: 10131 + - uid: 10508 components: - type: Transform - pos: -33.5,-126.5 + pos: -39.5,-99.5 parent: 1 - - uid: 10132 + - uid: 10509 components: - type: Transform - pos: -33.5,-127.5 + pos: -39.5,-100.5 parent: 1 - - uid: 10133 + - uid: 10510 components: - type: Transform - pos: -33.5,-128.5 + pos: -39.5,-101.5 parent: 1 - - uid: 10135 + - uid: 10511 components: - type: Transform - pos: -32.5,-91.5 + pos: -39.5,-102.5 parent: 1 - - uid: 10136 + - uid: 10512 components: - type: Transform - pos: -32.5,-92.5 + pos: -39.5,-103.5 parent: 1 - - uid: 10137 + - uid: 10513 components: - type: Transform - pos: -32.5,-93.5 + pos: -39.5,-104.5 parent: 1 - - uid: 10138 + - uid: 10514 components: - type: Transform - pos: -32.5,-94.5 + pos: -39.5,-105.5 parent: 1 - - uid: 10139 + - uid: 10515 components: - type: Transform - pos: -32.5,-95.5 + pos: -39.5,-106.5 parent: 1 - - uid: 10140 + - uid: 10516 components: - type: Transform - pos: -32.5,-96.5 + pos: -39.5,-107.5 parent: 1 - - uid: 10141 + - uid: 10517 components: - type: Transform - pos: -32.5,-97.5 + pos: -39.5,-108.5 parent: 1 - - uid: 10142 + - uid: 10518 components: - type: Transform - pos: -32.5,-98.5 + pos: -39.5,-109.5 parent: 1 - - uid: 10143 + - uid: 10519 components: - type: Transform - pos: -32.5,-99.5 + pos: -39.5,-110.5 parent: 1 - - uid: 10144 + - uid: 10520 components: - type: Transform - pos: -32.5,-100.5 + pos: -39.5,-111.5 parent: 1 - - uid: 10180 + - uid: 10521 components: - type: Transform - pos: 23.5,-2.5 + pos: -39.5,-112.5 parent: 1 - - uid: 10181 + - uid: 10522 components: - type: Transform - pos: 23.5,-12.5 + pos: -39.5,-113.5 parent: 1 - - uid: 10182 + - uid: 10523 components: - type: Transform - pos: 23.5,-20.5 + pos: -39.5,-114.5 parent: 1 - - uid: 10183 + - uid: 10524 components: - type: Transform - pos: 23.5,-22.5 + pos: 23.5,19.5 parent: 1 - - uid: 10184 + - uid: 10525 components: - type: Transform - pos: 23.5,-21.5 + pos: -39.5,-116.5 parent: 1 - - uid: 10185 + - uid: 10526 components: - type: Transform - pos: 23.5,-23.5 + pos: -39.5,-117.5 parent: 1 - - uid: 10186 + - uid: 10527 components: - type: Transform - pos: 23.5,-24.5 + pos: -39.5,-118.5 parent: 1 - - uid: 10187 + - uid: 10528 components: - type: Transform - pos: 23.5,-86.5 + pos: -39.5,-119.5 parent: 1 - - uid: 10188 + - uid: 10529 components: - type: Transform - pos: 23.5,-85.5 + pos: -39.5,-120.5 parent: 1 - - uid: 10189 + - uid: 10530 components: - type: Transform - pos: 23.5,-88.5 + pos: -39.5,-121.5 parent: 1 - - uid: 10190 + - uid: 10536 components: - type: Transform - pos: 23.5,-87.5 + pos: -39.5,-127.5 parent: 1 - - uid: 10191 + - uid: 10537 components: - type: Transform - pos: 23.5,-0.5 + pos: -38.5,38.5 parent: 1 - - uid: 10192 + - uid: 10538 components: - type: Transform - pos: 23.5,3.5 + pos: -38.5,37.5 parent: 1 - - uid: 10193 + - uid: 10539 components: - type: Transform - pos: -32.5,-121.5 + pos: -38.5,36.5 parent: 1 - - uid: 10194 + - uid: 10540 components: - type: Transform - pos: -32.5,-122.5 + pos: -38.5,35.5 parent: 1 - - uid: 10195 + - uid: 10541 components: - type: Transform - pos: -32.5,-123.5 + pos: -38.5,34.5 parent: 1 - - uid: 10200 + - uid: 10542 components: - type: Transform - pos: -32.5,-128.5 + pos: -38.5,33.5 parent: 1 - - uid: 10201 + - uid: 10543 components: - type: Transform - pos: -31.5,-90.5 + pos: -38.5,32.5 parent: 1 - - uid: 10202 + - uid: 10544 components: - type: Transform - pos: -31.5,-91.5 + pos: -38.5,31.5 parent: 1 - - uid: 10203 + - uid: 10545 components: - type: Transform - pos: -31.5,-92.5 + pos: -38.5,30.5 parent: 1 - - uid: 10204 + - uid: 10546 components: - type: Transform - pos: -31.5,-93.5 + pos: -38.5,29.5 parent: 1 - - uid: 10205 + - uid: 10547 components: - type: Transform - pos: -31.5,-94.5 + pos: -38.5,28.5 parent: 1 - - uid: 10206 + - uid: 10548 components: - type: Transform - pos: -31.5,-95.5 + pos: -38.5,27.5 parent: 1 - - uid: 10207 + - uid: 10549 components: - type: Transform - pos: -31.5,-96.5 + pos: -38.5,26.5 parent: 1 - - uid: 10208 + - uid: 10550 components: - type: Transform - pos: -31.5,-97.5 + pos: -38.5,25.5 parent: 1 - - uid: 10209 + - uid: 10551 components: - type: Transform - pos: -31.5,-98.5 + pos: -38.5,24.5 parent: 1 - - uid: 10210 + - uid: 10552 components: - type: Transform - pos: -31.5,-99.5 + pos: -38.5,23.5 parent: 1 - - uid: 10218 + - uid: 10553 components: - type: Transform - pos: -31.5,-107.5 + pos: -38.5,22.5 parent: 1 - - uid: 10219 + - uid: 10554 components: - type: Transform - pos: 23.5,-3.5 + pos: -38.5,21.5 parent: 1 - - uid: 10220 + - uid: 10555 components: - type: Transform - pos: 23.5,-8.5 + pos: -38.5,20.5 parent: 1 - - uid: 10221 + - uid: 10556 components: - type: Transform - pos: 23.5,-44.5 + pos: -38.5,19.5 parent: 1 - - uid: 10222 + - uid: 10557 components: - type: Transform - pos: 23.5,-45.5 + pos: -38.5,18.5 parent: 1 - - uid: 10223 + - uid: 10558 components: - type: Transform - pos: 23.5,-90.5 + pos: -38.5,17.5 parent: 1 - - uid: 10225 + - uid: 10559 components: - type: Transform - pos: 23.5,-74.5 + pos: -38.5,16.5 parent: 1 - - uid: 10226 + - uid: 10560 components: - type: Transform - pos: 23.5,-69.5 + pos: -38.5,15.5 parent: 1 - - uid: 10227 + - uid: 10561 components: - type: Transform - pos: 23.5,-76.5 + pos: -38.5,14.5 parent: 1 - - uid: 10228 + - uid: 10562 components: - type: Transform - pos: 23.5,-75.5 + pos: -38.5,13.5 parent: 1 - - uid: 10229 + - uid: 10563 components: - type: Transform - pos: 23.5,-82.5 + pos: -38.5,12.5 parent: 1 - - uid: 10230 + - uid: 10564 components: - type: Transform - pos: 23.5,5.5 + pos: -38.5,11.5 parent: 1 - - uid: 10231 + - uid: 10565 components: - type: Transform - pos: 23.5,4.5 + pos: -38.5,10.5 parent: 1 - - uid: 10232 + - uid: 10566 components: - type: Transform - pos: 23.5,26.5 + pos: -38.5,9.5 parent: 1 - - uid: 10233 + - uid: 10567 components: - type: Transform - pos: -31.5,-122.5 + pos: -38.5,8.5 parent: 1 - - uid: 10234 + - uid: 10568 components: - type: Transform - pos: -31.5,-123.5 + pos: -38.5,7.5 parent: 1 - - uid: 10237 + - uid: 10569 components: - type: Transform - pos: -31.5,-126.5 + pos: -38.5,6.5 parent: 1 - - uid: 10238 + - uid: 10570 components: - type: Transform - pos: -31.5,-127.5 + pos: -38.5,5.5 parent: 1 - - uid: 10239 + - uid: 10571 components: - type: Transform - pos: -31.5,-128.5 + pos: -38.5,4.5 parent: 1 - - uid: 10240 + - uid: 10572 components: - type: Transform - pos: -30.5,-90.5 + pos: -38.5,3.5 parent: 1 - - uid: 10241 + - uid: 10573 components: - type: Transform - pos: -30.5,-91.5 + pos: -38.5,2.5 parent: 1 - - uid: 10242 + - uid: 10574 components: - type: Transform - pos: -30.5,-92.5 + pos: -38.5,1.5 parent: 1 - - uid: 10243 + - uid: 10575 components: - type: Transform - pos: -30.5,-93.5 + pos: -38.5,0.5 parent: 1 - - uid: 10244 + - uid: 10576 components: - type: Transform - pos: -30.5,-94.5 + pos: -38.5,-0.5 parent: 1 - - uid: 10245 + - uid: 10577 components: - type: Transform - pos: -30.5,-95.5 + pos: -38.5,-1.5 parent: 1 - - uid: 10246 + - uid: 10578 components: - type: Transform - pos: -30.5,-96.5 + pos: -38.5,-2.5 parent: 1 - - uid: 10247 + - uid: 10579 components: - type: Transform - pos: -30.5,-97.5 + pos: -38.5,-3.5 parent: 1 - - uid: 10254 + - uid: 10580 components: - type: Transform - pos: -30.5,-104.5 + pos: -38.5,-4.5 parent: 1 - - uid: 10255 + - uid: 10581 components: - type: Transform - pos: -30.5,-105.5 + pos: -38.5,-5.5 parent: 1 - - uid: 10256 + - uid: 10582 components: - type: Transform - pos: -30.5,-106.5 + pos: -38.5,-6.5 parent: 1 - - uid: 10257 + - uid: 10583 components: - type: Transform - pos: -30.5,-107.5 + pos: -38.5,-7.5 parent: 1 - - uid: 10258 + - uid: 10584 components: - type: Transform - pos: -30.5,-108.5 + pos: -38.5,-8.5 parent: 1 - - uid: 10259 + - uid: 10585 components: - type: Transform - pos: 23.5,-7.5 + pos: -38.5,-9.5 parent: 1 - - uid: 10260 + - uid: 10592 components: - type: Transform - pos: 23.5,-46.5 + pos: 45.5,-127.5 parent: 1 - - uid: 10261 + - uid: 10597 components: - type: Transform - pos: 23.5,-47.5 + pos: 46.5,-121.5 parent: 1 - - uid: 10262 + - uid: 10604 components: - type: Transform - pos: 23.5,-89.5 + pos: 45.5,-75.5 parent: 1 - - uid: 10263 + - uid: 10611 components: - type: Transform - pos: 23.5,-67.5 + pos: 45.5,-126.5 parent: 1 - - uid: 10264 + - uid: 10621 components: - type: Transform - pos: 23.5,-71.5 + pos: 44.5,-75.5 parent: 1 - - uid: 10265 + - uid: 10629 components: - type: Transform - pos: 23.5,-70.5 + pos: 45.5,-124.5 parent: 1 - - uid: 10266 + - uid: 10635 components: - type: Transform - pos: 23.5,-78.5 + pos: 46.5,-128.5 parent: 1 - - uid: 10267 + - uid: 10639 components: - type: Transform - pos: 23.5,-80.5 + pos: 47.5,-83.5 parent: 1 - - uid: 10268 + - uid: 10653 components: - type: Transform - pos: 23.5,-81.5 + pos: 45.5,-125.5 parent: 1 - - uid: 10269 + - uid: 10658 components: - type: Transform - pos: 23.5,-1.5 + pos: 46.5,-127.5 parent: 1 - - uid: 10270 + - uid: 10662 components: - type: Transform - pos: 23.5,28.5 + pos: 47.5,-75.5 parent: 1 - - uid: 10271 + - uid: 10664 components: - type: Transform - pos: 23.5,27.5 + pos: -38.5,-88.5 parent: 1 - - uid: 10272 + - uid: 10665 components: - type: Transform - pos: 23.5,31.5 + pos: -38.5,-89.5 parent: 1 - - uid: 10273 + - uid: 10666 components: - type: Transform - pos: 23.5,32.5 + pos: -38.5,-90.5 parent: 1 - - uid: 10275 + - uid: 10667 components: - type: Transform - pos: -30.5,-125.5 + pos: -38.5,-91.5 parent: 1 - - uid: 10276 + - uid: 10668 components: - type: Transform - pos: -30.5,-126.5 + pos: -38.5,-92.5 parent: 1 - - uid: 10277 + - uid: 10669 components: - type: Transform - pos: -30.5,-127.5 + pos: -38.5,-93.5 parent: 1 - - uid: 10278 + - uid: 10670 components: - type: Transform - pos: -30.5,-128.5 + pos: -38.5,-94.5 parent: 1 - - uid: 10281 + - uid: 10671 components: - type: Transform - pos: -29.5,-92.5 + pos: -38.5,-95.5 parent: 1 - - uid: 10282 + - uid: 10672 components: - type: Transform - pos: -29.5,-93.5 + pos: -38.5,-96.5 parent: 1 - - uid: 10283 + - uid: 10673 components: - type: Transform - pos: -29.5,-94.5 + pos: -38.5,-97.5 parent: 1 - - uid: 10284 + - uid: 10674 components: - type: Transform - pos: -29.5,-95.5 + pos: -38.5,-98.5 parent: 1 - - uid: 10291 + - uid: 10675 components: - type: Transform - pos: -29.5,-102.5 + pos: -38.5,-99.5 parent: 1 - - uid: 10292 + - uid: 10676 components: - type: Transform - pos: -29.5,-103.5 + pos: -38.5,-100.5 parent: 1 - - uid: 10293 + - uid: 10677 components: - type: Transform - pos: -29.5,-104.5 + pos: -38.5,-101.5 parent: 1 - - uid: 10294 + - uid: 10678 components: - type: Transform - pos: -29.5,-105.5 + pos: -38.5,-102.5 parent: 1 - - uid: 10295 + - uid: 10679 components: - type: Transform - pos: -29.5,-106.5 + pos: -38.5,-103.5 parent: 1 - - uid: 10296 + - uid: 10680 components: - type: Transform - pos: -29.5,-107.5 + pos: -38.5,-104.5 parent: 1 - - uid: 10297 + - uid: 10681 components: - type: Transform - pos: 23.5,-6.5 + pos: -38.5,-105.5 parent: 1 - - uid: 10298 + - uid: 10682 components: - type: Transform - pos: 23.5,-13.5 + pos: -38.5,-106.5 parent: 1 - - uid: 10299 + - uid: 10683 components: - type: Transform - pos: 23.5,-48.5 + pos: -38.5,-107.5 parent: 1 - - uid: 10300 + - uid: 10684 components: - type: Transform - pos: 23.5,-92.5 + pos: -38.5,-108.5 parent: 1 - - uid: 10301 + - uid: 10685 components: - type: Transform - pos: 23.5,-49.5 + pos: -38.5,-109.5 parent: 1 - - uid: 10302 + - uid: 10686 components: - type: Transform - pos: 23.5,-68.5 + pos: -38.5,-110.5 parent: 1 - - uid: 10303 + - uid: 10687 components: - type: Transform - pos: 23.5,-72.5 + pos: -38.5,-111.5 parent: 1 - - uid: 10304 + - uid: 10688 components: - type: Transform - pos: 23.5,-73.5 + pos: 23.5,22.5 parent: 1 - - uid: 10305 + - uid: 10689 components: - type: Transform - pos: 23.5,-77.5 + pos: 23.5,23.5 parent: 1 - - uid: 10306 + - uid: 10690 components: - type: Transform - pos: 23.5,-79.5 + pos: 23.5,18.5 parent: 1 - - uid: 10307 + - uid: 10691 components: - type: Transform - pos: 23.5,-83.5 + pos: 23.5,12.5 parent: 1 - - uid: 10308 + - uid: 10692 components: - type: Transform - pos: -29.5,-119.5 + pos: 23.5,13.5 parent: 1 - - uid: 10309 + - uid: 10693 components: - type: Transform - pos: -29.5,-120.5 + pos: -38.5,-117.5 parent: 1 - - uid: 10310 + - uid: 10694 components: - type: Transform - pos: 23.5,29.5 + pos: -38.5,-118.5 parent: 1 - - uid: 10311 + - uid: 10695 components: - type: Transform - pos: 23.5,30.5 + pos: -38.5,-119.5 parent: 1 - - uid: 10312 + - uid: 10696 components: - type: Transform - pos: 23.5,33.5 + pos: -38.5,-120.5 parent: 1 - - uid: 10313 + - uid: 10697 components: - type: Transform - pos: -29.5,-124.5 + pos: -38.5,-121.5 parent: 1 - - uid: 10314 + - uid: 10703 components: - type: Transform - pos: -29.5,-125.5 + pos: -38.5,-127.5 parent: 1 - - uid: 10315 + - uid: 10704 components: - type: Transform - pos: -29.5,-126.5 + pos: -37.5,38.5 parent: 1 - - uid: 10316 + - uid: 10705 components: - type: Transform - pos: -29.5,-127.5 + pos: -37.5,37.5 parent: 1 - - uid: 10317 + - uid: 10706 components: - type: Transform - pos: -29.5,-128.5 + pos: -37.5,36.5 parent: 1 - - uid: 10318 + - uid: 10707 components: - type: Transform - pos: -40.5,-76.5 + pos: -37.5,35.5 parent: 1 - - uid: 10319 + - uid: 10708 components: - type: Transform - pos: -40.5,-77.5 + pos: -37.5,34.5 parent: 1 - - uid: 10320 + - uid: 10709 components: - type: Transform - pos: -40.5,-78.5 + pos: -37.5,33.5 parent: 1 - - uid: 10321 + - uid: 10710 components: - type: Transform - pos: -40.5,-79.5 + pos: -37.5,32.5 parent: 1 - - uid: 10322 + - uid: 10711 components: - type: Transform - pos: -40.5,-80.5 + pos: -37.5,31.5 parent: 1 - - uid: 10323 + - uid: 10712 components: - type: Transform - pos: -40.5,-81.5 + pos: -37.5,30.5 parent: 1 - - uid: 10324 + - uid: 10713 components: - type: Transform - pos: -40.5,-82.5 + pos: -37.5,29.5 parent: 1 - - uid: 10325 + - uid: 10714 components: - type: Transform - pos: -40.5,-83.5 + pos: -37.5,28.5 parent: 1 - - uid: 10326 + - uid: 10715 components: - type: Transform - pos: -40.5,-84.5 + pos: -37.5,27.5 parent: 1 - - uid: 10327 + - uid: 10716 components: - type: Transform - pos: -40.5,-85.5 + pos: -37.5,26.5 parent: 1 - - uid: 10328 + - uid: 10717 components: - type: Transform - pos: -40.5,-86.5 + pos: -37.5,25.5 parent: 1 - - uid: 10329 + - uid: 10718 components: - type: Transform - pos: -40.5,-87.5 + pos: -37.5,24.5 parent: 1 - - uid: 10330 + - uid: 10719 components: - type: Transform - pos: -40.5,-88.5 + pos: -37.5,23.5 parent: 1 - - uid: 10331 + - uid: 10720 components: - type: Transform - pos: -40.5,-89.5 + pos: -37.5,22.5 parent: 1 - - uid: 10332 + - uid: 10721 components: - type: Transform - pos: -40.5,-90.5 + pos: -37.5,21.5 parent: 1 - - uid: 10333 + - uid: 10722 components: - type: Transform - pos: -40.5,-91.5 + pos: -37.5,20.5 parent: 1 - - uid: 10334 + - uid: 10723 components: - type: Transform - pos: -40.5,-92.5 + pos: -37.5,19.5 parent: 1 - - uid: 10335 + - uid: 10724 components: - type: Transform - pos: -40.5,-93.5 + pos: -37.5,18.5 parent: 1 - - uid: 10336 + - uid: 10725 components: - type: Transform - pos: -40.5,-94.5 + pos: -37.5,17.5 parent: 1 - - uid: 10337 + - uid: 10726 components: - type: Transform - pos: -40.5,-95.5 + pos: -37.5,16.5 parent: 1 - - uid: 10338 + - uid: 10727 components: - type: Transform - pos: -40.5,-96.5 + pos: -37.5,15.5 parent: 1 - - uid: 10339 + - uid: 10728 components: - type: Transform - pos: -40.5,-97.5 + pos: -37.5,14.5 parent: 1 - - uid: 10340 + - uid: 10729 components: - type: Transform - pos: -40.5,-98.5 + pos: -37.5,13.5 parent: 1 - - uid: 10341 + - uid: 10730 components: - type: Transform - pos: -40.5,-99.5 + pos: -37.5,12.5 parent: 1 - - uid: 10342 + - uid: 10731 components: - type: Transform - pos: -40.5,-100.5 + pos: -37.5,11.5 parent: 1 - - uid: 10343 + - uid: 10732 components: - type: Transform - pos: -40.5,-101.5 + pos: -37.5,10.5 parent: 1 - - uid: 10344 + - uid: 10733 components: - type: Transform - pos: -40.5,-102.5 + pos: -37.5,9.5 parent: 1 - - uid: 10345 + - uid: 10734 components: - type: Transform - pos: -40.5,-103.5 + pos: -37.5,8.5 parent: 1 - - uid: 10346 + - uid: 10735 components: - type: Transform - pos: -40.5,-104.5 + pos: -37.5,7.5 parent: 1 - - uid: 10347 + - uid: 10736 components: - type: Transform - pos: -40.5,-105.5 + pos: -37.5,6.5 parent: 1 - - uid: 10348 + - uid: 10737 components: - type: Transform - pos: -40.5,-106.5 + pos: -37.5,5.5 parent: 1 - - uid: 10349 + - uid: 10738 components: - type: Transform - pos: -40.5,-107.5 + pos: -37.5,4.5 parent: 1 - - uid: 10350 + - uid: 10739 components: - type: Transform - pos: -40.5,-108.5 + pos: -37.5,3.5 parent: 1 - - uid: 10351 + - uid: 10740 components: - type: Transform - pos: -40.5,-109.5 + pos: -37.5,2.5 parent: 1 - - uid: 10352 + - uid: 10741 components: - type: Transform - pos: -40.5,-110.5 + pos: -37.5,1.5 parent: 1 - - uid: 10353 + - uid: 10742 components: - type: Transform - pos: -40.5,-111.5 + pos: -37.5,0.5 parent: 1 - - uid: 10354 + - uid: 10743 components: - type: Transform - pos: -40.5,-112.5 + pos: -37.5,-0.5 parent: 1 - - uid: 10355 + - uid: 10744 components: - type: Transform - pos: -40.5,-113.5 + pos: -37.5,-1.5 parent: 1 - - uid: 10356 + - uid: 10745 components: - type: Transform - pos: -40.5,-114.5 + pos: -37.5,-2.5 parent: 1 - - uid: 10357 + - uid: 10746 components: - type: Transform - pos: -40.5,-115.5 + pos: -37.5,-3.5 parent: 1 - - uid: 10358 + - uid: 10747 components: - type: Transform - pos: -40.5,-116.5 + pos: -37.5,-4.5 parent: 1 - - uid: 10359 + - uid: 10748 components: - type: Transform - pos: -40.5,-117.5 + pos: -37.5,-5.5 parent: 1 - - uid: 10360 + - uid: 10749 components: - type: Transform - pos: -40.5,-118.5 + pos: -37.5,-6.5 parent: 1 - - uid: 10361 + - uid: 10750 components: - type: Transform - pos: -40.5,-119.5 + pos: -37.5,-7.5 parent: 1 - - uid: 10362 + - uid: 10751 components: - type: Transform - pos: -40.5,-120.5 + pos: -37.5,-8.5 parent: 1 - - uid: 10363 + - uid: 10752 components: - type: Transform - pos: -40.5,-121.5 + pos: -37.5,-9.5 parent: 1 - - uid: 10364 + - uid: 10754 components: - type: Transform - pos: -40.5,-122.5 + pos: 46.5,-117.5 parent: 1 - - uid: 10365 + - uid: 10760 components: - type: Transform - pos: -40.5,-123.5 + pos: 46.5,-125.5 parent: 1 - - uid: 10366 + - uid: 10764 components: - type: Transform - pos: -40.5,-124.5 + pos: 47.5,-80.5 parent: 1 - - uid: 10367 + - uid: 10769 components: - type: Transform - pos: -40.5,-125.5 + pos: 45.5,-123.5 parent: 1 - - uid: 10368 + - uid: 10775 components: - type: Transform - pos: -40.5,-126.5 + pos: 46.5,-126.5 parent: 1 - - uid: 10369 + - uid: 10782 components: - type: Transform - pos: -40.5,-127.5 + pos: 47.5,-79.5 parent: 1 - - uid: 10370 + - uid: 10783 components: - type: Transform - pos: -39.5,38.5 + pos: 47.5,-76.5 parent: 1 - - uid: 10371 + - uid: 10793 components: - type: Transform - pos: -39.5,37.5 + pos: 46.5,-123.5 parent: 1 - - uid: 10372 + - uid: 10798 components: - type: Transform - pos: -39.5,36.5 + pos: 47.5,-84.5 parent: 1 - - uid: 10373 + - uid: 10799 components: - type: Transform - pos: -39.5,35.5 + pos: 47.5,-85.5 parent: 1 - - uid: 10374 + - uid: 10800 components: - type: Transform - pos: -39.5,34.5 + pos: 47.5,-82.5 parent: 1 - - uid: 10375 + - uid: 10815 components: - type: Transform - pos: -39.5,33.5 + pos: 46.5,-124.5 parent: 1 - - uid: 10376 + - uid: 10822 components: - type: Transform - pos: -39.5,32.5 + pos: 47.5,-81.5 parent: 1 - - uid: 10377 + - uid: 10823 components: - type: Transform - pos: -39.5,31.5 + pos: 24.5,-33.5 parent: 1 - - uid: 10378 + - uid: 10826 components: - type: Transform - pos: -39.5,30.5 + pos: 24.5,-38.5 parent: 1 - - uid: 10379 + - uid: 10827 components: - type: Transform - pos: -39.5,29.5 + pos: 24.5,-39.5 parent: 1 - - uid: 10380 + - uid: 10829 components: - type: Transform - pos: -39.5,28.5 + pos: 45.5,-76.5 parent: 1 - - uid: 10381 + - uid: 10836 components: - type: Transform - pos: -39.5,27.5 + pos: -37.5,-93.5 parent: 1 - - uid: 10382 + - uid: 10837 components: - type: Transform - pos: -39.5,26.5 + pos: -37.5,-94.5 parent: 1 - - uid: 10383 + - uid: 10838 components: - type: Transform - pos: -39.5,25.5 + pos: -37.5,-95.5 parent: 1 - - uid: 10384 + - uid: 10839 components: - type: Transform - pos: -39.5,24.5 + pos: -37.5,-96.5 parent: 1 - - uid: 10385 + - uid: 10840 components: - type: Transform - pos: -39.5,23.5 + pos: -37.5,-97.5 parent: 1 - - uid: 10386 + - uid: 10841 components: - type: Transform - pos: -39.5,22.5 + pos: -37.5,-98.5 parent: 1 - - uid: 10387 + - uid: 10842 components: - type: Transform - pos: -39.5,21.5 + pos: -37.5,-99.5 parent: 1 - - uid: 10388 + - uid: 10843 components: - type: Transform - pos: -39.5,20.5 + pos: -37.5,-100.5 parent: 1 - - uid: 10389 + - uid: 10844 components: - type: Transform - pos: -39.5,19.5 + pos: -37.5,-101.5 parent: 1 - - uid: 10390 + - uid: 10845 components: - type: Transform - pos: -39.5,18.5 + pos: -37.5,-102.5 parent: 1 - - uid: 10391 + - uid: 10846 components: - type: Transform - pos: -39.5,17.5 + pos: -37.5,-103.5 parent: 1 - - uid: 10392 + - uid: 10847 components: - type: Transform - pos: -39.5,16.5 + pos: -37.5,-104.5 parent: 1 - - uid: 10393 + - uid: 10848 components: - type: Transform - pos: -39.5,15.5 + pos: -37.5,-105.5 parent: 1 - - uid: 10394 + - uid: 10849 components: - type: Transform - pos: -39.5,14.5 + pos: -37.5,-106.5 parent: 1 - - uid: 10395 + - uid: 10850 components: - type: Transform - pos: -39.5,13.5 + pos: -37.5,-107.5 parent: 1 - - uid: 10396 + - uid: 10851 components: - type: Transform - pos: -39.5,12.5 + pos: -37.5,-108.5 parent: 1 - - uid: 10397 + - uid: 10852 components: - type: Transform - pos: -39.5,11.5 + pos: -37.5,-109.5 parent: 1 - - uid: 10398 + - uid: 10853 components: - type: Transform - pos: -39.5,10.5 + pos: 23.5,16.5 parent: 1 - - uid: 10399 + - uid: 10854 components: - type: Transform - pos: -39.5,9.5 + pos: 23.5,15.5 parent: 1 - - uid: 10400 + - uid: 10855 components: - type: Transform - pos: -39.5,8.5 + pos: 23.5,17.5 parent: 1 - - uid: 10401 + - uid: 10856 components: - type: Transform - pos: -39.5,7.5 + pos: 23.5,11.5 parent: 1 - - uid: 10402 + - uid: 10857 components: - type: Transform - pos: -39.5,6.5 + pos: 23.5,14.5 parent: 1 - - uid: 10403 + - uid: 10858 components: - type: Transform - pos: -39.5,5.5 + pos: 23.5,10.5 parent: 1 - - uid: 10404 + - uid: 10859 components: - type: Transform - pos: -39.5,4.5 + pos: 23.5,9.5 parent: 1 - - uid: 10405 + - uid: 10860 components: - type: Transform - pos: -39.5,3.5 + pos: 23.5,8.5 parent: 1 - - uid: 10406 + - uid: 10861 components: - type: Transform - pos: -39.5,2.5 + pos: -37.5,-118.5 parent: 1 - - uid: 10407 + - uid: 10862 components: - type: Transform - pos: -39.5,1.5 + pos: -37.5,-119.5 parent: 1 - - uid: 10408 + - uid: 10863 components: - type: Transform - pos: -39.5,0.5 + pos: -37.5,-120.5 parent: 1 - - uid: 10409 + - uid: 10864 components: - type: Transform - pos: -39.5,-0.5 + pos: -37.5,-121.5 parent: 1 - - uid: 10410 + - uid: 10870 components: - type: Transform - pos: -39.5,-1.5 + pos: -37.5,-127.5 parent: 1 - - uid: 10411 + - uid: 10871 components: - type: Transform - pos: -39.5,-2.5 + pos: -37.5,-128.5 parent: 1 - - uid: 10412 + - uid: 10872 components: - type: Transform - pos: -39.5,-3.5 + pos: -38.5,-128.5 parent: 1 - - uid: 10413 + - uid: 10873 components: - type: Transform - pos: -39.5,-4.5 + pos: -39.5,-128.5 parent: 1 - - uid: 10414 + - uid: 10874 components: - type: Transform - pos: -39.5,-5.5 + pos: -40.5,-128.5 parent: 1 - - uid: 10415 + - uid: 10875 components: - type: Transform - pos: -39.5,-6.5 + pos: 24.5,-44.5 parent: 1 - - uid: 10416 + - uid: 10876 components: - type: Transform - pos: -39.5,-7.5 + pos: 24.5,-45.5 parent: 1 - - uid: 10417 + - uid: 10877 components: - type: Transform - pos: -39.5,-8.5 + pos: 24.5,-46.5 parent: 1 - - uid: 10418 + - uid: 10878 components: - type: Transform - pos: -39.5,-9.5 + pos: 24.5,-47.5 parent: 1 - - uid: 10419 + - uid: 10879 components: - type: Transform - pos: -39.5,-10.5 + pos: 24.5,-48.5 parent: 1 - - uid: 10420 + - uid: 10880 components: - type: Transform - pos: -39.5,-11.5 + pos: 24.5,-49.5 parent: 1 - - uid: 10421 + - uid: 10881 components: - type: Transform - pos: -39.5,-12.5 + pos: 24.5,-50.5 parent: 1 - - uid: 10422 + - uid: 10882 components: - type: Transform - pos: -39.5,-13.5 + pos: 24.5,-51.5 parent: 1 - - uid: 10423 + - uid: 10883 components: - type: Transform - pos: -39.5,-14.5 + pos: 24.5,-52.5 parent: 1 - - uid: 10424 + - uid: 10884 components: - type: Transform - pos: -39.5,-15.5 + pos: 24.5,-53.5 parent: 1 - - uid: 10425 + - uid: 10885 components: - type: Transform - pos: -39.5,-16.5 + pos: 24.5,-54.5 parent: 1 - - uid: 10426 + - uid: 10886 components: - type: Transform - pos: -39.5,-17.5 + pos: 24.5,-55.5 parent: 1 - - uid: 10427 + - uid: 10887 components: - type: Transform - pos: -39.5,-18.5 + pos: 24.5,-56.5 parent: 1 - - uid: 10428 + - uid: 10888 components: - type: Transform - pos: -39.5,-19.5 + pos: 24.5,-57.5 parent: 1 - - uid: 10429 + - uid: 10889 components: - type: Transform - pos: -39.5,-20.5 + pos: 24.5,-58.5 parent: 1 - - uid: 10430 + - uid: 10890 components: - type: Transform - pos: -39.5,-21.5 + pos: 24.5,-59.5 parent: 1 - - uid: 10431 + - uid: 10891 components: - type: Transform - pos: -39.5,-22.5 + pos: 24.5,-60.5 parent: 1 - - uid: 10432 + - uid: 10892 components: - type: Transform - pos: -39.5,-23.5 + pos: 24.5,-61.5 parent: 1 - - uid: 10433 + - uid: 10898 components: - type: Transform - pos: -39.5,-24.5 + pos: 24.5,-67.5 parent: 1 - - uid: 10434 + - uid: 10899 components: - type: Transform - pos: -39.5,-25.5 + pos: 24.5,-68.5 parent: 1 - - uid: 10435 + - uid: 10900 components: - type: Transform - pos: -39.5,-26.5 + pos: 24.5,-69.5 parent: 1 - - uid: 10436 + - uid: 10901 components: - type: Transform - pos: -39.5,-27.5 + pos: 24.5,-70.5 parent: 1 - - uid: 10437 + - uid: 10902 components: - type: Transform - pos: -39.5,-28.5 + pos: 24.5,-71.5 parent: 1 - - uid: 10438 + - uid: 10903 components: - type: Transform - pos: -39.5,-29.5 + pos: 24.5,-72.5 parent: 1 - - uid: 10439 + - uid: 10904 components: - type: Transform - pos: -39.5,-30.5 + pos: 24.5,-73.5 parent: 1 - - uid: 10440 + - uid: 10905 components: - type: Transform - pos: -39.5,-31.5 + pos: 24.5,-74.5 parent: 1 - - uid: 10441 + - uid: 10906 components: - type: Transform - pos: -39.5,-32.5 + pos: 24.5,-75.5 parent: 1 - - uid: 10442 + - uid: 10953 components: - type: Transform - pos: -39.5,-33.5 + pos: 24.5,-122.5 parent: 1 - - uid: 10443 + - uid: 10954 components: - type: Transform - pos: -39.5,-34.5 + pos: 24.5,-123.5 parent: 1 - - uid: 10444 + - uid: 10955 components: - type: Transform - pos: -39.5,-35.5 + pos: 24.5,-124.5 parent: 1 - - uid: 10445 + - uid: 10956 components: - type: Transform - pos: -39.5,-36.5 + pos: 24.5,-125.5 parent: 1 - - uid: 10446 + - uid: 10957 components: - type: Transform - pos: -39.5,-37.5 + pos: 24.5,-126.5 parent: 1 - - uid: 10447 + - uid: 10958 components: - type: Transform - pos: -39.5,-38.5 + pos: 24.5,-127.5 parent: 1 - - uid: 10448 + - uid: 10959 components: - type: Transform - pos: -39.5,-39.5 + pos: 24.5,-128.5 parent: 1 - - uid: 10449 + - uid: 10960 components: - type: Transform - pos: -39.5,-40.5 + pos: 25.5,38.5 parent: 1 - - uid: 10450 + - uid: 10961 components: - type: Transform - pos: -39.5,-41.5 + pos: 25.5,37.5 parent: 1 - - uid: 10451 + - uid: 10962 components: - type: Transform - pos: -39.5,-42.5 + pos: 25.5,36.5 parent: 1 - - uid: 10452 + - uid: 10963 components: - type: Transform - pos: -39.5,-43.5 + pos: 25.5,35.5 parent: 1 - - uid: 10453 + - uid: 10964 components: - type: Transform - pos: -39.5,-44.5 + pos: 25.5,34.5 parent: 1 - - uid: 10454 + - uid: 10965 components: - type: Transform - pos: -39.5,-45.5 + pos: 25.5,33.5 parent: 1 - - uid: 10455 + - uid: 10966 components: - type: Transform - pos: -39.5,-46.5 + pos: 25.5,32.5 parent: 1 - - uid: 10456 + - uid: 10967 components: - type: Transform - pos: -39.5,-47.5 + pos: 25.5,31.5 parent: 1 - - uid: 10457 + - uid: 10968 components: - type: Transform - pos: -39.5,-48.5 + pos: 25.5,30.5 parent: 1 - - uid: 10458 + - uid: 10969 components: - type: Transform - pos: -39.5,-49.5 + pos: 25.5,29.5 parent: 1 - - uid: 10459 + - uid: 10970 components: - type: Transform - pos: -39.5,-50.5 + pos: 25.5,28.5 parent: 1 - - uid: 10460 + - uid: 10971 components: - type: Transform - pos: -39.5,-51.5 + pos: 25.5,27.5 parent: 1 - - uid: 10461 + - uid: 10972 components: - type: Transform - pos: -39.5,-52.5 + pos: 25.5,26.5 parent: 1 - - uid: 10462 + - uid: 10973 components: - type: Transform - pos: -39.5,-53.5 + pos: 25.5,25.5 parent: 1 - - uid: 10463 + - uid: 10974 components: - type: Transform - pos: -39.5,-54.5 + pos: 25.5,24.5 parent: 1 - - uid: 10464 + - uid: 10975 components: - type: Transform - pos: -39.5,-55.5 + pos: 25.5,23.5 parent: 1 - - uid: 10465 + - uid: 10976 components: - type: Transform - pos: -39.5,-56.5 + pos: 25.5,22.5 parent: 1 - - uid: 10466 + - uid: 10977 components: - type: Transform - pos: -39.5,-57.5 + pos: 25.5,21.5 parent: 1 - - uid: 10467 + - uid: 10978 components: - type: Transform - pos: -39.5,-58.5 + pos: 25.5,20.5 parent: 1 - - uid: 10468 + - uid: 10979 components: - type: Transform - pos: -39.5,-59.5 + pos: 25.5,19.5 parent: 1 - - uid: 10469 + - uid: 10980 components: - type: Transform - pos: -39.5,-60.5 + pos: 25.5,18.5 parent: 1 - - uid: 10470 + - uid: 10981 components: - type: Transform - pos: -39.5,-61.5 + pos: 25.5,17.5 parent: 1 - - uid: 10471 + - uid: 10982 components: - type: Transform - pos: -39.5,-62.5 + pos: 25.5,16.5 parent: 1 - - uid: 10472 + - uid: 10983 components: - type: Transform - pos: -39.5,-63.5 + pos: 25.5,15.5 parent: 1 - - uid: 10473 + - uid: 10984 components: - type: Transform - pos: -39.5,-64.5 + pos: 25.5,14.5 parent: 1 - - uid: 10474 + - uid: 10985 components: - type: Transform - pos: -39.5,-65.5 + pos: 25.5,13.5 parent: 1 - - uid: 10475 + - uid: 10986 components: - type: Transform - pos: -39.5,-66.5 + pos: 25.5,12.5 parent: 1 - - uid: 10476 + - uid: 10987 components: - type: Transform - pos: -39.5,-67.5 + pos: 25.5,11.5 parent: 1 - - uid: 10477 + - uid: 10988 components: - type: Transform - pos: -39.5,-68.5 + pos: 25.5,10.5 parent: 1 - - uid: 10478 + - uid: 10989 components: - type: Transform - pos: -39.5,-69.5 + pos: 25.5,9.5 parent: 1 - - uid: 10479 + - uid: 10990 components: - type: Transform - pos: -39.5,-70.5 + pos: 25.5,8.5 parent: 1 - - uid: 10480 + - uid: 10991 components: - type: Transform - pos: -39.5,-71.5 + pos: 25.5,7.5 parent: 1 - - uid: 10481 + - uid: 10992 components: - type: Transform - pos: -39.5,-72.5 + pos: 25.5,6.5 parent: 1 - - uid: 10482 + - uid: 10993 components: - type: Transform - pos: -39.5,-73.5 + pos: 25.5,5.5 parent: 1 - - uid: 10483 + - uid: 10994 components: - type: Transform - pos: -39.5,-74.5 + pos: 25.5,4.5 parent: 1 - - uid: 10484 + - uid: 10995 components: - type: Transform - pos: -39.5,-75.5 + pos: 25.5,3.5 parent: 1 - - uid: 10485 + - uid: 10996 components: - type: Transform - pos: -39.5,-76.5 + pos: 25.5,2.5 parent: 1 - - uid: 10486 + - uid: 10997 components: - type: Transform - pos: -39.5,-77.5 + pos: 25.5,1.5 parent: 1 - - uid: 10487 + - uid: 10998 components: - type: Transform - pos: -39.5,-78.5 + pos: 25.5,0.5 parent: 1 - - uid: 10488 + - uid: 10999 components: - type: Transform - pos: -39.5,-79.5 + pos: 25.5,-0.5 parent: 1 - - uid: 10489 + - uid: 11000 components: - type: Transform - pos: -39.5,-80.5 + pos: 25.5,-1.5 parent: 1 - - uid: 10490 + - uid: 11001 components: - type: Transform - pos: -39.5,-81.5 + pos: 25.5,-2.5 parent: 1 - - uid: 10491 + - uid: 11002 components: - type: Transform - pos: -39.5,-82.5 + pos: 25.5,-3.5 parent: 1 - - uid: 10492 + - uid: 11003 components: - type: Transform - pos: -39.5,-83.5 + pos: 25.5,-4.5 parent: 1 - - uid: 10493 + - uid: 11004 components: - type: Transform - pos: -39.5,-84.5 + pos: 25.5,-5.5 parent: 1 - - uid: 10494 + - uid: 11005 components: - type: Transform - pos: -39.5,-85.5 + pos: 25.5,-6.5 parent: 1 - - uid: 10495 + - uid: 11006 components: - type: Transform - pos: -39.5,-86.5 + pos: 25.5,-7.5 parent: 1 - - uid: 10496 + - uid: 11007 components: - type: Transform - pos: -39.5,-87.5 + pos: 25.5,-8.5 parent: 1 - - uid: 10497 + - uid: 11008 components: - type: Transform - pos: -39.5,-88.5 + pos: 25.5,-9.5 parent: 1 - - uid: 10498 + - uid: 11009 components: - type: Transform - pos: -39.5,-89.5 + pos: 25.5,-10.5 parent: 1 - - uid: 10499 + - uid: 11010 components: - type: Transform - pos: -39.5,-90.5 + pos: 25.5,-11.5 parent: 1 - - uid: 10500 + - uid: 11011 components: - type: Transform - pos: -39.5,-91.5 + pos: 25.5,-12.5 parent: 1 - - uid: 10501 + - uid: 11012 components: - type: Transform - pos: -39.5,-92.5 + pos: 25.5,-13.5 parent: 1 - - uid: 10502 + - uid: 11013 components: - type: Transform - pos: -39.5,-93.5 + pos: 25.5,-14.5 parent: 1 - - uid: 10503 + - uid: 11014 components: - type: Transform - pos: -39.5,-94.5 + pos: 25.5,-15.5 parent: 1 - - uid: 10504 + - uid: 11015 components: - type: Transform - pos: -39.5,-95.5 + pos: 25.5,-16.5 parent: 1 - - uid: 10505 + - uid: 11016 components: - type: Transform - pos: -39.5,-96.5 + pos: 25.5,-17.5 parent: 1 - - uid: 10506 + - uid: 11017 components: - type: Transform - pos: -39.5,-97.5 + pos: 25.5,-18.5 parent: 1 - - uid: 10507 + - uid: 11018 components: - type: Transform - pos: -39.5,-98.5 + pos: 25.5,-19.5 parent: 1 - - uid: 10508 + - uid: 11019 components: - type: Transform - pos: -39.5,-99.5 + pos: 25.5,-20.5 parent: 1 - - uid: 10509 + - uid: 11020 components: - type: Transform - pos: -39.5,-100.5 + pos: 25.5,-21.5 parent: 1 - - uid: 10510 + - uid: 11021 components: - type: Transform - pos: -39.5,-101.5 + pos: 25.5,-22.5 parent: 1 - - uid: 10511 + - uid: 11022 components: - type: Transform - pos: -39.5,-102.5 + pos: 25.5,-23.5 parent: 1 - - uid: 10512 + - uid: 11023 components: - type: Transform - pos: -39.5,-103.5 + pos: 25.5,-24.5 parent: 1 - - uid: 10513 + - uid: 11024 components: - type: Transform - pos: -39.5,-104.5 + pos: 25.5,-25.5 parent: 1 - - uid: 10514 + - uid: 11025 components: - type: Transform - pos: -39.5,-105.5 + pos: 25.5,-26.5 parent: 1 - - uid: 10515 + - uid: 11026 components: - type: Transform - pos: -39.5,-106.5 + pos: 25.5,-27.5 parent: 1 - - uid: 10516 + - uid: 11027 components: - type: Transform - pos: -39.5,-107.5 + pos: 25.5,-28.5 parent: 1 - - uid: 10517 + - uid: 11028 components: - type: Transform - pos: -39.5,-108.5 + pos: 25.5,-29.5 parent: 1 - - uid: 10518 + - uid: 11029 components: - type: Transform - pos: -39.5,-109.5 + pos: 25.5,-30.5 parent: 1 - - uid: 10519 + - uid: 11030 components: - type: Transform - pos: -39.5,-110.5 + pos: 25.5,-31.5 parent: 1 - - uid: 10520 + - uid: 11031 components: - type: Transform - pos: -39.5,-111.5 + pos: 25.5,-32.5 parent: 1 - - uid: 10521 + - uid: 11032 components: - type: Transform - pos: -39.5,-112.5 + pos: 25.5,-33.5 parent: 1 - - uid: 10522 + - uid: 11033 components: - type: Transform - pos: -39.5,-113.5 + pos: 25.5,-34.5 parent: 1 - - uid: 10523 + - uid: 11034 components: - type: Transform - pos: -39.5,-114.5 + pos: 25.5,-35.5 parent: 1 - - uid: 10524 + - uid: 11035 components: - type: Transform - pos: 23.5,19.5 + pos: 25.5,-36.5 parent: 1 - - uid: 10525 + - uid: 11036 components: - type: Transform - pos: -39.5,-116.5 + pos: 25.5,-37.5 parent: 1 - - uid: 10526 + - uid: 11037 components: - type: Transform - pos: -39.5,-117.5 + pos: 25.5,-38.5 parent: 1 - - uid: 10527 + - uid: 11038 components: - type: Transform - pos: -39.5,-118.5 + pos: 25.5,-39.5 parent: 1 - - uid: 10528 + - uid: 11039 components: - type: Transform - pos: -39.5,-119.5 + pos: 25.5,-40.5 parent: 1 - - uid: 10529 + - uid: 11040 components: - type: Transform - pos: -39.5,-120.5 + pos: 25.5,-41.5 parent: 1 - - uid: 10530 + - uid: 11041 components: - type: Transform - pos: -39.5,-121.5 + pos: 25.5,-42.5 parent: 1 - - uid: 10531 + - uid: 11042 components: - type: Transform - pos: -39.5,-122.5 + pos: 25.5,-43.5 parent: 1 - - uid: 10532 + - uid: 11043 components: - type: Transform - pos: -39.5,-123.5 + pos: 25.5,-44.5 parent: 1 - - uid: 10533 + - uid: 11044 components: - type: Transform - pos: -39.5,-124.5 + pos: 25.5,-45.5 parent: 1 - - uid: 10534 + - uid: 11045 components: - type: Transform - pos: -39.5,-125.5 + pos: 25.5,-46.5 parent: 1 - - uid: 10535 + - uid: 11046 components: - type: Transform - pos: -39.5,-126.5 + pos: 25.5,-47.5 parent: 1 - - uid: 10536 + - uid: 11047 components: - type: Transform - pos: -39.5,-127.5 + pos: 25.5,-48.5 parent: 1 - - uid: 10537 + - uid: 11048 components: - type: Transform - pos: -38.5,38.5 + pos: 25.5,-49.5 parent: 1 - - uid: 10538 + - uid: 11049 components: - type: Transform - pos: -38.5,37.5 + pos: 25.5,-50.5 parent: 1 - - uid: 10539 + - uid: 11050 components: - type: Transform - pos: -38.5,36.5 + pos: 25.5,-51.5 parent: 1 - - uid: 10540 + - uid: 11051 components: - type: Transform - pos: -38.5,35.5 + pos: 25.5,-52.5 parent: 1 - - uid: 10541 + - uid: 11052 components: - type: Transform - pos: -38.5,34.5 + pos: 25.5,-53.5 parent: 1 - - uid: 10542 + - uid: 11053 components: - type: Transform - pos: -38.5,33.5 + pos: 25.5,-54.5 parent: 1 - - uid: 10543 + - uid: 11054 components: - type: Transform - pos: -38.5,32.5 + pos: 25.5,-55.5 parent: 1 - - uid: 10544 + - uid: 11055 components: - type: Transform - pos: -38.5,31.5 + pos: 25.5,-56.5 parent: 1 - - uid: 10545 + - uid: 11056 components: - type: Transform - pos: -38.5,30.5 + pos: 25.5,-57.5 parent: 1 - - uid: 10546 + - uid: 11057 components: - type: Transform - pos: -38.5,29.5 + pos: 25.5,-58.5 parent: 1 - - uid: 10547 + - uid: 11058 components: - type: Transform - pos: -38.5,28.5 + pos: 25.5,-59.5 parent: 1 - - uid: 10548 + - uid: 11059 components: - type: Transform - pos: -38.5,27.5 + pos: 25.5,-60.5 parent: 1 - - uid: 10549 + - uid: 11060 components: - type: Transform - pos: -38.5,26.5 + pos: 25.5,-61.5 parent: 1 - - uid: 10550 + - uid: 11061 components: - type: Transform - pos: -38.5,25.5 + pos: 25.5,-62.5 parent: 1 - - uid: 10551 + - uid: 11062 components: - type: Transform - pos: -38.5,24.5 + pos: 25.5,-63.5 parent: 1 - - uid: 10552 + - uid: 11063 components: - type: Transform - pos: -38.5,23.5 + pos: 25.5,-64.5 parent: 1 - - uid: 10553 + - uid: 11064 components: - type: Transform - pos: -38.5,22.5 + pos: 25.5,-65.5 parent: 1 - - uid: 10554 + - uid: 11065 components: - type: Transform - pos: -38.5,21.5 + pos: 25.5,-66.5 parent: 1 - - uid: 10555 + - uid: 11066 components: - type: Transform - pos: -38.5,20.5 + pos: 25.5,-67.5 parent: 1 - - uid: 10556 + - uid: 11067 components: - type: Transform - pos: -38.5,19.5 + pos: 25.5,-68.5 parent: 1 - - uid: 10557 + - uid: 11068 components: - type: Transform - pos: -38.5,18.5 + pos: 25.5,-69.5 parent: 1 - - uid: 10558 + - uid: 11069 components: - type: Transform - pos: -38.5,17.5 + pos: 25.5,-70.5 parent: 1 - - uid: 10559 + - uid: 11070 components: - type: Transform - pos: -38.5,16.5 + pos: 25.5,-71.5 parent: 1 - - uid: 10560 + - uid: 11071 components: - type: Transform - pos: -38.5,15.5 + pos: 25.5,-72.5 parent: 1 - - uid: 10561 + - uid: 11072 components: - type: Transform - pos: -38.5,14.5 + pos: 25.5,-73.5 parent: 1 - - uid: 10562 + - uid: 11073 components: - type: Transform - pos: -38.5,13.5 + pos: 25.5,-74.5 parent: 1 - - uid: 10563 + - uid: 11074 components: - type: Transform - pos: -38.5,12.5 + pos: 25.5,-75.5 parent: 1 - - uid: 10564 + - uid: 11111 components: - type: Transform - pos: -38.5,11.5 + pos: 46.5,-122.5 parent: 1 - - uid: 10565 + - uid: 11116 components: - type: Transform - pos: -38.5,10.5 + pos: 47.5,-104.5 parent: 1 - - uid: 10566 + - uid: 11118 components: - type: Transform - pos: -38.5,9.5 + pos: 47.5,-87.5 parent: 1 - - uid: 10567 + - uid: 11121 components: - type: Transform - pos: -38.5,8.5 + pos: 25.5,-122.5 parent: 1 - - uid: 10568 + - uid: 11122 components: - type: Transform - pos: -38.5,7.5 + pos: 25.5,-123.5 parent: 1 - - uid: 10569 + - uid: 11123 components: - type: Transform - pos: -38.5,6.5 + pos: 25.5,-124.5 parent: 1 - - uid: 10570 + - uid: 11124 components: - type: Transform - pos: -38.5,5.5 + pos: 25.5,-125.5 parent: 1 - - uid: 10571 + - uid: 11125 components: - type: Transform - pos: -38.5,4.5 + pos: 25.5,-126.5 parent: 1 - - uid: 10572 + - uid: 11126 components: - type: Transform - pos: -38.5,3.5 + pos: 25.5,-127.5 parent: 1 - - uid: 10573 + - uid: 11127 components: - type: Transform - pos: -38.5,2.5 + pos: 25.5,-128.5 parent: 1 - - uid: 10574 + - uid: 11128 components: - type: Transform - pos: -38.5,1.5 + pos: 26.5,38.5 parent: 1 - - uid: 10575 + - uid: 11129 components: - type: Transform - pos: -38.5,0.5 + pos: 26.5,37.5 parent: 1 - - uid: 10576 + - uid: 11130 components: - type: Transform - pos: -38.5,-0.5 + pos: 26.5,36.5 parent: 1 - - uid: 10577 + - uid: 11131 components: - type: Transform - pos: -38.5,-1.5 + pos: 26.5,35.5 parent: 1 - - uid: 10578 + - uid: 11132 components: - type: Transform - pos: -38.5,-2.5 + pos: 26.5,34.5 parent: 1 - - uid: 10579 + - uid: 11133 components: - type: Transform - pos: -38.5,-3.5 + pos: 26.5,33.5 parent: 1 - - uid: 10580 + - uid: 11134 components: - type: Transform - pos: -38.5,-4.5 + pos: 26.5,32.5 parent: 1 - - uid: 10581 + - uid: 11135 components: - type: Transform - pos: -38.5,-5.5 + pos: 26.5,31.5 parent: 1 - - uid: 10582 + - uid: 11136 components: - type: Transform - pos: -38.5,-6.5 + pos: 26.5,30.5 parent: 1 - - uid: 10583 + - uid: 11137 components: - type: Transform - pos: -38.5,-7.5 + pos: 26.5,29.5 parent: 1 - - uid: 10584 + - uid: 11138 components: - type: Transform - pos: -38.5,-8.5 + pos: 26.5,28.5 parent: 1 - - uid: 10585 + - uid: 11139 components: - type: Transform - pos: -38.5,-9.5 + pos: 26.5,27.5 parent: 1 - - uid: 10586 + - uid: 11140 components: - type: Transform - pos: -38.5,-10.5 + pos: 26.5,26.5 parent: 1 - - uid: 10587 + - uid: 11141 components: - type: Transform - pos: -38.5,-11.5 + pos: 26.5,25.5 parent: 1 - - uid: 10588 + - uid: 11142 components: - type: Transform - pos: -38.5,-12.5 + pos: 26.5,24.5 parent: 1 - - uid: 10589 + - uid: 11143 components: - type: Transform - pos: -38.5,-13.5 + pos: 26.5,23.5 parent: 1 - - uid: 10590 + - uid: 11144 components: - type: Transform - pos: -38.5,-14.5 + pos: 26.5,22.5 parent: 1 - - uid: 10591 + - uid: 11145 components: - type: Transform - pos: -38.5,-15.5 + pos: 26.5,21.5 parent: 1 - - uid: 10592 + - uid: 11146 components: - type: Transform - pos: -38.5,-16.5 + pos: 26.5,20.5 parent: 1 - - uid: 10593 + - uid: 11147 components: - type: Transform - pos: -38.5,-17.5 + pos: 26.5,19.5 parent: 1 - - uid: 10594 + - uid: 11148 components: - type: Transform - pos: -38.5,-18.5 + pos: 26.5,18.5 parent: 1 - - uid: 10595 + - uid: 11149 components: - type: Transform - pos: -38.5,-19.5 + pos: 26.5,17.5 parent: 1 - - uid: 10596 + - uid: 11150 components: - type: Transform - pos: -38.5,-20.5 + pos: 26.5,16.5 parent: 1 - - uid: 10597 + - uid: 11151 components: - type: Transform - pos: -38.5,-21.5 + pos: 26.5,15.5 parent: 1 - - uid: 10598 + - uid: 11152 components: - type: Transform - pos: -38.5,-22.5 + pos: 26.5,14.5 parent: 1 - - uid: 10599 + - uid: 11153 components: - type: Transform - pos: -38.5,-23.5 + pos: 26.5,13.5 parent: 1 - - uid: 10600 + - uid: 11154 components: - type: Transform - pos: -38.5,-24.5 + pos: 26.5,12.5 parent: 1 - - uid: 10601 + - uid: 11155 components: - type: Transform - pos: -38.5,-25.5 + pos: 26.5,11.5 parent: 1 - - uid: 10602 + - uid: 11156 components: - type: Transform - pos: -38.5,-26.5 + pos: 26.5,10.5 parent: 1 - - uid: 10603 + - uid: 11157 components: - type: Transform - pos: -38.5,-27.5 + pos: 26.5,9.5 parent: 1 - - uid: 10604 + - uid: 11158 components: - type: Transform - pos: -38.5,-28.5 + pos: 26.5,8.5 parent: 1 - - uid: 10605 + - uid: 11159 components: - type: Transform - pos: -38.5,-29.5 + pos: 26.5,7.5 parent: 1 - - uid: 10606 + - uid: 11160 components: - type: Transform - pos: -38.5,-30.5 + pos: 26.5,6.5 parent: 1 - - uid: 10607 + - uid: 11161 components: - type: Transform - pos: -38.5,-31.5 + pos: 26.5,5.5 parent: 1 - - uid: 10608 + - uid: 11162 components: - type: Transform - pos: -38.5,-32.5 + pos: 26.5,4.5 parent: 1 - - uid: 10609 + - uid: 11163 components: - type: Transform - pos: -38.5,-33.5 + pos: 26.5,3.5 parent: 1 - - uid: 10610 + - uid: 11164 components: - type: Transform - pos: -38.5,-34.5 + pos: 26.5,2.5 parent: 1 - - uid: 10611 + - uid: 11165 components: - type: Transform - pos: -38.5,-35.5 + pos: 26.5,1.5 parent: 1 - - uid: 10612 + - uid: 11166 components: - type: Transform - pos: -38.5,-36.5 + pos: 26.5,0.5 parent: 1 - - uid: 10613 + - uid: 11167 components: - type: Transform - pos: -38.5,-37.5 + pos: 26.5,-0.5 parent: 1 - - uid: 10614 + - uid: 11168 components: - type: Transform - pos: -38.5,-38.5 + pos: 26.5,-1.5 parent: 1 - - uid: 10615 + - uid: 11169 components: - type: Transform - pos: -38.5,-39.5 + pos: 26.5,-2.5 parent: 1 - - uid: 10616 + - uid: 11170 components: - type: Transform - pos: -38.5,-40.5 + pos: 26.5,-3.5 parent: 1 - - uid: 10617 + - uid: 11171 components: - type: Transform - pos: -38.5,-41.5 + pos: 26.5,-4.5 parent: 1 - - uid: 10618 + - uid: 11172 components: - type: Transform - pos: -38.5,-42.5 + pos: 26.5,-5.5 parent: 1 - - uid: 10619 + - uid: 11173 components: - type: Transform - pos: -38.5,-43.5 + pos: 26.5,-6.5 parent: 1 - - uid: 10620 + - uid: 11174 components: - type: Transform - pos: -38.5,-44.5 + pos: 26.5,-7.5 parent: 1 - - uid: 10621 + - uid: 11175 components: - type: Transform - pos: -38.5,-45.5 + pos: 26.5,-8.5 parent: 1 - - uid: 10622 + - uid: 11176 components: - type: Transform - pos: -38.5,-46.5 + pos: 26.5,-9.5 parent: 1 - - uid: 10623 + - uid: 11177 components: - type: Transform - pos: -38.5,-47.5 + pos: 26.5,-10.5 parent: 1 - - uid: 10624 + - uid: 11178 components: - type: Transform - pos: -38.5,-48.5 + pos: 26.5,-11.5 parent: 1 - - uid: 10625 + - uid: 11179 components: - type: Transform - pos: -38.5,-49.5 + pos: 26.5,-12.5 parent: 1 - - uid: 10626 + - uid: 11180 components: - type: Transform - pos: -38.5,-50.5 + pos: 26.5,-13.5 parent: 1 - - uid: 10627 + - uid: 11181 components: - type: Transform - pos: -38.5,-51.5 + pos: 26.5,-14.5 parent: 1 - - uid: 10628 + - uid: 11182 components: - type: Transform - pos: -38.5,-52.5 + pos: 26.5,-15.5 parent: 1 - - uid: 10629 + - uid: 11183 components: - type: Transform - pos: -38.5,-53.5 + pos: 26.5,-16.5 parent: 1 - - uid: 10630 + - uid: 11184 components: - type: Transform - pos: -38.5,-54.5 + pos: 26.5,-17.5 parent: 1 - - uid: 10631 + - uid: 11185 components: - type: Transform - pos: -38.5,-55.5 + pos: 26.5,-18.5 parent: 1 - - uid: 10632 + - uid: 11186 components: - type: Transform - pos: -38.5,-56.5 + pos: 26.5,-19.5 parent: 1 - - uid: 10633 + - uid: 11187 components: - type: Transform - pos: -38.5,-57.5 + pos: 26.5,-20.5 parent: 1 - - uid: 10634 + - uid: 11188 components: - type: Transform - pos: -38.5,-58.5 + pos: 26.5,-21.5 parent: 1 - - uid: 10635 + - uid: 11189 components: - type: Transform - pos: -38.5,-59.5 + pos: 26.5,-22.5 parent: 1 - - uid: 10636 + - uid: 11190 components: - type: Transform - pos: -38.5,-60.5 + pos: 26.5,-23.5 parent: 1 - - uid: 10637 + - uid: 11191 components: - type: Transform - pos: -38.5,-61.5 + pos: 26.5,-24.5 parent: 1 - - uid: 10638 + - uid: 11192 components: - type: Transform - pos: -38.5,-62.5 + pos: 26.5,-25.5 parent: 1 - - uid: 10639 + - uid: 11193 components: - type: Transform - pos: -38.5,-63.5 + pos: 26.5,-26.5 parent: 1 - - uid: 10640 + - uid: 11194 components: - type: Transform - pos: -38.5,-64.5 + pos: 26.5,-27.5 parent: 1 - - uid: 10641 + - uid: 11195 components: - type: Transform - pos: -38.5,-65.5 + pos: 26.5,-28.5 parent: 1 - - uid: 10642 + - uid: 11196 components: - type: Transform - pos: -38.5,-66.5 + pos: 26.5,-29.5 parent: 1 - - uid: 10643 + - uid: 11197 components: - type: Transform - pos: -38.5,-67.5 + pos: 26.5,-30.5 parent: 1 - - uid: 10644 + - uid: 11198 components: - type: Transform - pos: -38.5,-68.5 + pos: 26.5,-31.5 parent: 1 - - uid: 10645 + - uid: 11199 components: - type: Transform - pos: -38.5,-69.5 + pos: 26.5,-32.5 parent: 1 - - uid: 10646 + - uid: 11200 components: - type: Transform - pos: -38.5,-70.5 + pos: 26.5,-33.5 parent: 1 - - uid: 10647 + - uid: 11201 components: - type: Transform - pos: -38.5,-71.5 + pos: 26.5,-34.5 parent: 1 - - uid: 10648 + - uid: 11202 components: - type: Transform - pos: -38.5,-72.5 + pos: 26.5,-35.5 parent: 1 - - uid: 10649 + - uid: 11203 components: - type: Transform - pos: -38.5,-73.5 + pos: 26.5,-36.5 parent: 1 - - uid: 10650 + - uid: 11204 components: - type: Transform - pos: -38.5,-74.5 + pos: 26.5,-37.5 parent: 1 - - uid: 10651 + - uid: 11205 components: - type: Transform - pos: -38.5,-75.5 + pos: 26.5,-38.5 parent: 1 - - uid: 10652 + - uid: 11206 components: - type: Transform - pos: -38.5,-76.5 + pos: 26.5,-39.5 parent: 1 - - uid: 10653 + - uid: 11207 components: - type: Transform - pos: -38.5,-77.5 + pos: 26.5,-40.5 parent: 1 - - uid: 10654 + - uid: 11208 components: - type: Transform - pos: -38.5,-78.5 + pos: 26.5,-41.5 parent: 1 - - uid: 10655 + - uid: 11209 components: - type: Transform - pos: -38.5,-79.5 + pos: 26.5,-42.5 parent: 1 - - uid: 10656 + - uid: 11210 components: - type: Transform - pos: -38.5,-80.5 + pos: 26.5,-43.5 parent: 1 - - uid: 10657 + - uid: 11211 components: - type: Transform - pos: -38.5,-81.5 + pos: 26.5,-44.5 parent: 1 - - uid: 10658 + - uid: 11212 components: - type: Transform - pos: -38.5,-82.5 + pos: 26.5,-45.5 parent: 1 - - uid: 10659 + - uid: 11213 components: - type: Transform - pos: -38.5,-83.5 + pos: 26.5,-46.5 parent: 1 - - uid: 10660 + - uid: 11214 components: - type: Transform - pos: -38.5,-84.5 + pos: 26.5,-47.5 parent: 1 - - uid: 10661 + - uid: 11215 components: - type: Transform - pos: -38.5,-85.5 + pos: 26.5,-48.5 parent: 1 - - uid: 10662 + - uid: 11216 components: - type: Transform - pos: -38.5,-86.5 + pos: 26.5,-49.5 parent: 1 - - uid: 10663 + - uid: 11217 components: - type: Transform - pos: -38.5,-87.5 + pos: 26.5,-50.5 parent: 1 - - uid: 10664 + - uid: 11218 components: - type: Transform - pos: -38.5,-88.5 + pos: 26.5,-51.5 parent: 1 - - uid: 10665 + - uid: 11219 components: - type: Transform - pos: -38.5,-89.5 + pos: 26.5,-52.5 parent: 1 - - uid: 10666 + - uid: 11220 components: - type: Transform - pos: -38.5,-90.5 + pos: 26.5,-53.5 parent: 1 - - uid: 10667 + - uid: 11221 components: - type: Transform - pos: -38.5,-91.5 + pos: 26.5,-54.5 parent: 1 - - uid: 10668 + - uid: 11222 components: - type: Transform - pos: -38.5,-92.5 + pos: 26.5,-55.5 parent: 1 - - uid: 10669 + - uid: 11223 components: - type: Transform - pos: -38.5,-93.5 + pos: 26.5,-56.5 parent: 1 - - uid: 10670 + - uid: 11224 components: - type: Transform - pos: -38.5,-94.5 + pos: 26.5,-57.5 parent: 1 - - uid: 10671 + - uid: 11225 components: - type: Transform - pos: -38.5,-95.5 + pos: 26.5,-58.5 parent: 1 - - uid: 10672 + - uid: 11226 components: - type: Transform - pos: -38.5,-96.5 + pos: 26.5,-59.5 parent: 1 - - uid: 10673 + - uid: 11227 components: - type: Transform - pos: -38.5,-97.5 + pos: 26.5,-60.5 parent: 1 - - uid: 10674 + - uid: 11228 components: - type: Transform - pos: -38.5,-98.5 + pos: 26.5,-61.5 parent: 1 - - uid: 10675 + - uid: 11229 components: - type: Transform - pos: -38.5,-99.5 + pos: 26.5,-62.5 parent: 1 - - uid: 10676 + - uid: 11230 components: - type: Transform - pos: -38.5,-100.5 + pos: 26.5,-63.5 parent: 1 - - uid: 10677 + - uid: 11231 components: - type: Transform - pos: -38.5,-101.5 + pos: 26.5,-64.5 parent: 1 - - uid: 10678 + - uid: 11232 components: - type: Transform - pos: -38.5,-102.5 + pos: 26.5,-65.5 parent: 1 - - uid: 10679 + - uid: 11233 components: - type: Transform - pos: -38.5,-103.5 + pos: 26.5,-66.5 parent: 1 - - uid: 10680 + - uid: 11234 components: - type: Transform - pos: -38.5,-104.5 + pos: 26.5,-67.5 parent: 1 - - uid: 10681 + - uid: 11235 components: - type: Transform - pos: -38.5,-105.5 + pos: 26.5,-68.5 parent: 1 - - uid: 10682 + - uid: 11236 components: - type: Transform - pos: -38.5,-106.5 + pos: 26.5,-69.5 parent: 1 - - uid: 10683 + - uid: 11237 components: - type: Transform - pos: -38.5,-107.5 + pos: 26.5,-70.5 parent: 1 - - uid: 10684 + - uid: 11238 components: - type: Transform - pos: -38.5,-108.5 + pos: 26.5,-71.5 parent: 1 - - uid: 10685 + - uid: 11239 components: - type: Transform - pos: -38.5,-109.5 + pos: 26.5,-72.5 parent: 1 - - uid: 10686 + - uid: 11240 components: - type: Transform - pos: -38.5,-110.5 + pos: 26.5,-73.5 parent: 1 - - uid: 10687 + - uid: 11241 components: - type: Transform - pos: -38.5,-111.5 + pos: 26.5,-74.5 parent: 1 - - uid: 10688 + - uid: 11242 components: - type: Transform - pos: 23.5,22.5 + pos: 26.5,-75.5 parent: 1 - - uid: 10689 + - uid: 11288 components: - type: Transform - pos: 23.5,23.5 + pos: 44.5,-128.5 parent: 1 - - uid: 10690 + - uid: 11289 components: - type: Transform - pos: 23.5,18.5 + pos: 26.5,-122.5 parent: 1 - - uid: 10691 + - uid: 11290 components: - type: Transform - pos: 23.5,12.5 + pos: 26.5,-123.5 parent: 1 - - uid: 10692 + - uid: 11291 components: - type: Transform - pos: 23.5,13.5 + pos: 26.5,-124.5 parent: 1 - - uid: 10693 + - uid: 11292 components: - type: Transform - pos: -38.5,-117.5 + pos: 26.5,-125.5 parent: 1 - - uid: 10694 + - uid: 11293 components: - type: Transform - pos: -38.5,-118.5 + pos: 26.5,-126.5 parent: 1 - - uid: 10695 + - uid: 11294 components: - type: Transform - pos: -38.5,-119.5 + pos: 26.5,-127.5 parent: 1 - - uid: 10696 + - uid: 11295 components: - type: Transform - pos: -38.5,-120.5 + pos: 26.5,-128.5 parent: 1 - - uid: 10697 + - uid: 11296 components: - type: Transform - pos: -38.5,-121.5 + pos: 27.5,38.5 parent: 1 - - uid: 10698 + - uid: 11297 components: - type: Transform - pos: -38.5,-122.5 + pos: 27.5,37.5 parent: 1 - - uid: 10700 + - uid: 11298 components: - type: Transform - pos: -38.5,-124.5 + pos: 27.5,36.5 parent: 1 - - uid: 10702 + - uid: 11299 components: - type: Transform - pos: -38.5,-126.5 + pos: 27.5,35.5 parent: 1 - - uid: 10703 + - uid: 11300 components: - type: Transform - pos: -38.5,-127.5 + pos: 27.5,34.5 parent: 1 - - uid: 10704 + - uid: 11301 components: - type: Transform - pos: -37.5,38.5 + pos: 27.5,33.5 parent: 1 - - uid: 10705 + - uid: 11302 components: - type: Transform - pos: -37.5,37.5 + pos: 27.5,32.5 parent: 1 - - uid: 10706 + - uid: 11303 components: - type: Transform - pos: -37.5,36.5 + pos: 27.5,31.5 parent: 1 - - uid: 10707 + - uid: 11304 components: - type: Transform - pos: -37.5,35.5 + pos: 27.5,30.5 parent: 1 - - uid: 10708 + - uid: 11305 components: - type: Transform - pos: -37.5,34.5 + pos: 27.5,29.5 parent: 1 - - uid: 10709 + - uid: 11306 components: - type: Transform - pos: -37.5,33.5 + pos: 27.5,28.5 parent: 1 - - uid: 10710 + - uid: 11307 components: - type: Transform - pos: -37.5,32.5 + pos: 27.5,27.5 parent: 1 - - uid: 10711 + - uid: 11308 components: - type: Transform - pos: -37.5,31.5 + pos: 27.5,26.5 parent: 1 - - uid: 10712 + - uid: 11309 components: - type: Transform - pos: -37.5,30.5 + pos: 27.5,25.5 parent: 1 - - uid: 10713 + - uid: 11310 components: - type: Transform - pos: -37.5,29.5 + pos: 27.5,24.5 parent: 1 - - uid: 10714 + - uid: 11311 components: - type: Transform - pos: -37.5,28.5 + pos: 27.5,23.5 parent: 1 - - uid: 10715 + - uid: 11312 components: - type: Transform - pos: -37.5,27.5 + pos: 27.5,22.5 parent: 1 - - uid: 10716 + - uid: 11313 components: - type: Transform - pos: -37.5,26.5 + pos: 27.5,21.5 parent: 1 - - uid: 10717 + - uid: 11314 components: - type: Transform - pos: -37.5,25.5 + pos: 27.5,20.5 parent: 1 - - uid: 10718 + - uid: 11315 components: - type: Transform - pos: -37.5,24.5 + pos: 27.5,19.5 parent: 1 - - uid: 10719 + - uid: 11316 components: - type: Transform - pos: -37.5,23.5 + pos: 27.5,18.5 parent: 1 - - uid: 10720 + - uid: 11317 components: - type: Transform - pos: -37.5,22.5 + pos: 27.5,17.5 parent: 1 - - uid: 10721 + - uid: 11318 components: - type: Transform - pos: -37.5,21.5 + pos: 27.5,16.5 parent: 1 - - uid: 10722 + - uid: 11319 components: - type: Transform - pos: -37.5,20.5 + pos: 27.5,15.5 parent: 1 - - uid: 10723 + - uid: 11320 components: - type: Transform - pos: -37.5,19.5 + pos: 27.5,14.5 parent: 1 - - uid: 10724 + - uid: 11321 components: - type: Transform - pos: -37.5,18.5 + pos: 27.5,13.5 parent: 1 - - uid: 10725 + - uid: 11322 components: - type: Transform - pos: -37.5,17.5 + pos: 27.5,12.5 parent: 1 - - uid: 10726 + - uid: 11323 components: - type: Transform - pos: -37.5,16.5 + pos: 27.5,11.5 parent: 1 - - uid: 10727 + - uid: 11324 components: - type: Transform - pos: -37.5,15.5 + pos: 27.5,10.5 parent: 1 - - uid: 10728 + - uid: 11325 components: - type: Transform - pos: -37.5,14.5 + pos: 27.5,9.5 parent: 1 - - uid: 10729 + - uid: 11326 components: - type: Transform - pos: -37.5,13.5 + pos: 27.5,8.5 parent: 1 - - uid: 10730 + - uid: 11327 components: - type: Transform - pos: -37.5,12.5 + pos: 27.5,7.5 parent: 1 - - uid: 10731 + - uid: 11328 components: - type: Transform - pos: -37.5,11.5 + pos: 27.5,6.5 parent: 1 - - uid: 10732 + - uid: 11329 components: - type: Transform - pos: -37.5,10.5 + pos: 27.5,5.5 parent: 1 - - uid: 10733 + - uid: 11330 components: - type: Transform - pos: -37.5,9.5 + pos: 27.5,4.5 parent: 1 - - uid: 10734 + - uid: 11331 components: - type: Transform - pos: -37.5,8.5 + pos: 27.5,3.5 parent: 1 - - uid: 10735 + - uid: 11332 components: - type: Transform - pos: -37.5,7.5 + pos: 27.5,2.5 parent: 1 - - uid: 10736 + - uid: 11333 components: - type: Transform - pos: -37.5,6.5 + pos: 27.5,1.5 parent: 1 - - uid: 10737 + - uid: 11334 components: - type: Transform - pos: -37.5,5.5 + pos: 27.5,0.5 parent: 1 - - uid: 10738 + - uid: 11335 components: - type: Transform - pos: -37.5,4.5 + pos: 27.5,-0.5 parent: 1 - - uid: 10739 + - uid: 11336 components: - type: Transform - pos: -37.5,3.5 + pos: 27.5,-1.5 parent: 1 - - uid: 10740 + - uid: 11337 components: - type: Transform - pos: -37.5,2.5 + pos: 27.5,-2.5 parent: 1 - - uid: 10741 + - uid: 11338 components: - type: Transform - pos: -37.5,1.5 + pos: 27.5,-3.5 parent: 1 - - uid: 10742 + - uid: 11339 components: - type: Transform - pos: -37.5,0.5 + pos: 27.5,-4.5 parent: 1 - - uid: 10743 + - uid: 11340 components: - type: Transform - pos: -37.5,-0.5 + pos: 27.5,-5.5 parent: 1 - - uid: 10744 + - uid: 11341 components: - type: Transform - pos: -37.5,-1.5 + pos: 27.5,-6.5 parent: 1 - - uid: 10745 + - uid: 11342 components: - type: Transform - pos: -37.5,-2.5 + pos: 27.5,-7.5 parent: 1 - - uid: 10746 + - uid: 11343 components: - type: Transform - pos: -37.5,-3.5 + pos: 27.5,-8.5 parent: 1 - - uid: 10747 + - uid: 11344 components: - type: Transform - pos: -37.5,-4.5 + pos: 27.5,-9.5 parent: 1 - - uid: 10748 + - uid: 11345 components: - type: Transform - pos: -37.5,-5.5 + pos: 27.5,-10.5 parent: 1 - - uid: 10749 + - uid: 11346 components: - type: Transform - pos: -37.5,-6.5 + pos: 27.5,-11.5 parent: 1 - - uid: 10750 + - uid: 11347 components: - type: Transform - pos: -37.5,-7.5 + pos: 27.5,-12.5 parent: 1 - - uid: 10751 + - uid: 11348 components: - type: Transform - pos: -37.5,-8.5 + pos: 27.5,-13.5 parent: 1 - - uid: 10752 + - uid: 11349 components: - type: Transform - pos: -37.5,-9.5 + pos: 27.5,-14.5 parent: 1 - - uid: 10753 + - uid: 11350 components: - type: Transform - pos: -37.5,-10.5 + pos: 27.5,-15.5 parent: 1 - - uid: 10754 + - uid: 11351 components: - type: Transform - pos: -37.5,-11.5 + pos: 27.5,-16.5 parent: 1 - - uid: 10755 + - uid: 11352 components: - type: Transform - pos: -37.5,-12.5 + pos: 27.5,-17.5 parent: 1 - - uid: 10756 + - uid: 11353 components: - type: Transform - pos: -37.5,-13.5 + pos: 27.5,-18.5 parent: 1 - - uid: 10757 + - uid: 11354 components: - type: Transform - pos: -37.5,-14.5 + pos: 27.5,-19.5 parent: 1 - - uid: 10758 + - uid: 11355 components: - type: Transform - pos: -37.5,-15.5 + pos: 27.5,-20.5 parent: 1 - - uid: 10759 + - uid: 11356 components: - type: Transform - pos: -37.5,-16.5 + pos: 27.5,-21.5 parent: 1 - - uid: 10760 + - uid: 11357 components: - type: Transform - pos: -37.5,-17.5 + pos: 27.5,-22.5 parent: 1 - - uid: 10761 + - uid: 11358 components: - type: Transform - pos: -37.5,-18.5 + pos: 27.5,-23.5 parent: 1 - - uid: 10762 + - uid: 11359 components: - type: Transform - pos: -37.5,-19.5 + pos: 27.5,-24.5 parent: 1 - - uid: 10763 + - uid: 11360 components: - type: Transform - pos: -37.5,-20.5 + pos: 27.5,-25.5 parent: 1 - - uid: 10764 + - uid: 11361 components: - type: Transform - pos: -37.5,-21.5 + pos: 27.5,-26.5 parent: 1 - - uid: 10765 + - uid: 11362 components: - type: Transform - pos: -37.5,-22.5 + pos: 27.5,-27.5 parent: 1 - - uid: 10766 + - uid: 11363 components: - type: Transform - pos: -37.5,-23.5 + pos: 27.5,-28.5 parent: 1 - - uid: 10767 + - uid: 11364 components: - type: Transform - pos: -37.5,-24.5 + pos: 27.5,-29.5 parent: 1 - - uid: 10768 + - uid: 11365 components: - type: Transform - pos: -37.5,-25.5 + pos: 27.5,-30.5 parent: 1 - - uid: 10769 + - uid: 11366 components: - type: Transform - pos: -37.5,-26.5 + pos: 27.5,-31.5 parent: 1 - - uid: 10770 + - uid: 11367 components: - type: Transform - pos: -37.5,-27.5 + pos: 27.5,-32.5 parent: 1 - - uid: 10771 + - uid: 11368 components: - type: Transform - pos: -37.5,-28.5 + pos: 27.5,-33.5 parent: 1 - - uid: 10772 + - uid: 11369 components: - type: Transform - pos: -37.5,-29.5 + pos: 27.5,-34.5 parent: 1 - - uid: 10773 + - uid: 11370 components: - type: Transform - pos: -37.5,-30.5 + pos: 27.5,-35.5 parent: 1 - - uid: 10774 + - uid: 11371 components: - type: Transform - pos: -37.5,-31.5 + pos: 27.5,-36.5 parent: 1 - - uid: 10775 + - uid: 11372 components: - type: Transform - pos: -37.5,-32.5 + pos: 27.5,-37.5 parent: 1 - - uid: 10776 + - uid: 11373 components: - type: Transform - pos: -37.5,-33.5 + pos: 27.5,-38.5 parent: 1 - - uid: 10777 + - uid: 11374 components: - type: Transform - pos: -37.5,-34.5 + pos: 27.5,-39.5 parent: 1 - - uid: 10778 + - uid: 11375 components: - type: Transform - pos: -37.5,-35.5 + pos: 27.5,-40.5 parent: 1 - - uid: 10779 + - uid: 11376 components: - type: Transform - pos: -37.5,-36.5 + pos: 27.5,-41.5 parent: 1 - - uid: 10780 + - uid: 11377 components: - type: Transform - pos: -37.5,-37.5 + pos: 27.5,-42.5 parent: 1 - - uid: 10781 + - uid: 11378 components: - type: Transform - pos: -37.5,-38.5 + pos: 27.5,-43.5 parent: 1 - - uid: 10782 + - uid: 11379 components: - type: Transform - pos: -37.5,-39.5 + pos: 27.5,-44.5 parent: 1 - - uid: 10783 + - uid: 11380 components: - type: Transform - pos: -37.5,-40.5 + pos: 27.5,-45.5 parent: 1 - - uid: 10784 + - uid: 11381 components: - type: Transform - pos: -37.5,-41.5 + pos: 27.5,-46.5 parent: 1 - - uid: 10785 + - uid: 11382 components: - type: Transform - pos: -37.5,-42.5 + pos: 27.5,-47.5 parent: 1 - - uid: 10786 + - uid: 11383 components: - type: Transform - pos: -37.5,-43.5 + pos: 27.5,-48.5 parent: 1 - - uid: 10787 + - uid: 11384 components: - type: Transform - pos: -37.5,-44.5 + pos: 27.5,-49.5 parent: 1 - - uid: 10788 + - uid: 11385 components: - type: Transform - pos: -37.5,-45.5 + pos: 27.5,-50.5 parent: 1 - - uid: 10789 + - uid: 11386 components: - type: Transform - pos: -37.5,-46.5 + pos: 27.5,-51.5 parent: 1 - - uid: 10790 + - uid: 11387 components: - type: Transform - pos: -37.5,-47.5 + pos: 27.5,-52.5 parent: 1 - - uid: 10791 + - uid: 11388 components: - type: Transform - pos: -37.5,-48.5 + pos: 27.5,-53.5 parent: 1 - - uid: 10792 + - uid: 11389 components: - type: Transform - pos: -37.5,-49.5 + pos: 27.5,-54.5 parent: 1 - - uid: 10793 + - uid: 11390 components: - type: Transform - pos: -37.5,-50.5 + pos: 27.5,-55.5 parent: 1 - - uid: 10794 + - uid: 11391 components: - type: Transform - pos: -37.5,-51.5 + pos: 27.5,-56.5 parent: 1 - - uid: 10795 + - uid: 11392 components: - type: Transform - pos: -37.5,-52.5 + pos: 27.5,-57.5 parent: 1 - - uid: 10796 + - uid: 11393 components: - type: Transform - pos: -37.5,-53.5 + pos: 27.5,-58.5 parent: 1 - - uid: 10797 + - uid: 11394 components: - type: Transform - pos: -37.5,-54.5 + pos: 27.5,-59.5 parent: 1 - - uid: 10798 + - uid: 11395 components: - type: Transform - pos: -37.5,-55.5 + pos: 27.5,-60.5 parent: 1 - - uid: 10799 + - uid: 11396 components: - type: Transform - pos: -37.5,-56.5 + pos: 27.5,-61.5 parent: 1 - - uid: 10800 + - uid: 11397 components: - type: Transform - pos: -37.5,-57.5 + pos: 27.5,-62.5 parent: 1 - - uid: 10801 + - uid: 11398 components: - type: Transform - pos: -37.5,-58.5 + pos: 27.5,-63.5 parent: 1 - - uid: 10802 + - uid: 11399 components: - type: Transform - pos: -37.5,-59.5 + pos: 27.5,-64.5 parent: 1 - - uid: 10803 + - uid: 11400 components: - type: Transform - pos: -37.5,-60.5 + pos: 27.5,-65.5 parent: 1 - - uid: 10804 + - uid: 11401 components: - type: Transform - pos: -37.5,-61.5 + pos: 27.5,-66.5 parent: 1 - - uid: 10805 + - uid: 11402 components: - type: Transform - pos: -37.5,-62.5 + pos: 27.5,-67.5 parent: 1 - - uid: 10806 + - uid: 11403 components: - type: Transform - pos: -37.5,-63.5 + pos: 27.5,-68.5 parent: 1 - - uid: 10807 + - uid: 11404 components: - type: Transform - pos: -37.5,-64.5 + pos: 27.5,-69.5 parent: 1 - - uid: 10808 + - uid: 11405 components: - type: Transform - pos: -37.5,-65.5 + pos: 27.5,-70.5 parent: 1 - - uid: 10809 + - uid: 11406 components: - type: Transform - pos: -37.5,-66.5 + pos: 27.5,-71.5 parent: 1 - - uid: 10810 + - uid: 11407 components: - type: Transform - pos: -37.5,-67.5 + pos: 27.5,-72.5 parent: 1 - - uid: 10811 + - uid: 11408 components: - type: Transform - pos: -37.5,-68.5 + pos: 27.5,-73.5 parent: 1 - - uid: 10812 + - uid: 11409 components: - type: Transform - pos: -37.5,-69.5 + pos: 27.5,-74.5 parent: 1 - - uid: 10813 + - uid: 11410 components: - type: Transform - pos: -37.5,-70.5 + pos: 27.5,-75.5 parent: 1 - - uid: 10814 + - uid: 11411 components: - type: Transform - pos: -37.5,-71.5 + pos: 27.5,-76.5 parent: 1 - - uid: 10815 + - uid: 11412 components: - type: Transform - pos: -37.5,-72.5 + pos: 27.5,-77.5 parent: 1 - - uid: 10816 + - uid: 11413 components: - type: Transform - pos: -37.5,-73.5 + pos: 27.5,-78.5 parent: 1 - - uid: 10817 + - uid: 11414 components: - type: Transform - pos: -37.5,-74.5 + pos: 27.5,-79.5 parent: 1 - - uid: 10818 + - uid: 11426 components: - type: Transform - pos: -37.5,-75.5 + pos: 47.5,-102.5 parent: 1 - - uid: 10819 + - uid: 11429 components: - type: Transform - pos: -37.5,-76.5 + pos: 47.5,-86.5 parent: 1 - - uid: 10820 + - uid: 11455 components: - type: Transform - pos: -37.5,-77.5 + pos: 44.5,-126.5 parent: 1 - - uid: 10821 + - uid: 11457 components: - type: Transform - pos: -37.5,-78.5 + pos: 27.5,-122.5 parent: 1 - - uid: 10822 + - uid: 11458 components: - type: Transform - pos: -37.5,-79.5 + pos: 27.5,-123.5 parent: 1 - - uid: 10823 + - uid: 11459 components: - type: Transform - pos: 24.5,-33.5 + pos: 27.5,-124.5 parent: 1 - - uid: 10825 + - uid: 11460 components: - type: Transform - pos: -37.5,-82.5 + pos: 27.5,-125.5 parent: 1 - - uid: 10826 + - uid: 11461 components: - type: Transform - pos: 24.5,-38.5 + pos: 27.5,-126.5 parent: 1 - - uid: 10827 + - uid: 11462 components: - type: Transform - pos: 24.5,-39.5 + pos: 27.5,-127.5 parent: 1 - - uid: 10828 + - uid: 11463 components: - type: Transform - pos: -37.5,-85.5 + pos: 27.5,-128.5 parent: 1 - - uid: 10829 + - uid: 11694 components: - type: Transform - pos: -37.5,-86.5 + rot: 1.5707963267948966 rad + pos: 28.5,-75.5 parent: 1 - - uid: 10830 + - uid: 11695 components: - type: Transform - pos: -37.5,-87.5 + rot: 1.5707963267948966 rad + pos: 28.5,-76.5 parent: 1 - - uid: 10831 + - uid: 11696 components: - type: Transform - pos: -37.5,-88.5 + rot: 1.5707963267948966 rad + pos: 28.5,-77.5 parent: 1 - - uid: 10832 + - uid: 11697 components: - type: Transform - pos: -37.5,-89.5 + rot: 1.5707963267948966 rad + pos: 28.5,-78.5 parent: 1 - - uid: 10833 + - uid: 11698 components: - type: Transform - pos: -37.5,-90.5 + rot: 1.5707963267948966 rad + pos: 28.5,-79.5 parent: 1 - - uid: 10834 + - uid: 11710 components: - type: Transform - pos: -37.5,-91.5 + pos: 47.5,-103.5 parent: 1 - - uid: 10835 + - uid: 11712 components: - type: Transform - pos: -37.5,-92.5 + pos: 47.5,-88.5 parent: 1 - - uid: 10836 + - uid: 11713 components: - type: Transform - pos: -37.5,-93.5 + pos: 47.5,-89.5 parent: 1 - - uid: 10837 + - uid: 11736 components: - type: Transform - pos: -37.5,-94.5 + pos: 44.5,-127.5 parent: 1 - - uid: 10838 + - uid: 11741 components: - type: Transform - pos: -37.5,-95.5 + rot: 1.5707963267948966 rad + pos: 28.5,-122.5 parent: 1 - - uid: 10839 + - uid: 11742 components: - type: Transform - pos: -37.5,-96.5 + rot: 1.5707963267948966 rad + pos: 28.5,-123.5 parent: 1 - - uid: 10840 + - uid: 11743 components: - type: Transform - pos: -37.5,-97.5 + rot: 1.5707963267948966 rad + pos: 28.5,-124.5 parent: 1 - - uid: 10841 + - uid: 11744 components: - type: Transform - pos: -37.5,-98.5 + rot: 1.5707963267948966 rad + pos: 28.5,-125.5 parent: 1 - - uid: 10842 + - uid: 11745 components: - type: Transform - pos: -37.5,-99.5 + rot: 1.5707963267948966 rad + pos: 28.5,-126.5 parent: 1 - - uid: 10843 + - uid: 11746 components: - type: Transform - pos: -37.5,-100.5 + rot: 1.5707963267948966 rad + pos: 28.5,-127.5 parent: 1 - - uid: 10844 + - uid: 11747 components: - type: Transform - pos: -37.5,-101.5 + rot: 1.5707963267948966 rad + pos: 28.5,-128.5 parent: 1 - - uid: 10845 + - uid: 11748 components: - type: Transform - pos: -37.5,-102.5 + rot: 1.5707963267948966 rad + pos: 29.5,-75.5 parent: 1 - - uid: 10846 + - uid: 11749 components: - type: Transform - pos: -37.5,-103.5 + rot: 1.5707963267948966 rad + pos: 29.5,-76.5 parent: 1 - - uid: 10847 + - uid: 11750 components: - type: Transform - pos: -37.5,-104.5 + rot: 1.5707963267948966 rad + pos: 29.5,-77.5 parent: 1 - - uid: 10848 + - uid: 11751 components: - type: Transform - pos: -37.5,-105.5 + rot: 1.5707963267948966 rad + pos: 29.5,-78.5 parent: 1 - - uid: 10849 + - uid: 11752 components: - type: Transform - pos: -37.5,-106.5 + rot: 1.5707963267948966 rad + pos: 29.5,-79.5 parent: 1 - - uid: 10850 + - uid: 11762 components: - type: Transform - pos: -37.5,-107.5 + pos: 47.5,-100.5 parent: 1 - - uid: 10851 + - uid: 11791 components: - type: Transform - pos: -37.5,-108.5 + pos: 44.5,-125.5 parent: 1 - - uid: 10852 + - uid: 11795 components: - type: Transform - pos: -37.5,-109.5 + rot: 1.5707963267948966 rad + pos: 29.5,-122.5 parent: 1 - - uid: 10853 + - uid: 11796 components: - type: Transform - pos: 23.5,16.5 + rot: 1.5707963267948966 rad + pos: 29.5,-123.5 parent: 1 - - uid: 10854 + - uid: 11797 components: - type: Transform - pos: 23.5,15.5 + rot: 1.5707963267948966 rad + pos: 29.5,-124.5 parent: 1 - - uid: 10855 + - uid: 11798 components: - type: Transform - pos: 23.5,17.5 + rot: 1.5707963267948966 rad + pos: 29.5,-125.5 parent: 1 - - uid: 10856 + - uid: 11799 components: - type: Transform - pos: 23.5,11.5 + rot: 1.5707963267948966 rad + pos: 29.5,-126.5 parent: 1 - - uid: 10857 + - uid: 11800 components: - type: Transform - pos: 23.5,14.5 + rot: 1.5707963267948966 rad + pos: 29.5,-127.5 parent: 1 - - uid: 10858 + - uid: 11801 components: - type: Transform - pos: 23.5,10.5 + rot: 1.5707963267948966 rad + pos: 29.5,-128.5 parent: 1 - - uid: 10859 + - uid: 11802 components: - type: Transform - pos: 23.5,9.5 + rot: 1.5707963267948966 rad + pos: 30.5,-75.5 parent: 1 - - uid: 10860 + - uid: 11803 components: - type: Transform - pos: 23.5,8.5 + rot: 1.5707963267948966 rad + pos: 30.5,-76.5 parent: 1 - - uid: 10861 + - uid: 11805 components: - type: Transform - pos: -37.5,-118.5 + pos: 47.5,-101.5 parent: 1 - - uid: 10862 + - uid: 11819 components: - type: Transform - pos: -37.5,-119.5 + pos: 47.5,-105.5 parent: 1 - - uid: 10863 + - uid: 11842 components: - type: Transform - pos: -37.5,-120.5 + pos: 44.5,-123.5 parent: 1 - - uid: 10864 + - uid: 11849 components: - type: Transform - pos: -37.5,-121.5 + rot: 1.5707963267948966 rad + pos: 30.5,-122.5 parent: 1 - - uid: 10870 + - uid: 11850 components: - type: Transform - pos: -37.5,-127.5 + rot: 1.5707963267948966 rad + pos: 30.5,-123.5 parent: 1 - - uid: 10871 + - uid: 11851 components: - type: Transform - pos: -37.5,-128.5 + rot: 1.5707963267948966 rad + pos: 30.5,-124.5 parent: 1 - - uid: 10872 + - uid: 11852 components: - type: Transform - pos: -38.5,-128.5 + rot: 1.5707963267948966 rad + pos: 30.5,-125.5 parent: 1 - - uid: 10873 + - uid: 11853 components: - type: Transform - pos: -39.5,-128.5 + rot: 1.5707963267948966 rad + pos: 30.5,-126.5 parent: 1 - - uid: 10874 + - uid: 11854 components: - type: Transform - pos: -40.5,-128.5 + rot: 1.5707963267948966 rad + pos: 30.5,-127.5 parent: 1 - - uid: 10875 + - uid: 11855 components: - type: Transform - pos: 24.5,-44.5 + rot: 1.5707963267948966 rad + pos: 30.5,-128.5 parent: 1 - - uid: 10876 + - uid: 11856 components: - type: Transform - pos: 24.5,-45.5 + rot: 1.5707963267948966 rad + pos: 31.5,-75.5 parent: 1 - - uid: 10877 + - uid: 11857 components: - type: Transform - pos: 24.5,-46.5 + rot: 1.5707963267948966 rad + pos: 31.5,-76.5 parent: 1 - - uid: 10878 + - uid: 11869 components: - type: Transform - pos: 24.5,-47.5 + pos: 47.5,-99.5 parent: 1 - - uid: 10879 + - uid: 11870 components: - type: Transform - pos: 24.5,-48.5 + pos: 47.5,-98.5 parent: 1 - - uid: 10880 + - uid: 11871 components: - type: Transform - pos: 24.5,-49.5 + pos: 47.5,-97.5 parent: 1 - - uid: 10881 + - uid: 11875 components: - type: Transform - pos: 24.5,-50.5 + pos: 47.5,-96.5 parent: 1 - - uid: 10882 + - uid: 11876 components: - type: Transform - pos: 24.5,-51.5 + pos: 47.5,-93.5 parent: 1 - - uid: 10883 + - uid: 11878 components: - type: Transform - pos: 24.5,-52.5 + pos: 46.5,-75.5 parent: 1 - - uid: 10884 + - uid: 11879 components: - type: Transform - pos: 24.5,-53.5 + pos: 47.5,-106.5 parent: 1 - - uid: 10885 + - uid: 11903 components: - type: Transform - pos: 24.5,-54.5 + rot: 1.5707963267948966 rad + pos: 31.5,-122.5 parent: 1 - - uid: 10886 + - uid: 11904 components: - type: Transform - pos: 24.5,-55.5 + rot: 1.5707963267948966 rad + pos: 31.5,-123.5 parent: 1 - - uid: 10887 + - uid: 11905 components: - type: Transform - pos: 24.5,-56.5 + rot: 1.5707963267948966 rad + pos: 31.5,-124.5 parent: 1 - - uid: 10888 + - uid: 11906 components: - type: Transform - pos: 24.5,-57.5 + rot: 1.5707963267948966 rad + pos: 31.5,-125.5 parent: 1 - - uid: 10889 + - uid: 11907 components: - type: Transform - pos: 24.5,-58.5 + rot: 1.5707963267948966 rad + pos: 31.5,-126.5 parent: 1 - - uid: 10890 + - uid: 11908 components: - type: Transform - pos: 24.5,-59.5 + rot: 1.5707963267948966 rad + pos: 31.5,-127.5 parent: 1 - - uid: 10891 + - uid: 11909 components: - type: Transform - pos: 24.5,-60.5 + rot: 1.5707963267948966 rad + pos: 31.5,-128.5 parent: 1 - - uid: 10892 + - uid: 11910 components: - type: Transform - pos: 24.5,-61.5 + rot: 1.5707963267948966 rad + pos: 32.5,-75.5 parent: 1 - - uid: 10898 + - uid: 11911 components: - type: Transform - pos: 24.5,-67.5 + rot: 1.5707963267948966 rad + pos: 32.5,-76.5 parent: 1 - - uid: 10899 + - uid: 11913 components: - type: Transform - pos: 24.5,-68.5 + pos: 44.5,-124.5 parent: 1 - - uid: 10900 + - uid: 11957 components: - type: Transform - pos: 24.5,-69.5 + rot: 1.5707963267948966 rad + pos: 32.5,-122.5 parent: 1 - - uid: 10901 + - uid: 11958 components: - type: Transform - pos: 24.5,-70.5 + rot: 1.5707963267948966 rad + pos: 32.5,-123.5 parent: 1 - - uid: 10902 + - uid: 11959 components: - type: Transform - pos: 24.5,-71.5 + rot: 1.5707963267948966 rad + pos: 32.5,-124.5 parent: 1 - - uid: 10903 + - uid: 11960 components: - type: Transform - pos: 24.5,-72.5 + rot: 1.5707963267948966 rad + pos: 32.5,-125.5 parent: 1 - - uid: 10904 + - uid: 11961 components: - type: Transform - pos: 24.5,-73.5 + rot: 1.5707963267948966 rad + pos: 32.5,-126.5 parent: 1 - - uid: 10905 + - uid: 11962 components: - type: Transform - pos: 24.5,-74.5 + rot: 1.5707963267948966 rad + pos: 32.5,-127.5 parent: 1 - - uid: 10906 + - uid: 11963 components: - type: Transform - pos: 24.5,-75.5 + rot: 1.5707963267948966 rad + pos: 32.5,-128.5 parent: 1 - - uid: 10907 + - uid: 11964 components: - type: Transform - pos: 24.5,-76.5 + rot: 1.5707963267948966 rad + pos: 33.5,-75.5 parent: 1 - - uid: 10908 + - uid: 11965 components: - type: Transform - pos: 24.5,-77.5 + rot: 1.5707963267948966 rad + pos: 33.5,-76.5 parent: 1 - - uid: 10909 + - uid: 11968 components: - type: Transform - pos: 24.5,-78.5 + pos: 45.5,-128.5 parent: 1 - - uid: 10910 + - uid: 11977 components: - type: Transform - pos: 24.5,-79.5 + pos: 44.5,-122.5 parent: 1 - - uid: 10911 + - uid: 12011 components: - type: Transform - pos: 24.5,-80.5 + rot: 1.5707963267948966 rad + pos: 33.5,-122.5 parent: 1 - - uid: 10912 + - uid: 12012 components: - type: Transform - pos: 24.5,-81.5 + rot: 1.5707963267948966 rad + pos: 33.5,-123.5 parent: 1 - - uid: 10913 + - uid: 12013 components: - type: Transform - pos: 24.5,-82.5 + rot: 1.5707963267948966 rad + pos: 33.5,-124.5 parent: 1 - - uid: 10914 + - uid: 12014 components: - type: Transform - pos: 24.5,-83.5 + rot: 1.5707963267948966 rad + pos: 33.5,-125.5 parent: 1 - - uid: 10915 + - uid: 12015 components: - type: Transform - pos: 24.5,-84.5 + rot: 1.5707963267948966 rad + pos: 33.5,-126.5 parent: 1 - - uid: 10916 + - uid: 12016 components: - type: Transform - pos: 24.5,-85.5 + rot: 1.5707963267948966 rad + pos: 33.5,-127.5 parent: 1 - - uid: 10917 + - uid: 12017 components: - type: Transform - pos: 24.5,-86.5 + rot: 1.5707963267948966 rad + pos: 33.5,-128.5 parent: 1 - - uid: 10918 + - uid: 12018 components: - type: Transform - pos: 24.5,-87.5 + rot: 1.5707963267948966 rad + pos: 34.5,-75.5 parent: 1 - - uid: 10919 + - uid: 12019 components: - type: Transform - pos: 24.5,-88.5 + rot: 1.5707963267948966 rad + pos: 34.5,-76.5 parent: 1 - - uid: 10920 + - uid: 12043 components: - type: Transform - pos: 24.5,-89.5 + pos: 46.5,-114.5 parent: 1 - - uid: 10921 + - uid: 12051 components: - type: Transform - pos: 24.5,-90.5 + pos: -11.5,-37.5 parent: 1 - - uid: 10922 + - uid: 12052 components: - type: Transform - pos: 24.5,-91.5 + pos: -33.5,-102.5 parent: 1 - - uid: 10923 + - uid: 12054 components: - type: Transform - pos: 24.5,-92.5 + pos: -11.5,-66.5 parent: 1 - - uid: 10924 + - uid: 12055 components: - type: Transform - pos: 24.5,-93.5 + pos: -32.5,-127.5 parent: 1 - - uid: 10925 + - uid: 12057 components: - type: Transform - pos: 24.5,-94.5 + pos: -33.5,-105.5 parent: 1 - - uid: 10926 + - uid: 12063 components: - type: Transform - pos: 24.5,-95.5 + pos: 47.5,-78.5 parent: 1 - - uid: 10927 + - uid: 12065 components: - type: Transform - pos: 24.5,-96.5 + rot: 1.5707963267948966 rad + pos: 34.5,-122.5 parent: 1 - - uid: 10928 + - uid: 12066 components: - type: Transform - pos: 24.5,-97.5 + rot: 1.5707963267948966 rad + pos: 34.5,-123.5 parent: 1 - - uid: 10929 + - uid: 12067 components: - type: Transform - pos: 24.5,-98.5 + rot: 1.5707963267948966 rad + pos: 34.5,-124.5 parent: 1 - - uid: 10930 + - uid: 12068 components: - type: Transform - pos: 24.5,-99.5 + rot: 1.5707963267948966 rad + pos: 34.5,-125.5 parent: 1 - - uid: 10931 + - uid: 12069 components: - type: Transform - pos: 24.5,-100.5 + rot: 1.5707963267948966 rad + pos: 34.5,-126.5 parent: 1 - - uid: 10932 + - uid: 12070 components: - type: Transform - pos: 24.5,-101.5 + rot: 1.5707963267948966 rad + pos: 34.5,-127.5 parent: 1 - - uid: 10933 + - uid: 12071 components: - type: Transform - pos: 24.5,-102.5 + rot: 1.5707963267948966 rad + pos: 34.5,-128.5 parent: 1 - - uid: 10934 + - uid: 12072 components: - type: Transform - pos: 24.5,-103.5 + rot: 1.5707963267948966 rad + pos: 35.5,-75.5 parent: 1 - - uid: 10935 + - uid: 12073 components: - type: Transform - pos: 24.5,-104.5 + rot: 1.5707963267948966 rad + pos: 35.5,-76.5 parent: 1 - - uid: 10936 + - uid: 12088 components: - type: Transform - pos: 24.5,-105.5 + pos: 47.5,-77.5 parent: 1 - - uid: 10937 + - uid: 12118 components: - type: Transform - pos: 24.5,-106.5 + pos: 47.5,-92.5 parent: 1 - - uid: 10938 + - uid: 12119 components: - type: Transform - pos: 24.5,-107.5 + rot: 1.5707963267948966 rad + pos: 35.5,-122.5 parent: 1 - - uid: 10939 + - uid: 12120 components: - type: Transform - pos: 24.5,-108.5 + rot: 1.5707963267948966 rad + pos: 35.5,-123.5 parent: 1 - - uid: 10940 + - uid: 12121 components: - type: Transform - pos: 24.5,-109.5 + rot: 1.5707963267948966 rad + pos: 35.5,-124.5 parent: 1 - - uid: 10941 + - uid: 12122 components: - type: Transform - pos: 24.5,-110.5 + rot: 1.5707963267948966 rad + pos: 35.5,-125.5 parent: 1 - - uid: 10942 + - uid: 12123 components: - type: Transform - pos: 24.5,-111.5 + rot: 1.5707963267948966 rad + pos: 35.5,-126.5 parent: 1 - - uid: 10943 + - uid: 12124 components: - type: Transform - pos: 24.5,-112.5 + rot: 1.5707963267948966 rad + pos: 35.5,-127.5 parent: 1 - - uid: 10944 + - uid: 12125 components: - type: Transform - pos: 24.5,-113.5 + rot: 1.5707963267948966 rad + pos: 35.5,-128.5 parent: 1 - - uid: 10945 + - uid: 12126 components: - type: Transform - pos: 24.5,-114.5 + rot: 1.5707963267948966 rad + pos: 36.5,-75.5 parent: 1 - - uid: 10946 + - uid: 12127 components: - type: Transform - pos: 24.5,-115.5 + rot: 1.5707963267948966 rad + pos: 36.5,-76.5 parent: 1 - - uid: 10947 + - uid: 12128 components: - type: Transform - pos: 24.5,-116.5 + pos: 47.5,-90.5 parent: 1 - - uid: 10948 + - uid: 12129 components: - type: Transform - pos: 24.5,-117.5 + pos: 47.5,-91.5 parent: 1 - - uid: 10949 + - uid: 12139 components: - type: Transform - pos: 24.5,-118.5 + pos: 47.5,-95.5 parent: 1 - - uid: 10950 + - uid: 12144 components: - type: Transform - pos: 24.5,-119.5 + pos: 47.5,-94.5 parent: 1 - - uid: 10951 + - uid: 12155 components: - type: Transform - pos: 24.5,-120.5 + pos: 46.5,-76.5 parent: 1 - - uid: 10952 + - uid: 12173 components: - type: Transform - pos: 24.5,-121.5 + rot: 1.5707963267948966 rad + pos: 36.5,-122.5 parent: 1 - - uid: 10953 + - uid: 12174 components: - type: Transform - pos: 24.5,-122.5 + rot: 1.5707963267948966 rad + pos: 36.5,-123.5 parent: 1 - - uid: 10954 + - uid: 12175 components: - type: Transform - pos: 24.5,-123.5 + rot: 1.5707963267948966 rad + pos: 36.5,-124.5 parent: 1 - - uid: 10955 + - uid: 12176 components: - type: Transform - pos: 24.5,-124.5 + rot: 1.5707963267948966 rad + pos: 36.5,-125.5 parent: 1 - - uid: 10956 + - uid: 12177 components: - type: Transform - pos: 24.5,-125.5 + rot: 1.5707963267948966 rad + pos: 36.5,-126.5 parent: 1 - - uid: 10957 + - uid: 12178 components: - type: Transform - pos: 24.5,-126.5 + rot: 1.5707963267948966 rad + pos: 36.5,-127.5 parent: 1 - - uid: 10958 + - uid: 12179 components: - type: Transform - pos: 24.5,-127.5 + rot: 1.5707963267948966 rad + pos: 36.5,-128.5 parent: 1 - - uid: 10959 + - uid: 12180 components: - type: Transform - pos: 24.5,-128.5 + rot: 1.5707963267948966 rad + pos: 37.5,-75.5 parent: 1 - - uid: 10960 + - uid: 12181 components: - type: Transform - pos: 25.5,38.5 + rot: 1.5707963267948966 rad + pos: 37.5,-76.5 parent: 1 - - uid: 10961 + - uid: 12227 components: - type: Transform - pos: 25.5,37.5 + rot: 1.5707963267948966 rad + pos: 37.5,-122.5 parent: 1 - - uid: 10962 + - uid: 12228 components: - type: Transform - pos: 25.5,36.5 + rot: 1.5707963267948966 rad + pos: 37.5,-123.5 parent: 1 - - uid: 10963 + - uid: 12229 components: - type: Transform - pos: 25.5,35.5 + rot: 1.5707963267948966 rad + pos: 37.5,-124.5 parent: 1 - - uid: 10964 + - uid: 12230 components: - type: Transform - pos: 25.5,34.5 + rot: 1.5707963267948966 rad + pos: 37.5,-125.5 parent: 1 - - uid: 10965 + - uid: 12231 components: - type: Transform - pos: 25.5,33.5 + rot: 1.5707963267948966 rad + pos: 37.5,-126.5 parent: 1 - - uid: 10966 + - uid: 12232 components: - type: Transform - pos: 25.5,32.5 + rot: 1.5707963267948966 rad + pos: 37.5,-127.5 parent: 1 - - uid: 10967 + - uid: 12233 components: - type: Transform - pos: 25.5,31.5 + rot: 1.5707963267948966 rad + pos: 37.5,-128.5 parent: 1 - - uid: 10968 + - uid: 12234 components: - type: Transform - pos: 25.5,30.5 + rot: 1.5707963267948966 rad + pos: 38.5,-75.5 parent: 1 - - uid: 10969 + - uid: 12235 components: - type: Transform - pos: 25.5,29.5 + rot: 1.5707963267948966 rad + pos: 38.5,-76.5 parent: 1 - - uid: 10970 + - uid: 12248 components: - type: Transform - pos: 25.5,28.5 + pos: -11.5,-67.5 parent: 1 - - uid: 10971 + - uid: 12249 components: - type: Transform - pos: 25.5,27.5 + pos: -11.5,-68.5 parent: 1 - - uid: 10972 + - uid: 12250 components: - type: Transform - pos: 25.5,26.5 + pos: -11.5,-69.5 parent: 1 - - uid: 10973 + - uid: 12252 components: - type: Transform - pos: 25.5,25.5 + pos: -11.5,-70.5 parent: 1 - - uid: 10974 + - uid: 12253 components: - type: Transform - pos: 25.5,24.5 + pos: -10.5,-49.5 parent: 1 - - uid: 10975 + - uid: 12257 components: - type: Transform - pos: 25.5,23.5 + pos: -10.5,-50.5 parent: 1 - - uid: 10976 + - uid: 12258 components: - type: Transform - pos: 25.5,22.5 + pos: -10.5,-51.5 parent: 1 - - uid: 10977 + - uid: 12259 components: - type: Transform - pos: 25.5,21.5 + pos: -10.5,-52.5 parent: 1 - - uid: 10978 + - uid: 12260 components: - type: Transform - pos: 25.5,20.5 + pos: -10.5,-55.5 parent: 1 - - uid: 10979 + - uid: 12261 components: - type: Transform - pos: 25.5,19.5 + pos: -10.5,-56.5 parent: 1 - - uid: 10980 + - uid: 12262 components: - type: Transform - pos: 25.5,18.5 + pos: -10.5,-57.5 parent: 1 - - uid: 10981 + - uid: 12263 components: - type: Transform - pos: 25.5,17.5 + pos: -10.5,-58.5 parent: 1 - - uid: 10982 + - uid: 12264 components: - type: Transform - pos: 25.5,16.5 + pos: -10.5,-59.5 parent: 1 - - uid: 10983 + - uid: 12265 components: - type: Transform - pos: 25.5,15.5 + pos: -10.5,-60.5 parent: 1 - - uid: 10984 + - uid: 12266 components: - type: Transform - pos: 25.5,14.5 + pos: -10.5,-61.5 parent: 1 - - uid: 10985 + - uid: 12267 components: - type: Transform - pos: 25.5,13.5 + pos: -10.5,-62.5 parent: 1 - - uid: 10986 + - uid: 12268 components: - type: Transform - pos: 25.5,12.5 + pos: -10.5,-63.5 parent: 1 - - uid: 10987 + - uid: 12269 components: - type: Transform - pos: 25.5,11.5 + pos: -10.5,-64.5 parent: 1 - - uid: 10988 + - uid: 12270 components: - type: Transform - pos: 25.5,10.5 + pos: -10.5,-65.5 parent: 1 - - uid: 10989 + - uid: 12271 components: - type: Transform - pos: 25.5,9.5 + pos: -10.5,-66.5 parent: 1 - - uid: 10990 + - uid: 12272 components: - type: Transform - pos: 25.5,8.5 + pos: -10.5,-67.5 parent: 1 - - uid: 10991 + - uid: 12273 components: - type: Transform - pos: 25.5,7.5 + pos: -10.5,-68.5 parent: 1 - - uid: 10992 + - uid: 12274 components: - type: Transform - pos: 25.5,6.5 + pos: -10.5,-69.5 parent: 1 - - uid: 10993 + - uid: 12275 components: - type: Transform - pos: 25.5,5.5 + pos: -10.5,-70.5 parent: 1 - - uid: 10994 + - uid: 12276 components: - type: Transform - pos: 25.5,4.5 + pos: -9.5,-49.5 parent: 1 - - uid: 10995 + - uid: 12277 components: - type: Transform - pos: 25.5,3.5 + pos: -9.5,-50.5 parent: 1 - - uid: 10996 + - uid: 12278 components: - type: Transform - pos: 25.5,2.5 + pos: -9.5,-51.5 parent: 1 - - uid: 10997 + - uid: 12279 components: - type: Transform - pos: 25.5,1.5 + pos: -9.5,-56.5 parent: 1 - - uid: 10998 + - uid: 12280 components: - type: Transform - pos: 25.5,0.5 + pos: -9.5,-57.5 parent: 1 - - uid: 10999 + - uid: 12281 components: - type: Transform - pos: 25.5,-0.5 + rot: 1.5707963267948966 rad + pos: 38.5,-122.5 parent: 1 - - uid: 11000 + - uid: 12282 components: - type: Transform - pos: 25.5,-1.5 + rot: 1.5707963267948966 rad + pos: 38.5,-123.5 parent: 1 - - uid: 11001 + - uid: 12283 components: - type: Transform - pos: 25.5,-2.5 + rot: 1.5707963267948966 rad + pos: 38.5,-124.5 parent: 1 - - uid: 11002 + - uid: 12284 components: - type: Transform - pos: 25.5,-3.5 + rot: 1.5707963267948966 rad + pos: 38.5,-125.5 parent: 1 - - uid: 11003 + - uid: 12285 components: - type: Transform - pos: 25.5,-4.5 + rot: 1.5707963267948966 rad + pos: 38.5,-126.5 parent: 1 - - uid: 11004 + - uid: 12286 components: - type: Transform - pos: 25.5,-5.5 + rot: 1.5707963267948966 rad + pos: 38.5,-127.5 parent: 1 - - uid: 11005 + - uid: 12287 components: - type: Transform - pos: 25.5,-6.5 + rot: 1.5707963267948966 rad + pos: 38.5,-128.5 parent: 1 - - uid: 11006 + - uid: 12288 components: - type: Transform - pos: 25.5,-7.5 + rot: 1.5707963267948966 rad + pos: 39.5,-75.5 parent: 1 - - uid: 11007 + - uid: 12289 components: - type: Transform - pos: 25.5,-8.5 + rot: 1.5707963267948966 rad + pos: 39.5,-76.5 parent: 1 - - uid: 11008 + - uid: 12290 components: - type: Transform - pos: 25.5,-9.5 + pos: -9.5,-58.5 parent: 1 - - uid: 11009 + - uid: 12291 components: - type: Transform - pos: 25.5,-10.5 + pos: -9.5,-59.5 parent: 1 - - uid: 11010 + - uid: 12292 components: - type: Transform - pos: 25.5,-11.5 + pos: -9.5,-60.5 parent: 1 - - uid: 11011 + - uid: 12295 components: - type: Transform - pos: 25.5,-12.5 + pos: -9.5,-61.5 parent: 1 - - uid: 11012 + - uid: 12301 components: - type: Transform - pos: 25.5,-13.5 + pos: -9.5,-62.5 parent: 1 - - uid: 11013 + - uid: 12302 components: - type: Transform - pos: 25.5,-14.5 + pos: -9.5,-63.5 parent: 1 - - uid: 11014 + - uid: 12303 components: - type: Transform - pos: 25.5,-15.5 + pos: -9.5,-64.5 parent: 1 - - uid: 11015 + - uid: 12304 components: - type: Transform - pos: 25.5,-16.5 + pos: -9.5,-65.5 parent: 1 - - uid: 11016 + - uid: 12310 components: - type: Transform - pos: 25.5,-17.5 + pos: -9.5,-66.5 parent: 1 - - uid: 11017 + - uid: 12311 components: - type: Transform - pos: 25.5,-18.5 + pos: -9.5,-67.5 parent: 1 - - uid: 11018 + - uid: 12312 components: - type: Transform - pos: 25.5,-19.5 + pos: -9.5,-68.5 parent: 1 - - uid: 11019 + - uid: 12313 components: - type: Transform - pos: 25.5,-20.5 + pos: -9.5,-69.5 parent: 1 - - uid: 11020 + - uid: 12314 components: - type: Transform - pos: 25.5,-21.5 + pos: -9.5,-70.5 parent: 1 - - uid: 11021 + - uid: 12315 components: - type: Transform - pos: 25.5,-22.5 + pos: -8.5,-57.5 parent: 1 - - uid: 11022 + - uid: 12316 components: - type: Transform - pos: 25.5,-23.5 + pos: -15.5,-67.5 parent: 1 - - uid: 11023 + - uid: 12317 components: - type: Transform - pos: 25.5,-24.5 + pos: -15.5,-66.5 parent: 1 - - uid: 11024 + - uid: 12318 components: - type: Transform - pos: 25.5,-25.5 + pos: -15.5,-60.5 parent: 1 - - uid: 11025 + - uid: 12319 components: - type: Transform - pos: 25.5,-26.5 + pos: -15.5,-59.5 parent: 1 - - uid: 11026 + - uid: 12320 components: - type: Transform - pos: 25.5,-27.5 + pos: -15.5,-58.5 parent: 1 - - uid: 11027 + - uid: 12321 components: - type: Transform - pos: 25.5,-28.5 + pos: -15.5,-57.5 parent: 1 - - uid: 11028 + - uid: 12322 components: - type: Transform - pos: 25.5,-29.5 + pos: -16.5,-67.5 parent: 1 - - uid: 11029 + - uid: 12323 components: - type: Transform - pos: 25.5,-30.5 + pos: -16.5,-66.5 parent: 1 - - uid: 11030 + - uid: 12324 components: - type: Transform - pos: 25.5,-31.5 + pos: -16.5,-65.5 parent: 1 - - uid: 11031 + - uid: 12325 components: - type: Transform - pos: 25.5,-32.5 + pos: -16.5,-61.5 parent: 1 - - uid: 11032 + - uid: 12326 components: - type: Transform - pos: 25.5,-33.5 + pos: -16.5,-60.5 parent: 1 - - uid: 11033 + - uid: 12327 components: - type: Transform - pos: 25.5,-34.5 + pos: -16.5,-59.5 parent: 1 - - uid: 11034 + - uid: 12328 components: - type: Transform - pos: 25.5,-35.5 + pos: -16.5,-58.5 parent: 1 - - uid: 11035 + - uid: 12329 components: - type: Transform - pos: 25.5,-36.5 + pos: -17.5,-67.5 parent: 1 - - uid: 11036 + - uid: 12330 components: - type: Transform - pos: 25.5,-37.5 + pos: -17.5,-66.5 parent: 1 - - uid: 11037 + - uid: 12331 components: - type: Transform - pos: 25.5,-38.5 + pos: -17.5,-62.5 parent: 1 - - uid: 11038 + - uid: 12332 components: - type: Transform - pos: 25.5,-39.5 + pos: -17.5,-61.5 parent: 1 - - uid: 11039 + - uid: 12333 components: - type: Transform - pos: 25.5,-40.5 + pos: -17.5,-60.5 parent: 1 - - uid: 11040 + - uid: 12334 components: - type: Transform - pos: 25.5,-41.5 + pos: -17.5,-59.5 parent: 1 - - uid: 11041 + - uid: 12335 components: - type: Transform - pos: 25.5,-42.5 + rot: 1.5707963267948966 rad + pos: 39.5,-122.5 parent: 1 - - uid: 11042 + - uid: 12336 components: - type: Transform - pos: 25.5,-43.5 + rot: 1.5707963267948966 rad + pos: 39.5,-123.5 parent: 1 - - uid: 11043 + - uid: 12337 components: - type: Transform - pos: 25.5,-44.5 + rot: 1.5707963267948966 rad + pos: 39.5,-124.5 parent: 1 - - uid: 11044 + - uid: 12338 components: - type: Transform - pos: 25.5,-45.5 + rot: 1.5707963267948966 rad + pos: 39.5,-125.5 parent: 1 - - uid: 11045 + - uid: 12339 components: - type: Transform - pos: 25.5,-46.5 + rot: 1.5707963267948966 rad + pos: 39.5,-126.5 parent: 1 - - uid: 11046 + - uid: 12340 components: - type: Transform - pos: 25.5,-47.5 + rot: 1.5707963267948966 rad + pos: 39.5,-127.5 parent: 1 - - uid: 11047 + - uid: 12341 components: - type: Transform - pos: 25.5,-48.5 + rot: 1.5707963267948966 rad + pos: 39.5,-128.5 parent: 1 - - uid: 11048 + - uid: 12342 components: - type: Transform - pos: 25.5,-49.5 + rot: 1.5707963267948966 rad + pos: 40.5,-75.5 parent: 1 - - uid: 11049 + - uid: 12343 components: - type: Transform - pos: 25.5,-50.5 + rot: 1.5707963267948966 rad + pos: 40.5,-76.5 parent: 1 - - uid: 11050 + - uid: 12344 components: - type: Transform - pos: 25.5,-51.5 + pos: -18.5,-61.5 parent: 1 - - uid: 11051 + - uid: 12345 components: - type: Transform - pos: 25.5,-52.5 + pos: -16.5,-68.5 parent: 1 - - uid: 11052 + - uid: 12346 components: - type: Transform - pos: 25.5,-53.5 + pos: -12.5,-72.5 parent: 1 - - uid: 11053 + - uid: 12355 components: - type: Transform - pos: 25.5,-54.5 + pos: -13.5,-73.5 parent: 1 - - uid: 11054 + - uid: 12356 components: - type: Transform - pos: 25.5,-55.5 + pos: -13.5,-72.5 parent: 1 - - uid: 11055 + - uid: 12357 components: - type: Transform - pos: 25.5,-56.5 + pos: -14.5,-73.5 parent: 1 - - uid: 11056 + - uid: 12358 components: - type: Transform - pos: 25.5,-57.5 + pos: -14.5,-72.5 parent: 1 - - uid: 11057 + - uid: 12360 components: - type: Transform - pos: 25.5,-58.5 + pos: -15.5,-72.5 parent: 1 - - uid: 11058 + - uid: 12362 components: - type: Transform - pos: 25.5,-59.5 + pos: -16.5,-73.5 parent: 1 - - uid: 11059 + - uid: 12363 components: - type: Transform - pos: 25.5,-60.5 + pos: -16.5,-72.5 parent: 1 - - uid: 11060 + - uid: 12364 components: - type: Transform - pos: 25.5,-61.5 + pos: -17.5,-74.5 parent: 1 - - uid: 11061 + - uid: 12365 components: - type: Transform - pos: 25.5,-62.5 + pos: -17.5,-73.5 parent: 1 - - uid: 11062 + - uid: 12366 components: - type: Transform - pos: 25.5,-63.5 + pos: -17.5,-72.5 parent: 1 - - uid: 11063 + - uid: 12367 components: - type: Transform - pos: 25.5,-64.5 + pos: -18.5,-74.5 parent: 1 - - uid: 11064 + - uid: 12368 components: - type: Transform - pos: 25.5,-65.5 + pos: -18.5,-73.5 parent: 1 - - uid: 11065 + - uid: 12369 components: - type: Transform - pos: 25.5,-66.5 + pos: -18.5,-72.5 parent: 1 - - uid: 11066 + - uid: 12370 components: - type: Transform - pos: 25.5,-67.5 + pos: -19.5,-74.5 parent: 1 - - uid: 11067 + - uid: 12371 components: - type: Transform - pos: 25.5,-68.5 + pos: -19.5,-73.5 parent: 1 - - uid: 11068 + - uid: 12372 components: - type: Transform - pos: 25.5,-69.5 + pos: -20.5,-74.5 parent: 1 - - uid: 11069 + - uid: 12373 components: - type: Transform - pos: 25.5,-70.5 + pos: -20.5,-73.5 parent: 1 - - uid: 11070 + - uid: 12374 components: - type: Transform - pos: 25.5,-71.5 + pos: -21.5,-74.5 parent: 1 - - uid: 11071 + - uid: 12375 components: - type: Transform - pos: 25.5,-72.5 + pos: -21.5,-73.5 parent: 1 - - uid: 11072 + - uid: 12376 components: - type: Transform - pos: 25.5,-73.5 + pos: -22.5,-74.5 parent: 1 - - uid: 11073 + - uid: 12377 components: - type: Transform - pos: 25.5,-74.5 + pos: -22.5,-73.5 parent: 1 - - uid: 11074 + - uid: 12378 components: - type: Transform - pos: 25.5,-75.5 + pos: -23.5,-74.5 parent: 1 - - uid: 11075 + - uid: 12379 components: - type: Transform - pos: 25.5,-76.5 + pos: -23.5,-73.5 parent: 1 - - uid: 11076 + - uid: 12380 components: - type: Transform - pos: 25.5,-77.5 + pos: -24.5,-74.5 parent: 1 - - uid: 11077 + - uid: 12381 components: - type: Transform - pos: 25.5,-78.5 + pos: -24.5,-73.5 parent: 1 - - uid: 11078 + - uid: 12382 components: - type: Transform - pos: 25.5,-79.5 + pos: -25.5,-74.5 parent: 1 - - uid: 11079 + - uid: 12383 components: - type: Transform - pos: 25.5,-80.5 + pos: -25.5,-73.5 parent: 1 - - uid: 11080 + - uid: 12384 components: - type: Transform - pos: 25.5,-81.5 + pos: -26.5,-74.5 parent: 1 - - uid: 11081 + - uid: 12385 components: - type: Transform - pos: 25.5,-82.5 + pos: -26.5,-73.5 parent: 1 - - uid: 11082 + - uid: 12386 components: - type: Transform - pos: 25.5,-83.5 + pos: -18.5,-79.5 parent: 1 - - uid: 11083 + - uid: 12387 components: - type: Transform - pos: 25.5,-84.5 + pos: -18.5,-78.5 parent: 1 - - uid: 11084 + - uid: 12388 components: - type: Transform - pos: 25.5,-85.5 + pos: -18.5,-77.5 parent: 1 - - uid: 11085 + - uid: 12389 components: - type: Transform - pos: 25.5,-86.5 + rot: 1.5707963267948966 rad + pos: 40.5,-122.5 parent: 1 - - uid: 11086 + - uid: 12390 components: - type: Transform - pos: 25.5,-87.5 + rot: 1.5707963267948966 rad + pos: 40.5,-123.5 parent: 1 - - uid: 11087 + - uid: 12391 components: - type: Transform - pos: 25.5,-88.5 + rot: 1.5707963267948966 rad + pos: 40.5,-124.5 parent: 1 - - uid: 11088 + - uid: 12392 components: - type: Transform - pos: 25.5,-89.5 + rot: 1.5707963267948966 rad + pos: 40.5,-125.5 parent: 1 - - uid: 11089 + - uid: 12393 components: - type: Transform - pos: 25.5,-90.5 + rot: 1.5707963267948966 rad + pos: 40.5,-126.5 parent: 1 - - uid: 11090 + - uid: 12394 components: - type: Transform - pos: 25.5,-91.5 + rot: 1.5707963267948966 rad + pos: 40.5,-127.5 parent: 1 - - uid: 11091 + - uid: 12395 components: - type: Transform - pos: 25.5,-92.5 + rot: 1.5707963267948966 rad + pos: 40.5,-128.5 parent: 1 - - uid: 11092 + - uid: 12396 components: - type: Transform - pos: 25.5,-93.5 + rot: 1.5707963267948966 rad + pos: 41.5,-75.5 parent: 1 - - uid: 11093 + - uid: 12397 components: - type: Transform - pos: 25.5,-94.5 + rot: 1.5707963267948966 rad + pos: 41.5,-76.5 parent: 1 - - uid: 11094 + - uid: 12398 components: - type: Transform - pos: 25.5,-95.5 + pos: -18.5,-76.5 parent: 1 - - uid: 11095 + - uid: 12399 components: - type: Transform - pos: 25.5,-96.5 + pos: -18.5,-75.5 parent: 1 - - uid: 11096 + - uid: 12400 components: - type: Transform - pos: 25.5,-97.5 + pos: -19.5,-77.5 parent: 1 - - uid: 11097 + - uid: 12406 components: - type: Transform - pos: 25.5,-98.5 + pos: -19.5,-76.5 parent: 1 - - uid: 11098 + - uid: 12407 components: - type: Transform - pos: 25.5,-99.5 + pos: -19.5,-75.5 parent: 1 - - uid: 11099 + - uid: 12409 components: - type: Transform - pos: 25.5,-100.5 + pos: -20.5,-77.5 parent: 1 - - uid: 11100 + - uid: 12410 components: - type: Transform - pos: 25.5,-101.5 + pos: -20.5,-76.5 parent: 1 - - uid: 11101 + - uid: 12411 components: - type: Transform - pos: 25.5,-102.5 + pos: -20.5,-75.5 parent: 1 - - uid: 11102 + - uid: 12412 components: - type: Transform - pos: 25.5,-103.5 + pos: -21.5,-76.5 parent: 1 - - uid: 11103 + - uid: 12413 components: - type: Transform - pos: 25.5,-104.5 + pos: -21.5,-75.5 parent: 1 - - uid: 11104 + - uid: 12414 components: - type: Transform - pos: 25.5,-105.5 + pos: -22.5,-76.5 parent: 1 - - uid: 11105 + - uid: 12415 components: - type: Transform - pos: 25.5,-106.5 + pos: -22.5,-75.5 parent: 1 - - uid: 11106 + - uid: 12416 components: - type: Transform - pos: 25.5,-107.5 + pos: -23.5,-76.5 parent: 1 - - uid: 11107 + - uid: 12417 components: - type: Transform - pos: 25.5,-108.5 + pos: -23.5,-75.5 parent: 1 - - uid: 11108 + - uid: 12418 components: - type: Transform - pos: 25.5,-109.5 + pos: -24.5,-76.5 parent: 1 - - uid: 11109 + - uid: 12419 components: - type: Transform - pos: 25.5,-110.5 + pos: -24.5,-75.5 parent: 1 - - uid: 11110 + - uid: 12420 components: - type: Transform - pos: 25.5,-111.5 + pos: -25.5,-76.5 parent: 1 - - uid: 11111 + - uid: 12421 components: - type: Transform - pos: 25.5,-112.5 + pos: -25.5,-75.5 parent: 1 - - uid: 11112 + - uid: 12422 components: - type: Transform - pos: 25.5,-113.5 + pos: -27.5,-76.5 parent: 1 - - uid: 11113 + - uid: 12423 components: - type: Transform - pos: 25.5,-114.5 + pos: -27.5,-75.5 parent: 1 - - uid: 11114 + - uid: 12424 components: - type: Transform - pos: 25.5,-115.5 + pos: -26.5,-76.5 parent: 1 - - uid: 11115 + - uid: 12425 components: - type: Transform - pos: 25.5,-116.5 + pos: -26.5,-75.5 parent: 1 - - uid: 11116 + - uid: 12426 components: - type: Transform - pos: 25.5,-117.5 + pos: -28.5,-76.5 parent: 1 - - uid: 11117 + - uid: 12427 components: - type: Transform - pos: 25.5,-118.5 + pos: -28.5,-75.5 parent: 1 - - uid: 11118 + - uid: 12428 components: - type: Transform - pos: 25.5,-119.5 + pos: -29.5,-76.5 parent: 1 - - uid: 11119 + - uid: 12429 components: - type: Transform - pos: 25.5,-120.5 + pos: -29.5,-75.5 parent: 1 - - uid: 11120 + - uid: 12430 components: - type: Transform - pos: 25.5,-121.5 + pos: -31.5,-76.5 parent: 1 - - uid: 11121 + - uid: 12431 components: - type: Transform - pos: 25.5,-122.5 + pos: -31.5,-75.5 parent: 1 - - uid: 11122 + - uid: 12432 components: - type: Transform - pos: 25.5,-123.5 + pos: -30.5,-76.5 parent: 1 - - uid: 11123 + - uid: 12433 components: - type: Transform - pos: 25.5,-124.5 + pos: -30.5,-75.5 parent: 1 - - uid: 11124 + - uid: 12434 components: - type: Transform - pos: 25.5,-125.5 + pos: -30.5,-74.5 parent: 1 - - uid: 11125 + - uid: 12435 components: - type: Transform - pos: 25.5,-126.5 + pos: -32.5,-76.5 parent: 1 - - uid: 11126 + - uid: 12436 components: - type: Transform - pos: 25.5,-127.5 + pos: -32.5,-75.5 parent: 1 - - uid: 11127 + - uid: 12437 components: - type: Transform - pos: 25.5,-128.5 + pos: -33.5,-77.5 parent: 1 - - uid: 11128 + - uid: 12438 components: - type: Transform - pos: 26.5,38.5 + pos: -33.5,-76.5 parent: 1 - - uid: 11129 + - uid: 12439 components: - type: Transform - pos: 26.5,37.5 + pos: -33.5,-75.5 parent: 1 - - uid: 11130 + - uid: 12440 components: - type: Transform - pos: 26.5,36.5 + pos: -34.5,-79.5 parent: 1 - - uid: 11131 + - uid: 12441 components: - type: Transform - pos: 26.5,35.5 + pos: -34.5,-78.5 parent: 1 - - uid: 11132 + - uid: 12442 components: - type: Transform - pos: 26.5,34.5 + pos: -34.5,-77.5 parent: 1 - - uid: 11133 + - uid: 12443 components: - type: Transform - pos: 26.5,33.5 + rot: 1.5707963267948966 rad + pos: 41.5,-122.5 parent: 1 - - uid: 11134 + - uid: 12444 components: - type: Transform - pos: 26.5,32.5 + rot: 1.5707963267948966 rad + pos: 41.5,-123.5 parent: 1 - - uid: 11135 + - uid: 12445 components: - type: Transform - pos: 26.5,31.5 + rot: 1.5707963267948966 rad + pos: 41.5,-124.5 parent: 1 - - uid: 11136 + - uid: 12446 components: - type: Transform - pos: 26.5,30.5 + rot: 1.5707963267948966 rad + pos: 41.5,-125.5 parent: 1 - - uid: 11137 + - uid: 12447 components: - type: Transform - pos: 26.5,29.5 + rot: 1.5707963267948966 rad + pos: 41.5,-126.5 parent: 1 - - uid: 11138 + - uid: 12448 components: - type: Transform - pos: 26.5,28.5 + rot: 1.5707963267948966 rad + pos: 41.5,-127.5 parent: 1 - - uid: 11139 + - uid: 12449 components: - type: Transform - pos: 26.5,27.5 + rot: 1.5707963267948966 rad + pos: 41.5,-128.5 parent: 1 - - uid: 11140 + - uid: 12450 components: - type: Transform - pos: 26.5,26.5 + rot: 1.5707963267948966 rad + pos: 42.5,-75.5 parent: 1 - - uid: 11141 + - uid: 12451 components: - type: Transform - pos: 26.5,25.5 + rot: 1.5707963267948966 rad + pos: 42.5,-76.5 parent: 1 - - uid: 11142 + - uid: 12452 components: - type: Transform - pos: 26.5,24.5 + pos: -35.5,-75.5 parent: 1 - - uid: 11143 + - uid: 12456 components: - type: Transform - pos: 26.5,23.5 + pos: -34.5,-76.5 parent: 1 - - uid: 11144 + - uid: 12457 components: - type: Transform - pos: 26.5,22.5 + pos: -34.5,-75.5 parent: 1 - - uid: 11145 + - uid: 12458 components: - type: Transform - pos: 26.5,21.5 + pos: -34.5,-74.5 parent: 1 - - uid: 11146 + - uid: 12459 components: - type: Transform - pos: 26.5,20.5 + pos: -35.5,-79.5 parent: 1 - - uid: 11147 + - uid: 12460 components: - type: Transform - pos: 26.5,19.5 + pos: -35.5,-78.5 parent: 1 - - uid: 11148 + - uid: 12461 components: - type: Transform - pos: 26.5,18.5 + pos: -35.5,-77.5 parent: 1 - - uid: 11149 + - uid: 12463 components: - type: Transform - pos: 26.5,17.5 + pos: -35.5,-76.5 parent: 1 - - uid: 11150 + - uid: 12477 components: - type: Transform - pos: 26.5,16.5 + pos: -35.5,-80.5 parent: 1 - - uid: 11151 + - uid: 12478 components: - type: Transform - pos: 26.5,15.5 + pos: -35.5,-81.5 parent: 1 - - uid: 11152 + - uid: 12479 components: - type: Transform - pos: 26.5,14.5 + pos: -35.5,-82.5 parent: 1 - - uid: 11153 + - uid: 12480 components: - type: Transform - pos: 26.5,13.5 + pos: -35.5,-83.5 parent: 1 - - uid: 11154 + - uid: 12481 components: - type: Transform - pos: 26.5,12.5 + pos: -35.5,-84.5 parent: 1 - - uid: 11155 + - uid: 12485 components: - type: Transform - pos: 26.5,11.5 + pos: -35.5,-88.5 parent: 1 - - uid: 11156 + - uid: 12488 components: - type: Transform - pos: 26.5,10.5 + pos: -34.5,-88.5 parent: 1 - - uid: 11157 + - uid: 12490 components: - type: Transform - pos: 26.5,9.5 + pos: -33.5,-88.5 parent: 1 - - uid: 11158 + - uid: 12491 components: - type: Transform - pos: 26.5,8.5 + pos: -33.5,-89.5 parent: 1 - - uid: 11159 + - uid: 12497 components: - type: Transform - pos: 26.5,7.5 + rot: 1.5707963267948966 rad + pos: 42.5,-122.5 parent: 1 - - uid: 11160 + - uid: 12498 components: - type: Transform - pos: 26.5,6.5 + rot: 1.5707963267948966 rad + pos: 42.5,-123.5 parent: 1 - - uid: 11161 + - uid: 12499 components: - type: Transform - pos: 26.5,5.5 + rot: 1.5707963267948966 rad + pos: 42.5,-124.5 parent: 1 - - uid: 11162 + - uid: 12500 components: - type: Transform - pos: 26.5,4.5 + rot: 1.5707963267948966 rad + pos: 42.5,-125.5 parent: 1 - - uid: 11163 + - uid: 12501 components: - type: Transform - pos: 26.5,3.5 + rot: 1.5707963267948966 rad + pos: 42.5,-126.5 parent: 1 - - uid: 11164 + - uid: 12502 components: - type: Transform - pos: 26.5,2.5 + rot: 1.5707963267948966 rad + pos: 42.5,-127.5 parent: 1 - - uid: 11165 + - uid: 12503 components: - type: Transform - pos: 26.5,1.5 + rot: 1.5707963267948966 rad + pos: 42.5,-128.5 parent: 1 - - uid: 11166 + - uid: 12504 components: - type: Transform - pos: 26.5,0.5 + rot: 1.5707963267948966 rad + pos: 43.5,-75.5 parent: 1 - - uid: 11167 + - uid: 12505 components: - type: Transform - pos: 26.5,-0.5 + rot: 1.5707963267948966 rad + pos: 43.5,-76.5 parent: 1 - - uid: 11168 + - uid: 12541 components: - type: Transform - pos: 26.5,-1.5 + pos: -28.5,-124.5 parent: 1 - - uid: 11169 + - uid: 12544 components: - type: Transform - pos: 26.5,-2.5 + pos: -27.5,-124.5 parent: 1 - - uid: 11170 + - uid: 12545 components: - type: Transform - pos: 26.5,-3.5 + pos: -27.5,-125.5 parent: 1 - - uid: 11171 + - uid: 12548 components: - type: Transform - pos: 26.5,-4.5 + pos: -26.5,-124.5 parent: 1 - - uid: 11172 + - uid: 12549 components: - type: Transform - pos: 26.5,-5.5 + pos: -26.5,-125.5 parent: 1 - - uid: 11173 + - uid: 12550 components: - type: Transform - pos: 26.5,-6.5 + pos: -25.5,-124.5 parent: 1 - - uid: 11174 + - uid: 12551 components: - type: Transform - pos: 26.5,-7.5 + rot: 1.5707963267948966 rad + pos: 43.5,-122.5 parent: 1 - - uid: 11175 + - uid: 12552 components: - type: Transform - pos: 26.5,-8.5 + rot: 1.5707963267948966 rad + pos: 43.5,-123.5 parent: 1 - - uid: 11176 + - uid: 12553 components: - type: Transform - pos: 26.5,-9.5 + rot: 1.5707963267948966 rad + pos: 43.5,-124.5 parent: 1 - - uid: 11177 + - uid: 12554 components: - type: Transform - pos: 26.5,-10.5 + rot: 1.5707963267948966 rad + pos: 43.5,-125.5 parent: 1 - - uid: 11178 + - uid: 12555 components: - type: Transform - pos: 26.5,-11.5 + rot: 1.5707963267948966 rad + pos: 43.5,-126.5 parent: 1 - - uid: 11179 + - uid: 12556 components: - type: Transform - pos: 26.5,-12.5 + rot: 1.5707963267948966 rad + pos: 43.5,-127.5 parent: 1 - - uid: 11180 + - uid: 12557 components: - type: Transform - pos: 26.5,-13.5 + rot: 1.5707963267948966 rad + pos: 43.5,-128.5 parent: 1 - - uid: 11181 + - uid: 12574 components: - type: Transform - pos: 26.5,-14.5 + pos: -25.5,-125.5 parent: 1 - - uid: 11182 + - uid: 12601 components: - type: Transform - pos: 26.5,-15.5 + pos: -25.5,-126.5 parent: 1 - - uid: 11183 + - uid: 12734 components: - type: Transform - pos: 26.5,-16.5 + pos: -24.5,-126.5 parent: 1 - - uid: 11184 + - uid: 12735 components: - type: Transform - pos: 26.5,-17.5 + pos: -24.5,-127.5 parent: 1 - - uid: 11185 + - uid: 12923 components: - type: Transform - pos: 26.5,-18.5 + pos: -23.5,-126.5 parent: 1 - - uid: 11186 + - uid: 12928 components: - type: Transform - pos: 26.5,-19.5 + pos: -23.5,-127.5 parent: 1 - - uid: 11187 + - uid: 12929 components: - type: Transform - pos: 26.5,-20.5 + pos: -38.5,-123.5 parent: 1 - - uid: 11188 + - uid: 12930 components: - type: Transform - pos: 26.5,-21.5 + pos: -38.5,-125.5 parent: 1 - - uid: 11189 + - uid: 12931 components: - type: Transform - pos: 26.5,-22.5 + pos: -37.5,-122.5 parent: 1 - - uid: 11190 + - uid: 12932 components: - type: Transform - pos: 26.5,-23.5 + pos: -37.5,-123.5 parent: 1 - - uid: 11191 + - uid: 12933 components: - type: Transform - pos: 26.5,-24.5 + pos: -37.5,-124.5 parent: 1 - - uid: 11192 + - uid: 12934 components: - type: Transform - pos: 26.5,-25.5 + pos: -37.5,-125.5 parent: 1 - - uid: 11193 + - uid: 12935 components: - type: Transform - pos: 26.5,-26.5 + pos: -37.5,-126.5 parent: 1 - - uid: 11194 + - uid: 12936 components: - type: Transform - pos: 26.5,-27.5 + pos: -36.5,-123.5 parent: 1 - - uid: 11195 + - uid: 12937 components: - type: Transform - pos: 26.5,-28.5 + pos: -36.5,-124.5 parent: 1 - - uid: 11196 + - uid: 12938 components: - type: Transform - pos: 26.5,-29.5 + pos: -36.5,-125.5 parent: 1 - - uid: 11197 + - uid: 12939 components: - type: Transform - pos: 26.5,-30.5 + pos: -36.5,-126.5 parent: 1 - - uid: 11198 + - uid: 12940 components: - type: Transform - pos: 26.5,-31.5 + pos: -34.5,-125.5 parent: 1 - - uid: 11199 + - uid: 12941 components: - type: Transform - pos: 26.5,-32.5 + pos: -34.5,-126.5 parent: 1 - - uid: 11200 + - uid: 12942 components: - type: Transform - pos: 26.5,-33.5 + pos: -35.5,-124.5 parent: 1 - - uid: 11201 + - uid: 12943 components: - type: Transform - pos: 26.5,-34.5 + pos: -35.5,-125.5 parent: 1 - - uid: 11202 + - uid: 12944 components: - type: Transform - pos: 26.5,-35.5 + pos: -35.5,-126.5 parent: 1 - - uid: 11203 + - uid: 12945 components: - type: Transform - pos: 26.5,-36.5 + pos: -34.5,-124.5 parent: 1 - - uid: 11204 +- proto: WallRockBasaltPlasma + entities: + - uid: 2645 components: - type: Transform - pos: 26.5,-37.5 + pos: -15.5,-29.5 parent: 1 - - uid: 11205 + - uid: 2656 components: - type: Transform - pos: 26.5,-38.5 + pos: -16.5,-30.5 parent: 1 - - uid: 11206 + - uid: 2662 components: - type: Transform - pos: 26.5,-39.5 + pos: -17.5,-27.5 parent: 1 - - uid: 11207 + - uid: 2663 components: - type: Transform - pos: 26.5,-40.5 + pos: -17.5,-30.5 parent: 1 - - uid: 11208 + - uid: 2670 components: - type: Transform - pos: 26.5,-41.5 + pos: -18.5,-27.5 parent: 1 - - uid: 11209 + - uid: 2679 components: - type: Transform - pos: 26.5,-42.5 + pos: -19.5,-27.5 parent: 1 - - uid: 11210 + - uid: 2681 components: - type: Transform - pos: 26.5,-43.5 + pos: -19.5,-30.5 parent: 1 - - uid: 11211 + - uid: 2686 components: - type: Transform - pos: 26.5,-44.5 + pos: -20.5,-25.5 parent: 1 - - uid: 11212 + - uid: 2806 components: - type: Transform - pos: 26.5,-45.5 + pos: -17.5,4.5 parent: 1 - - uid: 11213 + - uid: 4455 components: - type: Transform - pos: 26.5,-46.5 + pos: -21.5,-25.5 parent: 1 - - uid: 11214 + - uid: 4457 components: - type: Transform - pos: 26.5,-47.5 + pos: -21.5,-27.5 parent: 1 - - uid: 11215 + - uid: 6747 components: - type: Transform - pos: 26.5,-48.5 + pos: -17.5,5.5 parent: 1 - - uid: 11216 + - uid: 6860 components: - type: Transform - pos: 26.5,-49.5 + pos: -20.5,2.5 parent: 1 - - uid: 11217 + - uid: 7787 components: - type: Transform - pos: 26.5,-50.5 + pos: -20.5,-29.5 parent: 1 - - uid: 11218 + - uid: 7796 components: - type: Transform - pos: 26.5,-51.5 + pos: -20.5,-28.5 parent: 1 - - uid: 11219 + - uid: 7821 components: - type: Transform - pos: 26.5,-52.5 + pos: -19.5,-29.5 parent: 1 - - uid: 11220 + - uid: 7823 components: - type: Transform - pos: 26.5,-53.5 + pos: -19.5,-26.5 parent: 1 - - uid: 11221 + - uid: 7870 components: - type: Transform - pos: 26.5,-54.5 + pos: -17.5,-31.5 parent: 1 - - uid: 11222 + - uid: 7888 components: - type: Transform - pos: 26.5,-55.5 + pos: -16.5,-29.5 parent: 1 - - uid: 11223 + - uid: 7889 components: - type: Transform - pos: 26.5,-56.5 + pos: -16.5,-28.5 parent: 1 - - uid: 11224 + - uid: 7896 components: - type: Transform - pos: 26.5,-57.5 + pos: -21.5,2.5 parent: 1 - - uid: 11225 + - uid: 7901 components: - type: Transform - pos: 26.5,-58.5 + pos: -15.5,-31.5 parent: 1 - - uid: 11226 + - uid: 7925 components: - type: Transform - pos: 26.5,-59.5 + pos: -14.5,-32.5 parent: 1 - - uid: 11227 + - uid: 7926 components: - type: Transform - pos: 26.5,-60.5 + pos: -14.5,-31.5 parent: 1 - - uid: 11228 + - uid: 7927 components: - type: Transform - pos: 26.5,-61.5 + pos: -13.5,-33.5 parent: 1 - - uid: 11229 + - uid: 7929 components: - type: Transform - pos: 26.5,-62.5 + pos: -21.5,3.5 parent: 1 - - uid: 11230 + - uid: 8513 components: - type: Transform - pos: 26.5,-63.5 + pos: -25.5,-10.5 parent: 1 - - uid: 11231 + - uid: 8514 components: - type: Transform - pos: 26.5,-64.5 + pos: -25.5,-9.5 parent: 1 - - uid: 11232 + - uid: 8515 components: - type: Transform - pos: 26.5,-65.5 + pos: -24.5,-10.5 parent: 1 - - uid: 11233 + - uid: 8524 components: - type: Transform - pos: 26.5,-66.5 + pos: -22.5,-24.5 parent: 1 - - uid: 11234 + - uid: 8546 components: - type: Transform - pos: 26.5,-67.5 + pos: -21.5,-26.5 parent: 1 - - uid: 11235 + - uid: 8629 components: - type: Transform - pos: 26.5,-68.5 + pos: -24.5,-11.5 parent: 1 - - uid: 11236 + - uid: 8650 components: - type: Transform - pos: 26.5,-69.5 + pos: -24.5,7.5 parent: 1 - - uid: 11237 + - uid: 8918 components: - type: Transform - pos: 26.5,-70.5 + pos: -27.5,-7.5 parent: 1 - - uid: 11238 + - uid: 8919 components: - type: Transform - pos: 26.5,-71.5 + pos: -23.5,7.5 parent: 1 - - uid: 11239 + - uid: 8944 components: - type: Transform - pos: 26.5,-72.5 + pos: -28.5,3.5 parent: 1 - - uid: 11240 + - uid: 8945 components: - type: Transform - pos: 26.5,-73.5 + pos: -29.5,4.5 parent: 1 - - uid: 11241 +- proto: WallRockBasaltSalt + entities: + - uid: 356 components: - type: Transform - pos: 26.5,-74.5 + pos: -19.5,-14.5 parent: 1 - - uid: 11242 + - uid: 742 components: - type: Transform - pos: 26.5,-75.5 + pos: -19.5,-15.5 parent: 1 - - uid: 11243 + - uid: 6792 components: - type: Transform - pos: 26.5,-76.5 + pos: -18.5,-7.5 parent: 1 - - uid: 11244 + - uid: 6796 components: - type: Transform - pos: 26.5,-77.5 + pos: -18.5,-8.5 parent: 1 - - uid: 11245 + - uid: 6838 components: - type: Transform - pos: 26.5,-78.5 + pos: -19.5,-5.5 parent: 1 - - uid: 11246 + - uid: 6840 components: - type: Transform - pos: 26.5,-79.5 + pos: -19.5,-4.5 parent: 1 - - uid: 11247 + - uid: 6841 components: - type: Transform - pos: 26.5,-80.5 + pos: -19.5,-7.5 parent: 1 - - uid: 11248 +- proto: WallRockBasaltSilver + entities: + - uid: 195 components: - type: Transform - pos: 26.5,-81.5 + pos: -23.5,-1.5 parent: 1 - - uid: 11249 + - uid: 511 components: - type: Transform - pos: 26.5,-82.5 + pos: -17.5,-11.5 parent: 1 - - uid: 11250 + - uid: 521 components: - type: Transform - pos: 26.5,-83.5 + pos: -28.5,6.5 parent: 1 - - uid: 11251 + - uid: 522 components: - type: Transform - pos: 26.5,-84.5 + pos: -10.5,-15.5 parent: 1 - - uid: 11252 + - uid: 543 components: - type: Transform - pos: 26.5,-85.5 + pos: -18.5,-11.5 parent: 1 - - uid: 11253 + - uid: 690 components: - type: Transform - pos: 26.5,-86.5 + pos: -10.5,-14.5 parent: 1 - - uid: 11254 + - uid: 958 components: - type: Transform - pos: 26.5,-87.5 + pos: -30.5,6.5 parent: 1 - - uid: 11255 + - uid: 2805 components: - type: Transform - pos: 26.5,-88.5 + pos: -19.5,0.5 parent: 1 - - uid: 11256 + - uid: 5697 components: - type: Transform - pos: 26.5,-89.5 + pos: -23.5,-0.5 parent: 1 - - uid: 11257 + - uid: 6163 components: - type: Transform - pos: 26.5,-90.5 + pos: -18.5,0.5 parent: 1 - - uid: 11258 + - uid: 8476 components: - type: Transform - pos: 26.5,-91.5 + pos: -22.5,-0.5 parent: 1 - - uid: 11259 + - uid: 8516 components: - type: Transform - pos: 26.5,-92.5 + pos: -30.5,1.5 parent: 1 - - uid: 11260 + - uid: 8517 components: - type: Transform - pos: 26.5,-93.5 + pos: -10.5,-16.5 parent: 1 - - uid: 11261 + - uid: 8518 components: - type: Transform - pos: 26.5,-94.5 + pos: -14.5,-12.5 parent: 1 - - uid: 11262 + - uid: 8776 components: - type: Transform - pos: 26.5,-95.5 + pos: -11.5,-7.5 parent: 1 - - uid: 11263 + - uid: 8777 components: - type: Transform - pos: 26.5,-96.5 + pos: -29.5,1.5 parent: 1 - - uid: 11264 + - uid: 8912 components: - type: Transform - pos: 26.5,-97.5 + pos: -23.5,-16.5 parent: 1 - - uid: 11265 + - uid: 8913 components: - type: Transform - pos: 26.5,-98.5 + pos: -22.5,-16.5 parent: 1 - - uid: 11266 + - uid: 8914 components: - type: Transform - pos: 26.5,-99.5 + pos: -22.5,-15.5 parent: 1 - - uid: 11267 + - uid: 8915 components: - type: Transform - pos: 26.5,-100.5 + pos: -19.5,-11.5 parent: 1 - - uid: 11268 + - uid: 8939 components: - type: Transform - pos: 26.5,-101.5 + pos: -30.5,-10.5 parent: 1 - - uid: 11269 + - uid: 8940 components: - type: Transform - pos: 26.5,-102.5 + pos: -23.5,-15.5 parent: 1 - - uid: 11270 + - uid: 8966 components: - type: Transform - pos: 26.5,-103.5 + pos: -30.5,-8.5 parent: 1 - - uid: 11271 + - uid: 8968 components: - type: Transform - pos: 26.5,-104.5 + pos: -30.5,-9.5 parent: 1 - - uid: 11272 + - uid: 8973 components: - type: Transform - pos: 26.5,-105.5 + pos: -29.5,6.5 parent: 1 - - uid: 11273 +- proto: WallRockBasaltTin + entities: + - uid: 506 components: - type: Transform - pos: 26.5,-106.5 + pos: -26.5,-14.5 parent: 1 - - uid: 11274 + - uid: 507 components: - type: Transform - pos: 26.5,-107.5 + pos: -29.5,-2.5 parent: 1 - - uid: 11275 + - uid: 508 components: - type: Transform - pos: 26.5,-108.5 + pos: -28.5,-4.5 parent: 1 - - uid: 11276 + - uid: 509 components: - type: Transform - pos: 26.5,-109.5 + pos: -26.5,-16.5 parent: 1 - - uid: 11277 + - uid: 510 components: - type: Transform - pos: 26.5,-110.5 + pos: -29.5,-3.5 parent: 1 - - uid: 11278 + - uid: 512 components: - type: Transform - pos: 26.5,-111.5 + pos: -28.5,-3.5 parent: 1 - - uid: 11279 + - uid: 972 components: - type: Transform - pos: 26.5,-112.5 + pos: -28.5,-2.5 parent: 1 - - uid: 11280 + - uid: 985 components: - type: Transform - pos: 26.5,-113.5 + pos: -26.5,-17.5 parent: 1 - - uid: 11281 + - uid: 988 components: - type: Transform - pos: 26.5,-114.5 + pos: -27.5,-4.5 parent: 1 - - uid: 11282 + - uid: 2732 components: - type: Transform - pos: 26.5,-115.5 + pos: -12.5,-11.5 parent: 1 - - uid: 11283 + - uid: 2756 components: - type: Transform - pos: 26.5,-116.5 + pos: -11.5,-11.5 parent: 1 - - uid: 11284 + - uid: 4469 components: - type: Transform - pos: 26.5,-117.5 + pos: -16.5,-2.5 parent: 1 - - uid: 11285 + - uid: 4545 components: - type: Transform - pos: 26.5,-118.5 + pos: -11.5,5.5 parent: 1 - - uid: 11286 + - uid: 5158 components: - type: Transform - pos: 26.5,-119.5 + pos: -14.5,5.5 parent: 1 - - uid: 11287 + - uid: 5159 components: - type: Transform - pos: 26.5,-120.5 + pos: -13.5,7.5 parent: 1 - - uid: 11288 + - uid: 5171 components: - type: Transform - pos: 26.5,-121.5 + pos: -15.5,4.5 parent: 1 - - uid: 11289 + - uid: 5189 components: - type: Transform - pos: 26.5,-122.5 + pos: -7.5,-4.5 parent: 1 - - uid: 11290 + - uid: 5194 components: - type: Transform - pos: 26.5,-123.5 + pos: -8.5,-5.5 parent: 1 - - uid: 11291 + - uid: 5212 components: - type: Transform - pos: 26.5,-124.5 + pos: -9.5,-6.5 parent: 1 - - uid: 11292 + - uid: 5213 components: - type: Transform - pos: 26.5,-125.5 + pos: -9.5,-5.5 parent: 1 - - uid: 11293 + - uid: 5340 components: - type: Transform - pos: 26.5,-126.5 + pos: -8.5,5.5 parent: 1 - - uid: 11294 + - uid: 5344 components: - type: Transform - pos: 26.5,-127.5 + pos: -7.5,4.5 parent: 1 - - uid: 11295 + - uid: 5345 components: - type: Transform - pos: 26.5,-128.5 + pos: -7.5,3.5 parent: 1 - - uid: 11296 + - uid: 5346 components: - type: Transform - pos: 27.5,38.5 + pos: -7.5,2.5 parent: 1 - - uid: 11297 + - uid: 5347 components: - type: Transform - pos: 27.5,37.5 + pos: -6.5,4.5 parent: 1 - - uid: 11298 + - uid: 5695 components: - type: Transform - pos: 27.5,36.5 + pos: -23.5,-4.5 parent: 1 - - uid: 11299 + - uid: 5797 components: - type: Transform - pos: 27.5,35.5 + pos: -26.5,-15.5 parent: 1 - - uid: 11300 + - uid: 6753 components: - type: Transform - pos: 27.5,34.5 + pos: -17.5,-2.5 parent: 1 - - uid: 11301 + - uid: 6774 components: - type: Transform - pos: 27.5,33.5 + pos: -17.5,-3.5 parent: 1 - - uid: 11302 + - uid: 6784 components: - type: Transform - pos: 27.5,32.5 + pos: -18.5,-6.5 parent: 1 - - uid: 11303 + - uid: 6867 components: - type: Transform - pos: 27.5,31.5 + pos: -11.5,-10.5 parent: 1 - - uid: 11304 + - uid: 6868 components: - type: Transform - pos: 27.5,30.5 + pos: -11.5,-9.5 parent: 1 - - uid: 11305 + - uid: 6872 components: - type: Transform - pos: 27.5,29.5 + pos: -12.5,-10.5 parent: 1 - - uid: 11306 + - uid: 6873 components: - type: Transform - pos: 27.5,28.5 + pos: -12.5,-9.5 parent: 1 - - uid: 11307 + - uid: 6877 components: - type: Transform - pos: 27.5,27.5 + pos: -13.5,-9.5 parent: 1 - - uid: 11308 + - uid: 7226 components: - type: Transform - pos: 27.5,26.5 + pos: -16.5,-3.5 parent: 1 - - uid: 11309 + - uid: 7242 components: - type: Transform - pos: 27.5,25.5 + pos: -12.5,5.5 parent: 1 - - uid: 11310 + - uid: 7243 components: - type: Transform - pos: 27.5,24.5 + pos: -12.5,6.5 parent: 1 - - uid: 11311 + - uid: 7895 components: - type: Transform - pos: 27.5,23.5 + pos: -21.5,-5.5 parent: 1 - - uid: 11312 + - uid: 7907 components: - type: Transform - pos: 27.5,22.5 + pos: -21.5,-4.5 parent: 1 - - uid: 11313 + - uid: 8471 components: - type: Transform - pos: 27.5,21.5 + pos: -22.5,-5.5 parent: 1 - - uid: 11314 + - uid: 8472 components: - type: Transform - pos: 27.5,20.5 + pos: -22.5,-4.5 parent: 1 - - uid: 11315 + - uid: 8503 components: - type: Transform - pos: 27.5,19.5 + pos: -21.5,-6.5 parent: 1 - - uid: 11316 + - uid: 8535 components: - type: Transform - pos: 27.5,18.5 + pos: -14.5,-15.5 parent: 1 - - uid: 11317 + - uid: 8630 components: - type: Transform - pos: 27.5,17.5 + pos: -13.5,-18.5 parent: 1 - - uid: 11318 + - uid: 8648 components: - type: Transform - pos: 27.5,16.5 + pos: -14.5,-17.5 parent: 1 - - uid: 11319 + - uid: 8938 components: - type: Transform - pos: 27.5,15.5 + pos: -18.5,-18.5 parent: 1 - - uid: 11320 + - uid: 8965 components: - type: Transform - pos: 27.5,14.5 + pos: -18.5,-19.5 parent: 1 - - uid: 11321 + - uid: 8967 components: - type: Transform - pos: 27.5,13.5 + pos: -19.5,-19.5 parent: 1 - - uid: 11322 +- proto: WallRockBasaltUranium + entities: + - uid: 5184 components: - type: Transform - pos: 27.5,12.5 + pos: -7.5,-8.5 parent: 1 - - uid: 11323 + - uid: 5187 components: - type: Transform - pos: 27.5,11.5 + pos: -7.5,-7.5 parent: 1 - - uid: 11324 + - uid: 5192 components: - type: Transform - pos: 27.5,10.5 + pos: -8.5,-7.5 parent: 1 - - uid: 11325 +- proto: WallShuttle + entities: + - uid: 8239 components: - type: Transform - pos: 27.5,9.5 - parent: 1 - - uid: 11326 + pos: -1.5,-0.5 + parent: 8217 + - uid: 8240 components: - type: Transform - pos: 27.5,8.5 - parent: 1 - - uid: 11327 + pos: -1.5,0.5 + parent: 8217 + - uid: 8241 components: - type: Transform - pos: 27.5,7.5 - parent: 1 - - uid: 11328 + pos: 0.5,-0.5 + parent: 8217 + - uid: 8242 components: - type: Transform - pos: 27.5,6.5 - parent: 1 - - uid: 11329 + pos: 0.5,0.5 + parent: 8217 + - uid: 10169 components: - type: Transform - pos: 27.5,5.5 - parent: 1 - - uid: 11330 + pos: -1.5,-0.5 + parent: 10146 + - uid: 10170 components: - type: Transform - pos: 27.5,4.5 - parent: 1 - - uid: 11331 + pos: -1.5,0.5 + parent: 10146 + - uid: 10171 components: - type: Transform - pos: 27.5,3.5 - parent: 1 - - uid: 11332 + pos: 0.5,-0.5 + parent: 10146 + - uid: 10172 components: - type: Transform - pos: 27.5,2.5 - parent: 1 - - uid: 11333 + pos: 0.5,0.5 + parent: 10146 + - uid: 11075 components: - type: Transform - pos: 27.5,1.5 - parent: 1 - - uid: 11334 + pos: -1.5,-0.5 + parent: 10867 + - uid: 11076 components: - type: Transform - pos: 27.5,0.5 - parent: 1 - - uid: 11335 + pos: -1.5,0.5 + parent: 10867 + - uid: 11077 components: - type: Transform - pos: 27.5,-0.5 - parent: 1 - - uid: 11336 + pos: 0.5,-0.5 + parent: 10867 + - uid: 11078 components: - type: Transform - pos: 27.5,-1.5 - parent: 1 - - uid: 11337 + pos: 0.5,0.5 + parent: 10867 +- proto: WallShuttleDiagonal + entities: + - uid: 8243 components: - type: Transform - pos: 27.5,-2.5 - parent: 1 - - uid: 11338 + pos: -1.5,1.5 + parent: 8217 + - uid: 8244 components: - type: Transform - pos: 27.5,-3.5 - parent: 1 - - uid: 11339 + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 8217 + - uid: 10173 components: - type: Transform - pos: 27.5,-4.5 - parent: 1 - - uid: 11340 + pos: -1.5,1.5 + parent: 10146 + - uid: 10174 components: - type: Transform - pos: 27.5,-5.5 - parent: 1 - - uid: 11341 + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 10146 + - uid: 11103 components: - type: Transform - pos: 27.5,-6.5 - parent: 1 - - uid: 11342 + pos: -1.5,1.5 + parent: 10867 + - uid: 11105 components: - type: Transform - pos: 27.5,-7.5 - parent: 1 - - uid: 11343 + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 10867 +- proto: WallSolidRust + entities: + - uid: 821 components: - type: Transform - pos: 27.5,-8.5 + rot: 1.5707963267948966 rad + pos: 10.5,-103.5 parent: 1 - - uid: 11344 + - uid: 859 components: - type: Transform - pos: 27.5,-9.5 + pos: -2.5,-30.5 parent: 1 - - uid: 11345 + - uid: 865 components: - type: Transform - pos: 27.5,-10.5 + pos: -2.5,-29.5 parent: 1 - - uid: 11346 + - uid: 1249 components: - type: Transform - pos: 27.5,-11.5 + pos: 8.5,-79.5 parent: 1 - - uid: 11347 + - uid: 1533 components: - type: Transform - pos: 27.5,-12.5 + pos: 8.5,-78.5 parent: 1 - - uid: 11348 + - uid: 1534 components: - type: Transform - pos: 27.5,-13.5 + pos: 12.5,-77.5 parent: 1 - - uid: 11349 + - uid: 2958 components: - type: Transform - pos: 27.5,-14.5 + pos: -1.5,-103.5 parent: 1 - - uid: 11350 + - uid: 2962 components: - type: Transform - pos: 27.5,-15.5 + pos: -0.5,-103.5 parent: 1 - - uid: 11351 + - uid: 2972 components: - type: Transform - pos: 27.5,-16.5 + pos: -2.5,-103.5 parent: 1 - - uid: 11352 + - uid: 2992 components: - type: Transform - pos: 27.5,-17.5 + pos: -6.5,-103.5 parent: 1 - - uid: 11353 + - uid: 2996 components: - type: Transform - pos: 27.5,-18.5 + pos: -4.5,-103.5 parent: 1 - - uid: 11354 + - uid: 3331 components: - type: Transform - pos: 27.5,-19.5 + pos: -9.5,-96.5 parent: 1 - - uid: 11355 + - uid: 4142 components: - type: Transform - pos: 27.5,-20.5 + pos: -9.5,-101.5 parent: 1 - - uid: 11356 + - uid: 4152 components: - type: Transform - pos: 27.5,-21.5 + pos: -9.5,-102.5 parent: 1 - - uid: 11357 + - uid: 4606 components: - type: Transform - pos: 27.5,-22.5 + pos: 8.5,-94.5 parent: 1 - - uid: 11358 + - uid: 5370 components: - type: Transform - pos: 27.5,-23.5 + pos: 8.5,-97.5 parent: 1 - - uid: 11359 + - uid: 5481 components: - type: Transform - pos: 27.5,-24.5 + pos: -17.5,-78.5 parent: 1 - - uid: 11360 + - uid: 5545 components: - type: Transform - pos: 27.5,-25.5 + pos: 8.5,-90.5 parent: 1 - - uid: 11361 + - uid: 5548 components: - type: Transform - pos: 27.5,-26.5 + pos: 18.5,-75.5 parent: 1 - - uid: 11362 + - uid: 5549 components: - type: Transform - pos: 27.5,-27.5 + pos: 19.5,-75.5 parent: 1 - - uid: 11363 + - uid: 5554 components: - type: Transform - pos: 27.5,-28.5 + pos: 9.5,-100.5 parent: 1 - - uid: 11364 + - uid: 5566 components: - type: Transform - pos: 27.5,-29.5 + pos: 23.5,-103.5 parent: 1 - - uid: 11365 + - uid: 5585 components: - type: Transform - pos: 27.5,-30.5 + pos: -18.5,-91.5 parent: 1 - - uid: 11366 + - uid: 5618 components: - type: Transform - pos: 27.5,-31.5 + pos: -18.5,-96.5 parent: 1 - - uid: 11367 + - uid: 5653 components: - type: Transform - pos: 27.5,-32.5 + pos: 10.5,-100.5 parent: 1 - - uid: 11368 + - uid: 5655 components: - type: Transform - pos: 27.5,-33.5 + pos: 8.5,-96.5 parent: 1 - - uid: 11369 + - uid: 5749 components: - type: Transform - pos: 27.5,-34.5 + pos: 8.5,-93.5 parent: 1 - - uid: 11370 + - uid: 5765 components: - type: Transform - pos: 27.5,-35.5 + pos: 24.5,-103.5 parent: 1 - - uid: 11371 + - uid: 5766 components: - type: Transform - pos: 27.5,-36.5 + pos: 11.5,-84.5 parent: 1 - - uid: 11372 + - uid: 5767 components: - type: Transform - pos: 27.5,-37.5 + pos: 12.5,-84.5 parent: 1 - - uid: 11373 + - uid: 5832 components: - type: Transform - pos: 27.5,-38.5 + pos: 26.5,-92.5 parent: 1 - - uid: 11374 + - uid: 5833 components: - type: Transform - pos: 27.5,-39.5 + pos: 26.5,-93.5 parent: 1 - - uid: 11375 + - uid: 5834 components: - type: Transform - pos: 27.5,-40.5 + pos: 19.5,-80.5 parent: 1 - - uid: 11376 + - uid: 5837 components: - type: Transform - pos: 27.5,-41.5 + pos: 18.5,-80.5 parent: 1 - - uid: 11377 + - uid: 5873 components: - type: Transform - pos: 27.5,-42.5 + pos: -29.5,-93.5 parent: 1 - - uid: 11378 + - uid: 6051 components: - type: Transform - pos: 27.5,-43.5 + pos: 16.5,-79.5 parent: 1 - - uid: 11379 + - uid: 6135 components: - type: Transform - pos: 27.5,-44.5 + pos: -29.5,-94.5 parent: 1 - - uid: 11380 + - uid: 6358 components: - type: Transform - pos: 27.5,-45.5 + pos: 12.5,-76.5 parent: 1 - - uid: 11381 + - uid: 6493 components: - type: Transform - pos: 27.5,-46.5 + pos: 11.5,-103.5 parent: 1 - - uid: 11382 +- proto: WardrobePrisonFilled + entities: + - uid: 4473 components: - type: Transform - pos: 27.5,-47.5 + pos: 13.5,-77.5 parent: 1 - - uid: 11383 + - uid: 5551 components: - type: Transform - pos: 27.5,-48.5 + pos: 15.5,-78.5 parent: 1 - - uid: 11384 + - uid: 6366 components: - type: Transform - pos: 27.5,-49.5 + pos: 15.5,-77.5 parent: 1 - - uid: 11385 + - uid: 6387 components: - type: Transform - pos: 27.5,-50.5 + pos: 13.5,-76.5 parent: 1 - - uid: 11386 + - uid: 6420 components: - type: Transform - pos: 27.5,-51.5 + pos: 15.5,-76.5 parent: 1 - - uid: 11387 + - uid: 6435 components: - type: Transform - pos: 27.5,-52.5 + pos: 13.5,-78.5 parent: 1 - - uid: 11388 + - uid: 6452 components: - type: Transform - pos: 27.5,-53.5 + pos: 13.5,-79.5 parent: 1 - - uid: 11389 + - uid: 7530 components: - type: Transform - pos: 27.5,-54.5 + pos: -10.5,-101.5 parent: 1 - - uid: 11390 + - uid: 12807 components: - type: Transform - pos: 27.5,-55.5 + pos: 15.5,-79.5 parent: 1 - - uid: 11391 +- proto: WarpPoint + entities: + - uid: 35 components: - type: Transform - pos: 27.5,-56.5 + pos: -0.5,-0.5 parent: 1 - - uid: 11392 + - type: WarpPoint + location: Prison +- proto: WarpPointBeacon + entities: + - uid: 1997 components: + - type: MetaData + name: Prison - type: Transform - pos: 27.5,-57.5 + rot: -1.5707963267948966 rad + pos: -0.5,26.5 parent: 1 - - uid: 11393 + - type: FTLBeacon + missingComponents: + - NavMapBeacon + - WarpPoint +- proto: WaterTankFull + entities: + - uid: 10247 components: - type: Transform - pos: 27.5,-58.5 + pos: 25.5,-79.5 parent: 1 - - uid: 11394 +- proto: WaterTankHighCapacity + entities: + - uid: 5816 components: - type: Transform - pos: 27.5,-59.5 + pos: -28.5,-101.5 parent: 1 - - uid: 11395 +- proto: WeaponCapacitorRecharger + entities: + - uid: 4652 components: - type: Transform - pos: 27.5,-60.5 + rot: 3.141592653589793 rad + pos: 9.5,-67.5 parent: 1 - - uid: 11396 +- proto: WetFloorSign + entities: + - uid: 5011 components: - type: Transform - pos: 27.5,-61.5 + pos: -0.7717552,-74.86633 parent: 1 - - uid: 11397 +- proto: WindowReinforcedDirectional + entities: + - uid: 1134 components: - type: Transform - pos: 27.5,-62.5 + pos: 13.5,-98.5 parent: 1 - - uid: 11398 + - uid: 1135 components: - type: Transform - pos: 27.5,-63.5 + rot: 1.5707963267948966 rad + pos: 13.5,-86.5 parent: 1 - - uid: 11399 + - uid: 1136 components: - type: Transform - pos: 27.5,-64.5 + rot: 1.5707963267948966 rad + pos: 13.5,-93.5 parent: 1 - - uid: 11400 + - uid: 1207 components: - type: Transform - pos: 27.5,-65.5 + pos: 21.5,-98.5 parent: 1 - - uid: 11401 + - uid: 1208 components: - type: Transform - pos: 27.5,-66.5 + rot: 1.5707963267948966 rad + pos: 13.5,-94.5 parent: 1 - - uid: 11402 + - uid: 1670 components: - type: Transform - pos: 27.5,-67.5 + pos: 21.5,-94.5 parent: 1 - - uid: 11403 + - uid: 2111 components: - type: Transform - pos: 27.5,-68.5 + pos: 13.5,-94.5 parent: 1 - - uid: 11404 + - uid: 2172 components: - type: Transform - pos: 27.5,-69.5 + pos: 13.5,-86.5 parent: 1 - - uid: 11405 + - uid: 2432 components: - type: Transform - pos: 27.5,-70.5 + rot: -1.5707963267948966 rad + pos: -4.5,-59.5 parent: 1 - - uid: 11406 + - uid: 3128 components: - type: Transform - pos: 27.5,-71.5 + pos: -0.5,-92.5 parent: 1 - - uid: 11407 + - uid: 3130 components: - type: Transform - pos: 27.5,-72.5 + rot: -1.5707963267948966 rad + pos: -0.5,-92.5 parent: 1 - - uid: 11408 + - uid: 3131 components: - type: Transform - pos: 27.5,-73.5 + rot: 3.141592653589793 rad + pos: -0.5,-92.5 parent: 1 - - uid: 11409 + - uid: 3132 components: - type: Transform - pos: 27.5,-74.5 + rot: 1.5707963267948966 rad + pos: -0.5,-92.5 parent: 1 - - uid: 11410 + - uid: 3895 components: - type: Transform - pos: 27.5,-75.5 + rot: 1.5707963267948966 rad + pos: -5.5,-70.5 parent: 1 - - uid: 11411 + - uid: 3897 components: - type: Transform - pos: 27.5,-76.5 + rot: 1.5707963267948966 rad + pos: -5.5,-60.5 parent: 1 - - uid: 11412 + - uid: 3898 components: - type: Transform - pos: 27.5,-77.5 + rot: -1.5707963267948966 rad + pos: -4.5,-60.5 parent: 1 - - uid: 11413 + - uid: 3935 components: - type: Transform - pos: 27.5,-78.5 + rot: 3.141592653589793 rad + pos: -5.5,-67.5 parent: 1 - - uid: 11414 + - uid: 4471 components: - type: Transform - pos: 27.5,-79.5 + rot: -1.5707963267948966 rad + pos: 17.5,-66.5 parent: 1 - - uid: 11415 + - uid: 4595 components: - type: Transform - pos: 27.5,-80.5 + rot: 1.5707963267948966 rad + pos: -24.5,-93.5 parent: 1 - - uid: 11416 + - uid: 4783 components: - type: Transform - pos: 27.5,-81.5 + pos: -5.5,-61.5 parent: 1 - - uid: 11417 + - uid: 4785 components: - type: Transform - pos: 27.5,-82.5 + rot: -1.5707963267948966 rad + pos: -4.5,-68.5 parent: 1 - - uid: 11418 + - uid: 4793 components: - type: Transform - pos: 27.5,-83.5 + rot: 1.5707963267948966 rad + pos: -24.5,-96.5 parent: 1 - - uid: 11419 + - uid: 4797 components: - type: Transform - pos: 27.5,-84.5 + rot: 1.5707963267948966 rad + pos: -24.5,-95.5 parent: 1 - - uid: 11420 + - uid: 4909 components: - type: Transform - pos: 27.5,-85.5 + rot: 1.5707963267948966 rad + pos: -5.5,-69.5 parent: 1 - - uid: 11421 + - uid: 4911 components: - type: Transform - pos: 27.5,-86.5 + rot: 1.5707963267948966 rad + pos: -5.5,-58.5 parent: 1 - - uid: 11422 + - uid: 4915 components: - type: Transform - pos: 27.5,-87.5 + rot: -1.5707963267948966 rad + pos: -4.5,-61.5 parent: 1 - - uid: 11423 + - uid: 4917 components: - type: Transform - pos: 27.5,-88.5 + rot: -1.5707963267948966 rad + pos: -4.5,-70.5 parent: 1 - - uid: 11424 + - uid: 4925 components: - type: Transform - pos: 27.5,-89.5 + rot: 3.141592653589793 rad + pos: -4.5,-58.5 parent: 1 - - uid: 11425 + - uid: 4928 components: - type: Transform - pos: 27.5,-90.5 + pos: -4.5,-61.5 parent: 1 - - uid: 11426 + - uid: 4947 components: - type: Transform - pos: 27.5,-91.5 + pos: -5.5,-70.5 parent: 1 - - uid: 11427 + - uid: 4950 components: - type: Transform - pos: 27.5,-92.5 + rot: -1.5707963267948966 rad + pos: -4.5,-67.5 parent: 1 - - uid: 11428 + - uid: 5000 components: - type: Transform - pos: 27.5,-93.5 + rot: 3.141592653589793 rad + pos: -5.5,-58.5 parent: 1 - - uid: 11429 + - uid: 5015 components: - type: Transform - pos: 27.5,-94.5 + rot: 3.141592653589793 rad + pos: -4.5,-67.5 parent: 1 - - uid: 11430 + - uid: 5019 components: - type: Transform - pos: 27.5,-95.5 + pos: -4.5,-70.5 parent: 1 - - uid: 11431 + - uid: 5077 components: - type: Transform - pos: 27.5,-96.5 + rot: 1.5707963267948966 rad + pos: -24.5,-91.5 parent: 1 - - uid: 11432 + - uid: 5078 components: - type: Transform - pos: 27.5,-97.5 + rot: 1.5707963267948966 rad + pos: -24.5,-91.5 parent: 1 - - uid: 11433 + - uid: 5135 components: - type: Transform - pos: 27.5,-98.5 + rot: 3.141592653589793 rad + pos: -24.5,-91.5 parent: 1 - - uid: 11434 + - uid: 5136 components: - type: Transform - pos: 27.5,-99.5 + pos: -24.5,-96.5 parent: 1 - - uid: 11435 + - uid: 5391 components: - type: Transform - pos: 27.5,-100.5 + rot: 1.5707963267948966 rad + pos: 19.5,-66.5 parent: 1 - - uid: 11436 + - uid: 5436 components: - type: Transform - pos: 27.5,-101.5 + rot: 1.5707963267948966 rad + pos: -24.5,-94.5 parent: 1 - - uid: 11437 + - uid: 5439 components: - type: Transform - pos: 27.5,-102.5 + rot: 1.5707963267948966 rad + pos: -24.5,-91.5 parent: 1 - - uid: 11438 + - uid: 5440 components: - type: Transform - pos: 27.5,-103.5 + rot: 1.5707963267948966 rad + pos: -24.5,-92.5 parent: 1 - - uid: 11439 + - uid: 5745 components: - type: Transform - pos: 27.5,-104.5 + rot: -1.5707963267948966 rad + pos: -24.5,-96.5 parent: 1 - - uid: 11440 + - uid: 5747 components: - type: Transform - pos: 27.5,-105.5 + rot: -1.5707963267948966 rad + pos: -24.5,-95.5 parent: 1 - - uid: 11441 + - uid: 5748 components: - type: Transform - pos: 27.5,-106.5 + rot: -1.5707963267948966 rad + pos: -24.5,-94.5 parent: 1 - - uid: 11442 + - uid: 5754 components: - type: Transform - pos: 27.5,-107.5 + rot: -1.5707963267948966 rad + pos: -24.5,-91.5 parent: 1 - - uid: 11443 + - uid: 5755 components: - type: Transform - pos: 27.5,-108.5 + rot: -1.5707963267948966 rad + pos: -24.5,-93.5 parent: 1 - - uid: 11444 + - uid: 5761 components: - type: Transform - pos: 27.5,-109.5 + rot: -1.5707963267948966 rad + pos: -24.5,-92.5 parent: 1 - - uid: 11445 + - uid: 5825 components: - type: Transform - pos: 27.5,-110.5 + rot: -1.5707963267948966 rad + pos: -4.5,-69.5 parent: 1 - - uid: 11446 + - uid: 7375 components: - type: Transform - pos: 27.5,-111.5 + rot: 3.141592653589793 rad + pos: 13.5,-89.5 parent: 1 - - uid: 11447 + - uid: 7376 components: - type: Transform - pos: 27.5,-112.5 + rot: 1.5707963267948966 rad + pos: 13.5,-90.5 parent: 1 - - uid: 11448 + - uid: 7378 components: - type: Transform - pos: 27.5,-113.5 + rot: 1.5707963267948966 rad + pos: 13.5,-89.5 parent: 1 - - uid: 11449 + - uid: 7379 components: - type: Transform - pos: 27.5,-114.5 + rot: -1.5707963267948966 rad + pos: 13.5,-89.5 parent: 1 - - uid: 11450 + - uid: 7380 components: - type: Transform - pos: 27.5,-115.5 + rot: -1.5707963267948966 rad + pos: 21.5,-90.5 parent: 1 - - uid: 11451 + - uid: 7381 components: - type: Transform - pos: 27.5,-116.5 + pos: 13.5,-90.5 parent: 1 - - uid: 11452 + - uid: 7382 components: - type: Transform - pos: 27.5,-117.5 + rot: -1.5707963267948966 rad + pos: 13.5,-90.5 parent: 1 - - uid: 11453 + - uid: 7407 components: - type: Transform - pos: 27.5,-118.5 + rot: 3.141592653589793 rad + pos: 21.5,-85.5 parent: 1 - - uid: 11454 + - uid: 7408 components: - type: Transform - pos: 27.5,-119.5 + pos: 21.5,-86.5 parent: 1 - - uid: 11455 + - uid: 7409 components: - type: Transform - pos: 27.5,-120.5 + rot: 3.141592653589793 rad + pos: 13.5,-85.5 parent: 1 - - uid: 11456 + - uid: 7410 components: - type: Transform - pos: 27.5,-121.5 + rot: 3.141592653589793 rad + pos: 13.5,-93.5 parent: 1 - - uid: 11457 + - uid: 7411 components: - type: Transform - pos: 27.5,-122.5 + rot: 3.141592653589793 rad + pos: 21.5,-93.5 parent: 1 - - uid: 11458 + - uid: 7432 components: - type: Transform - pos: 27.5,-123.5 + rot: 3.141592653589793 rad + pos: 21.5,-97.5 parent: 1 - - uid: 11459 + - uid: 7451 components: - type: Transform - pos: 27.5,-124.5 + rot: 3.141592653589793 rad + pos: 13.5,-97.5 parent: 1 - - uid: 11460 + - uid: 7614 components: - type: Transform - pos: 27.5,-125.5 + rot: 1.5707963267948966 rad + pos: -5.5,-67.5 parent: 1 - - uid: 11461 + - uid: 7616 components: - type: Transform - pos: 27.5,-126.5 + rot: 1.5707963267948966 rad + pos: -5.5,-68.5 parent: 1 - - uid: 11462 + - uid: 7617 components: - type: Transform - pos: 27.5,-127.5 + rot: 1.5707963267948966 rad + pos: -5.5,-61.5 parent: 1 - - uid: 11463 + - uid: 8547 components: - type: Transform - pos: 27.5,-128.5 + rot: 1.5707963267948966 rad + pos: -5.5,-59.5 parent: 1 -- proto: WallShuttle - entities: - - uid: 10169 + - uid: 10189 components: - type: Transform - pos: -1.5,-0.5 - parent: 10146 - - uid: 10170 + rot: 3.141592653589793 rad + pos: 21.5,-89.5 + parent: 1 + - uid: 10190 components: - type: Transform - pos: -1.5,0.5 - parent: 10146 - - uid: 10171 + pos: 21.5,-90.5 + parent: 1 + - uid: 10229 components: - type: Transform - pos: 0.5,-0.5 - parent: 10146 - - uid: 10172 + rot: -1.5707963267948966 rad + pos: 21.5,-89.5 + parent: 1 + - uid: 10267 components: - type: Transform - pos: 0.5,0.5 - parent: 10146 -- proto: WallShuttleDiagonal - entities: - - uid: 10173 + rot: 1.5707963267948966 rad + pos: 21.5,-89.5 + parent: 1 + - uid: 10300 components: - type: Transform - pos: -1.5,1.5 - parent: 10146 - - uid: 10174 + rot: 1.5707963267948966 rad + pos: 21.5,-93.5 + parent: 1 + - uid: 10307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 10146 -- proto: WallSolidRust - entities: - - uid: 786 + rot: 1.5707963267948966 rad + pos: 21.5,-90.5 + parent: 1 + - uid: 10824 components: - type: Transform - pos: -20.5,-77.5 + rot: 1.5707963267948966 rad + pos: 21.5,-97.5 parent: 1 - - uid: 792 + - uid: 10911 components: - type: Transform - pos: -20.5,-87.5 + rot: 1.5707963267948966 rad + pos: 21.5,-94.5 parent: 1 - - uid: 807 + - uid: 10912 components: - type: Transform - pos: -22.5,-77.5 + rot: 1.5707963267948966 rad + pos: 21.5,-86.5 parent: 1 - - uid: 821 + - uid: 10913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-103.5 + pos: 21.5,-98.5 parent: 1 - - uid: 831 + - uid: 10914 components: - type: Transform - pos: -34.5,-86.5 + rot: -1.5707963267948966 rad + pos: 13.5,-85.5 parent: 1 - - uid: 845 + - uid: 10915 components: - type: Transform - pos: -34.5,-78.5 + rot: 1.5707963267948966 rad + pos: 21.5,-85.5 parent: 1 - - uid: 852 + - uid: 10916 components: - type: Transform - pos: -34.5,-79.5 + rot: -1.5707963267948966 rad + pos: 13.5,-93.5 parent: 1 - - uid: 859 + - uid: 10917 components: - type: Transform - pos: -2.5,-30.5 + rot: -1.5707963267948966 rad + pos: 13.5,-86.5 parent: 1 - - uid: 865 + - uid: 10918 components: - type: Transform - pos: -2.5,-29.5 + rot: -1.5707963267948966 rad + pos: 13.5,-97.5 parent: 1 - - uid: 2958 + - uid: 10919 components: - type: Transform - pos: -1.5,-103.5 + rot: -1.5707963267948966 rad + pos: 13.5,-94.5 parent: 1 - - uid: 2962 + - uid: 10920 components: - type: Transform - pos: -0.5,-103.5 + rot: 1.5707963267948966 rad + pos: 13.5,-97.5 parent: 1 - - uid: 2972 + - uid: 10921 components: - type: Transform - pos: -2.5,-103.5 + rot: -1.5707963267948966 rad + pos: 13.5,-98.5 parent: 1 - - uid: 2992 + - uid: 10922 components: - type: Transform - pos: -6.5,-103.5 + rot: -1.5707963267948966 rad + pos: 21.5,-97.5 parent: 1 - - uid: 2996 + - uid: 10923 components: - type: Transform - pos: -4.5,-103.5 + rot: 1.5707963267948966 rad + pos: 13.5,-98.5 parent: 1 - - uid: 3331 + - uid: 10924 components: - type: Transform - pos: -9.5,-96.5 + rot: -1.5707963267948966 rad + pos: 21.5,-93.5 parent: 1 - - uid: 5481 + - uid: 10925 components: - type: Transform - pos: -17.5,-78.5 + rot: -1.5707963267948966 rad + pos: 21.5,-98.5 parent: 1 - - uid: 5585 + - uid: 10926 components: - type: Transform - pos: -18.5,-91.5 + rot: -1.5707963267948966 rad + pos: 21.5,-85.5 parent: 1 - - uid: 5588 + - uid: 10927 components: - type: Transform - pos: -13.5,-93.5 + rot: -1.5707963267948966 rad + pos: 21.5,-94.5 parent: 1 - - uid: 5618 + - uid: 10928 components: - type: Transform - pos: -14.5,-93.5 + rot: 1.5707963267948966 rad + pos: 13.5,-85.5 parent: 1 - - uid: 5971 + - uid: 10929 components: - type: Transform - pos: 15.5,-97.5 + rot: -1.5707963267948966 rad + pos: 21.5,-86.5 parent: 1 - - uid: 5981 + - uid: 11417 components: - type: Transform - pos: 15.5,-83.5 + rot: -1.5707963267948966 rad + pos: -4.5,-58.5 parent: 1 - - uid: 5982 + - uid: 11589 components: - type: Transform - pos: 15.5,-86.5 + rot: 1.5707963267948966 rad + pos: 18.5,-93.5 parent: 1 - - uid: 6493 + - uid: 11590 components: - type: Transform - pos: 11.5,-103.5 + rot: 1.5707963267948966 rad + pos: 17.5,-93.5 parent: 1 - - uid: 6512 + - uid: 11591 components: - type: Transform - pos: 15.5,-91.5 + rot: -1.5707963267948966 rad + pos: 17.5,-92.5 parent: 1 -- proto: WarpPoint - entities: - - uid: 35 + - uid: 11592 components: - type: Transform - pos: -0.5,-0.5 + rot: 3.141592653589793 rad + pos: 17.5,-92.5 parent: 1 - - type: WarpPoint - location: Prison -- proto: WarpPointBeacon - entities: - - uid: 1997 + - uid: 11593 components: - - type: MetaData - name: Prison - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,26.5 + pos: 17.5,-93.5 parent: 1 - - type: FTLBeacon - missingComponents: - - NavMapBeacon - - WarpPoint -- proto: WaterTankHighCapacity - entities: - - uid: 8563 + - uid: 11594 components: - type: Transform - pos: -14.5,-92.5 + rot: 3.141592653589793 rad + pos: 18.5,-93.5 parent: 1 -- proto: WeaponCapacitorRecharger - entities: - - uid: 4652 + - uid: 11595 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-67.5 + pos: 17.5,-93.5 parent: 1 -- proto: WeaponMakeshiftLaser - entities: - - uid: 7568 + - uid: 11596 components: - type: Transform - pos: -18.340218,-61.517746 + rot: 3.141592653589793 rad + pos: 17.5,-83.5 parent: 1 -- proto: WetFloorSign - entities: - - uid: 5011 + - uid: 11598 components: - type: Transform - pos: -0.7717552,-74.86633 + rot: 3.141592653589793 rad + pos: 18.5,-94.5 parent: 1 -- proto: WindoorSecureBrigLocked - entities: - - uid: 4433 + - uid: 11599 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-66.5 + pos: 16.5,-94.5 parent: 1 - - uid: 4462 + - uid: 11605 components: - type: Transform - pos: 18.5,-66.5 + pos: 17.5,-83.5 parent: 1 - - uid: 4473 + - uid: 11606 components: - type: Transform - pos: 19.5,-66.5 + pos: 17.5,-91.5 parent: 1 - - uid: 4477 + - uid: 11608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-66.5 + rot: -1.5707963267948966 rad + pos: 19.5,-93.5 parent: 1 - - uid: 4523 + - uid: 11609 components: - type: Transform - pos: 17.5,-66.5 + rot: 1.5707963267948966 rad + pos: 17.5,-83.5 parent: 1 - - uid: 5370 + - uid: 11610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-66.5 + rot: -1.5707963267948966 rad + pos: 17.5,-83.5 parent: 1 -- proto: WindoorSecureKitchenLocked - entities: - - uid: 1465 + - uid: 11613 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-86.5 + pos: 15.5,-93.5 parent: 1 - - type: AccessReader - access: - - - Security - - uid: 6215 + - uid: 11615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-85.5 + pos: 18.5,-93.5 parent: 1 - - type: AccessReader - access: - - - Security - - uid: 6243 + - uid: 11616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-84.5 + rot: -1.5707963267948966 rad + pos: 18.5,-93.5 parent: 1 - - type: AccessReader - access: - - - Security - - uid: 6244 + - uid: 11617 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-85.5 + pos: 16.5,-93.5 parent: 1 - - uid: 6350 + - uid: 11618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-83.5 + rot: 3.141592653589793 rad + pos: 16.5,-93.5 parent: 1 - - type: AccessReader - access: - - - Security - - uid: 6355 + - uid: 11619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-83.5 + rot: 1.5707963267948966 rad + pos: 16.5,-93.5 parent: 1 - - uid: 6356 + - uid: 11620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-84.5 + pos: 16.5,-93.5 parent: 1 -- proto: WindowReinforcedDirectional - entities: - - uid: 3128 + - uid: 11625 components: - type: Transform - pos: -0.5,-92.5 + rot: 1.5707963267948966 rad + pos: 17.5,-92.5 parent: 1 - - uid: 3130 + - uid: 11626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-92.5 + pos: 17.5,-92.5 parent: 1 - - uid: 3131 + - uid: 11628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-92.5 + pos: 16.5,-92.5 parent: 1 - - uid: 3132 + - uid: 11630 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-92.5 + pos: 16.5,-92.5 parent: 1 - - uid: 4471 + - uid: 11631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-66.5 + pos: 18.5,-92.5 parent: 1 - - uid: 5391 + - uid: 11632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-66.5 + rot: -1.5707963267948966 rad + pos: 18.5,-92.5 parent: 1 - - uid: 6417 + - uid: 12588 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-83.5 + rot: -1.5707963267948966 rad + pos: 15.5,-81.5 parent: 1 - - uid: 6441 + - uid: 12589 components: - type: Transform - pos: -29.5,-85.5 + rot: 1.5707963267948966 rad + pos: 19.5,-81.5 parent: 1 - proto: WoodenBench entities: @@ -61788,15 +72523,15 @@ entities: parent: 1 - proto: WoodenSupport entities: - - uid: 892 + - uid: 704 components: - type: Transform - pos: -23.5,-110.5 + pos: -36.5,-114.5 parent: 1 - - uid: 897 + - uid: 895 components: - type: Transform - pos: -31.5,-103.5 + pos: -34.5,-118.5 parent: 1 - uid: 1157 components: @@ -61816,11 +72551,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,17.5 parent: 1 - - uid: 6311 - components: - - type: Transform - pos: -30.5,-99.5 - parent: 1 - uid: 6446 components: - type: Transform @@ -61828,6 +72558,11 @@ entities: parent: 1 - proto: WoodenSupportBeam entities: + - uid: 703 + components: + - type: Transform + pos: -37.5,-110.5 + parent: 1 - uid: 1170 components: - type: Transform @@ -61846,11 +72581,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,18.5 parent: 1 - - uid: 2836 - components: - - type: Transform - pos: -30.5,-121.5 - parent: 1 - uid: 6372 components: - type: Transform @@ -61861,13 +72591,18 @@ entities: - type: Transform pos: -29.5,-109.5 parent: 1 - - uid: 6447 + - uid: 12058 components: - type: Transform - pos: -23.5,-109.5 + pos: -38.5,-112.5 parent: 1 - proto: WoodenSupportWall entities: + - uid: 898 + components: + - type: Transform + pos: -37.5,-117.5 + parent: 1 - uid: 901 components: - type: Transform @@ -61946,11 +72681,31 @@ entities: - type: Transform pos: -35.5,-109.5 parent: 1 + - uid: 6795 + components: + - type: Transform + pos: -32.5,-120.5 + parent: 1 - uid: 10285 components: - type: Transform pos: -28.5,-113.5 parent: 1 + - uid: 10313 + components: + - type: Transform + pos: -33.5,-121.5 + parent: 1 + - uid: 10314 + components: + - type: Transform + pos: -30.5,-118.5 + parent: 1 + - uid: 10531 + components: + - type: Transform + pos: -38.5,-116.5 + parent: 1 - proto: WoodenSupportWallBroken entities: - uid: 902 @@ -61981,11 +72736,6 @@ entities: - type: Transform pos: -26.5,-110.5 parent: 1 - - uid: 6418 - components: - - type: Transform - pos: -16.5,-110.5 - parent: 1 - uid: 6443 components: - type: Transform @@ -62001,4 +72751,18 @@ entities: - type: Transform pos: -31.5,-108.5 parent: 1 +- proto: Wrench + entities: + - uid: 12974 + components: + - type: Transform + pos: -10.5,-95.5 + parent: 1 +- proto: ZiptiesBroken + entities: + - uid: 11661 + components: + - type: Transform + pos: 18.1487,-100.34623 + parent: 1 ... diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index e2c98439fa..1a42563108 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -20,6 +20,7 @@ - id: RubberStampApproved - id: ClothingHeadsetAltCargo - id: BoxEncryptionKeyCargo + - id: BoxPrinter # Stories - type: entity id: LockerCaptainFilledHardsuit @@ -137,6 +138,7 @@ prob: 0.5 - id: ClothingOuterCoatHOP # Corvax-Resprite - id: AccessConfigurator + - id: BoxPrinter # Stories - type: entity id: LockerChiefEngineerFilledHardsuit diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml index fe332ea52d..c8e905312f 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml @@ -14,4 +14,5 @@ ClothingUniformJumpskirtLibrarian: 3 ClothingShoesBootsLaceup: 2 ClothingHeadsetService: 2 + BoxPrinter: 1 #Stories diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml index 8e1f6a1c3a..a6adfb3152 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/syndiedrobe.yml @@ -15,6 +15,7 @@ ClothingNeckScarfStripedSyndieGreen: 2 ClothingNeckScarfStripedSyndieRed: 2 ClothingShoesBootsWinterSyndicate: 2 + BoxSyndiePrinter: 1 emaggedInventory: ClothingOuterCoatSyndieCapArmored: 1 diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 437a301d08..1e99b74d0d 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -228,6 +228,7 @@ - type: Conversionable # SPACE STORIES allowed: - HypnotizedEmpire + - ShadowlingThrall - type: Barotrauma damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index 98ae7df9b3..253ca1a47e 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -867,3 +867,9 @@ - CentralCommand - NuclearOperative - SyndicateAgent + - HeadOfPrison # Stories - start + - PrisonBrig + - Prison + - PrisonMed + - PrisonEng + - Prisoner # Stories - end diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 42b850f2b2..764fc4228f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -71,6 +71,10 @@ reagents: - ReagentId: Fiber Quantity: 1 + - type: Material + - type: PhysicalComposition + materialComposition: + SheetPrinter: 100 - type: entity name: paper scrap diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 66f4f684e9..b80a8f1144 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -430,6 +430,7 @@ - BoozeDispenserMachineCircuitboard - SodaDispenserMachineCircuitboard - SpaceHeaterMachineCircuitBoard + - PrinterDocMachineCircuitboard # Corvax-Printer dynamicRecipes: - ThermomachineFreezerMachineCircuitBoard - HellfireFreezerMachineCircuitBoard diff --git a/Resources/Prototypes/Stories/Actions/shadowling.yml b/Resources/Prototypes/Stories/Actions/shadowling.yml index 377fbe0abb..29bc7caee5 100644 --- a/Resources/Prototypes/Stories/Actions/shadowling.yml +++ b/Resources/Prototypes/Stories/Actions/shadowling.yml @@ -20,7 +20,13 @@ icon: { sprite: Stories/Actions/shadowling.rsi, state: enthrall } itemIconStyle: NoItem priority: -11 - event: !type:ShadowlingEnthrallEvent {} + event: !type:DoAfterTargetEvent + hidden: false + needHand: true + delay: 5 + breakOnDamage: true + breakOnMove: true + event: !type:ShadowlingEnthrallEvent {} - type: entity id: ActionShadowlingGlare @@ -61,7 +67,8 @@ itemIconStyle: NoItem checkCanInteract: false priority: -11 - event: !type:ShadowlingShadowWalkEvent {} + event: !type:PolymorphActionEvent + protoId: ShadowlingGhost - type: entity id: ActionShadowlingIcyVeins @@ -74,7 +81,21 @@ icon: { sprite: Stories/Actions/shadowling.rsi, state: icy_veins } itemIconStyle: NoItem priority: -11 - event: !type:ShadowlingIcyVeinsEvent {} + event: !type:InjectReagentsInRangeEvent + injectToPerformer: false + range: 7.5 + solutionTarget: chemicals + solution: + reagents: + - ReagentId: IceOil + Quantity: 4 + whitelist: + components: + - Body + blacklist: + components: + - Shadowling + - ShadowlingThrall - type: entity id: ActionShadowlingCollectiveMind @@ -165,7 +186,7 @@ itemIconStyle: NoItem range: 10 priority: -11 - event: !type:ShadowlingHypnosisEvent {} + event: !type:ShadowlingEnthrallEvent {} - type: entity id: ActionShadowlingAnnihilate @@ -192,7 +213,8 @@ itemIconStyle: NoItem priority: -11 checkCanInteract: false - event: !type:ShadowlingPlaneShiftEvent {} + event: !type:PolymorphActionEvent + protoId: AscendanceGhost - type: entity id: ActionShadowlingLightningStorm diff --git a/Resources/Prototypes/Stories/Body/Parts/shadowling.yml b/Resources/Prototypes/Stories/Body/Parts/shadowling.yml index 26a82b4e19..23b05c4537 100644 --- a/Resources/Prototypes/Stories/Body/Parts/shadowling.yml +++ b/Resources/Prototypes/Stories/Body/Parts/shadowling.yml @@ -2,20 +2,10 @@ # TODO BODY: Part damage - type: entity id: PartShadowling - parent: BaseItem + parent: [BaseItem, BasePart] name: "shadowling body part" abstract: true components: - - type: Damageable - damageContainer: Biological - - type: BodyPart - - type: ContainerContainer - containers: - bodypart: !type:Container - ents: [] - - type: Tag - tags: - - Trash - type: Extractable juiceSolution: reagents: @@ -27,16 +17,11 @@ - type: entity id: TorsoShadowling name: "shadowling torso" - parent: PartShadowling + parent: [PartShadowling, BaseTorso] components: - type: Sprite sprite: Stories/Mobs/Species/Shadowling/parts.rsi state: "torso_m" - - type: Icon - sprite: Stories/Mobs/Species/Shadowling/parts.rsi - state: "torso_m" - - type: BodyPart - partType: Torso - type: Extractable juiceSolution: reagents: @@ -48,22 +33,11 @@ - type: entity id: HeadShadowling name: "shadowling head" - parent: PartShadowling + parent: [PartShadowling, BaseHead] components: - type: Sprite sprite: Stories/Mobs/Species/Shadowling/parts.rsi state: "head_m" - - type: Icon - sprite: Stories/Mobs/Species/Shadowling/parts.rsi - state: "head_m" - - type: BodyPart - partType: Head - vital: true - - type: Input - context: "ghost" - - type: Tag - tags: - - Head - type: Extractable juiceSolution: reagents: @@ -75,125 +49,71 @@ - type: entity id: LeftArmShadowling name: "left shadowling arm" - parent: PartShadowling + parent: [PartShadowling, BaseLeftArm] components: - type: Sprite sprite: Stories/Mobs/Species/Shadowling/parts.rsi state: "l_arm" - - type: Icon - sprite: Stories/Mobs/Species/Shadowling/parts.rsi - state: "l_arm" - - type: BodyPart - partType: Arm - symmetry: Left - type: entity id: RightArmShadowling name: "right shadowling arm" - parent: PartShadowling + parent: [PartShadowling, BaseRightArm] components: - type: Sprite sprite: Stories/Mobs/Species/Shadowling/parts.rsi state: "r_arm" - - type: Icon - sprite: Stories/Mobs/Species/Shadowling/parts.rsi - state: "r_arm" - - type: BodyPart - partType: Arm - symmetry: Right - type: entity id: LeftHandShadowling name: "left shadowling hand" - parent: PartShadowling + parent: [PartShadowling, BaseLeftHand] components: - type: Sprite sprite: Stories/Mobs/Species/Shadowling/parts.rsi state: "l_hand" - - type: Icon - sprite: Stories/Mobs/Species/Shadowling/parts.rsi - state: "l_hand" - - type: BodyPart - partType: Hand - symmetry: Left - type: entity id: RightHandShadowling name: "right shadowling hand" - parent: PartShadowling + parent: [PartShadowling, BaseRightHand] components: - type: Sprite sprite: Stories/Mobs/Species/Shadowling/parts.rsi state: "r_hand" - - type: Icon - sprite: Stories/Mobs/Species/Shadowling/parts.rsi - state: "r_hand" - - type: BodyPart - partType: Hand - symmetry: Right - type: entity id: LeftLegShadowling name: "left shadowling leg" - parent: PartShadowling + parent: [PartShadowling, BaseLeftLeg] components: - type: Sprite sprite: Stories/Mobs/Species/Shadowling/parts.rsi state: "l_leg" - - type: Icon - sprite: Stories/Mobs/Species/Shadowling/parts.rsi - state: "l_leg" - - type: BodyPart - partType: Leg - symmetry: Left - - type: MovementBodyPart - walkSpeed : 2.7 - sprintSpeed : 4.5 - type: entity id: RightLegShadowling name: "right shadowling leg" - parent: PartShadowling + parent: [PartShadowling, BaseRightLeg] components: - type: Sprite sprite: Stories/Mobs/Species/Shadowling/parts.rsi state: "r_leg" - - type: Icon - sprite: Stories/Mobs/Species/Shadowling/parts.rsi - state: "r_leg" - - type: BodyPart - partType: Leg - symmetry: Right - - type: MovementBodyPart - walkSpeed : 2.7 - sprintSpeed : 4.5 - type: entity id: LeftFootShadowling name: "left shadowling foot" - parent: PartShadowling + parent: [PartShadowling, BaseLeftFoot] components: - type: Sprite sprite: Stories/Mobs/Species/Shadowling/parts.rsi state: "l_foot" - - type: Icon - sprite: Stories/Mobs/Species/Shadowling/parts.rsi - state: "l_foot" - - type: BodyPart - partType: Foot - symmetry: Left - type: entity id: RightFootShadowling name: "right shadowling foot" - parent: PartShadowling + parent: [PartShadowling, BaseRightFoot] components: - type: Sprite sprite: Stories/Mobs/Species/Shadowling/parts.rsi state: "r_foot" - - type: Icon - sprite: Stories/Mobs/Species/Shadowling/parts.rsi - state: "r_foot" - - type: BodyPart - partType: Foot - symmetry: Right diff --git a/Resources/Prototypes/Stories/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/Stories/Catalog/Cargo/cargo_service.yml new file mode 100644 index 0000000000..896f5f5a34 --- /dev/null +++ b/Resources/Prototypes/Stories/Catalog/Cargo/cargo_service.yml @@ -0,0 +1,9 @@ +- type: cargoProduct + id: ServicePrinter + icon: + sprite: Stories/Structures/Machines/printer.rsi + state: icon + product: CrateServicePrinter + cost: 600 + category: cargoproduct-category-name-service + group: market \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Stories/Catalog/Fills/Crates/service.yml new file mode 100644 index 0000000000..ba208cc687 --- /dev/null +++ b/Resources/Prototypes/Stories/Catalog/Fills/Crates/service.yml @@ -0,0 +1,9 @@ +- type: entity + id: CrateServicePrinter + parent: CrateGenericSteel + name: printer crate + description: Printer for some burecrautic things + components: + - type: StorageFill + contents: + - id: BoxPrinter \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Paper/document.yml b/Resources/Prototypes/Stories/Catalog/Fills/Paper/document.yml new file mode 100644 index 0000000000..0aa590cf9f --- /dev/null +++ b/Resources/Prototypes/Stories/Catalog/Fills/Paper/document.yml @@ -0,0 +1,424 @@ +- type: entity + parent: PrintedPaper + id: PrintedDocument + abstract: true + description: Bureaucratic unit. A document printed on a printer. + components: + - type: Paper + +- type: entity + parent: PrintedSyndiePaper + id: PrintedSyndieDocument + abstract: true + description: Bureaucratic unit. A document printed on a printer. + components: + - type: Paper + +- type: entity + parent: PrintedDocument + id: PrintedDocumentReportStation + name: Report on the situation at the station + components: + - type: Paper + content: doc-text-printer-report-station + +- type: entity + parent: PrintedDocument + id: PrintedDocumentReporDepartment + name: Report on the work of the department + components: + - type: Paper + content: doc-text-printer-report-department + +- type: entity + parent: PrintedDocument + id: PrintedDocumentReportEmployeePerformance + name: Report on employee performance + components: + - type: Paper + content: doc-text-printer-report-employee-performance + +- type: entity + parent: PrintedDocument + id: PrintedDocumentInternalAffairsAgentsReport + name: Internal Investigation Report + components: + - type: Paper + content: doc-text-printer-internal-affairs-agents-report + +- type: entity + parent: PrintedDocument + id: PrintedDocumentConditionReport + name: Report on technical condition + components: + - type: Paper + content: doc-text-printer-condition-report + + +- type: entity + parent: PrintedDocument + id: PrintedDocumentReportStudyObject + name: Report on object Investigation + components: + - type: Paper + content: doc-text-printer-report-study-object + +- type: entity + parent: PrintedDocument + id: PrintedDocumentExperimentReport + name: Experiment report + components: + - type: Paper + content: doc-text-printer-experiment-report + +- type: entity + parent: PrintedDocument + id: PrintedDocumentDisposalReport + name: Disposal report + components: + - type: Paper + content: doc-text-printer-disposal-report + +- type: entity + parent: PrintedDocument + id: PrintedDocumentApplicationAppointmentInterim + name: Statement of Appointment to the Temporary Acting Authority + components: + - type: Paper + content: doc-text-printer-application-appointment-interim + +- type: entity + parent: PrintedDocument + id: PrintedDocumentApplicationEmployment + name: Statement of Employment + components: + - type: Paper + content: doc-text-printer-application-employment + +- type: entity + parent: PrintedDocument + id: PrintedDocumentLetterResignation + name: Statement of Dismissal + components: + - type: Paper + content: doc-text-printer-letter-resignation + +- type: entity + parent: PrintedDocument + id: PrintedDocumentApplicationAccess + name: Statement of access + components: + - type: Paper + content: doc-text-printer-application-access + +- type: entity + parent: PrintedDocument + id: PrintedDocumentApplicationEquipment + name: Statement for equipment + components: + - type: Paper + content: doc-text-printer-application-equipment + +- type: entity + parent: PrintedDocument + id: PrintedDocumentEvacuationShuttleRequest + name: Evacuation Shuttle Request + components: + - type: Paper + content: doc-text-printer-evacuation-shuttle-request + +- type: entity + parent: PrintedDocument + id: PrintedDocumentShuttleRegistrationRequest + name: Shuttle registration request + components: + - type: Paper + content: doc-text-printer-shuttle-registration-request + +- type: entity + parent: PrintedDocument + id: PrintedDocumentRequestCallMembersCentralCommitteeDSO + name: Request to call members of CC, DSO + components: + - type: Paper + content: doc-text-printer-request-call-members-central-committee-dso + +- type: entity + parent: PrintedDocument + id: PrintedDocumentRequestChangeSalary + name: Request for salary change + components: + - type: Paper + content: doc-text-printer-request-change-salary + +- type: entity + parent: PrintedDocument + id: PrintedDocumentRequestForNonlistedEmployment + name: Request for non-listed employment + components: + - type: Paper + content: doc-text-printer-request-for-non-listed-employment + +- type: entity + parent: PrintedDocument + id: PrintedDocumentRequestForPromotion + name: Request for promotion + components: + - type: Paper + content: doc-text-printer-request-for-promotion + +- type: entity + parent: PrintedDocument + id: PrintedDocumentRequestEuthanasia + name: Request for euthanasia + components: + - type: Paper + content: doc-text-printer-request-euthanasia + +- type: entity + parent: PrintedDocument + id: PrintedDocumentRequestConstructionWork + name: Request for construction works + components: + - type: Paper + content: doc-text-printer-request-construction-work + +- type: entity + parent: PrintedDocument + id: PrintedDocumentComplaintOffense + name: Complaint about an offense + components: + - type: Paper + content: doc-text-printer-complaint-offense + +- type: entity + parent: PrintedDocument + id: PrintedDocumentPermissionEquipment + name: Authorization to use equipment + components: + - type: Paper + content: doc-text-printer-permission-equipment + +- type: entity + parent: PrintedDocument + id: PrintedDocumentSearchPermission + name: Authorization to search + components: + - type: Paper + content: doc-text-printer-search-permission + +- type: entity + parent: PrintedDocument + id: PrintedDocumentPrescriptionDrugAuthorization + name: Prescription Drug Authorization + components: + - type: Paper + content: doc-text-printer-prescription-drug-authorization + +- type: entity + parent: PrintedDocument + id: PrintedDocumentPermissionDisposeBody + name: Authorization to dispose of the body + components: + - type: Paper + content: doc-text-printer-permission-dispose-body + +- type: entity + parent: PrintedDocument + id: PrintedDocumentConstructionPermit + name: Building permit + components: + - type: Paper + content: doc-text-printer-construction-permit + +- type: entity + parent: PrintedDocument + id: PrintedDocumentOrderDismissal + name: Dismissal order + components: + - type: Paper + content: doc-text-printer-order-dismissal + +- type: entity + parent: PrintedDocument + id: PrintedDocumentOrderDeprivationAccess + name: Denial of access order + components: + - type: Paper + content: doc-text-printer-order-deprivation-access + +- type: entity + parent: PrintedDocument + id: PrintedDocumentOrderEncouragement + name: Incentive order + components: + - type: Paper + content: doc-text-printer-order-encouragement + +- type: entity + parent: PrintedDocument + id: PrintedDocumentOrderParolePrisoner + name: Prisoner parole order + components: + - type: Paper + content: doc-text-printer-order-parole-prisoner + +- type: entity + parent: PrintedDocument + id: PrintedDocumentOrderRecognizingSentienceCreature + name: An order recognizing the reasonableness of the substance + components: + - type: Paper + content: doc-text-printer-order-recognizing-rentience-creature + +- type: entity + parent: PrintedDocument + id: PrintedDocumentOrderMedicalIntervention + name: Order for medical intervention + components: + - type: Paper + content: doc-text-printer-order-medical-intervention + +- type: entity + parent: PrintedDocument + id: PrintedDocumentProductManufacturingOrder + name: Order for the production of a product + components: + - type: Paper + content: doc-text-printer-product-manufacturing-order + +- type: entity + parent: PrintedDocument + id: PrintedDocumentOrderPurchaseResourcesEquipment + name: Purchase order for resources, equipment + components: + - type: Paper + content: doc-text-printer-order-purchase-resources-equipment + +- type: entity + parent: PrintedDocument + id: PrintedDocumentOrderingSpecialEquipment + name: Ordering special equipment + components: + - type: Paper + content: doc-text-printer-ordering-special-equipment + +- type: entity + parent: PrintedDocument + id: PrintedDocumentCertificate + name: Certificate + components: + - type: Paper + content: doc-text-printer-certificate + +- type: entity + parent: PrintedDocument + id: PrintedDocumentCertificateAdvancedTraining + name: Certificate of advanced training + components: + - type: Paper + content: doc-text-printer-certificate-advanced-training + +- type: entity + parent: PrintedDocument + id: PrintedDocumentCertificateOffense + name: Certificate of Offense + components: + - type: Paper + content: doc-text-printer-certificate-offense + +- type: entity + parent: PrintedDocument + id: PrintedDocumentDeathCertificate + name: Death certificate + components: + - type: Paper + content: doc-text-printer-death-certificate + +- type: entity + parent: PrintedDocument + id: PrintedDocumentMarriageCertificate + name: Marriage certificate + components: + - type: Paper + content: doc-text-printer-marriage-certificate + +- type: entity + parent: PrintedDocument + id: PrintedDocumentDivorceCertificate + name: Certificate of divorce + components: + - type: Paper + content: doc-text-printer-divorce-certificate + +- type: entity + parent: PrintedDocument + id: PrintedDocumentClosingIndictment + name: Indictment + components: + - type: Paper + content: doc-text-printer-closing-indictment + +- type: entity + parent: PrintedDocument + id: PrintedDocumentSentence + name: Sentence + components: + - type: Paper + content: doc-text-printer-sentence + +- type: entity + parent: PrintedDocument + id: PrintedDocumentJudgment + name: Judgment + components: + - type: Paper + content: doc-text-printer-judgment + +- type: entity + parent: PrintedDocument + id: PrintedDocumentStatementHealth + name: Health report + components: + - type: Paper + content: doc-text-printer-statement-health + +- type: entity + parent: PrintedSyndieDocument + id: PrintedDocumentErrorLoadingFormHeader + name: ERROR loading form header + components: + - type: Paper + content: doc-text-printer-error-loading-form-header + +- type: entity + parent: PrintedSyndieDocument + id: PrintedDocumentNoticeOfLiquidation + name: NOTICE OF LIQUIDIZATION + components: + - type: Paper + content: doc-text-printer-notice-of-liquidation + +- type: entity + parent: PrintedSyndieDocument + id: PrintedDocumentBusinessDeal + name: BUSINESS DEAL + components: + - type: Paper + content: doc-text-printer-business-deal + +- type: entity + parent: PrintedSyndieDocument + id: PrintedDocumentNoteBeginningMilitaryActions + name: NOTE BEGINNING MILITARY ACTIONS + components: + - type: Paper + content: doc-text-printer-note-beginning-military-actions + +- type: entity + parent: PrintedSyndieDocument + id: PrintedDocumentReportAccomplishmentGoals + name: REPORT ACCOMPLISHMENT GOALS + components: + - type: Paper + content: doc-text-printer-report-accomplishment-goals diff --git a/Resources/Prototypes/Stories/Catalog/Fills/Paper/printer.yml b/Resources/Prototypes/Stories/Catalog/Fills/Paper/printer.yml new file mode 100644 index 0000000000..ce0b87caf4 --- /dev/null +++ b/Resources/Prototypes/Stories/Catalog/Fills/Paper/printer.yml @@ -0,0 +1,66 @@ +- type: entity + name: printer box + parent: BoxBase + id: BoxPrinter + description: A cardboard box for document printer. + components: + - type: Item + size: Large + shape: + - 0,0,3,3 + - type: Storage + maxItemSize: Large + grid: + - 0,0,3,3 + - type: Sprite + sprite: Stories/Objects/Storage/printer_box.rsi + layers: + - map: [ base ] + state: box + - map: [ fax ] + state: layer_fax + - map: [ multitool ] + state: layer_multitool + - map: [ paper ] + state: layer_paper + - type: GenericVisualizer + visuals: + enum.StorageVisuals.Open: + base: + True: { state: box-open } + False: { state: box } + fax: + True: { visible: true } + False: { visible: false } + multitool: + True: { visible: true } + False: { visible: false } + paper: + True: { visible: true } + False: { visible: false } + - type: Appearance + - type: StorageFill + contents: + - id: InkPrinter + amount: 2 + - id: SheetPrinter + amount: 2 + - id: Multitool + - id: PrinterDocFlatpack + +- type: entity + name: syndie printer box + parent: BoxPrinter + id: BoxSyndiePrinter + description: A syndie cardboard box for document printer. + components: + - type: Sprite + sprite: Stories/Objects/Storage/printer_box_syndie.rsi + - type: StorageFill + contents: + - id: InkPrinter + amount: 2 + - id: SheetPrinter + amount: 2 + - id: Multitool + - id: PrinterDocSyndieFlatpack \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Damage/modifier_sets.yml b/Resources/Prototypes/Stories/Damage/modifier_sets.yml index 833bb726b7..0d31872479 100644 --- a/Resources/Prototypes/Stories/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Stories/Damage/modifier_sets.yml @@ -14,3 +14,12 @@ Cold: 1.3 Heat: 0.7 Blunt: 0.8 + +- type: damageModifierSet + id: Shadowling + coefficients: + Slash: 0.5 + Piercing: 0.5 + Blunt: 0.5 + Cold: 0.1 + Heat: 2.0 diff --git a/Resources/Prototypes/Stories/Entities/Clothing/Ears/prison.yml b/Resources/Prototypes/Stories/Entities/Clothing/Ears/prison.yml index 4edeb6d447..896085741e 100644 --- a/Resources/Prototypes/Stories/Entities/Clothing/Ears/prison.yml +++ b/Resources/Prototypes/Stories/Entities/Clothing/Ears/prison.yml @@ -26,7 +26,6 @@ key_slots: - PRISONEncryptionKey - EncryptionKeyCommon - - EncryptionKeyMedical - type: Sprite sprite: Stories/Clothing/Ears/Headsets/prison.rsi - type: Clothing @@ -43,7 +42,6 @@ key_slots: - PRISONEncryptionKey - EncryptionKeyCommon - - EncryptionKeyEngineering - type: Sprite sprite: Stories/Clothing/Ears/Headsets/prison.rsi - type: Clothing diff --git a/Resources/Prototypes/Stories/Entities/Mobs/Ghosts/ascendance.yml b/Resources/Prototypes/Stories/Entities/Mobs/Ghosts/ascendance.yml new file mode 100644 index 0000000000..79ac9977eb --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Mobs/Ghosts/ascendance.yml @@ -0,0 +1,78 @@ +- type: entity + id: MobAscendanceGhost + name: вознесенный + parent: + - BaseMob + - MobDamageable + description: Очень страшный. + components: + - type: ZombieImmune + - type: ThermalVision + - type: MobState + allowedStates: + - Alive + - Critical + - Dead + - type: MobThresholds + thresholds: + 0: Alive + 1000: Dead + - type: Destructible + thresholds: [] + - type: Damageable + damageContainer: Biological + damageModifierSet: Shadowling + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - ShadowlingMind + - type: ActiveRadio + channels: + - ShadowlingMind + - type: Shadowling + - type: MindContainer + - type: InputMover + - type: MobMover + - type: Input + context: "ghost" + - type: MovementSpeedModifier + baseWalkSpeed: 15 + baseSprintSpeed: 15 + - type: Sprite + noRot: true + drawdepth: Ghosts + - type: Clickable + - type: InteractionOutline + - type: Physics + bodyType: KinematicController + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.40 + density: 80 + mask: + - GhostImpassable + - type: MovementIgnoreGravity + - type: Examiner + - type: NoSlip + - type: Actions + - type: TTS + voice: illidan + - type: Eye + drawFov: false + visMask: + - Normal + - type: ContentEye + maxZoom: 1.2, 1.2 + - type: DoAfter + - type: Alerts + - type: PointLight + color: DarkRed + radius: 2 + softness: 1 + - type: Visibility + layer: 2 #ghost vis layer + - type: Speech + speechVerb: Ghost diff --git a/Resources/Prototypes/Stories/Entities/Mobs/Ghosts/shadowling.yml b/Resources/Prototypes/Stories/Entities/Mobs/Ghosts/shadowling.yml new file mode 100644 index 0000000000..0a3f45e168 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Mobs/Ghosts/shadowling.yml @@ -0,0 +1,80 @@ +- type: entity + id: MobShadowlingGhost + name: тенеморф + parent: + - BaseMob + - MobDamageable + description: Очень страшный. + components: + - type: ZombieImmune + - type: ThermalVision + - type: MobState + allowedStates: + - Alive + - Critical + - Dead + - type: MobThresholds + thresholds: + 0: Alive + 60: Critical + 120: Dead + - type: Destructible + thresholds: [] + - type: Damageable + damageContainer: Biological + damageModifierSet: Shadowling + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - ShadowlingMind + - type: ActiveRadio + channels: + - ShadowlingMind + - type: Photosensitivity + - type: Shadowling + - type: MindContainer + - type: InputMover + - type: MobMover + - type: Input + context: "ghost" + - type: MovementSpeedModifier + baseWalkSpeed: 15 + baseSprintSpeed: 15 + - type: Sprite + noRot: true + drawdepth: Ghosts + - type: Clickable + - type: InteractionOutline + - type: Physics + bodyType: KinematicController + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.40 + density: 80 + mask: + - GhostImpassable + - type: MovementIgnoreGravity + - type: Examiner + - type: NoSlip + - type: Actions + - type: TTS + voice: illidan + - type: Eye + drawFov: false + visMask: + - Normal + - type: ContentEye + maxZoom: 1.2, 1.2 + - type: DoAfter + - type: Alerts + - type: PointLight + color: DarkRed + radius: 2 + softness: 1 + - type: Visibility + layer: 2 #ghost vis layer + - type: Speech + speechVerb: Ghost diff --git a/Resources/Prototypes/Stories/Entities/Mobs/NPCs/ascendance.yml b/Resources/Prototypes/Stories/Entities/Mobs/Player/ascendance.yml similarity index 68% rename from Resources/Prototypes/Stories/Entities/Mobs/NPCs/ascendance.yml rename to Resources/Prototypes/Stories/Entities/Mobs/Player/ascendance.yml index 0c6850a17b..d52a06b9e9 100644 --- a/Resources/Prototypes/Stories/Entities/Mobs/NPCs/ascendance.yml +++ b/Resources/Prototypes/Stories/Entities/Mobs/Player/ascendance.yml @@ -7,26 +7,39 @@ description: Если вы его видите, то вам следует бежать components: - type: Shadowling - ascended: true + actions: + # ActionShadowlingHatch: 0 + # ActionShadowlingShadowWalk: 0 + ActionShadowlingPlaneShift: 0 + ActionShadowlingGlare: 0 + ActionShadowlingVeil: 0 + ActionShadowlingIcyVeins: 0 + ActionShadowlingCollectiveMind: 0 + ActionShadowlingRapidReHatch: 0 + # ActionShadowlingEnthrall: 0 + ActionShadowlingHypnosis: 0 + ActionShadowlingBlindnessSmoke: 0 + ActionShadowlingSonicScreech: 0 + ActionShadowlingBlackRecuperation: 0 + ActionShadowlingLightningStorm: 0 + ActionShadowlingAnnihilate: 0 + # ActionShadowlingAscendance: 0 + - type: NameIdentifier + group: GenericNumber - type: Insulated - type: CombatMode + - type: Destructible + thresholds: [] - type: InputMover - type: MobMover - - type: Tool - speed: 20 - qualities: - - Prying - type: Prying - pryPowered: !type:Bool - true - force: !type:Bool - true + pryPowered: true + force: true useSound: path: /Audio/Items/crowbar.ogg - type: NpcFactionMember factions: - SimpleHostile - - type: Hands - type: Sprite drawdepth: Mobs sprite: Stories/Mobs/Demons/shadowling.rsi @@ -52,7 +65,7 @@ - type: MobThresholds thresholds: 0: Alive - 10000: Dead + 1000: Dead - type: MeleeWeapon altDisarm: false angle: 0 @@ -89,6 +102,10 @@ - type: MovementSpeedModifier baseWalkSpeed : 8 baseSprintSpeed : 8 + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - ShadowlingMind - type: ActiveRadio channels: - ShadowlingMind diff --git a/Resources/Prototypes/Stories/Entities/Mobs/Player/shadowling.yml b/Resources/Prototypes/Stories/Entities/Mobs/Player/shadowling.yml index e57d230e3d..1a4f44d08c 100644 --- a/Resources/Prototypes/Stories/Entities/Mobs/Player/shadowling.yml +++ b/Resources/Prototypes/Stories/Entities/Mobs/Player/shadowling.yml @@ -1,9 +1,11 @@ - type: entity save: false - name: Urist' McShadowling + name: Тенеморф parent: BaseMobShadowling id: MobShadowling components: + - type: NameIdentifier + group: GenericNumber - type: CombatMode - type: InteractionPopup successChance: 1 diff --git a/Resources/Prototypes/Stories/Entities/Mobs/Species/shadowling.yml b/Resources/Prototypes/Stories/Entities/Mobs/Species/shadowling.yml index c143231852..dc74b6c897 100644 --- a/Resources/Prototypes/Stories/Entities/Mobs/Species/shadowling.yml +++ b/Resources/Prototypes/Stories/Entities/Mobs/Species/shadowling.yml @@ -4,50 +4,75 @@ parent: - BaseMob - MobDamageable + - MobCombat id: BaseMobShadowling abstract: true components: + - type: ZombieImmune + - type: ThermalVision + - type: ComplexInteraction + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 480 + behaviors: + - !type:SpawnEntitiesBehavior + spawnInContainer: true + spawn: + Ash: + min: 1 + max: 1 + - !type:BurnBodyBehavior { } + - !type:PlaySoundBehavior + sound: + collection: MeatLaserImpact + - type: Prying + pryPowered: true + force: true + useSound: + path: /Audio/Items/crowbar.ogg + - type: Shadowling + actions: + # ActionShadowlingHatch: 0 + ActionShadowlingShadowWalk: 0 + ActionShadowlingGlare: 0 + ActionShadowlingVeil: 0 + ActionShadowlingIcyVeins: 0 + ActionShadowlingCollectiveMind: 0 + ActionShadowlingRapidReHatch: 0 + ActionShadowlingEnthrall: 0 + ActionShadowlingBlindnessSmoke: 5 + ActionShadowlingSonicScreech: 3 + ActionShadowlingBlackRecuperation: 9 + ActionShadowlingAscendance: 15 + - type: Photosensitivity + - type: NoSlip + - type: MovementAlwaysTouching - type: Insulated - type: CombatMode - type: InputMover - type: MobMover - type: Hands - - type: Tool - speed: 5 - qualities: - - Prying - - type: Prying - pryPowered: !type:Bool - true - force: !type:Bool - true - useSound: - path: /Audio/Items/crowbar.ogg - - type: PassiveDamage # Slight passive regen. Assuming one damage type, comes out to about 4 damage a minute. - allowedStates: - - Alive - damageCap: 20 - damage: - types: - Heat: -0.07 - groups: - Brute: -0.07 - - type: Shadowling - performLightDamage: true - type: StatusEffects allowed: - Stun + - KnockedDown - SlowedDown - Stutter + - SeeingRainbows - Electrocution - - ForcedSleep - - TemporaryBlindness + - Drunk - SlurredSpeech - RatvarianLanguage - PressureImmunity - Muted + - ForcedSleep + - TemporaryBlindness + - Pacified - StaminaModifier - # Other + - Flashed - type: Temperature heatDamageThreshold: 360 coldDamageThreshold: 0 @@ -69,11 +94,6 @@ thermalRegulationTemperatureThreshold: 25 - type: TypingIndicator proto: holo - - type: Butcherable - butcheringType: Spike - spawned: - - id: FoodMeat - amount: 5 - type: MobState allowedStates: - Alive @@ -102,6 +122,10 @@ - type: Body prototype: Shadowling requiredLegs: 2 + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - ShadowlingMind - type: ActiveRadio channels: - ShadowlingMind @@ -126,21 +150,9 @@ baseWalkSpeed : 2.7 baseSprintSpeed : 4.5 - type: Perishable - - type: Eye - drawFov: false - visMask: - - Normal - type: ContentEye maxZoom: 1.2, 1.2 - type: Puller - type: Tag tags: - DoorBumpOpener - -- type: radioChannel - id: ShadowlingMind - name: chat-radio-shadowling - frequency: 98767 - keycode: 'ш' - color: "#8b0000" - longRange: true diff --git a/Resources/Prototypes/Stories/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Stories/Entities/Objects/Devices/Circuitboards/Machine/production.yml new file mode 100644 index 0000000000..76404a1d2b --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -0,0 +1,13 @@ +- type: entity + id: PrinterDocMachineCircuitboard + parent: BaseMachineCircuitboard + name: document printer machine board + description: A machine printed circuit board for an document printer + components: + - type: MachineBoard + prototype: PrinterDoc + requirements: + MatterBin: 3 + Manipulator: 1 + materialRequirements: + Glass: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Stories/Entities/Objects/Materials/Sheets/other.yml new file mode 100644 index 0000000000..a69808d86a --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/Materials/Sheets/other.yml @@ -0,0 +1,62 @@ +- type: entity + parent: Paper + id: SheetPrinter + suffix: Full + components: + - type: Material + - type: PhysicalComposition + materialComposition: + SheetPrinter: 100 + - type: Stack + stackType: SheetPrinter + baseLayer: paper + - type: Sprite + layers: + - state: paper + - state: paper_words + map: ["enum.PaperVisualLayers.Writing"] + visible: false + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: Tag + tags: + - Document + +- type: entity + parent: SheetPrinter + id: SheetPrinter1 + suffix: Single + components: + - type: Stack + count: 1 + +- type: entity + parent: SheetOtherBase + id: InkPrinter + name: printer ink + suffix: Full + components: + - type: Sprite + sprite: Stories/Objects/Misc/bureaucracy.rsi + state: ink + - type: Item + size: Small + - type: Stack + stackType: InkPrinter + baseLayer: ink + - type: Material + - type: PhysicalComposition + materialComposition: + Ink: 100 + - type: Tag + tags: + - Document + +- type: entity + parent: InkPrinter + id: InkPrinter1 + suffix: Single + components: + - type: Stack + count: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Entities/Objects/Misc/flatpacks.yml b/Resources/Prototypes/Stories/Entities/Objects/Misc/flatpacks.yml new file mode 100644 index 0000000000..02349cdef9 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Objects/Misc/flatpacks.yml @@ -0,0 +1,20 @@ +- type: entity + parent: BaseFlatpack + id: PrinterDocFlatpack + name: document printer flatpack + description: A flatpack used for constructing a document printer. + components: + - type: Flatpack + entity: PrinterDoc + - type: Tag + tags: + - Flatpack + +- type: entity + parent: PrinterDocFlatpack + id: PrinterDocSyndieFlatpack + name: syndie document printer flatpack + description: A flatpack used for constructing a document printer. + components: + - type: Flatpack + entity: PrinterDocSyndie \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Stories/Entities/Objects/Misc/paper.yml index d656ed6004..ebfc1fa88b 100644 --- a/Resources/Prototypes/Stories/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Stories/Entities/Objects/Misc/paper.yml @@ -9,4 +9,50 @@ state: pen_future - type: Item sprite: Stories/Objects/Misc/bureaucracy.rsi - heldPrefix: pen_future \ No newline at end of file + heldPrefix: pen_future + +- type: entity + name: printed paper + parent: Paper + id: PrintedPaper + description: 'A piece of printed paper.' + components: + - type: Sprite + sprite: Stories/Objects/Misc/bureaucracy.rsi + layers: + - state: paper + - state: paper_words-blue + map: ["enum.PaperVisualLayers.Writing"] + visible: false + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: PaperVisuals + headerImagePath: "/Textures/Stories/Interface/Paper/NanoTrasen-label_eng.png" + headerMargin: 0.0, 6.0, 0.0, 8.0 + backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" + backgroundModulate: "#f5f5f5" + backgroundPatchMargin: 16.0, 16.0, 16.0, 16.0 + +- type: entity + name: printed angry paper + parent: Paper + id: PrintedSyndiePaper + description: 'A piece of very angry paper.' + components: + - type: Sprite + sprite: Stories/Objects/Misc/bureaucracy.rsi + layers: + - state: paper-gray + - state: paper-gray_words-red + map: ["enum.PaperVisualLayers.Writing"] + visible: false + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: PaperVisuals + headerImagePath: "/Textures/Stories/Interface/Paper/Syndie-label_eng.png" + headerMargin: 0.0, 6.0, 0.0, 8.0 + backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" + backgroundModulate: "#5C5C5C" + backgroundPatchMargin: 16.0, 16.0, 16.0, 16.0 \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Entities/Objects/identification_cards.yml b/Resources/Prototypes/Stories/Entities/Objects/identification_cards.yml index bb865b0636..307fafe5a0 100644 --- a/Resources/Prototypes/Stories/Entities/Objects/identification_cards.yml +++ b/Resources/Prototypes/Stories/Entities/Objects/identification_cards.yml @@ -54,3 +54,20 @@ - state: idspmedic - type: PresetIdCard job: PRISONMedic + +- type: entity + parent: IDCardStandard + id: PRISONIDCardPrisoner + name: ID карта заключенного тюрьмы + description: Карта, необходимая для доступа в различные области станции. + components: + - type: Sprite + sprite: Objects/Misc/id_cards.rsi + layers: + - state: orange + - type: PresetIdCard + job: PRISONPrisoner + - type: Clothing + slots: + - idcard + sprite: Objects/Misc/id_cards.rsi diff --git a/Resources/Prototypes/Stories/Entities/Structures/Machines/printer.yml b/Resources/Prototypes/Stories/Entities/Structures/Machines/printer.yml new file mode 100644 index 0000000000..c3bf168b66 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/Machines/printer.yml @@ -0,0 +1,113 @@ +- type: entity + parent: BaseLathe + id: PrinterDoc + name: document printer + description: Bureaucratic perfection. Stores a database of all Nanotrasen documents, and lets you print them as long as you have paper. + components: + - type: Sprite + sprite: Stories/Structures/Machines/printer.rsi + snapCardinals: true + layers: + - state: icon + map: ["enum.LatheVisualLayers.IsRunning"] + - state: idle + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: Transform + noRot: false + - type: Machine + board: PrinterDocMachineCircuitboard + - type: Lathe + producingSound: /Audio/Machines/scanning.ogg + idleState: icon + runningState: building + staticRecipes: + - PrintedDocumentReportStationRecipe + - PrintedDocumentReporDepartmentRecipe + - PrintedDocumentReportEmployeePerformanceRecipe + - PrintedDocumentInternalAffairsAgentsReportRecipe + - PrintedDocumentConditionReportRecipe + - PrintedDocumentReportStudyObjectRecipe + - PrintedDocumentExperimentReportRecipe + - PrintedDocumentDisposalReportRecipe + - PrintedDocumentApplicationAppointmentInterimRecipe + - PrintedDocumentApplicationEmploymentRecipe + - PrintedDocumentLetterResignationRecipe + - PrintedDocumentApplicationAccessRecipe + - PrintedDocumentApplicationEquipmentRecipe + - PrintedDocumentEvacuationShuttleRequestRecipe + - PrintedDocumentShuttleRegistrationRequestRecipe + - PrintedDocumentRequestCallMembersCentralCommitteeDSORecipe + - PrintedDocumentRequestChangeSalaryRecipe + - PrintedDocumentRequestForNonlistedEmploymentRecipe + - PrintedDocumentRequestForPromotionRecipe + - PrintedDocumentRequestEuthanasiaRecipe + - PrintedDocumentRequestConstructionWorkRecipe + - PrintedDocumentComplaintOffenseRecipe + - PrintedDocumentPermissionEquipmentRecipe + - PrintedDocumentSearchPermissionRecipe + - PrintedDocumentPrescriptionDrugAuthorizationRecipe + - PrintedDocumentPermissionDisposeBodyRecipe + - PrintedDocumentConstructionPermitRecipe + - PrintedDocumentOrderDismissalRecipe + - PrintedDocumentOrderDeprivationAccessRecipe + - PrintedDocumentOrderEncouragementRecipe + - PrintedDocumentOrderParolePrisonerRecipe + - PrintedDocumentOrderRecognizingSentienceCreatureRecipe + - PrintedDocumentOrderMedicalInterventionRecipe + - PrintedDocumentProductManufacturingOrderRecipe + - PrintedDocumentOrderPurchaseResourcesEquipmentRecipe + - PrintedDocumentOrderingSpecialEquipmentRecipe + - PrintedDocumentCertificateRecipe + - PrintedDocumentCertificateAdvancedTrainingRecipe + - PrintedDocumentCertificateOffenseRecipe + - PrintedDocumentDeathCertificateRecipe + - PrintedDocumentMarriageCertificateRecipe + - PrintedDocumentDivorceCertificateRecipe + - PrintedDocumentClosingIndictmentRecipe + - PrintedDocumentSentenceRecipe + - PrintedDocumentJudgmentRecipe + - PrintedDocumentStatementHealtheRecipe + - type: EmagLatheRecipes + emagStaticRecipes: + - PrintedDocumentErrorLoadingFormHeaderRecipe + - PrintedDocumentNoticeOfLiquidationRecipe + - PrintedDocumentBusinessDealRecipe + - PrintedDocumentNoteBeginningMilitaryActionsRecipe + - PrintedDocumentReportAccomplishmentGoalsRecipe + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 25 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer + - type: MaterialStorage + whitelist: + tags: + - Document + storage: + SheetPrinter: 0 + Ink: 0 + +- type: entity + parent: PrinterDoc + id: PrinterDocSyndie + name: syndie document printer + components: + - type: Lathe + producingSound: /Audio/Machines/scanning.ogg + idleState: icon + runningState: building + staticRecipes: + - PrintedDocumentErrorLoadingFormHeaderRecipe + - PrintedDocumentNoticeOfLiquidationRecipe + - PrintedDocumentBusinessDealRecipe + - PrintedDocumentNoteBeginningMilitaryActionsRecipe + - PrintedDocumentReportAccomplishmentGoalsRecipe diff --git a/Resources/Prototypes/Stories/Entities/Structures/airlocks.yml b/Resources/Prototypes/Stories/Entities/Structures/airlocks.yml index fdb83535fe..e05a63b28e 100644 --- a/Resources/Prototypes/Stories/Entities/Structures/airlocks.yml +++ b/Resources/Prototypes/Stories/Entities/Structures/airlocks.yml @@ -11,7 +11,7 @@ sprite: Stories/Structures/Doors/Airlocks/Glass/security.rsi - type: ContainerFill containers: - board: [PRISONDoorElectronics] + board: [PRISONDoorElectronicsHeadOfPrison] - type: entity parent: Airlock @@ -33,7 +33,7 @@ name: стеклянный шлюз брига тюрьмы description: Он открывается, он закрывается, и он может вас раздавить. id: PRISONAirlockGlassLockedBrig - suffix: Prison, Glass, Locked + suffix: PrisonBrig, Glass, Locked components: - type: Sprite sprite: Stories/Structures/Doors/Airlocks/Glass/security.rsi @@ -46,7 +46,7 @@ name: шлюз брига тюрьмы description: Он открывается, он закрывается, и он может вас раздавить. id: PRISONAirlockLockedBrig - suffix: Prison, Locked + suffix: PrisonBrig, Locked components: - type: Sprite sprite: Stories/Structures/Doors/Airlocks/Standard/security.rsi @@ -149,7 +149,7 @@ components: - type: ContainerFill containers: - board: [PRISONDoorElectronics] + board: [PRISONDoorElectronicsPrisoner] - type: entity parent: Airlock @@ -160,4 +160,4 @@ components: - type: ContainerFill containers: - board: [PRISONDoorElectronics] + board: [PRISONDoorElectronicsPrisoner] diff --git a/Resources/Prototypes/Stories/Entities/Structures/switch.yml b/Resources/Prototypes/Stories/Entities/Structures/switch.yml new file mode 100644 index 0000000000..2309fad75a --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/switch.yml @@ -0,0 +1,39 @@ +- type: entity + id: PRISONLockableButtonPrisonBrig + suffix: PrisonBrig + name: кнопка с замком + description: Эта кнопка что-то активирует. + parent: LockableButton + components: + - type: AccessReader + access: [["PrisonBrig"]] + +- type: entity + id: PRISONLockableButtonHeadOfPrison + suffix: HeadOfPrison + name: кнопка с замком + description: Эта кнопка что-то активирует. + parent: LockableButton + components: + - type: AccessReader + access: [["HeadOfPrison"]] + +- type: entity + id: PRISONLockableButtonPrisonMed + suffix: PrisonMed + name: кнопка с замком + description: Эта кнопка что-то активирует. + parent: LockableButton + components: + - type: AccessReader + access: [["PrisonMed"]] + +- type: entity + id: PRISONLockableButtonPrisonEng + suffix: PrisonEng + name: кнопка с замком + description: Эта кнопка что-то активирует. + parent: LockableButton + components: + - type: AccessReader + access: [["PrisonEng"]] diff --git a/Resources/Prototypes/Stories/Entities/Structures/windoor.yml b/Resources/Prototypes/Stories/Entities/Structures/windoor.yml new file mode 100644 index 0000000000..d8fefcf4e9 --- /dev/null +++ b/Resources/Prototypes/Stories/Entities/Structures/windoor.yml @@ -0,0 +1,65 @@ +- type: entity + parent: WindoorSecure + name: раздвижное бронеокно + description: Это и прочное окно, и раздвижная дверь. Вот это да! + id: PRISONWindoorSecureHeadOfPrisonLocked + suffix: HeadOfPrison, Locked + components: + - type: ContainerFill + containers: + board: [ PRISONDoorElectronicsHeadOfPrison ] + +- type: entity + parent: WindoorSecure + name: раздвижное бронеокно + description: Это и прочное окно, и раздвижная дверь. Вот это да! + id: PRISONWindoorSecureBrigLocked + suffix: PrisonBrig, Locked + components: + - type: ContainerFill + containers: + board: [ PRISONDoorElectronicsBrig ] + +- type: entity + parent: WindoorSecure + name: раздвижное бронеокно + description: Это и прочное окно, и раздвижная дверь. Вот это да! + id: PRISONWindoorSecureLocked + suffix: Prison, Locked + components: + - type: ContainerFill + containers: + board: [ PRISONDoorElectronics ] + +- type: entity + parent: WindoorSecure + name: раздвижное бронеокно + description: Это и прочное окно, и раздвижная дверь. Вот это да! + id: PRISONWindoorSecureEngLocked + suffix: PrisonEng, Locked + components: + - type: ContainerFill + containers: + board: [ PRISONDoorElectronicsEng ] + +- type: entity + parent: WindoorSecure + name: раздвижное бронеокно + description: Это и прочное окно, и раздвижная дверь. Вот это да! + id: PRISONWindoorSecureMedLocked + suffix: PrisonMed, Locked + components: + - type: ContainerFill + containers: + board: [ PRISONDoorElectronicsMed ] + +- type: entity + parent: WindoorSecure + name: раздвижное бронеокно + description: Это и прочное окно, и раздвижная дверь. Вот это да! + id: PRISONWindoorSecurePrisonerLocked + suffix: Prisoner, Locked + components: + - type: ContainerFill + containers: + board: [ PRISONDoorElectronicsPrisoner ] diff --git a/Resources/Prototypes/Stories/GameRules/roundstart.yml b/Resources/Prototypes/Stories/GameRules/roundstart.yml index 3cbd795749..a469448378 100644 --- a/Resources/Prototypes/Stories/GameRules/roundstart.yml +++ b/Resources/Prototypes/Stories/GameRules/roundstart.yml @@ -1,6 +1,32 @@ -# - type: entity -# id: Shadowling -# parent: BaseGameRule -# noSpawn: true -# components: -# - type: ShadowlingRule +- type: entity + id: Shadowling + parent: BaseGameRule + components: + - type: GameRule + minPlayers: 15 + - type: ShadowlingRule + - type: AntagSelection + definitions: + - prefRoles: [ Shadowling ] + max: 3 + playerRatio: 15 + briefing: + text: shadowling-role-greeting + color: DarkRed + sound: "/Audio/Ambience/Antag/ling_alert.ogg" + components: + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - ShadowlingMind + - type: ActiveRadio + channels: + - ShadowlingMind + - type: Shadowling + actions: + ActionShadowlingHatch: 0 + mindComponents: + - type: RoleBriefing + briefing: shadowling-briefing + - type: ShadowlingRole + prototype: Shadowling diff --git a/Resources/Prototypes/Stories/Lathes/misc.yml b/Resources/Prototypes/Stories/Lathes/misc.yml new file mode 100644 index 0000000000..4414ea7e45 --- /dev/null +++ b/Resources/Prototypes/Stories/Lathes/misc.yml @@ -0,0 +1,7 @@ +- type: latheRecipe + id: PrinterDocMachineCircuitboard + result: PrinterDocMachineCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Maps/prison.yml b/Resources/Prototypes/Stories/Maps/prison.yml index f7c841d3bc..e2f26f9f98 100644 --- a/Resources/Prototypes/Stories/Maps/prison.yml +++ b/Resources/Prototypes/Stories/Maps/prison.yml @@ -1,6 +1,6 @@ - type: gameMap id: StoriesPrison - mapName: 'Prison' + mapName: 'Prison Station' mapPath: /Maps/Stories/prison.yml minPlayers: 1 maxPlayers: 1000 @@ -12,12 +12,13 @@ mapNameTemplate: '{0} Prison {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'TG' + prefixCreator: 'DC' - type: StationJobs + overflowJobs: + - PRISONPrisoner availableJobs: PRISONHeadOfPrison: [ 1, 1 ] - PRISONOfficer: [ 4, 4 ] + PRISONOfficer: [ 8, 8 ] PRISONMedic: [ 1, 1 ] PRISONEngineer: [ 1, 1 ] - PRISONPrisoner: [ 5, 5 ] - + PRISONPrisoner: [ 8, 8 ] diff --git a/Resources/Prototypes/Stories/Polymorph/polymorph.yml b/Resources/Prototypes/Stories/Polymorph/polymorph.yml deleted file mode 100644 index 5c7b60f473..0000000000 --- a/Resources/Prototypes/Stories/Polymorph/polymorph.yml +++ /dev/null @@ -1,18 +0,0 @@ -- type: polymorph - id: Shadowling - configuration: - entity: MobShadowling - forced: true - inventory: Drop - revertOnCrit: false - revertOnDeath: false - -- type: polymorph - id: Ascended - configuration: - entity: MobAscendance - forced: true - inventory: Drop - allowRepeatedMorphs: true - revertOnCrit: false - revertOnDeath: false diff --git a/Resources/Prototypes/Stories/Polymorphs/shadowling.yml b/Resources/Prototypes/Stories/Polymorphs/shadowling.yml new file mode 100644 index 0000000000..84b085093d --- /dev/null +++ b/Resources/Prototypes/Stories/Polymorphs/shadowling.yml @@ -0,0 +1,45 @@ +- type: polymorph + id: AscendanceGhost + configuration: + entity: MobAscendanceGhost + duration: 5 + forced: true + transferDamage: true + transferName: true + inventory: Drop + allowRepeatedMorphs: true + revertOnCrit: true + revertOnDeath: true + +- type: polymorph + id: ShadowlingGhost + configuration: + entity: MobShadowlingGhost + duration: 5 + forced: true + transferDamage: true + transferName: true + inventory: Drop + allowRepeatedMorphs: true + revertOnCrit: true + revertOnDeath: true + +- type: polymorph + id: Shadowling + configuration: + entity: MobShadowling + forced: true + inventory: Drop + allowRepeatedMorphs: true + revertOnCrit: false + revertOnDeath: false + +- type: polymorph + id: Ascended + configuration: + entity: MobAscendance + forced: true + inventory: Drop + allowRepeatedMorphs: true + revertOnCrit: false + revertOnDeath: false diff --git a/Resources/Prototypes/Stories/Reagents/materials.yml b/Resources/Prototypes/Stories/Reagents/materials.yml new file mode 100644 index 0000000000..44ce917e80 --- /dev/null +++ b/Resources/Prototypes/Stories/Reagents/materials.yml @@ -0,0 +1,15 @@ +- type: material + id: SheetPrinter + stackEntity: SheetPrinter1 + name: materials-paper + icon: { sprite: Objects/Misc/bureaucracy.rsi, state: paper } + color: "#ffffff" + price: 0.05 + +- type: material + id: Ink + stackEntity: InkPrinter1 + name: materials-inks + icon: { sprite: Stories/Objects/Misc/bureaucracy.rsi, state: ink } + color: "#ffffff" + price: 0.05 \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Reagents/toxins.yml b/Resources/Prototypes/Stories/Reagents/toxins.yml index 1d7ae6314f..4d4e970e67 100644 --- a/Resources/Prototypes/Stories/Reagents/toxins.yml +++ b/Resources/Prototypes/Stories/Reagents/toxins.yml @@ -8,13 +8,24 @@ metabolisms: Poison: effects: + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: IceOil + min: 3 # your legs stop working when above 3 + walkSpeedModifier: 0.00 + sprintSpeedModifier: 0.00 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: IceOil + max: 3 # your legs stop working when above 3 + walkSpeedModifier: 0.6 + sprintSpeedModifier: 0.6 - !type:HealthChange damage: types: Cold: 2.8 - - !type:MovespeedModifier - walkSpeedModifier: 0.65 - sprintSpeedModifier: 0.75 - !type:AdjustTemperature conditions: - !type:Temperature diff --git a/Resources/Prototypes/Stories/Recipes/Lathes/categories.yml b/Resources/Prototypes/Stories/Recipes/Lathes/categories.yml new file mode 100644 index 0000000000..27f9bc5ad7 --- /dev/null +++ b/Resources/Prototypes/Stories/Recipes/Lathes/categories.yml @@ -0,0 +1,39 @@ +- type: latheCategory + id: Reports + name: lathe-category-reports + +- type: latheCategory + id: Statements + name: lathe-category-statements + +- type: latheCategory + id: InquiriesAndAppeals + name: lathe-category-inquiries-and-appeals + +- type: latheCategory + id: Complaintst + name: lathe-category-complaints + +- type: latheCategory + id: Permissions + name: lathe-category-permissions + +- type: latheCategory + id: OrdersAndInstructions + name: lathe-category-orders-and-instructions + +- type: latheCategory + id: Orders + name: lathe-category-orders + +- type: latheCategory + id: Evidence + name: lathe-category-evidence + +- type: latheCategory + id: ConclusionsAndDecisions + name: lathe-category-conclusions-and-decisions + +- type: latheCategory + id: ErrorDocument + name: lathe-category-error diff --git a/Resources/Prototypes/Stories/Recipes/Lathes/printer.yml b/Resources/Prototypes/Stories/Recipes/Lathes/printer.yml new file mode 100644 index 0000000000..72b5ecc333 --- /dev/null +++ b/Resources/Prototypes/Stories/Recipes/Lathes/printer.yml @@ -0,0 +1,556 @@ +- type: latheRecipe + id: PrintedDocumentReportStationRecipe + result: PrintedDocumentReportStation + icon: Stories/Interface/Printer/reports.png + category: Reports + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentReporDepartmentRecipe + result: PrintedDocumentReporDepartment + icon: Stories/Interface/Printer/reports.png + category: Reports + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentReportEmployeePerformanceRecipe + result: PrintedDocumentReportEmployeePerformance + icon: Stories/Interface/Printer/reports.png + category: Reports + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentInternalAffairsAgentsReportRecipe + result: PrintedDocumentInternalAffairsAgentsReport + icon: Stories/Interface/Printer/reports.png + category: Reports + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentConditionReportRecipe + result: PrintedDocumentConditionReport + icon: Stories/Interface/Printer/reports.png + category: Reports + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentReportStudyObjectRecipe + result: PrintedDocumentReportStudyObject + icon: Stories/Interface/Printer/reports.png + category: Reports + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentExperimentReportRecipe + result: PrintedDocumentExperimentReport + icon: Stories/Interface/Printer/reports.png + category: Reports + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentDisposalReportRecipe + result: PrintedDocumentDisposalReport + icon: Stories/Interface/Printer/reports.png + category: Reports + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentApplicationAppointmentInterimRecipe + result: PrintedDocumentApplicationAppointmentInterim + icon: Stories/Interface/Printer/statements.png + category: Statements + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentApplicationEmploymentRecipe + result: PrintedDocumentApplicationEmployment + icon: Stories/Interface/Printer/statements.png + category: Statements + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentLetterResignationRecipe + result: PrintedDocumentLetterResignation + icon: Stories/Interface/Printer/statements.png + category: Statements + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentApplicationAccessRecipe + result: PrintedDocumentApplicationAccess + icon: Stories/Interface/Printer/statements.png + category: Statements + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentApplicationEquipmentRecipe + result: PrintedDocumentApplicationEquipment + icon: Stories/Interface/Printer/statements.png + category: Statements + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentEvacuationShuttleRequestRecipe + result: PrintedDocumentEvacuationShuttleRequest + icon: Stories/Interface/Printer/inquiries.png + category: InquiriesAndAppeals + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentShuttleRegistrationRequestRecipe + result: PrintedDocumentShuttleRegistrationRequest + icon: Stories/Interface/Printer/inquiries.png + category: InquiriesAndAppeals + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentRequestCallMembersCentralCommitteeDSORecipe + result: PrintedDocumentRequestCallMembersCentralCommitteeDSO + icon: Stories/Interface/Printer/inquiries.png + category: InquiriesAndAppeals + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentRequestChangeSalaryRecipe + result: PrintedDocumentRequestChangeSalary + icon: Stories/Interface/Printer/inquiries.png + category: InquiriesAndAppeals + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentRequestForNonlistedEmploymentRecipe + result: PrintedDocumentRequestForNonlistedEmployment + icon: Stories/Interface/Printer/inquiries.png + category: InquiriesAndAppeals + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentRequestForPromotionRecipe + result: PrintedDocumentRequestForPromotion + icon: Stories/Interface/Printer/inquiries.png + category: InquiriesAndAppeals + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentRequestEuthanasiaRecipe + result: PrintedDocumentRequestEuthanasia + icon: Stories/Interface/Printer/inquiries.png + category: InquiriesAndAppeals + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentRequestConstructionWorkRecipe + result: PrintedDocumentRequestConstructionWork + icon: Stories/Interface/Printer/inquiries.png + category: InquiriesAndAppeals + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentComplaintOffenseRecipe + result: PrintedDocumentComplaintOffense + icon: Stories/Interface/Printer/complaintst.png + category: Complaintst + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentPermissionEquipmentRecipe + result: PrintedDocumentPermissionEquipment + icon: Stories/Interface/Printer/permissions.png + category: Permissions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + + +- type: latheRecipe + id: PrintedDocumentSearchPermissionRecipe + result: PrintedDocumentSearchPermission + icon: Stories/Interface/Printer/permissions.png + category: Permissions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentPrescriptionDrugAuthorizationRecipe + result: PrintedDocumentPrescriptionDrugAuthorization + icon: Stories/Interface/Printer/permissions.png + category: Permissions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentPermissionDisposeBodyRecipe + result: PrintedDocumentPermissionDisposeBody + icon: Stories/Interface/Printer/permissions.png + category: Permissions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentConstructionPermitRecipe + result: PrintedDocumentConstructionPermit + icon: Stories/Interface/Printer/permissions.png + category: Permissions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentOrderDismissalRecipe + result: PrintedDocumentOrderDismissal + icon: Stories/Interface/Printer/instructions.png + category: OrdersAndInstructions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentOrderDeprivationAccessRecipe + result: PrintedDocumentOrderDeprivationAccess + icon: Stories/Interface/Printer/instructions.png + category: OrdersAndInstructions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentOrderEncouragementRecipe + result: PrintedDocumentOrderEncouragement + icon: Stories/Interface/Printer/instructions.png + category: OrdersAndInstructions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentOrderParolePrisonerRecipe + result: PrintedDocumentOrderParolePrisoner + icon: Stories/Interface/Printer/instructions.png + category: OrdersAndInstructions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentOrderRecognizingSentienceCreatureRecipe + result: PrintedDocumentOrderRecognizingSentienceCreature + icon: Stories/Interface/Printer/instructions.png + category: OrdersAndInstructions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentOrderMedicalInterventionRecipe + result: PrintedDocumentOrderMedicalIntervention + icon: Stories/Interface/Printer/instructions.png + category: OrdersAndInstructions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentProductManufacturingOrderRecipe + result: PrintedDocumentProductManufacturingOrder + icon: Stories/Interface/Printer/orders.png + category: Orders + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentOrderPurchaseResourcesEquipmentRecipe + result: PrintedDocumentOrderPurchaseResourcesEquipment + icon: Stories/Interface/Printer/orders.png + category: Orders + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentOrderingSpecialEquipmentRecipe + result: PrintedDocumentOrderingSpecialEquipment + icon: Stories/Interface/Printer/orders.png + category: Orders + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentCertificateRecipe + result: PrintedDocumentCertificate + icon: Stories/Interface/Printer/evidence.png + category: Evidence + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentCertificateAdvancedTrainingRecipe + result: PrintedDocumentCertificateAdvancedTraining + icon: Stories/Interface/Printer/evidence.png + category: Evidence + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentCertificateOffenseRecipe + result: PrintedDocumentCertificateOffense + icon: Stories/Interface/Printer/evidence.png + category: Evidence + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentDeathCertificateRecipe + result: PrintedDocumentDeathCertificate + icon: Stories/Interface/Printer/evidence.png + category: Evidence + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentMarriageCertificateRecipe + result: PrintedDocumentMarriageCertificate + icon: Stories/Interface/Printer/evidence.png + category: Evidence + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentDivorceCertificateRecipe + result: PrintedDocumentDivorceCertificate + icon: Stories/Interface/Printer/evidence.png + category: Evidence + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentClosingIndictmentRecipe + result: PrintedDocumentClosingIndictment + icon: Stories/Interface/Printer/decisions.png + category: ConclusionsAndDecisions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentSentenceRecipe + result: PrintedDocumentSentence + icon: Stories/Interface/Printer/decisions.png + category: ConclusionsAndDecisions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentJudgmentRecipe + result: PrintedDocumentJudgment + icon: Stories/Interface/Printer/decisions.png + category: ConclusionsAndDecisions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentStatementHealtheRecipe + result: PrintedDocumentStatementHealth + icon: Stories/Interface/Printer/decisions.png + category: ConclusionsAndDecisions + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentErrorLoadingFormHeaderRecipe + result: PrintedDocumentErrorLoadingFormHeader + category: ErrorDocument + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentNoticeOfLiquidationRecipe + result: PrintedDocumentNoticeOfLiquidation + category: ErrorDocument + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentBusinessDealRecipe + result: PrintedDocumentBusinessDeal + category: ErrorDocument + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentNoteBeginningMilitaryActionsRecipe + result: PrintedDocumentNoteBeginningMilitaryActions + category: ErrorDocument + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 + +- type: latheRecipe + id: PrintedDocumentReportAccomplishmentGoalsRecipe + result: PrintedDocumentReportAccomplishmentGoals + category: ErrorDocument + completetime: 2 + applyMaterialDiscount: false + materials: + SheetPrinter: 100 + Ink: 100 \ No newline at end of file diff --git a/Resources/Prototypes/Stories/Roles/Antags/shadowling.yml b/Resources/Prototypes/Stories/Roles/Antags/shadowling.yml index 2081a20c47..e595d2247e 100644 --- a/Resources/Prototypes/Stories/Roles/Antags/shadowling.yml +++ b/Resources/Prototypes/Stories/Roles/Antags/shadowling.yml @@ -1,17 +1,16 @@ - type: antag id: Shadowling - name: Тенеморф | БЕТА | + name: Тенеморф antagonist: true - setPreference: false - objective: Поработите экипаж и станьте богом + setPreference: true + objective: Поработите экипаж и станьте богом. requirements: - !type:OverallPlaytimeRequirement - time: 1 - # time: 36000 # 10h Stories-RoleTime + time: 36000 # 10h Stories-RoleTime - type: antag id: ShadowlingThrall - name: Тралл + name: Тралл тенеморфа antagonist: true setPreference: false - objective: Выполняйте приказы своего хозяина и помогите ему в его цели стать богом + objective: Выполняйте приказы своего хозяина и помогите ему в его цели стать богом. diff --git a/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_engineer.yml b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_engineer.yml index a2f9412d90..13f11fdfca 100644 --- a/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_engineer.yml +++ b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_engineer.yml @@ -13,15 +13,13 @@ startingGear: PRISONEngineerGear icon: "JobIconSpacePrisonEngineer" supervisors: начальник тюрьмы - canBeAntag: false + canBeAntag: true access: + - Prisoner - Prison - PrisonEng - # - Security - - Brig - Maintenance - External - - Engineering # special: # - !type:AddImplantSpecial # implants: [ MindShieldImplant ] diff --git a/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_medic.yml b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_medic.yml index 343dcb04d1..795f31373b 100644 --- a/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_medic.yml +++ b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prison_medic.yml @@ -13,15 +13,15 @@ startingGear: PRISONMedicGear icon: "JobIconSpacePrisonMedic" supervisors: начальник тюрьмы - canBeAntag: false + canBeAntag: true access: + - Prisoner - Prison - PrisonMed - Maintenance - - Medical - special: - - !type:AddImplantSpecial - implants: [ MindShieldImplant ] + # special: + # - !type:AddImplantSpecial + # implants: [ MindShieldImplant ] - type: startingGear id: PRISONMedicGear diff --git a/Resources/Prototypes/Stories/Roles/Jobs/Prison/prisoner.yml b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prisoner.yml index 0835a3b36b..ea1965ed27 100644 --- a/Resources/Prototypes/Stories/Roles/Jobs/Prison/prisoner.yml +++ b/Resources/Prototypes/Stories/Roles/Jobs/Prison/prisoner.yml @@ -9,10 +9,15 @@ canBeAntag: true access: - Prisoner + special: + - !type:AddComponentSpecial + components: + - type: Prisoner - type: startingGear id: PRISONPrisoner equipment: + id: PRISONIDCardPrisoner jumpsuit: ClothingUniformJumpsuitPrisoner shoes: ClothingShoesColorBlack diff --git a/Resources/Prototypes/Stories/Stack/other_stacks.yml b/Resources/Prototypes/Stories/Stack/other_stacks.yml new file mode 100644 index 0000000000..d3677acdbd --- /dev/null +++ b/Resources/Prototypes/Stories/Stack/other_stacks.yml @@ -0,0 +1,15 @@ +- type: stack + id: SheetPrinter + name: paper + icon: { sprite: Objects/Misc/bureaucracy.rsi, state: paper } + spawn: SheetPrinter1 + maxCount: 30 + itemSize: 1 + +- type: stack + id: InkPrinter + name: printer ink + icon: { sprite: Stories/Objects/Misc/bureaucracy.rsi, state: ink } + spawn: InkPrinter1 + maxCount: 30 + itemSize: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Stories/StatusIcon/antag.yml b/Resources/Prototypes/Stories/StatusIcon/shadowling.yml similarity index 63% rename from Resources/Prototypes/Stories/StatusIcon/antag.yml rename to Resources/Prototypes/Stories/StatusIcon/shadowling.yml index b4b3bd516b..bf33348fa1 100644 --- a/Resources/Prototypes/Stories/StatusIcon/antag.yml +++ b/Resources/Prototypes/Stories/StatusIcon/shadowling.yml @@ -1,6 +1,11 @@ - type: statusIcon id: ShadowlingFaction priority: 11 + showTo: + components: + - ShowAntagIcons + - Shadowling + - ShadowlingThrall icon: sprite: /Textures/Stories/Interface/Misc/job_icons.rsi state: Shadowlings @@ -8,6 +13,11 @@ - type: statusIcon id: ShadowlingThrallFaction priority: 11 + showTo: + components: + - ShowAntagIcons + - Shadowling + - ShadowlingThrall icon: sprite: /Textures/Stories/Interface/Misc/job_icons.rsi state: ShadowlingsSlave diff --git a/Resources/Prototypes/Stories/conversions.yml b/Resources/Prototypes/Stories/conversions.yml index b3b3348850..5819ba496b 100644 --- a/Resources/Prototypes/Stories/conversions.yml +++ b/Resources/Prototypes/Stories/conversions.yml @@ -1,3 +1,26 @@ +- type: conversion + id: ShadowlingThrall + statusIcon: ShadowlingThrallFaction + blacklist: + components: + - Zombie + briefing: + text: thrall-role-greeting + color: Red + endBriefing: + text: thrall-role-goodbye + color: Red + components: + - type: ThermalVision + - type: ShadowlingThrall + mindComponents: + - type: RoleBriefing + briefing: thrall-briefing + - type: ShadowlingThrallRole + prototype: ShadowlingThrall + channels: + - ShadowlingMind + - type: conversion id: HypnotizedEmpire statusIcon: HypnotizedEmpireFaction diff --git a/Resources/Prototypes/Stories/game_presets.yml b/Resources/Prototypes/Stories/game_presets.yml index 27b0ee5582..3a58d46d8d 100644 --- a/Resources/Prototypes/Stories/game_presets.yml +++ b/Resources/Prototypes/Stories/game_presets.yml @@ -1,12 +1,13 @@ - type: gamePreset - id: Shadowlings + id: Shadowling alias: - shadowling - - shadowlings - name: Тенеморфы | БЕТА | - description: " Тени на станции... - | БЕТА | Возможны баги и недоработки. Просьба сразу нам о них сообщать." + name: Тенеморфы + description: На станции обитают тенеморфы. Это опасные гуманоидные существа, цель которых поработить всю станцию. Если они сделают это, то галактика будет обречена на вымирание. showInVote: false rules: - Shadowling + - SubGamemodesRule - BasicStationEventScheduler + - GameRuleMeteorScheduler + - BasicRoundstartVariation diff --git a/Resources/Prototypes/Stories/radio_channels.yml b/Resources/Prototypes/Stories/radio_channels.yml index 61f4a2e3ca..a847f5b935 100644 --- a/Resources/Prototypes/Stories/radio_channels.yml +++ b/Resources/Prototypes/Stories/radio_channels.yml @@ -28,3 +28,11 @@ frequency: 1984 color: "#1b67a5" longRange: true + +- type: radioChannel + id: ShadowlingMind + name: chat-radio-shadowling + frequency: 98767 + keycode: 'ш' + color: "#8b0000" + longRange: true diff --git a/Resources/Prototypes/Stories/sponsor_antags.yml b/Resources/Prototypes/Stories/sponsor_antags.yml index ffb829fa94..ce0f4f0863 100644 --- a/Resources/Prototypes/Stories/sponsor_antags.yml +++ b/Resources/Prototypes/Stories/sponsor_antags.yml @@ -31,6 +31,7 @@ - Nukeops - Extended - Survival + - Shadowling - type: sponsorAntag id: shadowling @@ -43,10 +44,7 @@ allowedGamePresets: - AllAtOnce - Secret - - Traitor - - Extended - - Survival - - Shadowlings + - Shadowling - type: sponsorAntag id: headrev @@ -191,7 +189,7 @@ - Revolutionary - Zombie - Pirates - - Shadowlings + - Shadowling - type: sponsorAntag id: thiefDEBUG @@ -216,7 +214,7 @@ - Revolutionary - Zombie - Pirates - - Shadowlings + - Shadowling - type: sponsorAntag id: shadowlingDEBUG @@ -241,7 +239,7 @@ - Revolutionary - Zombie - Pirates - - Shadowlings + - Shadowling - type: sponsorAntag id: headrevDEBUG @@ -266,7 +264,7 @@ - Revolutionary - Zombie - Pirates - - Shadowlings + - Shadowling - type: sponsorAntag id: spaceninjaDEBUG @@ -290,7 +288,7 @@ - Revolutionary - Zombie - Pirates - - Shadowlings + - Shadowling event: !type:MakeGhostRoleAntagEvent gameRule: NinjaSpawn spawnerId: SpawnPointGhostSpaceNinja @@ -317,7 +315,7 @@ - Revolutionary - Zombie - Pirates - - Shadowlings + - Shadowling event: !type:MakeGhostRoleAntagEvent gameRule: LoneOpsSpawn spawnerId: SpawnPointLoneNukeOperative @@ -344,7 +342,7 @@ - Revolutionary - Zombie - Pirates - - Shadowlings + - Shadowling event: !type:MakeGhostRoleAntagEvent gameRule: SithSpawn spawnerId: SpawnPointGhostSith @@ -374,7 +372,7 @@ - Revolutionary - Zombie - Pirates - - Shadowlings + - Shadowling # - type: sponsorAntag # id: terminatorDEBUG @@ -401,4 +399,4 @@ # - Revolutionary # - Zombie # - Pirates -# - Shadowlings +# - Shadowling diff --git a/Resources/Prototypes/Stories/tags.yml b/Resources/Prototypes/Stories/tags.yml index 5ede3a7a80..18dc644807 100644 --- a/Resources/Prototypes/Stories/tags.yml +++ b/Resources/Prototypes/Stories/tags.yml @@ -1,3 +1,6 @@ +- type: Tag + id: Flatpack + - type: Tag id: StasisBattery diff --git a/Resources/Prototypes/secret_weights.yml b/Resources/Prototypes/secret_weights.yml index 7af610af6c..fe94b80951 100644 --- a/Resources/Prototypes/secret_weights.yml +++ b/Resources/Prototypes/secret_weights.yml @@ -1,8 +1,9 @@ - type: weightedRandom id: Secret weights: - Nukeops: 0.20 - Traitor: 0.60 - Zombie: 0.05 - Survival: 0.10 - Revolutionary: 0.05 + Shadowling: 0.17 # Stories + Nukeops: 0.17 + Traitor: 0.57 + Zombie: 0.02 + Survival: 0.05 + Revolutionary: 0.02 diff --git a/Resources/Textures/Stories/Interface/Paper/NanoTrasen-label_eng.png b/Resources/Textures/Stories/Interface/Paper/NanoTrasen-label_eng.png new file mode 100644 index 0000000000..3bbeb5b923 Binary files /dev/null and b/Resources/Textures/Stories/Interface/Paper/NanoTrasen-label_eng.png differ diff --git a/Resources/Textures/Stories/Interface/Paper/NanoTrasen-label_rus.png b/Resources/Textures/Stories/Interface/Paper/NanoTrasen-label_rus.png new file mode 100644 index 0000000000..c82e969824 Binary files /dev/null and b/Resources/Textures/Stories/Interface/Paper/NanoTrasen-label_rus.png differ diff --git a/Resources/Textures/Stories/Interface/Paper/Syndie-label_eng.png b/Resources/Textures/Stories/Interface/Paper/Syndie-label_eng.png new file mode 100644 index 0000000000..ded9aed8fa Binary files /dev/null and b/Resources/Textures/Stories/Interface/Paper/Syndie-label_eng.png differ diff --git a/Resources/Textures/Stories/Interface/Printer/complaintst.png b/Resources/Textures/Stories/Interface/Printer/complaintst.png new file mode 100644 index 0000000000..f992eed897 Binary files /dev/null and b/Resources/Textures/Stories/Interface/Printer/complaintst.png differ diff --git a/Resources/Textures/Stories/Interface/Printer/decisions.png b/Resources/Textures/Stories/Interface/Printer/decisions.png new file mode 100644 index 0000000000..11905c5311 Binary files /dev/null and b/Resources/Textures/Stories/Interface/Printer/decisions.png differ diff --git a/Resources/Textures/Stories/Interface/Printer/evidence.png b/Resources/Textures/Stories/Interface/Printer/evidence.png new file mode 100644 index 0000000000..4fc1acea9e Binary files /dev/null and b/Resources/Textures/Stories/Interface/Printer/evidence.png differ diff --git a/Resources/Textures/Stories/Interface/Printer/inquiries.png b/Resources/Textures/Stories/Interface/Printer/inquiries.png new file mode 100644 index 0000000000..7069b1cf64 Binary files /dev/null and b/Resources/Textures/Stories/Interface/Printer/inquiries.png differ diff --git a/Resources/Textures/Stories/Interface/Printer/instructions.png b/Resources/Textures/Stories/Interface/Printer/instructions.png new file mode 100644 index 0000000000..8ad221bb59 Binary files /dev/null and b/Resources/Textures/Stories/Interface/Printer/instructions.png differ diff --git a/Resources/Textures/Stories/Interface/Printer/orders.png b/Resources/Textures/Stories/Interface/Printer/orders.png new file mode 100644 index 0000000000..73e5e730ea Binary files /dev/null and b/Resources/Textures/Stories/Interface/Printer/orders.png differ diff --git a/Resources/Textures/Stories/Interface/Printer/permissions.png b/Resources/Textures/Stories/Interface/Printer/permissions.png new file mode 100644 index 0000000000..077fd9d956 Binary files /dev/null and b/Resources/Textures/Stories/Interface/Printer/permissions.png differ diff --git a/Resources/Textures/Stories/Interface/Printer/reports.png b/Resources/Textures/Stories/Interface/Printer/reports.png new file mode 100644 index 0000000000..1d058c3638 Binary files /dev/null and b/Resources/Textures/Stories/Interface/Printer/reports.png differ diff --git a/Resources/Textures/Stories/Interface/Printer/statements.png b/Resources/Textures/Stories/Interface/Printer/statements.png new file mode 100644 index 0000000000..06d3a0fd3a Binary files /dev/null and b/Resources/Textures/Stories/Interface/Printer/statements.png differ diff --git a/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/ink.png b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/ink.png new file mode 100644 index 0000000000..3710d45f59 Binary files /dev/null and b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/ink.png differ diff --git a/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/meta.json index 0e26d94eff..bbe61884c3 100644 --- a/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/meta.json +++ b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/meta.json @@ -9,12 +9,30 @@ "states": [ { "name": "paper_stamp-hosp" + }, + { + "name": "paper" + }, + { + "name": "paper-gray" + }, + { + "name": "paper_words-blue" + }, + { + "name": "paper-gray_words-red" + }, + { + "name": "paper_stamp-generic" }, { "name": "stamp-hosp" }, { "name": "paper_stamp-ok" + }, + { + "name": "ink" }, { "name": "paper_stamp-psychologist" diff --git a/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper-gray.png b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper-gray.png new file mode 100644 index 0000000000..d3bf41bfd9 Binary files /dev/null and b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper-gray.png differ diff --git a/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper-gray_words-red.png b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper-gray_words-red.png new file mode 100644 index 0000000000..92ce928903 Binary files /dev/null and b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper-gray_words-red.png differ diff --git a/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper.png b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper.png new file mode 100644 index 0000000000..bf4642e10e Binary files /dev/null and b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper.png differ diff --git a/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper_stamp-generic.png b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper_stamp-generic.png new file mode 100644 index 0000000000..3ba018e8fa Binary files /dev/null and b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper_stamp-generic.png differ diff --git a/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper_words-blue.png b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper_words-blue.png new file mode 100644 index 0000000000..f428743f9c Binary files /dev/null and b/Resources/Textures/Stories/Objects/Misc/bureaucracy.rsi/paper_words-blue.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/box-open.png b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/box-open.png new file mode 100644 index 0000000000..c2a23151ef Binary files /dev/null and b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/box-open.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/box.png b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/box.png new file mode 100644 index 0000000000..6dce7a9686 Binary files /dev/null and b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/box.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/layer_fax.png b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/layer_fax.png new file mode 100644 index 0000000000..b37efed42a Binary files /dev/null and b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/layer_fax.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/layer_multitool.png b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/layer_multitool.png new file mode 100644 index 0000000000..c94484f31a Binary files /dev/null and b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/layer_multitool.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/layer_paper.png b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/layer_paper.png new file mode 100644 index 0000000000..9610042a1b Binary files /dev/null and b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/layer_paper.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/meta.json b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/meta.json new file mode 100644 index 0000000000..11a94393f9 --- /dev/null +++ b/Resources/Textures/Stories/Objects/Storage/printer_box.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by RustedTim(discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "box" + }, + { + "name": "box-open" + }, + { + "name": "layer_fax" + }, + { + "name": "layer_multitool" + }, + { + "name": "layer_paper" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/box-open.png b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/box-open.png new file mode 100644 index 0000000000..acbb002dcf Binary files /dev/null and b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/box-open.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/box.png b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/box.png new file mode 100644 index 0000000000..ff5dca76a9 Binary files /dev/null and b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/box.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/layer_fax.png b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/layer_fax.png new file mode 100644 index 0000000000..b37efed42a Binary files /dev/null and b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/layer_fax.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/layer_multitool.png b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/layer_multitool.png new file mode 100644 index 0000000000..c94484f31a Binary files /dev/null and b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/layer_multitool.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/layer_paper.png b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/layer_paper.png new file mode 100644 index 0000000000..9610042a1b Binary files /dev/null and b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/layer_paper.png differ diff --git a/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/meta.json b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/meta.json new file mode 100644 index 0000000000..11a94393f9 --- /dev/null +++ b/Resources/Textures/Stories/Objects/Storage/printer_box_syndie.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by RustedTim(discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "box" + }, + { + "name": "box-open" + }, + { + "name": "layer_fax" + }, + { + "name": "layer_multitool" + }, + { + "name": "layer_paper" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Structures/Machines/printer.rsi/building.png b/Resources/Textures/Stories/Structures/Machines/printer.rsi/building.png new file mode 100644 index 0000000000..05d2c5b627 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/printer.rsi/building.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/printer.rsi/icon.png b/Resources/Textures/Stories/Structures/Machines/printer.rsi/icon.png new file mode 100644 index 0000000000..bd88f97ea4 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/printer.rsi/icon.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/printer.rsi/idle.png b/Resources/Textures/Stories/Structures/Machines/printer.rsi/idle.png new file mode 100644 index 0000000000..416ad88a85 Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/printer.rsi/idle.png differ diff --git a/Resources/Textures/Stories/Structures/Machines/printer.rsi/meta.json b/Resources/Textures/Stories/Structures/Machines/printer.rsi/meta.json new file mode 100644 index 0000000000..f2e45ba75b --- /dev/null +++ b/Resources/Textures/Stories/Structures/Machines/printer.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Resprite by Hqlle(Github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "panel" + }, + { + "name": "building", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "idle", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Stories/Structures/Machines/printer.rsi/panel.png b/Resources/Textures/Stories/Structures/Machines/printer.rsi/panel.png new file mode 100644 index 0000000000..5907153bfe Binary files /dev/null and b/Resources/Textures/Stories/Structures/Machines/printer.rsi/panel.png differ