diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 2b6d556117ef65..4c5dd7694051fd 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -19,7 +19,7 @@ /Resources/engineCommandPerms.yml @moonheart08 @Chief-Engineer /Resources/clientCommandPerms.yml @moonheart08 @Chief-Engineer -/Resources/Prototypes/Maps/ @Emisse +/Resources/Prototypes/Maps/** @Emisse /Resources/Prototypes/Body/ @DrSmugleaf # suffering /Resources/Prototypes/Entities/Mobs/Player/ @DrSmugleaf diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs index f0b7ffbe119909..64068d6dbbf1f4 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs @@ -23,6 +23,7 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow { private readonly IEntityManager _entManager; private readonly SpriteSystem _spriteSystem; + private readonly SharedNavMapSystem _navMapSystem; private EntityUid? _owner; private NetEntity? _trackedEntity; @@ -47,6 +48,7 @@ public AtmosAlertsComputerWindow(AtmosAlertsComputerBoundUserInterface userInter RobustXamlLoader.Load(this); _entManager = IoCManager.Resolve(); _spriteSystem = _entManager.System(); + _navMapSystem = _entManager.System(); // Pass the owner to nav map _owner = owner; @@ -179,6 +181,9 @@ public void UpdateUI(EntityCoordinates? consoleCoords, AtmosAlertsComputerEntry[ // Add tracked entities to the nav map foreach (var device in console.AtmosDevices) { + if (!device.NetEntity.Valid) + continue; + if (!NavMap.Visible) continue; @@ -270,6 +275,34 @@ public void UpdateUI(EntityCoordinates? consoleCoords, AtmosAlertsComputerEntry[ else MasterTabContainer.SetTabTitle(0, Loc.GetString("atmos-alerts-window-tab-alerts", ("value", activeAlarmCount))); + // Update sensor regions + NavMap.RegionOverlays.Clear(); + var prioritizedRegionOverlays = new Dictionary(); + + if (_owner != null && + _entManager.TryGetComponent(_owner, out var xform) && + _entManager.TryGetComponent(xform.GridUid, out var navMap)) + { + var regionOverlays = _navMapSystem.GetNavMapRegionOverlays(_owner.Value, navMap, AtmosAlertsComputerUiKey.Key); + + foreach (var (regionOwner, regionOverlay) in regionOverlays) + { + var alarmState = GetAlarmState(regionOwner); + + if (!TryGetSensorRegionColor(regionOwner, alarmState, out var regionColor)) + continue; + + regionOverlay.Color = regionColor.Value; + + var priority = (_trackedEntity == regionOwner) ? 999 : (int)alarmState; + prioritizedRegionOverlays.Add(regionOverlay, priority); + } + + // Sort overlays according to their priority + var sortedOverlays = prioritizedRegionOverlays.OrderBy(x => x.Value).Select(x => x.Key).ToList(); + NavMap.RegionOverlays = sortedOverlays; + } + // Auto-scroll re-enable if (_autoScrollAwaitsUpdate) { @@ -298,6 +331,24 @@ private void AddTrackedEntityToNavMap(AtmosAlertsDeviceNavMapData metaData, Atmo NavMap.TrackedEntities[metaData.NetEntity] = blip; } + private bool TryGetSensorRegionColor(NetEntity regionOwner, AtmosAlarmType alarmState, [NotNullWhen(true)] out Color? color) + { + color = null; + + var blip = GetBlipTexture(alarmState); + + if (blip == null) + return false; + + // Color the region based on alarm state and entity tracking + color = blip.Value.Item2 * new Color(154, 154, 154); + + if (_trackedEntity != null && _trackedEntity != regionOwner) + color *= Color.DimGray; + + return true; + } + private void UpdateUIEntry(AtmosAlertsComputerEntry entry, int index, Control table, AtmosAlertsComputerComponent console, AtmosAlertsFocusDeviceData? focusData = null) { // Make new UI entry if required diff --git a/Content.Client/Entry/EntryPoint.cs b/Content.Client/Entry/EntryPoint.cs index cd73d3397dfe4b..5c1f94f3332911 100644 --- a/Content.Client/Entry/EntryPoint.cs +++ b/Content.Client/Entry/EntryPoint.cs @@ -4,6 +4,7 @@ using Content.Client.DebugMon; using Content.Client.Eui; using Content.Client.Fullscreen; +using Content.Client.GameTicking.Managers; using Content.Client.GhostKick; using Content.Client.Guidebook; using Content.Client.Input; @@ -70,6 +71,7 @@ public sealed class EntryPoint : GameClient [Dependency] private readonly IReplayLoadManager _replayLoad = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly DebugMonitorManager _debugMonitorManager = default!; + [Dependency] private readonly TitleWindowManager _titleWindowManager = default!; public override void Init() { @@ -139,6 +141,12 @@ public override void Init() _configManager.SetCVar("interface.resolutionAutoScaleMinimum", 0.5f); } + public override void Shutdown() + { + base.Shutdown(); + _titleWindowManager.Shutdown(); + } + public override void PostInit() { base.PostInit(); @@ -159,6 +167,7 @@ public override void PostInit() _userInterfaceManager.SetDefaultTheme("SS14DefaultTheme"); _userInterfaceManager.SetActiveTheme(_configManager.GetCVar(CVars.InterfaceTheme)); _documentParsingManager.Initialize(); + _titleWindowManager.Initialize(); _baseClient.RunLevelChanged += (_, args) => { diff --git a/Content.Client/GameTicking/Managers/TitleWindowManager.cs b/Content.Client/GameTicking/Managers/TitleWindowManager.cs new file mode 100644 index 00000000000000..18ce16f634ceee --- /dev/null +++ b/Content.Client/GameTicking/Managers/TitleWindowManager.cs @@ -0,0 +1,62 @@ +using Content.Shared.CCVar; +using Robust.Client; +using Robust.Client.Graphics; +using Robust.Shared; +using Robust.Shared.Configuration; + +namespace Content.Client.GameTicking.Managers; + +public sealed class TitleWindowManager +{ + [Dependency] private readonly IBaseClient _client = default!; + [Dependency] private readonly IClyde _clyde = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly IGameController _gameController = default!; + + public void Initialize() + { + _cfg.OnValueChanged(CVars.GameHostName, OnHostnameChange, true); + _cfg.OnValueChanged(CCVars.GameHostnameInTitlebar, OnHostnameTitleChange, true); + + _client.RunLevelChanged += OnRunLevelChangedChange; + } + + public void Shutdown() + { + _cfg.UnsubValueChanged(CVars.GameHostName, OnHostnameChange); + _cfg.UnsubValueChanged(CCVars.GameHostnameInTitlebar, OnHostnameTitleChange); + } + + private void OnHostnameChange(string hostname) + { + var defaultWindowTitle = _gameController.GameTitle(); + + // Since the game assumes the server name is MyServer and that GameHostnameInTitlebar CCVar is true by default + // Lets just... not show anything. This also is used to revert back to just the game title on disconnect. + if (_client.RunLevel == ClientRunLevel.Initialize) + { + _clyde.SetWindowTitle(defaultWindowTitle); + return; + } + + if (_cfg.GetCVar(CCVars.GameHostnameInTitlebar)) + // If you really dislike the dash I guess change it here + _clyde.SetWindowTitle(hostname + " - " + defaultWindowTitle); + else + _clyde.SetWindowTitle(defaultWindowTitle); + } + + // Clients by default assume game.hostname_in_titlebar is true + // but we need to clear it as soon as we join and actually receive the servers preference on this. + // This will ensure we rerun OnHostnameChange and set the correct title bar name. + private void OnHostnameTitleChange(bool colonthree) + { + OnHostnameChange(_cfg.GetCVar(CVars.GameHostName)); + } + + // This is just used we can rerun the hostname change function when we disconnect to revert back to just the games title. + private void OnRunLevelChangedChange(object? sender, RunLevelChangedEventArgs runLevelChangedEventArgs) + { + OnHostnameChange(_cfg.GetCVar(CVars.GameHostName)); + } +} diff --git a/Content.Client/Hands/Systems/HandsSystem.cs b/Content.Client/Hands/Systems/HandsSystem.cs index ffa6dfd29d6537..68800a2afe517e 100644 --- a/Content.Client/Hands/Systems/HandsSystem.cs +++ b/Content.Client/Hands/Systems/HandsSystem.cs @@ -130,9 +130,9 @@ public void ReloadHandButtons() OnPlayerHandsAdded?.Invoke(hands); } - public override void DoDrop(EntityUid uid, Hand hand, bool doDropInteraction = true, HandsComponent? hands = null) + public override void DoDrop(EntityUid uid, Hand hand, bool doDropInteraction = true, HandsComponent? hands = null, bool log = true) { - base.DoDrop(uid, hand, doDropInteraction, hands); + base.DoDrop(uid, hand, doDropInteraction, hands, log); if (TryComp(hand.HeldEntity, out SpriteComponent? sprite)) sprite.RenderOrder = EntityManager.CurrentTick.Value; diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs index aff01800f943ad..16e8f55a7e274e 100644 --- a/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs @@ -16,19 +16,10 @@ public PlaytimeStatsEntry(string role, TimeSpan playtime, StyleBox styleBox) RoleLabel.Text = role; Playtime = playtime; // store the TimeSpan value directly - PlaytimeLabel.Text = ConvertTimeSpanToHoursMinutes(playtime); // convert to string for display + PlaytimeLabel.Text = playtime.ToString(Loc.GetString("ui-playtime-time-format")); // convert to string for display BackgroundColorPanel.PanelOverride = styleBox; } - private static string ConvertTimeSpanToHoursMinutes(TimeSpan timeSpan) - { - var hours = (int)timeSpan.TotalHours; - var minutes = timeSpan.Minutes; - - var formattedTimeLoc = Loc.GetString("ui-playtime-time-format", ("hours", hours), ("minutes", minutes)); - return formattedTimeLoc; - } - public void UpdateShading(StyleBoxFlat styleBox) { BackgroundColorPanel.PanelOverride = styleBox; diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs b/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs index 3b54bf82daf207..1a530d950f983f 100644 --- a/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs @@ -104,7 +104,7 @@ private void PopulatePlaytimeData() { var overallPlaytime = _jobRequirementsManager.FetchOverallPlaytime(); - var formattedPlaytime = ConvertTimeSpanToHoursMinutes(overallPlaytime); + var formattedPlaytime = overallPlaytime.ToString(Loc.GetString("ui-playtime-time-format")); OverallPlaytimeLabel.Text = Loc.GetString("ui-playtime-overall", ("time", formattedPlaytime)); var rolePlaytimes = _jobRequirementsManager.FetchPlaytimeByRoles(); @@ -134,13 +134,4 @@ private void AddRolePlaytimeEntryToTable(string role, string playtimeString) _sawmill.Error($"The provided playtime string '{playtimeString}' is not in the correct format."); } } - - private static string ConvertTimeSpanToHoursMinutes(TimeSpan timeSpan) - { - var hours = (int) timeSpan.TotalHours; - var minutes = timeSpan.Minutes; - - var formattedTimeLoc = Loc.GetString("ui-playtime-time-format", ("hours", hours), ("minutes", minutes)); - return formattedTimeLoc; - } } diff --git a/Content.Client/IoC/ClientContentIoC.cs b/Content.Client/IoC/ClientContentIoC.cs index e643552f70b3b1..370188e3c61de2 100644 --- a/Content.Client/IoC/ClientContentIoC.cs +++ b/Content.Client/IoC/ClientContentIoC.cs @@ -5,6 +5,7 @@ using Content.Client.DebugMon; using Content.Client.Eui; using Content.Client.Fullscreen; +using Content.Client.GameTicking.Managers; using Content.Client.GhostKick; using Content.Client.Guidebook; using Content.Client.Launcher; @@ -57,6 +58,7 @@ public static void Register() collection.Register(); collection.Register(); collection.Register(); + collection.Register(); } } } diff --git a/Content.Client/Movement/Systems/WaddleAnimationSystem.cs b/Content.Client/Movement/Systems/WaddleAnimationSystem.cs deleted file mode 100644 index 0ed2d04f694af5..00000000000000 --- a/Content.Client/Movement/Systems/WaddleAnimationSystem.cs +++ /dev/null @@ -1,149 +0,0 @@ -using System.Numerics; -using Content.Client.Buckle; -using Content.Client.Gravity; -using Content.Shared.ActionBlocker; -using Content.Shared.Mobs.Systems; -using Content.Shared.Movement.Components; -using Content.Shared.Movement.Systems; -using Robust.Client.Animations; -using Robust.Client.GameObjects; -using Robust.Shared.Animations; - -namespace Content.Client.Movement.Systems; - -public sealed class WaddleAnimationSystem : SharedWaddleAnimationSystem -{ - [Dependency] private readonly AnimationPlayerSystem _animation = default!; - [Dependency] private readonly GravitySystem _gravity = default!; - [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; - [Dependency] private readonly BuckleSystem _buckle = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeAllEvent(OnStartWaddling); - SubscribeLocalEvent(OnAnimationCompleted); - SubscribeAllEvent(OnStopWaddling); - } - - private void OnStartWaddling(StartedWaddlingEvent msg, EntitySessionEventArgs args) - { - if (TryComp(GetEntity(msg.Entity), out var comp)) - StartWaddling((GetEntity(msg.Entity), comp)); - } - - private void OnStopWaddling(StoppedWaddlingEvent msg, EntitySessionEventArgs args) - { - if (TryComp(GetEntity(msg.Entity), out var comp)) - StopWaddling((GetEntity(msg.Entity), comp)); - } - - private void StartWaddling(Entity entity) - { - if (_animation.HasRunningAnimation(entity.Owner, entity.Comp.KeyName)) - return; - - if (!TryComp(entity.Owner, out var mover)) - return; - - if (_gravity.IsWeightless(entity.Owner)) - return; - - if (!_actionBlocker.CanMove(entity.Owner, mover)) - return; - - // Do nothing if buckled in - if (_buckle.IsBuckled(entity.Owner)) - return; - - // Do nothing if crit or dead (for obvious reasons) - if (_mobState.IsIncapacitated(entity.Owner)) - return; - - PlayWaddleAnimationUsing( - (entity.Owner, entity.Comp), - CalculateAnimationLength(entity.Comp, mover), - CalculateTumbleIntensity(entity.Comp) - ); - } - - private static float CalculateTumbleIntensity(WaddleAnimationComponent component) - { - return component.LastStep ? 360 - component.TumbleIntensity : component.TumbleIntensity; - } - - private static float CalculateAnimationLength(WaddleAnimationComponent component, InputMoverComponent mover) - { - return mover.Sprinting ? component.AnimationLength * component.RunAnimationLengthMultiplier : component.AnimationLength; - } - - private void OnAnimationCompleted(Entity entity, ref AnimationCompletedEvent args) - { - if (args.Key != entity.Comp.KeyName) - return; - - if (!TryComp(entity.Owner, out var mover)) - return; - - PlayWaddleAnimationUsing( - (entity.Owner, entity.Comp), - CalculateAnimationLength(entity.Comp, mover), - CalculateTumbleIntensity(entity.Comp) - ); - } - - private void StopWaddling(Entity entity) - { - if (!_animation.HasRunningAnimation(entity.Owner, entity.Comp.KeyName)) - return; - - _animation.Stop(entity.Owner, entity.Comp.KeyName); - - if (!TryComp(entity.Owner, out var sprite)) - return; - - sprite.Offset = new Vector2(); - sprite.Rotation = Angle.FromDegrees(0); - } - - private void PlayWaddleAnimationUsing(Entity entity, float len, float tumbleIntensity) - { - entity.Comp.LastStep = !entity.Comp.LastStep; - - var anim = new Animation() - { - Length = TimeSpan.FromSeconds(len), - AnimationTracks = - { - new AnimationTrackComponentProperty() - { - ComponentType = typeof(SpriteComponent), - Property = nameof(SpriteComponent.Rotation), - InterpolationMode = AnimationInterpolationMode.Linear, - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(0), 0), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(tumbleIntensity), len/2), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(0), len/2), - } - }, - new AnimationTrackComponentProperty() - { - ComponentType = typeof(SpriteComponent), - Property = nameof(SpriteComponent.Offset), - InterpolationMode = AnimationInterpolationMode.Linear, - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(new Vector2(), 0), - new AnimationTrackProperty.KeyFrame(entity.Comp.HopIntensity, len/2), - new AnimationTrackProperty.KeyFrame(new Vector2(), len/2), - } - } - } - }; - - _animation.Play(entity.Owner, anim, entity.Comp.KeyName); - } -} diff --git a/Content.Client/Pinpointer/NavMapSystem.Regions.cs b/Content.Client/Pinpointer/NavMapSystem.Regions.cs new file mode 100644 index 00000000000000..4cc775418ecd19 --- /dev/null +++ b/Content.Client/Pinpointer/NavMapSystem.Regions.cs @@ -0,0 +1,303 @@ +using Content.Shared.Atmos; +using Content.Shared.Pinpointer; +using System.Linq; + +namespace Content.Client.Pinpointer; + +public sealed partial class NavMapSystem +{ + private (AtmosDirection, Vector2i, AtmosDirection)[] _regionPropagationTable = + { + (AtmosDirection.East, new Vector2i(1, 0), AtmosDirection.West), + (AtmosDirection.West, new Vector2i(-1, 0), AtmosDirection.East), + (AtmosDirection.North, new Vector2i(0, 1), AtmosDirection.South), + (AtmosDirection.South, new Vector2i(0, -1), AtmosDirection.North), + }; + + public override void Update(float frameTime) + { + // To prevent compute spikes, only one region is flood filled per frame + var query = AllEntityQuery(); + + while (query.MoveNext(out var ent, out var entNavMapRegions)) + FloodFillNextEnqueuedRegion(ent, entNavMapRegions); + } + + private void FloodFillNextEnqueuedRegion(EntityUid uid, NavMapComponent component) + { + if (!component.QueuedRegionsToFlood.Any()) + return; + + var regionOwner = component.QueuedRegionsToFlood.Dequeue(); + + // If the region is no longer valid, flood the next one in the queue + if (!component.RegionProperties.TryGetValue(regionOwner, out var regionProperties) || + !regionProperties.Seeds.Any()) + { + FloodFillNextEnqueuedRegion(uid, component); + return; + } + + // Flood fill the region, using the region seeds as starting points + var (floodedTiles, floodedChunks) = FloodFillRegion(uid, component, regionProperties); + + // Combine the flooded tiles into larger rectangles + var gridCoords = GetMergedRegionTiles(floodedTiles); + + // Create and assign the new region overlay + var regionOverlay = new NavMapRegionOverlay(regionProperties.UiKey, gridCoords) + { + Color = regionProperties.Color + }; + + component.RegionOverlays[regionOwner] = regionOverlay; + + // To reduce unnecessary future flood fills, we will track which chunks have been flooded by a region owner + + // First remove an old assignments + if (component.RegionOwnerToChunkTable.TryGetValue(regionOwner, out var oldChunks)) + { + foreach (var chunk in oldChunks) + { + if (component.ChunkToRegionOwnerTable.TryGetValue(chunk, out var oldOwners)) + { + oldOwners.Remove(regionOwner); + component.ChunkToRegionOwnerTable[chunk] = oldOwners; + } + } + } + + // Now update with the new assignments + component.RegionOwnerToChunkTable[regionOwner] = floodedChunks; + + foreach (var chunk in floodedChunks) + { + if (!component.ChunkToRegionOwnerTable.TryGetValue(chunk, out var owners)) + owners = new(); + + owners.Add(regionOwner); + component.ChunkToRegionOwnerTable[chunk] = owners; + } + } + + private (HashSet, HashSet) FloodFillRegion(EntityUid uid, NavMapComponent component, NavMapRegionProperties regionProperties) + { + if (!regionProperties.Seeds.Any()) + return (new(), new()); + + var visitedChunks = new HashSet(); + var visitedTiles = new HashSet(); + var tilesToVisit = new Stack(); + + foreach (var regionSeed in regionProperties.Seeds) + { + tilesToVisit.Push(regionSeed); + + while (tilesToVisit.Count > 0) + { + // If the max region area is hit, exit + if (visitedTiles.Count > regionProperties.MaxArea) + return (new(), new()); + + // Pop the top tile from the stack + var current = tilesToVisit.Pop(); + + // If the current tile position has already been visited, + // or is too far away from the seed, continue + if ((regionSeed - current).Length > regionProperties.MaxRadius) + continue; + + if (visitedTiles.Contains(current)) + continue; + + // Determine the tile's chunk index + var chunkOrigin = SharedMapSystem.GetChunkIndices(current, ChunkSize); + var relative = SharedMapSystem.GetChunkRelative(current, ChunkSize); + var idx = GetTileIndex(relative); + + // Extract the tile data + if (!component.Chunks.TryGetValue(chunkOrigin, out var chunk)) + continue; + + var flag = chunk.TileData[idx]; + + // If the current tile is entirely occupied, continue + if ((FloorMask & flag) == 0) + continue; + + if ((WallMask & flag) == WallMask) + continue; + + if ((AirlockMask & flag) == AirlockMask) + continue; + + // Otherwise the tile can be added to this region + visitedTiles.Add(current); + visitedChunks.Add(chunkOrigin); + + // Determine if we can propagate the region into its cardinally adjacent neighbors + // To propagate to a neighbor, movement into the neighbors closest edge must not be + // blocked, and vice versa + + foreach (var (direction, tileOffset, reverseDirection) in _regionPropagationTable) + { + if (!RegionCanPropagateInDirection(chunk, current, direction)) + continue; + + var neighbor = current + tileOffset; + var neighborOrigin = SharedMapSystem.GetChunkIndices(neighbor, ChunkSize); + + if (!component.Chunks.TryGetValue(neighborOrigin, out var neighborChunk)) + continue; + + visitedChunks.Add(neighborOrigin); + + if (!RegionCanPropagateInDirection(neighborChunk, neighbor, reverseDirection)) + continue; + + tilesToVisit.Push(neighbor); + } + } + } + + return (visitedTiles, visitedChunks); + } + + private bool RegionCanPropagateInDirection(NavMapChunk chunk, Vector2i tile, AtmosDirection direction) + { + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + var idx = GetTileIndex(relative); + var flag = chunk.TileData[idx]; + + if ((FloorMask & flag) == 0) + return false; + + var directionMask = 1 << (int)direction; + var wallMask = (int)direction << (int)NavMapChunkType.Wall; + var airlockMask = (int)direction << (int)NavMapChunkType.Airlock; + + if ((wallMask & flag) > 0) + return false; + + if ((airlockMask & flag) > 0) + return false; + + return true; + } + + private List<(Vector2i, Vector2i)> GetMergedRegionTiles(HashSet tiles) + { + if (!tiles.Any()) + return new(); + + var x = tiles.Select(t => t.X); + var minX = x.Min(); + var maxX = x.Max(); + + var y = tiles.Select(t => t.Y); + var minY = y.Min(); + var maxY = y.Max(); + + var matrix = new int[maxX - minX + 1, maxY - minY + 1]; + + foreach (var tile in tiles) + { + var a = tile.X - minX; + var b = tile.Y - minY; + + matrix[a, b] = 1; + } + + return GetMergedRegionTiles(matrix, new Vector2i(minX, minY)); + } + + private List<(Vector2i, Vector2i)> GetMergedRegionTiles(int[,] matrix, Vector2i offset) + { + var output = new List<(Vector2i, Vector2i)>(); + + var rows = matrix.GetLength(0); + var cols = matrix.GetLength(1); + + var dp = new int[rows, cols]; + var coords = (new Vector2i(), new Vector2i()); + var maxArea = 0; + + var count = 0; + + while (!IsArrayEmpty(matrix)) + { + count++; + + if (count > rows * cols) + break; + + // Clear old values + dp = new int[rows, cols]; + coords = (new Vector2i(), new Vector2i()); + maxArea = 0; + + // Initialize the first row of dp + for (int j = 0; j < cols; j++) + { + dp[0, j] = matrix[0, j]; + } + + // Calculate dp values for remaining rows + for (int i = 1; i < rows; i++) + { + for (int j = 0; j < cols; j++) + dp[i, j] = matrix[i, j] == 1 ? dp[i - 1, j] + 1 : 0; + } + + // Find the largest rectangular area seeded for each position in the matrix + for (int i = 0; i < rows; i++) + { + for (int j = 0; j < cols; j++) + { + int minWidth = dp[i, j]; + + for (int k = j; k >= 0; k--) + { + if (dp[i, k] <= 0) + break; + + minWidth = Math.Min(minWidth, dp[i, k]); + var currArea = Math.Max(maxArea, minWidth * (j - k + 1)); + + if (currArea > maxArea) + { + maxArea = currArea; + coords = (new Vector2i(i - minWidth + 1, k), new Vector2i(i, j)); + } + } + } + } + + // Save the recorded rectangle vertices + output.Add((coords.Item1 + offset, coords.Item2 + offset)); + + // Removed the tiles covered by the rectangle from matrix + for (int i = coords.Item1.X; i <= coords.Item2.X; i++) + { + for (int j = coords.Item1.Y; j <= coords.Item2.Y; j++) + matrix[i, j] = 0; + } + } + + return output; + } + + private bool IsArrayEmpty(int[,] matrix) + { + for (int i = 0; i < matrix.GetLength(0); i++) + { + for (int j = 0; j < matrix.GetLength(1); j++) + { + if (matrix[i, j] == 1) + return false; + } + } + + return true; + } +} diff --git a/Content.Client/Pinpointer/NavMapSystem.cs b/Content.Client/Pinpointer/NavMapSystem.cs index 9aeb792a429f5e..47469d4ea79a64 100644 --- a/Content.Client/Pinpointer/NavMapSystem.cs +++ b/Content.Client/Pinpointer/NavMapSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Shared.Pinpointer; using Robust.Shared.GameStates; @@ -16,6 +17,7 @@ private void OnHandleState(EntityUid uid, NavMapComponent component, ref Compone { Dictionary modifiedChunks; Dictionary beacons; + Dictionary regions; switch (args.Current) { @@ -23,6 +25,8 @@ private void OnHandleState(EntityUid uid, NavMapComponent component, ref Compone { modifiedChunks = delta.ModifiedChunks; beacons = delta.Beacons; + regions = delta.Regions; + foreach (var index in component.Chunks.Keys) { if (!delta.AllChunks!.Contains(index)) @@ -35,6 +39,8 @@ private void OnHandleState(EntityUid uid, NavMapComponent component, ref Compone { modifiedChunks = state.Chunks; beacons = state.Beacons; + regions = state.Regions; + foreach (var index in component.Chunks.Keys) { if (!state.Chunks.ContainsKey(index)) @@ -47,13 +53,54 @@ private void OnHandleState(EntityUid uid, NavMapComponent component, ref Compone return; } + // Update region data and queue new regions for flooding + var prevRegionOwners = component.RegionProperties.Keys.ToList(); + var validRegionOwners = new List(); + + component.RegionProperties.Clear(); + + foreach (var (regionOwner, regionData) in regions) + { + if (!regionData.Seeds.Any()) + continue; + + component.RegionProperties[regionOwner] = regionData; + validRegionOwners.Add(regionOwner); + + if (component.RegionOverlays.ContainsKey(regionOwner)) + continue; + + if (component.QueuedRegionsToFlood.Contains(regionOwner)) + continue; + + component.QueuedRegionsToFlood.Enqueue(regionOwner); + } + + // Remove stale region owners + var regionOwnersToRemove = prevRegionOwners.Except(validRegionOwners); + + foreach (var regionOwnerRemoved in regionOwnersToRemove) + RemoveNavMapRegion(uid, component, regionOwnerRemoved); + + // Modify chunks foreach (var (origin, chunk) in modifiedChunks) { var newChunk = new NavMapChunk(origin); Array.Copy(chunk, newChunk.TileData, chunk.Length); component.Chunks[origin] = newChunk; + + // If the affected chunk intersects one or more regions, re-flood them + if (!component.ChunkToRegionOwnerTable.TryGetValue(origin, out var affectedOwners)) + continue; + + foreach (var affectedOwner in affectedOwners) + { + if (!component.QueuedRegionsToFlood.Contains(affectedOwner)) + component.QueuedRegionsToFlood.Enqueue(affectedOwner); + } } + // Refresh beacons component.Beacons.Clear(); foreach (var (nuid, beacon) in beacons) { diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index 413b41c36a6f43..90c2680c4a79f9 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -48,6 +48,7 @@ public partial class NavMapControl : MapGridControl public List<(Vector2, Vector2)> TileLines = new(); public List<(Vector2, Vector2)> TileRects = new(); public List<(Vector2[], Color)> TilePolygons = new(); + public List RegionOverlays = new(); // Default colors public Color WallColor = new(102, 217, 102); @@ -228,7 +229,7 @@ protected override void KeyBindUp(GUIBoundKeyEventArgs args) { if (!blip.Selectable) continue; - + var currentDistance = (_transformSystem.ToMapCoordinates(blip.Coordinates).Position - worldPosition).Length(); if (closestDistance < currentDistance || currentDistance * MinimapScale > MaxSelectableDistance) @@ -319,6 +320,22 @@ protected override void Draw(DrawingHandleScreen handle) } } + // Draw region overlays + if (_grid != null) + { + foreach (var regionOverlay in RegionOverlays) + { + foreach (var gridCoords in regionOverlay.GridCoords) + { + var positionTopLeft = ScalePosition(new Vector2(gridCoords.Item1.X, -gridCoords.Item1.Y) - new Vector2(offset.X, -offset.Y)); + var positionBottomRight = ScalePosition(new Vector2(gridCoords.Item2.X + _grid.TileSize, -gridCoords.Item2.Y - _grid.TileSize) - new Vector2(offset.X, -offset.Y)); + + var box = new UIBox2(positionTopLeft, positionBottomRight); + handle.DrawRect(box, regionOverlay.Color); + } + } + } + // Draw map lines if (TileLines.Any()) { diff --git a/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs b/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs index 6d52c50290e5bb..314b59eda96fe4 100644 --- a/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs +++ b/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs @@ -51,6 +51,8 @@ private void ClientOnRunLevelChanged(object? sender, RunLevelChangedEventArgs e) { // Reset on disconnect, just in case. _roles.Clear(); + _jobWhitelists.Clear(); + _roleBans.Clear(); } } @@ -58,9 +60,6 @@ private void RxRoleBans(MsgRoleBans message) { _sawmill.Debug($"Received roleban info containing {message.Bans.Count} entries."); - if (_roleBans.Equals(message.Bans)) - return; - _roleBans.Clear(); _roleBans.AddRange(message.Bans); Updated?.Invoke(); diff --git a/Content.Client/Power/APC/ApcBoundUserInterface.cs b/Content.Client/Power/APC/ApcBoundUserInterface.cs index a790c5d984ad13..5c4036a9159e6f 100644 --- a/Content.Client/Power/APC/ApcBoundUserInterface.cs +++ b/Content.Client/Power/APC/ApcBoundUserInterface.cs @@ -1,8 +1,9 @@ -using Content.Client.Power.APC.UI; +using Content.Client.Power.APC.UI; +using Content.Shared.Access.Systems; using Content.Shared.APC; using JetBrains.Annotations; -using Robust.Client.GameObjects; using Robust.Client.UserInterface; +using Robust.Shared.Player; namespace Content.Client.Power.APC { @@ -22,6 +23,14 @@ protected override void Open() _menu = this.CreateWindow(); _menu.SetEntity(Owner); _menu.OnBreaker += BreakerPressed; + + var hasAccess = false; + if (PlayerManager.LocalEntity != null) + { + var accessReader = EntMan.System(); + hasAccess = accessReader.IsAllowed((EntityUid)PlayerManager.LocalEntity, Owner); + } + _menu?.SetAccessEnabled(hasAccess); } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/Power/APC/UI/ApcMenu.xaml.cs b/Content.Client/Power/APC/UI/ApcMenu.xaml.cs index 2f61ea63a86403..25e885b3c7a185 100644 --- a/Content.Client/Power/APC/UI/ApcMenu.xaml.cs +++ b/Content.Client/Power/APC/UI/ApcMenu.xaml.cs @@ -1,4 +1,4 @@ -using Robust.Client.AutoGenerated; +using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.XAML; using Robust.Client.GameObjects; using Robust.Shared.IoC; @@ -36,19 +36,9 @@ public void UpdateState(BoundUserInterfaceState state) { var castState = (ApcBoundInterfaceState) state; - if (BreakerButton != null) + if (!BreakerButton.Disabled) { - if(castState.HasAccess == false) - { - BreakerButton.Disabled = true; - BreakerButton.ToolTip = Loc.GetString("apc-component-insufficient-access"); - } - else - { - BreakerButton.Disabled = false; - BreakerButton.ToolTip = null; - BreakerButton.Pressed = castState.MainBreaker; - } + BreakerButton.Pressed = castState.MainBreaker; } if (PowerLabel != null) @@ -86,6 +76,20 @@ public void UpdateState(BoundUserInterfaceState state) } } + public void SetAccessEnabled(bool hasAccess) + { + if(hasAccess) + { + BreakerButton.Disabled = false; + BreakerButton.ToolTip = null; + } + else + { + BreakerButton.Disabled = true; + BreakerButton.ToolTip = Loc.GetString("apc-component-insufficient-access"); + } + } + private void UpdateChargeBarColor(float charge) { if (ChargeBar == null) diff --git a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml index 913b07a8f65670..44b1ff95e7feab 100644 --- a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml +++ b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml @@ -2,7 +2,8 @@ xmlns="https://spacestation14.io" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls" - xmlns:co="clr-namespace:Content.Client.UserInterface.Controls"> + xmlns:co="clr-namespace:Content.Client.UserInterface.Controls" + MinHeight="210"> diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs index 7604d5f8808bf1..26ec75f99570c4 100644 --- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs @@ -28,6 +28,7 @@ public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem [Dependency] private readonly AnimationPlayerSystem _animation = default!; [Dependency] private readonly InputSystem _inputSystem = default!; [Dependency] private readonly SharedColorFlashEffectSystem _color = default!; + [Dependency] private readonly MapSystem _map = default!; private EntityQuery _xformQuery; @@ -109,11 +110,11 @@ public override void Update(float frameTime) if (MapManager.TryFindGridAt(mousePos, out var gridUid, out _)) { - coordinates = EntityCoordinates.FromMap(gridUid, mousePos, TransformSystem, EntityManager); + coordinates = TransformSystem.ToCoordinates(gridUid, mousePos); } else { - coordinates = EntityCoordinates.FromMap(MapManager.GetMapEntityId(mousePos.MapId), mousePos, TransformSystem, EntityManager); + coordinates = TransformSystem.ToCoordinates(_map.GetMap(mousePos.MapId), mousePos); } // Heavy attack. diff --git a/Content.IntegrationTests/Pair/TestPair.Helpers.cs b/Content.IntegrationTests/Pair/TestPair.Helpers.cs index 4604cd82966689..1b4825cc9c7ea3 100644 --- a/Content.IntegrationTests/Pair/TestPair.Helpers.cs +++ b/Content.IntegrationTests/Pair/TestPair.Helpers.cs @@ -107,13 +107,41 @@ public async Task WaitClientCommand(string cmd, int numTicks = 10) /// /// Retrieve all entity prototypes that have some component. /// - public List GetPrototypesWithComponent( + public List<(EntityPrototype, T)> GetPrototypesWithComponent( HashSet? ignored = null, bool ignoreAbstract = true, bool ignoreTestPrototypes = true) where T : IComponent { var id = Server.ResolveDependency().GetComponentName(typeof(T)); + var list = new List<(EntityPrototype, T)>(); + foreach (var proto in Server.ProtoMan.EnumeratePrototypes()) + { + if (ignored != null && ignored.Contains(proto.ID)) + continue; + + if (ignoreAbstract && proto.Abstract) + continue; + + if (ignoreTestPrototypes && IsTestPrototype(proto)) + continue; + + if (proto.Components.TryGetComponent(id, out var cmp)) + list.Add((proto, (T)cmp)); + } + + return list; + } + + /// + /// Retrieve all entity prototypes that have some component. + /// + public List GetPrototypesWithComponent(Type type, + HashSet? ignored = null, + bool ignoreAbstract = true, + bool ignoreTestPrototypes = true) + { + var id = Server.ResolveDependency().GetComponentName(type); var list = new List(); foreach (var proto in Server.ProtoMan.EnumeratePrototypes()) { @@ -127,7 +155,7 @@ public List GetPrototypesWithComponent( continue; if (proto.Components.ContainsKey(id)) - list.Add(proto); + list.Add((proto)); } return list; diff --git a/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs b/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs index a4563aa37e6e64..039c0c7b184df1 100644 --- a/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs +++ b/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs @@ -1,4 +1,5 @@ #nullable enable +using System.Collections.Generic; using System.Linq; using Content.Server.Body.Components; using Content.Server.GameTicking; @@ -120,8 +121,8 @@ public async Task TryStopNukeOpsFromConstantlyFailing() Assert.That(roleSys.MindHasRole(mind)); Assert.That(factionSys.IsMember(player, "Syndicate"), Is.True); Assert.That(factionSys.IsMember(player, "NanoTrasen"), Is.False); - var roles = roleSys.MindGetAllRoles(mind); - var cmdRoles = roles.Where(x => x.Prototype == "NukeopsCommander" && x.Component is NukeopsRoleComponent); + var roles = roleSys.MindGetAllRoleInfo(mind); + var cmdRoles = roles.Where(x => x.Prototype == "NukeopsCommander"); Assert.That(cmdRoles.Count(), Is.EqualTo(1)); // The second dummy player should be a medic @@ -131,8 +132,8 @@ public async Task TryStopNukeOpsFromConstantlyFailing() Assert.That(roleSys.MindHasRole(dummyMind)); Assert.That(factionSys.IsMember(dummyEnts[1], "Syndicate"), Is.True); Assert.That(factionSys.IsMember(dummyEnts[1], "NanoTrasen"), Is.False); - roles = roleSys.MindGetAllRoles(dummyMind); - cmdRoles = roles.Where(x => x.Prototype == "NukeopsMedic" && x.Component is NukeopsRoleComponent); + roles = roleSys.MindGetAllRoleInfo(dummyMind); + cmdRoles = roles.Where(x => x.Prototype == "NukeopsMedic"); Assert.That(cmdRoles.Count(), Is.EqualTo(1)); // The other two players should have just spawned in as normal. @@ -141,13 +142,14 @@ public async Task TryStopNukeOpsFromConstantlyFailing() void CheckDummy(int i) { var ent = dummyEnts[i]; - var mind = mindSys.GetMind(ent)!.Value; + var mindCrew = mindSys.GetMind(ent)!.Value; Assert.That(entMan.HasComponent(ent), Is.False); - Assert.That(roleSys.MindIsAntagonist(mind), Is.False); - Assert.That(roleSys.MindHasRole(mind), Is.False); + Assert.That(roleSys.MindIsAntagonist(mindCrew), Is.False); + Assert.That(roleSys.MindHasRole(mindCrew), Is.False); Assert.That(factionSys.IsMember(ent, "Syndicate"), Is.False); Assert.That(factionSys.IsMember(ent, "NanoTrasen"), Is.True); - Assert.That(roleSys.MindGetAllRoles(mind).Any(x => x.Component is NukeopsRoleComponent), Is.False); + var nukeroles = new List() { "Nukeops", "NukeopsMedic", "NukeopsCommander" }; + Assert.That(roleSys.MindGetAllRoleInfo(mindCrew).Any(x => nukeroles.Contains(x.Prototype)), Is.False); } // The game rule exists, and all the stations/shuttles/maps are properly initialized @@ -238,7 +240,8 @@ await server.WaitAssertion(() => for (var i = 0; i < nukies.Length - 1; i++) { entMan.DeleteEntity(nukies[i]); - Assert.That(roundEndSys.IsRoundEndRequested, Is.False, + Assert.That(roundEndSys.IsRoundEndRequested, + Is.False, $"The round ended, but {nukies.Length - i - 1} nukies are still alive!"); } // Delete the last nukie and make sure the round ends. diff --git a/Content.IntegrationTests/Tests/Internals/AutoInternalsTests.cs b/Content.IntegrationTests/Tests/Internals/AutoInternalsTests.cs index dbd612c71012a8..d153536873634f 100644 --- a/Content.IntegrationTests/Tests/Internals/AutoInternalsTests.cs +++ b/Content.IntegrationTests/Tests/Internals/AutoInternalsTests.cs @@ -2,7 +2,6 @@ using Content.Server.Body.Systems; using Content.Server.Station.Systems; using Content.Shared.Preferences; -using Content.Shared.Roles.Jobs; namespace Content.IntegrationTests.Tests.Internals; @@ -25,10 +24,7 @@ public async Task TestInternalsAutoActivateInSpaceForStationSpawn() await server.WaitAssertion(() => { var profile = new HumanoidCharacterProfile(); - var dummy = stationSpawning.SpawnPlayerMob(testMap.GridCoords, new JobComponent() - { - Prototype = "TestInternalsDummy" - }, profile, station: null); + var dummy = stationSpawning.SpawnPlayerMob(testMap.GridCoords, "TestInternalsDummy", profile, station: null); Assert.That(atmos.HasAtmosphere(testMap.Grid), Is.False, "Test map has atmosphere - test needs adjustment!"); Assert.That(internals.AreInternalsWorking(dummy), "Internals did not automatically connect!"); diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.cs index 3b7ecf0135f658..d4d551f4e0aad0 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.cs @@ -1,10 +1,8 @@ #nullable enable using System.Linq; -using Content.Server.Ghost; using Content.Server.Ghost.Roles; using Content.Server.Ghost.Roles.Components; using Content.Server.Mind.Commands; -using Content.Server.Players; using Content.Server.Roles; using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; @@ -18,7 +16,6 @@ using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.GameObjects; -using Robust.Shared.IoC; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -287,27 +284,27 @@ await server.WaitAssertion(() => Assert.Multiple(() => { Assert.That(roleSystem.MindHasRole(mindId), Is.False); - Assert.That(roleSystem.MindHasRole(mindId), Is.False); + Assert.That(roleSystem.MindHasRole(mindId), Is.False); }); - var traitorRole = new TraitorRoleComponent(); + var traitorRole = "MindRoleTraitor"; roleSystem.MindAddRole(mindId, traitorRole); Assert.Multiple(() => { Assert.That(roleSystem.MindHasRole(mindId)); - Assert.That(roleSystem.MindHasRole(mindId), Is.False); + Assert.That(roleSystem.MindHasRole(mindId), Is.False); }); - var jobRole = new JobComponent(); + var jobRole = ""; - roleSystem.MindAddRole(mindId, jobRole); + roleSystem.MindAddJobRole(mindId, jobPrototype:jobRole); Assert.Multiple(() => { Assert.That(roleSystem.MindHasRole(mindId)); - Assert.That(roleSystem.MindHasRole(mindId)); + Assert.That(roleSystem.MindHasRole(mindId)); }); roleSystem.MindRemoveRole(mindId); @@ -315,15 +312,15 @@ await server.WaitAssertion(() => Assert.Multiple(() => { Assert.That(roleSystem.MindHasRole(mindId), Is.False); - Assert.That(roleSystem.MindHasRole(mindId)); + Assert.That(roleSystem.MindHasRole(mindId)); }); - roleSystem.MindRemoveRole(mindId); + roleSystem.MindRemoveRole(mindId); Assert.Multiple(() => { Assert.That(roleSystem.MindHasRole(mindId), Is.False); - Assert.That(roleSystem.MindHasRole(mindId), Is.False); + Assert.That(roleSystem.MindHasRole(mindId), Is.False); }); }); diff --git a/Content.IntegrationTests/Tests/Minds/RoleTests.cs b/Content.IntegrationTests/Tests/Minds/RoleTests.cs new file mode 100644 index 00000000000000..fcfe1236cfc411 --- /dev/null +++ b/Content.IntegrationTests/Tests/Minds/RoleTests.cs @@ -0,0 +1,95 @@ +using System.Linq; +using Content.Server.Roles; +using Content.Shared.Roles; +using Content.Shared.Roles.Jobs; +using Robust.Shared.GameObjects; +using Robust.Shared.Reflection; + +namespace Content.IntegrationTests.Tests.Minds; + +[TestFixture] +public sealed class RoleTests +{ + /// + /// Check that any prototype with a is properly configured + /// + [Test] + public async Task ValidateRolePrototypes() + { + await using var pair = await PoolManager.GetServerClient(); + + var jobComp = pair.Server.ResolveDependency().GetComponentName(typeof(JobRoleComponent)); + + Assert.Multiple(() => + { + foreach (var (proto, comp) in pair.GetPrototypesWithComponent()) + { + Assert.That(comp.AntagPrototype == null || comp.JobPrototype == null, $"Role {proto.ID} has both a job and antag prototype."); + Assert.That(!comp.ExclusiveAntag || comp.Antag, $"Role {proto.ID} is marked as an exclusive antag, despite not being an antag."); + Assert.That(comp.Antag || comp.AntagPrototype == null, $"Role {proto.ID} has an antag prototype, despite not being an antag."); + + if (comp.JobPrototype != null) + Assert.That(proto.Components.ContainsKey(jobComp), $"Role {proto.ID} is a job, despite not having a job prototype."); + + // It is possible that this is meant to be supported? Though I would assume that it would be for + // admin / prototype uploads, and that pre-defined roles should still check this. + Assert.That(!comp.Antag || comp.AntagPrototype != null , $"Role {proto.ID} is an antag, despite not having a antag prototype."); + } + }); + + await pair.CleanReturnAsync(); + } + + /// + /// Check that any prototype with a also has a properly configured + /// + /// + [Test] + public async Task ValidateJobPrototypes() + { + await using var pair = await PoolManager.GetServerClient(); + + var mindCompId = pair.Server.ResolveDependency().GetComponentName(typeof(MindRoleComponent)); + + Assert.Multiple(() => + { + foreach (var (proto, comp) in pair.GetPrototypesWithComponent()) + { + if (proto.Components.TryGetComponent(mindCompId, out var mindComp)) + Assert.That(((MindRoleComponent)mindComp).JobPrototype, Is.Not.Null); + } + }); + + await pair.CleanReturnAsync(); + } + + /// + /// Check that any prototype with a component that inherits from also has a + /// + /// + [Test] + public async Task ValidateRolesHaveMindRoleComp() + { + await using var pair = await PoolManager.GetServerClient(); + + var refMan = pair.Server.ResolveDependency(); + var mindCompId = pair.Server.ResolveDependency().GetComponentName(typeof(MindRoleComponent)); + + var compTypes = refMan.GetAllChildren(typeof(BaseMindRoleComponent)) + .Append(typeof(RoleBriefingComponent)) + .Where(x => !x.IsAbstract); + + Assert.Multiple(() => + { + foreach (var comp in compTypes) + { + foreach (var proto in pair.GetPrototypesWithComponent(comp)) + { + Assert.That(proto.Components.ContainsKey(mindCompId), $"Role {proto.ID} does not have a {nameof(MindRoleComponent)} despite having a {comp.Name}"); + } + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Preferences/LoadoutTests.cs b/Content.IntegrationTests/Tests/Preferences/LoadoutTests.cs index 6746d6d5a9405b..267b3637e0a8f6 100644 --- a/Content.IntegrationTests/Tests/Preferences/LoadoutTests.cs +++ b/Content.IntegrationTests/Tests/Preferences/LoadoutTests.cs @@ -3,7 +3,6 @@ using Content.Shared.Inventory; using Content.Shared.Preferences; using Content.Shared.Preferences.Loadouts; -using Content.Shared.Roles.Jobs; using Robust.Shared.GameObjects; using Robust.Shared.Prototypes; @@ -68,10 +67,7 @@ await server.WaitAssertion(() => profile.SetLoadout(new RoleLoadout("LoadoutTester")); - var tester = stationSystem.SpawnPlayerMob(testMap.GridCoords, job: new JobComponent() - { - Prototype = "LoadoutTester" - }, profile, station: null); + var tester = stationSystem.SpawnPlayerMob(testMap.GridCoords, job: "LoadoutTester", profile, station: null); var slotQuery = inventorySystem.GetSlotEnumerator(tester); var checkedCount = 0; diff --git a/Content.IntegrationTests/Tests/Roles/StartingGearStorageTests.cs b/Content.IntegrationTests/Tests/Roles/StartingGearStorageTests.cs index f8060edb2b4e0c..3b2935258a7986 100644 --- a/Content.IntegrationTests/Tests/Roles/StartingGearStorageTests.cs +++ b/Content.IntegrationTests/Tests/Roles/StartingGearStorageTests.cs @@ -35,15 +35,16 @@ await server.WaitAssertion(() => { foreach (var gearProto in protos) { - var backpackProto = ((IEquipmentLoadout) gearProto).GetGear("back"); - if (backpackProto == string.Empty) - continue; - - var bag = server.EntMan.SpawnEntity(backpackProto, coords); var ents = new ValueList(); foreach (var (slot, entProtos) in gearProto.Storage) { + ents.Clear(); + var storageProto = ((IEquipmentLoadout)gearProto).GetGear(slot); + if (storageProto == string.Empty) + continue; + + var bag = server.EntMan.SpawnEntity(storageProto, coords); if (entProtos.Count == 0) continue; @@ -59,9 +60,8 @@ await server.WaitAssertion(() => server.EntMan.DeleteEntity(ent); } + server.EntMan.DeleteEntity(bag); } - - server.EntMan.DeleteEntity(bag); } mapManager.DeleteMap(testMap.MapId); diff --git a/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs b/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs index bf75188f02962e..da7e1e8e9b028b 100644 --- a/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs +++ b/Content.IntegrationTests/Tests/Sprite/ItemSpriteTest.cs @@ -40,7 +40,7 @@ public async Task AllItemsHaveSpritesTest() await pair.Client.WaitPost(() => { - foreach (var proto in pair.GetPrototypesWithComponent(Ignored)) + foreach (var (proto, _) in pair.GetPrototypesWithComponent(Ignored)) { var dummy = pair.Client.EntMan.Spawn(proto.ID); pair.Client.EntMan.RunMapInit(dummy, pair.Client.MetaData(dummy)); diff --git a/Content.IntegrationTests/Tests/StorageTest.cs b/Content.IntegrationTests/Tests/StorageTest.cs index 2d28534347d248..983ec7093621b6 100644 --- a/Content.IntegrationTests/Tests/StorageTest.cs +++ b/Content.IntegrationTests/Tests/StorageTest.cs @@ -94,14 +94,13 @@ public async Task TestSufficientSpaceForFill() await Assert.MultipleAsync(async () => { - foreach (var proto in pair.GetPrototypesWithComponent()) + foreach (var (proto, fill) in pair.GetPrototypesWithComponent()) { if (proto.HasComponent(compFact)) continue; StorageComponent? storage = null; ItemComponent? item = null; - StorageFillComponent fill = default!; var size = 0; await server.WaitAssertion(() => { @@ -112,7 +111,6 @@ await server.WaitAssertion(() => } proto.TryGetComponent("Item", out item); - fill = (StorageFillComponent) proto.Components[id].Component; size = GetFillSize(fill, false, protoMan, itemSys); }); @@ -179,7 +177,7 @@ public async Task TestSufficientSpaceForEntityStorageFill() var itemSys = entMan.System(); - foreach (var proto in pair.GetPrototypesWithComponent()) + foreach (var (proto, fill) in pair.GetPrototypesWithComponent()) { if (proto.HasComponent(compFact)) continue; @@ -192,7 +190,6 @@ await server.WaitAssertion(() => if (entStorage == null) return; - var fill = (StorageFillComponent) proto.Components[id].Component; var size = GetFillSize(fill, true, protoMan, itemSys); Assert.That(size, Is.LessThanOrEqualTo(entStorage.Capacity), $"{proto.ID} storage fill is too large."); diff --git a/Content.Server/Access/Systems/AgentIDCardSystem.cs b/Content.Server/Access/Systems/AgentIDCardSystem.cs index 4de908bc3019a2..a38aefce9354b4 100644 --- a/Content.Server/Access/Systems/AgentIDCardSystem.cs +++ b/Content.Server/Access/Systems/AgentIDCardSystem.cs @@ -67,7 +67,7 @@ private void AfterUIOpen(EntityUid uid, AgentIDCardComponent component, AfterAct if (!TryComp(uid, out var idCard)) return; - var state = new AgentIDCardBoundUserInterfaceState(idCard.FullName ?? "", idCard.JobTitle ?? "", idCard.JobIcon); + var state = new AgentIDCardBoundUserInterfaceState(idCard.FullName ?? "", idCard.LocalizedJobTitle ?? "", idCard.JobIcon); _uiSystem.SetUiState(uid, AgentIDCardUiKey.Key, state); } diff --git a/Content.Server/Access/Systems/IdCardConsoleSystem.cs b/Content.Server/Access/Systems/IdCardConsoleSystem.cs index e02664f2bbdfb9..a9e5d9a6d3ef2c 100644 --- a/Content.Server/Access/Systems/IdCardConsoleSystem.cs +++ b/Content.Server/Access/Systems/IdCardConsoleSystem.cs @@ -96,7 +96,7 @@ private void UpdateUserInterface(EntityUid uid, IdCardConsoleComponent component PrivilegedIdIsAuthorized(uid, component), true, targetIdComponent.FullName, - targetIdComponent.JobTitle, + targetIdComponent.LocalizedJobTitle, targetAccessComponent.Tags.ToList(), possibleAccess, jobProto, diff --git a/Content.Server/Administration/Managers/BanManager.cs b/Content.Server/Administration/Managers/BanManager.cs index 946770d6aafceb..1cdfb822242e08 100644 --- a/Content.Server/Administration/Managers/BanManager.cs +++ b/Content.Server/Administration/Managers/BanManager.cs @@ -14,13 +14,13 @@ using Content.Shared.Roles; using Robust.Server.Player; using Robust.Shared.Asynchronous; +using Robust.Shared.Collections; using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; -using Robust.Shared.Utility; namespace Content.Server.Administration.Managers; @@ -45,14 +45,12 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit public const string SawmillId = "admin.bans"; public const string JobPrefix = "Job:"; - private readonly Dictionary> _cachedRoleBans = new(); + private readonly Dictionary> _cachedRoleBans = new(); // Cached ban exemption flags are used to handle private readonly Dictionary _cachedBanExemptions = new(); public void Initialize() { - _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; - _netManager.RegisterNetMessage(); _db.SubscribeToNotifications(OnDatabaseNotification); @@ -63,12 +61,23 @@ public void Initialize() private async Task CachePlayerData(ICommonSession player, CancellationToken cancel) { - // Yeah so role ban loading code isn't integrated with exempt flag loading code. - // Have you seen how garbage role ban code code is? I don't feel like refactoring it right now. - var flags = await _db.GetBanExemption(player.UserId, cancel); + + var netChannel = player.Channel; + ImmutableArray? hwId = netChannel.UserData.HWId.Length == 0 ? null : netChannel.UserData.HWId; + var roleBans = await _db.GetServerRoleBansAsync(netChannel.RemoteEndPoint.Address, player.UserId, hwId, false); + + var userRoleBans = new List(); + foreach (var ban in roleBans) + { + userRoleBans.Add(ban); + } + cancel.ThrowIfCancellationRequested(); _cachedBanExemptions[player] = flags; + _cachedRoleBans[player] = userRoleBans; + + SendRoleBans(player); } private void ClearPlayerData(ICommonSession player) @@ -76,25 +85,15 @@ private void ClearPlayerData(ICommonSession player) _cachedBanExemptions.Remove(player); } - private async void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) - { - if (e.NewStatus != SessionStatus.Connected || _cachedRoleBans.ContainsKey(e.Session.UserId)) - return; - - var netChannel = e.Session.Channel; - ImmutableArray? hwId = netChannel.UserData.HWId.Length == 0 ? null : netChannel.UserData.HWId; - await CacheDbRoleBans(e.Session.UserId, netChannel.RemoteEndPoint.Address, hwId); - - SendRoleBans(e.Session); - } - private async Task AddRoleBan(ServerRoleBanDef banDef) { banDef = await _db.AddServerRoleBanAsync(banDef); - if (banDef.UserId != null) + if (banDef.UserId != null + && _playerManager.TryGetSessionById(banDef.UserId, out var player) + && _cachedRoleBans.TryGetValue(player, out var cachedBans)) { - _cachedRoleBans.GetOrNew(banDef.UserId.Value).Add(banDef); + cachedBans.Add(banDef); } return true; @@ -102,31 +101,21 @@ private async Task AddRoleBan(ServerRoleBanDef banDef) public HashSet? GetRoleBans(NetUserId playerUserId) { - return _cachedRoleBans.TryGetValue(playerUserId, out var roleBans) + if (!_playerManager.TryGetSessionById(playerUserId, out var session)) + return null; + + return _cachedRoleBans.TryGetValue(session, out var roleBans) ? roleBans.Select(banDef => banDef.Role).ToHashSet() : null; } - private async Task CacheDbRoleBans(NetUserId userId, IPAddress? address = null, ImmutableArray? hwId = null) - { - var roleBans = await _db.GetServerRoleBansAsync(address, userId, hwId, false); - - var userRoleBans = new HashSet(); - foreach (var ban in roleBans) - { - userRoleBans.Add(ban); - } - - _cachedRoleBans[userId] = userRoleBans; - } - public void Restart() { // Clear out players that have disconnected. - var toRemove = new List(); + var toRemove = new ValueList(); foreach (var player in _cachedRoleBans.Keys) { - if (!_playerManager.TryGetSessionById(player, out _)) + if (player.Status == SessionStatus.Disconnected) toRemove.Add(player); } @@ -138,7 +127,7 @@ public void Restart() // Check for expired bans foreach (var roleBans in _cachedRoleBans.Values) { - roleBans.RemoveWhere(ban => DateTimeOffset.Now > ban.ExpirationTime); + roleBans.RemoveAll(ban => DateTimeOffset.Now > ban.ExpirationTime); } } @@ -281,9 +270,9 @@ public async void CreateRoleBan(NetUserId? target, string? targetUsername, NetUs var length = expires == null ? Loc.GetString("cmd-roleban-inf") : Loc.GetString("cmd-roleban-until", ("expires", expires)); _chat.SendAdminAlert(Loc.GetString("cmd-roleban-success", ("target", targetUsername ?? "null"), ("role", role), ("reason", reason), ("length", length))); - if (target != null) + if (target != null && _playerManager.TryGetSessionById(target.Value, out var session)) { - SendRoleBans(target.Value); + SendRoleBans(session); } } @@ -311,10 +300,12 @@ public async Task PardonRoleBan(int banId, NetUserId? unbanningAdmin, Da await _db.AddServerRoleUnbanAsync(new ServerRoleUnbanDef(banId, unbanningAdmin, DateTimeOffset.Now)); - if (ban.UserId is { } player && _cachedRoleBans.TryGetValue(player, out var roleBans)) + if (ban.UserId is { } player + && _playerManager.TryGetSessionById(player, out var session) + && _cachedRoleBans.TryGetValue(session, out var roleBans)) { - roleBans.RemoveWhere(roleBan => roleBan.Id == ban.Id); - SendRoleBans(player); + roleBans.RemoveAll(roleBan => roleBan.Id == ban.Id); + SendRoleBans(session); } return $"Pardoned ban with id {banId}"; @@ -322,8 +313,12 @@ public async Task PardonRoleBan(int banId, NetUserId? unbanningAdmin, Da public HashSet>? GetJobBans(NetUserId playerUserId) { - if (!_cachedRoleBans.TryGetValue(playerUserId, out var roleBans)) + if (!_playerManager.TryGetSessionById(playerUserId, out var session)) + return null; + + if (!_cachedRoleBans.TryGetValue(session, out var roleBans)) return null; + return roleBans .Where(ban => ban.Role.StartsWith(JobPrefix, StringComparison.Ordinal)) .Select(ban => new ProtoId(ban.Role[JobPrefix.Length..])) @@ -331,19 +326,9 @@ public async Task PardonRoleBan(int banId, NetUserId? unbanningAdmin, Da } #endregion - public void SendRoleBans(NetUserId userId) - { - if (!_playerManager.TryGetSessionById(userId, out var player)) - { - return; - } - - SendRoleBans(player); - } - public void SendRoleBans(ICommonSession pSession) { - var roleBans = _cachedRoleBans.GetValueOrDefault(pSession.UserId) ?? new HashSet(); + var roleBans = _cachedRoleBans.GetValueOrDefault(pSession) ?? new List(); var bans = new MsgRoleBans() { Bans = roleBans.Select(o => o.Role).ToList() diff --git a/Content.Server/Administration/Managers/IBanManager.cs b/Content.Server/Administration/Managers/IBanManager.cs index b60e0a25351df7..c11e310a825386 100644 --- a/Content.Server/Administration/Managers/IBanManager.cs +++ b/Content.Server/Administration/Managers/IBanManager.cs @@ -47,12 +47,6 @@ public interface IBanManager /// The time at which this role ban was pardoned. public Task PardonRoleBan(int banId, NetUserId? unbanningAdmin, DateTimeOffset unbanTime); - /// - /// Sends role bans to the target - /// - /// Player's user ID - public void SendRoleBans(NetUserId userId); - /// /// Sends role bans to the target /// diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index e4554d7d83e07c..d81699c82d0dfa 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -95,9 +95,10 @@ private void AddSmiteVerbs(GetVerbsEvent args) if (HasComp(args.Target) || HasComp(args.Target)) return; + var explodeName = Loc.GetString("admin-smite-explode-name").ToLowerInvariant(); Verb explode = new() { - Text = "admin-smite-explode-name", + Text = explodeName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/smite.svg.192dpi.png")), Act = () => @@ -111,13 +112,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) _bodySystem.GibBody(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-explode-description") + Message = string.Join(": ", explodeName, Loc.GetString("admin-smite-explode-description")) // we do this so the description tells admins the Text to run it via console. }; args.Verbs.Add(explode); + var chessName = Loc.GetString("admin-smite-chess-dimension-name").ToLowerInvariant(); Verb chess = new() { - Text = "admin-smite-chess-dimension-name", + Text = chessName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Fun/Tabletop/chessboard.rsi"), "chessboard"), Act = () => @@ -137,12 +139,13 @@ private void AddSmiteVerbs(GetVerbsEvent args) xform.WorldRotation = Angle.Zero; }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-chess-dimension-description") + Message = string.Join(": ", chessName, Loc.GetString("admin-smite-chess-dimension-description")) }; args.Verbs.Add(chess); if (TryComp(args.Target, out var flammable)) { + var flamesName = Loc.GetString("admin-smite-set-alight-name").ToLowerInvariant(); Verb flames = new() { Text = "admin-smite-set-alight-name", @@ -160,14 +163,15 @@ private void AddSmiteVerbs(GetVerbsEvent args) Filter.PvsExcept(args.Target), true, PopupType.MediumCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-set-alight-description") + Message = string.Join(": ", flamesName, Loc.GetString("admin-smite-set-alight-description")) }; args.Verbs.Add(flames); } + var monkeyName = Loc.GetString("admin-smite-monkeyify-name").ToLowerInvariant(); Verb monkey = new() { - Text = "admin-smite-monkeyify-name", + Text = monkeyName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Animals/monkey.rsi"), "monkey"), Act = () => @@ -175,13 +179,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) _polymorphSystem.PolymorphEntity(args.Target, "AdminMonkeySmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-monkeyify-description") + Message = string.Join(": ", monkeyName, Loc.GetString("admin-smite-monkeyify-description")) }; args.Verbs.Add(monkey); + var disposalBinName = Loc.GetString("admin-smite-garbage-can-name").ToLowerInvariant(); Verb disposalBin = new() { - Text = "admin-smite-electrocute-name", + Text = disposalBinName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Structures/Piping/disposal.rsi"), "disposal"), Act = () => @@ -189,16 +194,17 @@ private void AddSmiteVerbs(GetVerbsEvent args) _polymorphSystem.PolymorphEntity(args.Target, "AdminDisposalsSmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-garbage-can-description") + Message = string.Join(": ", disposalBinName, Loc.GetString("admin-smite-garbage-can-description")) }; args.Verbs.Add(disposalBin); if (TryComp(args.Target, out var damageable) && HasComp(args.Target)) { + var hardElectrocuteName = Loc.GetString("admin-smite-electrocute-name").ToLowerInvariant(); Verb hardElectrocute = new() { - Text = "admin-smite-creampie-name", + Text = hardElectrocuteName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Clothing/Hands/Gloves/Color/yellow.rsi"), "icon"), Act = () => @@ -234,16 +240,17 @@ private void AddSmiteVerbs(GetVerbsEvent args) TimeSpan.FromSeconds(30), refresh: true, ignoreInsulation: true); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-electrocute-description") + Message = string.Join(": ", hardElectrocuteName, Loc.GetString("admin-smite-electrocute-description")) }; args.Verbs.Add(hardElectrocute); } if (TryComp(args.Target, out var creamPied)) { + var creamPieName = Loc.GetString("admin-smite-creampie-name").ToLowerInvariant(); Verb creamPie = new() { - Text = "admin-smite-remove-blood-name", + Text = creamPieName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Consumable/Food/Baked/pie.rsi"), "plain-slice"), Act = () => @@ -251,16 +258,17 @@ private void AddSmiteVerbs(GetVerbsEvent args) _creamPieSystem.SetCreamPied(args.Target, creamPied, true); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-creampie-description") + Message = string.Join(": ", creamPieName, Loc.GetString("admin-smite-creampie-description")) }; args.Verbs.Add(creamPie); } if (TryComp(args.Target, out var bloodstream)) { + var bloodRemovalName = Loc.GetString("admin-smite-remove-blood-name").ToLowerInvariant(); Verb bloodRemoval = new() { - Text = "admin-smite-vomit-organs-name", + Text = bloodRemovalName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Fluids/tomato_splat.rsi"), "puddle-1"), Act = () => @@ -273,7 +281,7 @@ private void AddSmiteVerbs(GetVerbsEvent args) Filter.PvsExcept(args.Target), true, PopupType.MediumCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-remove-blood-description") + Message = string.Join(": ", bloodRemovalName, Loc.GetString("admin-smite-remove-blood-description")) }; args.Verbs.Add(bloodRemoval); } @@ -281,9 +289,10 @@ private void AddSmiteVerbs(GetVerbsEvent args) // bobby... if (TryComp(args.Target, out var body)) { + var vomitOrgansName = Loc.GetString("admin-smite-vomit-organs-name").ToLowerInvariant(); Verb vomitOrgans = new() { - Text = "admin-smite-remove-hands-name", + Text = vomitOrgansName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new("/Textures/Fluids/vomit_toxin.rsi"), "vomit_toxin-1"), Act = () => @@ -305,13 +314,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) Filter.PvsExcept(args.Target), true, PopupType.MediumCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-vomit-organs-description") + Message = string.Join(": ", vomitOrgansName, Loc.GetString("admin-smite-vomit-organs-description")) }; args.Verbs.Add(vomitOrgans); + var handsRemovalName = Loc.GetString("admin-smite-remove-hands-name").ToLowerInvariant(); Verb handsRemoval = new() { - Text = "admin-smite-remove-hand-name", + Text = handsRemovalName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/remove-hands.png")), Act = () => @@ -327,13 +337,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) Filter.PvsExcept(args.Target), true, PopupType.Medium); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-remove-hands-description") + Message = string.Join(": ", handsRemovalName, Loc.GetString("admin-smite-remove-hands-description")) }; args.Verbs.Add(handsRemoval); + var handRemovalName = Loc.GetString("admin-smite-remove-hand-name").ToLowerInvariant(); Verb handRemoval = new() { - Text = "admin-smite-pinball-name", + Text = handRemovalName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/remove-hand.png")), Act = () => @@ -350,13 +361,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) Filter.PvsExcept(args.Target), true, PopupType.Medium); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-remove-hand-description") + Message = string.Join(": ", handRemovalName, Loc.GetString("admin-smite-remove-hand-description")) }; args.Verbs.Add(handRemoval); + var stomachRemovalName = Loc.GetString("admin-smite-stomach-removal-name").ToLowerInvariant(); Verb stomachRemoval = new() { - Text = "admin-smite-yeet-name", + Text = stomachRemovalName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Species/Human/organs.rsi"), "stomach"), Act = () => @@ -370,13 +382,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) args.Target, PopupType.LargeCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-stomach-removal-description"), + Message = string.Join(": ", stomachRemovalName, Loc.GetString("admin-smite-stomach-removal-description")) }; args.Verbs.Add(stomachRemoval); + var lungRemovalName = Loc.GetString("admin-smite-lung-removal-name").ToLowerInvariant(); Verb lungRemoval = new() { - Text = "admin-smite-become-bread-name", + Text = lungRemovalName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Species/Human/organs.rsi"), "lung-r"), Act = () => @@ -390,16 +403,17 @@ private void AddSmiteVerbs(GetVerbsEvent args) args.Target, PopupType.LargeCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-lung-removal-description"), + Message = string.Join(": ", lungRemovalName, Loc.GetString("admin-smite-lung-removal-description")) }; args.Verbs.Add(lungRemoval); } if (TryComp(args.Target, out var physics)) { + var pinballName = Loc.GetString("admin-smite-pinball-name").ToLowerInvariant(); Verb pinball = new() { - Text = "admin-smite-ghostkick-name", + Text = pinballName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Fun/toys.rsi"), "basketball"), Act = () => @@ -427,13 +441,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) _physics.SetAngularDamping(args.Target, physics, 0f); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-pinball-description") + Message = string.Join(": ", pinballName, Loc.GetString("admin-smite-pinball-description")) }; args.Verbs.Add(pinball); + var yeetName = Loc.GetString("admin-smite-yeet-name").ToLowerInvariant(); Verb yeet = new() { - Text = "admin-smite-nyanify-name", + Text = yeetName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/eject.svg.192dpi.png")), Act = () => @@ -457,11 +472,12 @@ private void AddSmiteVerbs(GetVerbsEvent args) _physics.SetAngularDamping(args.Target, physics, 0f); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-yeet-description") + Message = string.Join(": ", yeetName, Loc.GetString("admin-smite-yeet-description")) }; args.Verbs.Add(yeet); } + var breadName = Loc.GetString("admin-smite-become-bread-name").ToLowerInvariant(); // Will I get cancelled for breadName-ing you? Verb bread = new() { Text = "admin-smite-kill-sign-name", @@ -472,10 +488,11 @@ private void AddSmiteVerbs(GetVerbsEvent args) _polymorphSystem.PolymorphEntity(args.Target, "AdminBreadSmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-become-bread-description") + Message = string.Join(": ", breadName, Loc.GetString("admin-smite-become-bread-description")) }; args.Verbs.Add(bread); + var mouseName = Loc.GetString("admin-smite-become-mouse-name").ToLowerInvariant(); Verb mouse = new() { Text = "admin-smite-cluwne-name", @@ -486,15 +503,16 @@ private void AddSmiteVerbs(GetVerbsEvent args) _polymorphSystem.PolymorphEntity(args.Target, "AdminMouseSmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-become-mouse-description") + Message = string.Join(": ", mouseName, Loc.GetString("admin-smite-become-mouse-description")) }; args.Verbs.Add(mouse); if (TryComp(args.Target, out var actorComponent)) { + var ghostKickName = Loc.GetString("admin-smite-ghostkick-name").ToLowerInvariant(); Verb ghostKick = new() { - Text = "admin-smite-anger-pointing-arrows-name", + Text = ghostKickName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/gavel.svg.192dpi.png")), Act = () => @@ -502,15 +520,18 @@ private void AddSmiteVerbs(GetVerbsEvent args) _ghostKickManager.DoDisconnect(actorComponent.PlayerSession.Channel, "Smitten."); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-ghostkick-description") + Message = string.Join(": ", ghostKickName, Loc.GetString("admin-smite-ghostkick-description")) + }; args.Verbs.Add(ghostKick); } - if (TryComp(args.Target, out var inventory)) { + if (TryComp(args.Target, out var inventory)) + { + var nyanifyName = Loc.GetString("admin-smite-nyanify-name").ToLowerInvariant(); Verb nyanify = new() { - Text = "admin-smite-dust-name", + Text = nyanifyName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Clothing/Head/Hats/catears.rsi"), "icon"), Act = () => @@ -521,13 +542,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) _inventorySystem.TryEquip(args.Target, ears, "head", true, true, false, inventory); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-nyanify-description") + Message = string.Join(": ", nyanifyName, Loc.GetString("admin-smite-nyanify-description")) }; args.Verbs.Add(nyanify); + var killSignName = Loc.GetString("admin-smite-kill-sign-name").ToLowerInvariant(); Verb killSign = new() { - Text = "admin-smite-buffering-name", + Text = killSignName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Misc/killsign.rsi"), "icon"), Act = () => @@ -535,13 +557,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-kill-sign-description") + Message = string.Join(": ", killSignName, Loc.GetString("admin-smite-kill-sign-description")) }; args.Verbs.Add(killSign); + var cluwneName = Loc.GetString("admin-smite-cluwne-name").ToLowerInvariant(); Verb cluwne = new() { - Text = "admin-smite-become-instrument-name", + Text = cluwneName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Clothing/Mask/cluwne.rsi"), "icon"), @@ -551,13 +574,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-cluwne-description") + Message = string.Join(": ", cluwneName, Loc.GetString("admin-smite-cluwne-description")) }; args.Verbs.Add(cluwne); + var maidenName = Loc.GetString("admin-smite-maid-name").ToLowerInvariant(); Verb maiden = new() { - Text = "admin-smite-remove-gravity-name", + Text = maidenName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Clothing/Uniforms/Jumpskirt/janimaid.rsi"), "icon"), Act = () => @@ -570,14 +594,15 @@ private void AddSmiteVerbs(GetVerbsEvent args) }); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-maid-description") + Message = string.Join(": ", maidenName, Loc.GetString("admin-smite-maid-description")) }; args.Verbs.Add(maiden); } + var angerPointingArrowsName = Loc.GetString("admin-smite-anger-pointing-arrows-name").ToLowerInvariant(); Verb angerPointingArrows = new() { - Text = "admin-smite-reptilian-species-swap-name", + Text = angerPointingArrowsName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Interface/Misc/pointing.rsi"), "pointing"), Act = () => @@ -585,13 +610,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-anger-pointing-arrows-description") + Message = string.Join(": ", angerPointingArrowsName, Loc.GetString("admin-smite-anger-pointing-arrows-description")) }; args.Verbs.Add(angerPointingArrows); + var dustName = Loc.GetString("admin-smite-dust-name").ToLowerInvariant(); Verb dust = new() { - Text = "admin-smite-locker-stuff-name", + Text = dustName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Materials/materials.rsi"), "ash"), Act = () => @@ -601,13 +627,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) _popupSystem.PopupEntity(Loc.GetString("admin-smite-turned-ash-other", ("name", args.Target)), args.Target, PopupType.LargeCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-dust-description"), + Message = string.Join(": ", dustName, Loc.GetString("admin-smite-dust-description")) }; args.Verbs.Add(dust); + var youtubeVideoSimulationName = Loc.GetString("admin-smite-buffering-name").ToLowerInvariant(); Verb youtubeVideoSimulation = new() { - Text = "admin-smite-headstand-name", + Text = youtubeVideoSimulationName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/Misc/buffering_smite_icon.png")), Act = () => @@ -615,10 +642,11 @@ private void AddSmiteVerbs(GetVerbsEvent args) EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-buffering-description"), + Message = string.Join(": ", youtubeVideoSimulationName, Loc.GetString("admin-smite-buffering-description")) }; args.Verbs.Add(youtubeVideoSimulation); + var instrumentationName = Loc.GetString("admin-smite-become-instrument-name").ToLowerInvariant(); Verb instrumentation = new() { Text = "admin-smite-become-mouse-name", @@ -629,13 +657,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) _polymorphSystem.PolymorphEntity(args.Target, "AdminInstrumentSmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-become-instrument-description"), + Message = string.Join(": ", instrumentationName, Loc.GetString("admin-smite-become-instrument-description")) }; args.Verbs.Add(instrumentation); + var noGravityName = Loc.GetString("admin-smite-remove-gravity-name").ToLowerInvariant(); Verb noGravity = new() { - Text = "admin-smite-maid-name", + Text = noGravityName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new("/Textures/Structures/Machines/gravity_generator.rsi"), "off"), Act = () => @@ -646,13 +675,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) Dirty(args.Target, grav); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-remove-gravity-description"), + Message = string.Join(": ", noGravityName, Loc.GetString("admin-smite-remove-gravity-description")) }; args.Verbs.Add(noGravity); + var reptilianName = Loc.GetString("admin-smite-reptilian-species-swap-name").ToLowerInvariant(); Verb reptilian = new() { - Text = "admin-smite-zoom-in-name", + Text = reptilianName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Fun/toys.rsi"), "plushie_lizard"), Act = () => @@ -660,13 +690,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) _polymorphSystem.PolymorphEntity(args.Target, "AdminLizardSmite"); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-reptilian-species-swap-description"), + Message = string.Join(": ", reptilianName, Loc.GetString("admin-smite-reptilian-species-swap-description")) }; args.Verbs.Add(reptilian); + var lockerName = Loc.GetString("admin-smite-locker-stuff-name").ToLowerInvariant(); Verb locker = new() { - Text = "admin-smite-flip-eye-name", + Text = lockerName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new ("/Textures/Structures/Storage/closet.rsi"), "generic"), Act = () => @@ -682,10 +713,11 @@ private void AddSmiteVerbs(GetVerbsEvent args) _weldableSystem.SetWeldedState(locker, true); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-locker-stuff-description"), + Message = string.Join(": ", lockerName, Loc.GetString("admin-smite-locker-stuff-description")) }; args.Verbs.Add(locker); + var headstandName = Loc.GetString("admin-smite-headstand-name").ToLowerInvariant(); Verb headstand = new() { Text = "admin-smite-run-walk-swap-name", @@ -696,13 +728,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-headstand-description"), + Message = string.Join(": ", headstandName, Loc.GetString("admin-smite-headstand-description")) }; args.Verbs.Add(headstand); + var zoomInName = Loc.GetString("admin-smite-zoom-in-name").ToLowerInvariant(); Verb zoomIn = new() { - Text = "admin-smite-super-speed-name", + Text = zoomInName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/zoom.png")), Act = () => @@ -711,13 +744,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) _eyeSystem.SetZoom(args.Target, eye.TargetZoom * 0.2f, ignoreLimits: true); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-zoom-in-description"), + Message = string.Join(": ", zoomInName, Loc.GetString("admin-smite-zoom-in-description")) }; args.Verbs.Add(zoomIn); + var flipEyeName = Loc.GetString("admin-smite-flip-eye-name").ToLowerInvariant(); Verb flipEye = new() { - Text = "admin-smite-stomach-removal-name", + Text = flipEyeName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/flip.png")), Act = () => @@ -726,13 +760,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) _eyeSystem.SetZoom(args.Target, eye.TargetZoom * -1, ignoreLimits: true); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-flip-eye-description"), + Message = string.Join(": ", flipEyeName, Loc.GetString("admin-smite-flip-eye-description")) }; args.Verbs.Add(flipEye); + var runWalkSwapName = Loc.GetString("admin-smite-run-walk-swap-name").ToLowerInvariant(); Verb runWalkSwap = new() { - Text = "admin-smite-speak-backwards-name", + Text = runWalkSwapName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/run-walk-swap.png")), Act = () => @@ -746,13 +781,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) args.Target, PopupType.LargeCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-run-walk-swap-description"), + Message = string.Join(": ", runWalkSwapName, Loc.GetString("admin-smite-run-walk-swap-description")) }; args.Verbs.Add(runWalkSwap); + var backwardsAccentName = Loc.GetString("admin-smite-speak-backwards-name").ToLowerInvariant(); Verb backwardsAccent = new() { - Text = "admin-smite-lung-removal-name", + Text = backwardsAccentName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/AdminActions/help-backwards.png")), Act = () => @@ -760,13 +796,14 @@ private void AddSmiteVerbs(GetVerbsEvent args) EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-speak-backwards-description"), + Message = string.Join(": ", backwardsAccentName, Loc.GetString("admin-smite-speak-backwards-description")) }; args.Verbs.Add(backwardsAccent); + var disarmProneName = Loc.GetString("admin-smite-disarm-prone-name").ToLowerInvariant(); Verb disarmProne = new() { - Text = "admin-smite-disarm-prone-name", + Text = disarmProneName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/Actions/disarm.png")), Act = () => @@ -774,10 +811,11 @@ private void AddSmiteVerbs(GetVerbsEvent args) EnsureComp(args.Target); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-disarm-prone-description"), + Message = string.Join(": ", disarmProneName, Loc.GetString("admin-smite-disarm-prone-description")) }; args.Verbs.Add(disarmProne); + var superSpeedName = Loc.GetString("admin-smite-super-speed-name").ToLowerInvariant(); Verb superSpeed = new() { Text = "admin-smite-garbage-can-name", @@ -792,41 +830,45 @@ private void AddSmiteVerbs(GetVerbsEvent args) args.Target, PopupType.LargeCaution); }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-super-speed-description"), + Message = string.Join(": ", superSpeedName, Loc.GetString("admin-smite-super-speed-description")) }; args.Verbs.Add(superSpeed); //Bonk + var superBonkLiteName = Loc.GetString("admin-smite-super-bonk-lite-name").ToLowerInvariant(); Verb superBonkLite = new() { - Text = "admin-smite-super-bonk-name", + Text = superBonkLiteName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new("Structures/Furniture/Tables/glass.rsi"), "full"), Act = () => { _superBonkSystem.StartSuperBonk(args.Target, stopWhenDead: true); }, - Message = Loc.GetString("admin-smite-super-bonk-lite-description"), Impact = LogImpact.Extreme, + Message = string.Join(": ", superBonkLiteName, Loc.GetString("admin-smite-super-bonk-lite-description")) }; args.Verbs.Add(superBonkLite); + + var superBonkName = Loc.GetString("admin-smite-super-bonk-name").ToLowerInvariant(); Verb superBonk= new() { - Text = "admin-smite-super-bonk-lite-name", + Text = superBonkName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new("Structures/Furniture/Tables/generic.rsi"), "full"), Act = () => { _superBonkSystem.StartSuperBonk(args.Target); }, - Message = Loc.GetString("admin-smite-super-bonk-description"), Impact = LogImpact.Extreme, + Message = string.Join(": ", superBonkName, Loc.GetString("admin-smite-super-bonk-description")) }; args.Verbs.Add(superBonk); + var superslipName = Loc.GetString("admin-smite-super-slip-name").ToLowerInvariant(); Verb superslip = new() { - Text = "admin-smite-super-slip-name", + Text = superslipName, Category = VerbCategory.Smite, Icon = new SpriteSpecifier.Rsi(new("Objects/Specific/Janitorial/soap.rsi"), "omega-4"), Act = () => @@ -846,7 +888,7 @@ private void AddSmiteVerbs(GetVerbsEvent args) } }, Impact = LogImpact.Extreme, - Message = Loc.GetString("admin-smite-super-slip-description") + Message = string.Join(": ", superslipName, Loc.GetString("admin-smite-super-slip-description")) }; args.Verbs.Add(superslip); } diff --git a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs index 3e4d101f4fdf8f..9f81c64dbc10e2 100644 --- a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs @@ -22,11 +22,17 @@ public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnTechMapInit); SubscribeLocalEvent(OnPulse); SubscribeLocalEvent(OnSupercritical); SubscribeLocalEvent(OnStabilityChanged); } + private void OnTechMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.NextTimer = _timing.CurTime; + } + public override void Update(float frameTime) { base.Update(frameTime); diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index 3f33d01116dda9..224629ff2e5226 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -11,7 +11,6 @@ using Content.Server.Roles; using Content.Server.Roles.Jobs; using Content.Server.Shuttles.Components; -using Content.Server.Station.Systems; using Content.Shared.Antag; using Content.Shared.Clothing; using Content.Shared.GameTicking; @@ -20,7 +19,6 @@ using Content.Shared.Humanoid; using Content.Shared.Mind; using Content.Shared.Players; -using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; using Content.Shared.Whitelist; using Robust.Server.Audio; @@ -37,14 +35,14 @@ namespace Content.Server.Antag; public sealed partial class AntagSelectionSystem : GameRuleSystem { - [Dependency] private readonly IChatManager _chat = default!; - [Dependency] private readonly IPlayerManager _playerManager = default!; - [Dependency] private readonly IServerPreferencesManager _pref = default!; [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly GhostRoleSystem _ghostRole = default!; [Dependency] private readonly JobSystem _jobs = default!; [Dependency] private readonly LoadoutSystem _loadout = default!; [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly IServerPreferencesManager _pref = default!; [Dependency] private readonly RoleSystem _role = default!; [Dependency] private readonly TransformSystem _transform = default!; [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; @@ -193,6 +191,9 @@ protected override void Started(EntityUid uid, AntagSelectionComponent component /// /// Chooses antagonists from the given selection of players /// + /// The antagonist rule entity + /// The players to choose from + /// Disable picking players for pre-spawn antags in the middle of a round public void ChooseAntags(Entity ent, IList pool, bool midround = false) { if (ent.Comp.SelectionsComplete) @@ -209,8 +210,14 @@ public void ChooseAntags(Entity ent, IList /// Chooses antagonists from the given selection of players for the given antag definition. /// + /// The antagonist rule entity + /// The players to choose from + /// The antagonist selection parameters and criteria /// Disable picking players for pre-spawn antags in the middle of a round - public void ChooseAntags(Entity ent, IList pool, AntagSelectionDefinition def, bool midround = false) + public void ChooseAntags(Entity ent, + IList pool, + AntagSelectionDefinition def, + bool midround = false) { var playerPool = GetPlayerPool(ent, pool, def); var count = GetTargetAntagCount(ent, GetTotalPlayerCount(pool), def); @@ -331,7 +338,7 @@ public void MakeAntag(Entity ent, ICommonSession? sessi EntityManager.AddComponents(player, def.Components); // Equip the entity's RoleLoadout and LoadoutGroup - List>? gear = new(); + List> gear = new(); if (def.StartingGear is not null) gear.Add(def.StartingGear.Value); @@ -340,8 +347,8 @@ public void MakeAntag(Entity ent, ICommonSession? sessi if (session != null) { var curMind = session.GetMind(); - - if (curMind == null || + + if (curMind == null || !TryComp(curMind.Value, out var mindComp) || mindComp.OwnedEntity != antagEnt) { @@ -350,7 +357,7 @@ public void MakeAntag(Entity ent, ICommonSession? sessi } _mind.TransferTo(curMind.Value, antagEnt, ghostCheckOverride: true); - _role.MindAddRoles(curMind.Value, def.MindComponents, null, true); + _role.MindAddRoles(curMind.Value, def.MindRoles, null, true); ent.Comp.SelectedMinds.Add((curMind.Value, Name(player))); SendBriefing(session, def.Briefing); } diff --git a/Content.Server/Antag/Components/AntagSelectionComponent.cs b/Content.Server/Antag/Components/AntagSelectionComponent.cs index 0e5a0afc9bcec4..502fb8eda2c5ff 100644 --- a/Content.Server/Antag/Components/AntagSelectionComponent.cs +++ b/Content.Server/Antag/Components/AntagSelectionComponent.cs @@ -3,7 +3,6 @@ using Content.Shared.Destructible.Thresholds; using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; -using Content.Shared.Storage; using Content.Shared.Whitelist; using Robust.Shared.Audio; using Robust.Shared.Player; @@ -145,10 +144,17 @@ public partial struct AntagSelectionDefinition() /// /// Components added to the player's mind. + /// Do NOT use this to add role-type components. Add those as MindRoles instead /// [DataField] public ComponentRegistry MindComponents = new(); + /// + /// List of Mind Role Prototypes to be added to the player's mind. + /// + [DataField] + public List>? MindRoles; + /// /// A set of starting gear that's equipped to the player. /// diff --git a/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs b/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs index 5123500239e59c..a60d042fb5799a 100644 --- a/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs +++ b/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs @@ -1,9 +1,11 @@ +using Robust.Shared.Prototypes; + namespace Content.Server.Atmos.Components { /// /// Used by FixGridAtmos. Entities with this may get magically auto-deleted on map initialization in future. /// - [RegisterComponent] + [RegisterComponent, EntityCategory("Mapping")] public sealed partial class AtmosFixMarkerComponent : Component { // See FixGridAtmos for more details diff --git a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs index d9a475dbfb7343..2d35ae59731094 100644 --- a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs +++ b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs @@ -1,15 +1,19 @@ using Content.Server.Atmos.Monitor.Components; using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.Pinpointer; using Content.Server.Power.Components; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Content.Shared.Atmos.Consoles; using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; +using Content.Shared.DeviceNetwork.Components; using Content.Shared.Pinpointer; +using Content.Shared.Tag; using Robust.Server.GameObjects; using Robust.Shared.Map.Components; -using Robust.Shared.Player; +using Robust.Shared.Timing; using System.Diagnostics.CodeAnalysis; using System.Linq; @@ -21,6 +25,12 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem [Dependency] private readonly AirAlarmSystem _airAlarmSystem = default!; [Dependency] private readonly AtmosDeviceNetworkSystem _atmosDevNet = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly MapSystem _mapSystem = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; + [Dependency] private readonly NavMapSystem _navMapSystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly DeviceListSystem _deviceListSystem = default!; private const float UpdateTime = 1.0f; @@ -38,6 +48,9 @@ public override void Initialize() // Grid events SubscribeLocalEvent(OnGridSplit); + + // Alarm events + SubscribeLocalEvent(OnDeviceTerminatingEvent); SubscribeLocalEvent(OnDeviceAnchorChanged); } @@ -81,6 +94,16 @@ private void OnGridSplit(ref GridSplitEvent args) } private void OnDeviceAnchorChanged(EntityUid uid, AtmosAlertsDeviceComponent component, AnchorStateChangedEvent args) + { + OnDeviceAdditionOrRemoval(uid, component, args.Anchored); + } + + private void OnDeviceTerminatingEvent(EntityUid uid, AtmosAlertsDeviceComponent component, ref EntityTerminatingEvent args) + { + OnDeviceAdditionOrRemoval(uid, component, false); + } + + private void OnDeviceAdditionOrRemoval(EntityUid uid, AtmosAlertsDeviceComponent component, bool isAdding) { var xform = Transform(uid); var gridUid = xform.GridUid; @@ -88,10 +111,13 @@ private void OnDeviceAnchorChanged(EntityUid uid, AtmosAlertsDeviceComponent com if (gridUid == null) return; - if (!TryGetAtmosDeviceNavMapData(uid, component, xform, gridUid.Value, out var data)) + if (!TryComp(xform.GridUid, out var navMap)) return; - var netEntity = EntityManager.GetNetEntity(uid); + if (!TryGetAtmosDeviceNavMapData(uid, component, xform, out var data)) + return; + + var netEntity = GetNetEntity(uid); var query = AllEntityQuery(); while (query.MoveNext(out var ent, out var entConsole, out var entXform)) @@ -99,11 +125,18 @@ private void OnDeviceAnchorChanged(EntityUid uid, AtmosAlertsDeviceComponent com if (gridUid != entXform.GridUid) continue; - if (args.Anchored) + if (isAdding) + { entConsole.AtmosDevices.Add(data.Value); + } - else if (!args.Anchored) + else + { entConsole.AtmosDevices.RemoveWhere(x => x.NetEntity == netEntity); + _navMapSystem.RemoveNavMapRegion(gridUid.Value, navMap, netEntity); + } + + Dirty(ent, entConsole); } } @@ -209,6 +242,12 @@ private List GetAlarmStateData(EntityUid gridUid, Atmo if (entDevice.Group != group) continue; + if (!TryComp(entXform.GridUid, out var mapGrid)) + continue; + + if (!TryComp(entXform.GridUid, out var navMap)) + continue; + // If emagged, change the alarm type to normal var alarmState = (entAtmosAlarmable.LastAlarmState == AtmosAlarmType.Emagged) ? AtmosAlarmType.Normal : entAtmosAlarmable.LastAlarmState; @@ -216,14 +255,45 @@ private List GetAlarmStateData(EntityUid gridUid, Atmo if (TryComp(ent, out var entAPCPower) && !entAPCPower.Powered) alarmState = AtmosAlarmType.Invalid; + // Create entry + var netEnt = GetNetEntity(ent); + var entry = new AtmosAlertsComputerEntry - (GetNetEntity(ent), + (netEnt, GetNetCoordinates(entXform.Coordinates), entDevice.Group, alarmState, MetaData(ent).EntityName, entDeviceNetwork.Address); + // Get the list of sensors attached to the alarm + var sensorList = TryComp(ent, out var entDeviceList) ? _deviceListSystem.GetDeviceList(ent, entDeviceList) : null; + + if (sensorList?.Any() == true) + { + var alarmRegionSeeds = new HashSet(); + + // If valid and anchored, use the position of sensors as seeds for the region + foreach (var (address, sensorEnt) in sensorList) + { + if (!sensorEnt.IsValid() || !HasComp(sensorEnt)) + continue; + + var sensorXform = Transform(sensorEnt); + + if (sensorXform.Anchored && sensorXform.GridUid == entXform.GridUid) + alarmRegionSeeds.Add(_mapSystem.CoordinatesToTile(entXform.GridUid.Value, mapGrid, _transformSystem.GetMapCoordinates(sensorEnt, sensorXform))); + } + + var regionProperties = new SharedNavMapSystem.NavMapRegionProperties(netEnt, AtmosAlertsComputerUiKey.Key, alarmRegionSeeds); + _navMapSystem.AddOrUpdateNavMapRegion(gridUid, navMap, netEnt, regionProperties); + } + + else + { + _navMapSystem.RemoveNavMapRegion(entXform.GridUid.Value, navMap, netEnt); + } + alarmStateData.Add(entry); } @@ -306,7 +376,10 @@ private HashSet GetAllAtmosDeviceNavMapData(EntityU var query = AllEntityQuery(); while (query.MoveNext(out var ent, out var entComponent, out var entXform)) { - if (TryGetAtmosDeviceNavMapData(ent, entComponent, entXform, gridUid, out var data)) + if (entXform.GridUid != gridUid) + continue; + + if (TryGetAtmosDeviceNavMapData(ent, entComponent, entXform, out var data)) atmosDeviceNavMapData.Add(data.Value); } @@ -317,14 +390,10 @@ private bool TryGetAtmosDeviceNavMapData (EntityUid uid, AtmosAlertsDeviceComponent component, TransformComponent xform, - EntityUid gridUid, [NotNullWhen(true)] out AtmosAlertsDeviceNavMapData? output) { output = null; - if (xform.GridUid != gridUid) - return false; - if (!xform.Anchored) return false; diff --git a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs index cd4aa4a0981aac..345f51783ca460 100644 --- a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs +++ b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs @@ -239,7 +239,7 @@ public void HandleEnterCryostorage(Entity ent, Ne Loc.GetString( "earlyleave-cryo-announcement", ("character", name), - ("entity", ent.Owner), + ("entity", ent.Owner), // gender things for supporting downstreams with other languages ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(jobName)) ), Loc.GetString("earlyleave-cryo-sender"), playDefaultSound: false diff --git a/Content.Server/Body/Systems/BloodstreamSystem.cs b/Content.Server/Body/Systems/BloodstreamSystem.cs index 18790e7326b6ca..198123cc5fd578 100644 --- a/Content.Server/Body/Systems/BloodstreamSystem.cs +++ b/Content.Server/Body/Systems/BloodstreamSystem.cs @@ -472,7 +472,7 @@ public void ChangeBloodReagent(EntityUid uid, string reagent, BloodstreamCompone return; } - var currentVolume = bloodSolution.RemoveReagent(component.BloodReagent, bloodSolution.Volume); + var currentVolume = bloodSolution.RemoveReagent(component.BloodReagent, bloodSolution.Volume, ignoreReagentData: true); component.BloodReagent = reagent; diff --git a/Content.Server/Botany/Components/PlantHolderComponent.cs b/Content.Server/Botany/Components/PlantHolderComponent.cs index 8218bead72cbae..f0661e4a301f8f 100644 --- a/Content.Server/Botany/Components/PlantHolderComponent.cs +++ b/Content.Server/Botany/Components/PlantHolderComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Chemistry.Components; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Audio; namespace Content.Server.Botany.Components; @@ -23,6 +24,9 @@ public sealed partial class PlantHolderComponent : Component [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan LastCycle = TimeSpan.Zero; + [DataField] + public SoundSpecifier? WateringSound; + [DataField] public bool UpdateSpriteAfterUpdate; diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 0fdca029b79a75..34d6a75bf252b9 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -1,6 +1,5 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Botany.Components; -using Content.Server.Fluids.Components; using Content.Server.Kitchen.Components; using Content.Server.Popups; using Content.Shared.Chemistry.EntitySystems; @@ -18,7 +17,6 @@ using Content.Shared.Random; using Content.Shared.Tag; using Robust.Server.GameObjects; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -37,7 +35,6 @@ public sealed class PlantHolderSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly SharedPointLightSystem _pointLight = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly RandomHelperSystem _randomHelper = default!; @@ -53,6 +50,7 @@ public override void Initialize() SubscribeLocalEvent(OnExamine); SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnSolutionTransferred); } public override void Update(float frameTime) @@ -158,6 +156,7 @@ private void OnInteractUsing(Entity entity, ref InteractUs if (!_botany.TryGetSeed(seeds, out var seed)) return; + args.Handled = true; var name = Loc.GetString(seed.Name); var noun = Loc.GetString(seed.Noun); _popup.PopupCursor(Loc.GetString("plant-holder-component-plant-success-message", @@ -185,6 +184,7 @@ private void OnInteractUsing(Entity entity, ref InteractUs return; } + args.Handled = true; _popup.PopupCursor(Loc.GetString("plant-holder-component-already-seeded-message", ("name", Comp(uid).EntityName)), args.User, PopupType.Medium); return; @@ -192,6 +192,7 @@ private void OnInteractUsing(Entity entity, ref InteractUs if (_tagSystem.HasTag(args.Used, "Hoe")) { + args.Handled = true; if (component.WeedLevel > 0) { _popup.PopupCursor(Loc.GetString("plant-holder-component-remove-weeds-message", @@ -211,6 +212,7 @@ private void OnInteractUsing(Entity entity, ref InteractUs if (HasComp(args.Used)) { + args.Handled = true; if (component.Seed != null) { _popup.PopupCursor(Loc.GetString("plant-holder-component-remove-plant-message", @@ -228,39 +230,9 @@ private void OnInteractUsing(Entity entity, ref InteractUs return; } - if (_solutionContainerSystem.TryGetDrainableSolution(args.Used, out var solution, out _) - && _solutionContainerSystem.ResolveSolution(uid, component.SoilSolutionName, ref component.SoilSolution) - && TryComp(args.Used, out SprayComponent? spray)) - { - var amount = FixedPoint2.New(1); - - var targetEntity = uid; - var solutionEntity = args.Used; - - _audio.PlayPvs(spray.SpraySound, args.Used, AudioParams.Default.WithVariation(0.125f)); - - var split = _solutionContainerSystem.Drain(solutionEntity, solution.Value, amount); - - if (split.Volume == 0) - { - _popup.PopupCursor(Loc.GetString("plant-holder-component-no-plant-message", - ("owner", args.Used)), args.User); - return; - } - - _popup.PopupCursor(Loc.GetString("plant-holder-component-spray-message", - ("owner", uid), - ("amount", split.Volume)), args.User, PopupType.Medium); - - _solutionContainerSystem.TryAddSolution(component.SoilSolution.Value, split); - - ForceUpdateByExternalCause(uid, component); - - return; - } - if (_tagSystem.HasTag(args.Used, "PlantSampleTaker")) { + args.Handled = true; if (component.Seed == null) { _popup.PopupCursor(Loc.GetString("plant-holder-component-nothing-to-sample-message"), args.User); @@ -316,10 +288,15 @@ private void OnInteractUsing(Entity entity, ref InteractUs } if (HasComp(args.Used)) + { + args.Handled = true; DoHarvest(uid, args.User, component); + return; + } if (TryComp(args.Used, out var produce)) { + args.Handled = true; _popup.PopupCursor(Loc.GetString("plant-holder-component-compost-message", ("owner", uid), ("usingItem", args.Used)), args.User, PopupType.Medium); @@ -351,6 +328,10 @@ private void OnInteractUsing(Entity entity, ref InteractUs } } + private void OnSolutionTransferred(Entity ent, ref SolutionTransferredEvent args) + { + _audio.PlayPvs(ent.Comp.WateringSound, ent.Owner); + } private void OnInteractHand(Entity entity, ref InteractHandEvent args) { DoHarvest(entity, args.User, entity.Comp); diff --git a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs index 37d7015fd9f2f0..373e8e243ba974 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs @@ -420,6 +420,13 @@ public bool TryAddBounty(EntityUid uid, CargoBountyPrototype bounty, StationCarg return false; _nameIdentifier.GenerateUniqueName(uid, BountyNameIdentifierGroup, out var randomVal); + var newBounty = new CargoBountyData(bounty, randomVal); + // This bounty id already exists! Probably because NameIdentifierSystem ran out of ids. + if (component.Bounties.Any(b => b.Id == newBounty.Id)) + { + Log.Error("Failed to add bounty {ID} because another one with the same ID already existed!", newBounty.Id); + return false; + } component.Bounties.Add(new CargoBountyData(bounty, randomVal)); _adminLogger.Add(LogType.Action, LogImpact.Low, $"Added bounty \"{bounty.ID}\" (id:{component.TotalBounties}) to station {ToPrettyString(uid)}"); component.TotalBounties++; diff --git a/Content.Server/Chat/Managers/ChatSanitizationManager.cs b/Content.Server/Chat/Managers/ChatSanitizationManager.cs index 634d8cdefabf43..0c78e45f86eda1 100644 --- a/Content.Server/Chat/Managers/ChatSanitizationManager.cs +++ b/Content.Server/Chat/Managers/ChatSanitizationManager.cs @@ -1,17 +1,19 @@ using System.Diagnostics.CodeAnalysis; -using System.Globalization; +using System.Text.RegularExpressions; using Content.Shared.CCVar; using Robust.Shared.Configuration; namespace Content.Server.Chat.Managers; +/// +/// Sanitizes messages! +/// It currently ony removes the shorthands for emotes (like "lol" or "^-^") from a chat message and returns the last +/// emote in their message +/// public sealed class ChatSanitizationManager : IChatSanitizationManager { - [Dependency] private readonly IConfigurationManager _configurationManager = default!; - - private static readonly Dictionary SmileyToEmote = new() + private static readonly Dictionary ShorthandToEmote = new() { - // I could've done this with regex, but felt it wasn't the right idea. { ":)", "chatsan-smiles" }, { ":]", "chatsan-smiles" }, { "=)", "chatsan-smiles" }, @@ -33,7 +35,7 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager { ":D", "chatsan-smiles-widely" }, { "D:", "chatsan-frowns-deeply" }, { ":O", "chatsan-surprised" }, - { ":3", "chatsan-smiles" }, //nope + { ":3", "chatsan-smiles" }, { ":S", "chatsan-uncertain" }, { ":>", "chatsan-grins" }, { ":<", "chatsan-pouts" }, @@ -75,7 +77,7 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager { "kek", "chatsan-laughs" }, { "rofl", "chatsan-laughs" }, { "o7", "chatsan-salutes" }, - { ";_;7", "chatsan-tearfully-salutes"}, + { ";_;7", "chatsan-tearfully-salutes" }, { "idk", "chatsan-shrugs" }, { ";)", "chatsan-winks" }, { ";]", "chatsan-winks" }, @@ -88,9 +90,12 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager { "(':", "chatsan-tearfully-smiles" }, { "[':", "chatsan-tearfully-smiles" }, { "('=", "chatsan-tearfully-smiles" }, - { "['=", "chatsan-tearfully-smiles" }, + { "['=", "chatsan-tearfully-smiles" } }; + [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly ILocalizationManager _loc = default!; + private bool _doSanitize; public void Initialize() @@ -98,29 +103,60 @@ public void Initialize() _configurationManager.OnValueChanged(CCVars.ChatSanitizerEnabled, x => _doSanitize = x, true); } - public bool TrySanitizeOutSmilies(string input, EntityUid speaker, out string sanitized, [NotNullWhen(true)] out string? emote) + /// + /// Remove the shorthands from the message, returning the last one found as the emote + /// + /// The pre-sanitized message + /// The speaker + /// The sanitized message with shorthands removed + /// The localized emote + /// True if emote has been sanitized out + public bool TrySanitizeEmoteShorthands(string message, + EntityUid speaker, + out string sanitized, + [NotNullWhen(true)] out string? emote) { + emote = null; + sanitized = message; + if (!_doSanitize) - { - sanitized = input; - emote = null; return false; - } - input = input.TrimEnd(); + // -1 is just a canary for nothing found yet + var lastEmoteIndex = -1; - foreach (var (smiley, replacement) in SmileyToEmote) + foreach (var (shorthand, emoteKey) in ShorthandToEmote) { - if (input.EndsWith(smiley, true, CultureInfo.InvariantCulture)) + // We have to escape it because shorthands like ":)" or "-_-" would break the regex otherwise. + var escaped = Regex.Escape(shorthand); + + // So there are 2 cases: + // - If there is whitespace before it and after it is either punctuation, whitespace, or the end of the line + // Delete the word and the whitespace before + // - If it is at the start of the string and is followed by punctuation, whitespace, or the end of the line + // Delete the word and the punctuation if it exists. + var pattern = + $@"\s{escaped}(?=\p{{P}}|\s|$)|^{escaped}(?:\p{{P}}|(?=\s|$))"; + + var r = new Regex(pattern, RegexOptions.RightToLeft | RegexOptions.IgnoreCase); + + // We're using sanitized as the original message until the end so that we can make sure the indices of + // the emotes are accurate. + var lastMatch = r.Match(sanitized); + + if (!lastMatch.Success) + continue; + + if (lastMatch.Index > lastEmoteIndex) { - sanitized = input.Remove(input.Length - smiley.Length).TrimEnd(); - emote = Loc.GetString(replacement, ("ent", speaker)); - return true; + lastEmoteIndex = lastMatch.Index; + emote = _loc.GetString(emoteKey, ("ent", speaker)); } + + message = r.Replace(message, string.Empty); } - sanitized = input; - emote = null; - return false; + sanitized = message.Trim(); + return emote is not null; } } diff --git a/Content.Server/Chat/Managers/IChatSanitizationManager.cs b/Content.Server/Chat/Managers/IChatSanitizationManager.cs index c067cf02ee78ab..ac85d4b4a7a5f5 100644 --- a/Content.Server/Chat/Managers/IChatSanitizationManager.cs +++ b/Content.Server/Chat/Managers/IChatSanitizationManager.cs @@ -6,5 +6,8 @@ public interface IChatSanitizationManager { public void Initialize(); - public bool TrySanitizeOutSmilies(string input, EntityUid speaker, out string sanitized, [NotNullWhen(true)] out string? emote); + public bool TrySanitizeEmoteShorthands(string input, + EntityUid speaker, + out string sanitized, + [NotNullWhen(true)] out string? emote); } diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 624c18130b0c2a..d834d8304a8bfc 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -746,8 +746,12 @@ private bool CanSendInGame(string message, IConsoleShell? shell = null, ICommonS // ReSharper disable once InconsistentNaming private string SanitizeInGameICMessage(EntityUid source, string message, out string? emoteStr, bool capitalize = true, bool punctuate = false, bool capitalizeTheWordI = true) { - var newMessage = message.Trim(); - newMessage = SanitizeMessageReplaceWords(newMessage); + var newMessage = SanitizeMessageReplaceWords(message.Trim()); + + GetRadioKeycodePrefix(source, newMessage, out newMessage, out var prefix); + + // Sanitize it first as it might change the word order + _sanitizer.TrySanitizeEmoteShorthands(newMessage, source, out newMessage, out emoteStr); if (capitalize) newMessage = SanitizeMessageCapital(newMessage); @@ -756,9 +760,7 @@ private string SanitizeInGameICMessage(EntityUid source, string message, out str if (punctuate) newMessage = SanitizeMessagePeriod(newMessage); - _sanitizer.TrySanitizeOutSmilies(newMessage, source, out newMessage, out emoteStr); - - return newMessage; + return prefix + newMessage; } private string SanitizeInGameOOCMessage(string message) diff --git a/Content.Server/Chemistry/Components/SolutionInjectWhileEmbeddedComponent.cs b/Content.Server/Chemistry/Components/SolutionInjectWhileEmbeddedComponent.cs new file mode 100644 index 00000000000000..0f10e2a4492f64 --- /dev/null +++ b/Content.Server/Chemistry/Components/SolutionInjectWhileEmbeddedComponent.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + + +namespace Content.Server.Chemistry.Components; + +/// +/// Used for embeddable entities that should try to inject a +/// contained solution into a target over time while they are embbeded into. +/// +[RegisterComponent, AutoGenerateComponentPause] +public sealed partial class SolutionInjectWhileEmbeddedComponent : BaseSolutionInjectOnEventComponent { + /// + ///The time at which the injection will happen. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextUpdate; + + /// + ///The delay between each injection in seconds. + /// + [DataField] + public TimeSpan UpdateInterval = TimeSpan.FromSeconds(3); +} + diff --git a/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs index d56fded024a31f..f15edcf0672000 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Body.Systems; using Content.Server.Chemistry.Components; using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Events; using Content.Shared.Inventory; using Content.Shared.Popups; using Content.Shared.Projectiles; @@ -29,6 +30,7 @@ public override void Initialize() SubscribeLocalEvent(HandleProjectileHit); SubscribeLocalEvent(HandleEmbed); SubscribeLocalEvent(HandleMeleeHit); + SubscribeLocalEvent(OnInjectOverTime); } private void HandleProjectileHit(Entity entity, ref ProjectileHitEvent args) @@ -49,6 +51,11 @@ private void HandleMeleeHit(Entity entity, ref M TryInjectTargets((entity.Owner, entity.Comp), args.HitEntities, args.User); } + private void OnInjectOverTime(Entity entity, ref InjectOverTimeEvent args) + { + DoInjection((entity.Owner, entity.Comp), args.EmbeddedIntoUid); + } + private void DoInjection(Entity injectorEntity, EntityUid target, EntityUid? source = null) { TryInjectTargets(injectorEntity, [target], source); diff --git a/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs new file mode 100644 index 00000000000000..2baeba9da15a9e --- /dev/null +++ b/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs @@ -0,0 +1,60 @@ +using Content.Server.Body.Components; +using Content.Server.Body.Systems; +using Content.Server.Chemistry.Components; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Events; +using Content.Shared.Inventory; +using Content.Shared.Popups; +using Content.Shared.Projectiles; +using Content.Shared.Tag; +using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Collections; +using Robust.Shared.Timing; + +namespace Content.Server.Chemistry.EntitySystems; + +/// +/// System for handling injecting into an entity while a projectile is embedded. +/// +public sealed class SolutionInjectWhileEmbeddedSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly BloodstreamSystem _bloodstream = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly TagSystem _tag = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.NextUpdate = _gameTiming.CurTime + ent.Comp.UpdateInterval; + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var injectComponent, out var projectileComponent)) + { + if (_gameTiming.CurTime < injectComponent.NextUpdate) + continue; + + injectComponent.NextUpdate += injectComponent.UpdateInterval; + + if(projectileComponent.EmbeddedIntoUid == null) + continue; + + var ev = new InjectOverTimeEvent(projectileComponent.EmbeddedIntoUid.Value); + RaiseLocalEvent(uid, ref ev); + + } + } +} diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index 3893f31d25d755..65f92740016297 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -231,7 +231,7 @@ public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Entity logs) { + const int maxRetryAttempts = 5; + var initialRetryDelay = TimeSpan.FromSeconds(5); + DebugTools.Assert(logs.All(x => x.RoundId > 0), "Adding logs with invalid round ids."); - await using var db = await GetDb(); - db.DbContext.AdminLog.AddRange(logs); - await db.DbContext.SaveChangesAsync(); + + var attempt = 0; + var retryDelay = initialRetryDelay; + + while (attempt < maxRetryAttempts) + { + try + { + await using var db = await GetDb(); + db.DbContext.AdminLog.AddRange(logs); + await db.DbContext.SaveChangesAsync(); + _opsLog.Debug($"Successfully saved {logs.Count} admin logs."); + break; + } + catch (Exception ex) + { + attempt += 1; + _opsLog.Error($"Attempt {attempt} failed to save logs: {ex}"); + + if (attempt >= maxRetryAttempts) + { + _opsLog.Error($"Max retry attempts reached. Failed to save {logs.Count} admin logs."); + return; + } + + _opsLog.Warning($"Retrying in {retryDelay.TotalSeconds} seconds..."); + await Task.Delay(retryDelay); + + retryDelay *= 2; + } + } } protected abstract IQueryable StartAdminLogsQuery(ServerDbContext db, LogFilter? filter = null); diff --git a/Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs new file mode 100644 index 00000000000000..97a5f8b7ef5e86 --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs @@ -0,0 +1,10 @@ +namespace Content.Server.Destructible.Thresholds.Behaviors; + +[DataDefinition] +public sealed partial class TimerStartBehavior : IThresholdBehavior +{ + public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null) + { + system.TriggerSystem.StartTimer(owner, cause); + } +} diff --git a/Content.Server/EntityEffects/EffectConditions/JobCondition.cs b/Content.Server/EntityEffects/EffectConditions/JobCondition.cs index 20d67d6de0cd1e..9621d6945f6147 100644 --- a/Content.Server/EntityEffects/EffectConditions/JobCondition.cs +++ b/Content.Server/EntityEffects/EffectConditions/JobCondition.cs @@ -1,49 +1,53 @@ using System.Linq; using Content.Shared.EntityEffects; -using Content.Shared.Mobs; -using Content.Shared.Mobs.Components; using Content.Shared.Localizations; -using Robust.Shared.Prototypes; using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; -using Content.Shared.Station; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.IoC; +using Robust.Shared.Prototypes; namespace Content.Server.EntityEffects.EffectConditions; public sealed partial class JobCondition : EntityEffectCondition { [DataField(required: true)] public List> Job; - + public override bool Condition(EntityEffectBaseArgs args) - { + { args.EntityManager.TryGetComponent(args.TargetEntity, out var mindContainer); - if (mindContainer != null && mindContainer.Mind != null) + + if ( mindContainer is null + || !args.EntityManager.TryGetComponent(mindContainer.Mind, out var mind)) + return false; + + foreach (var roleId in mind.MindRoles) { - var prototypeManager = IoCManager.Resolve(); - if (args.EntityManager.TryGetComponent(mindContainer?.Mind, out var comp) && prototypeManager.TryIndex(comp.Prototype, out var prototype)) + if(!args.EntityManager.HasComponent(roleId)) + continue; + + if (!args.EntityManager.TryGetComponent(roleId, out var mindRole)) { - foreach (var jobId in Job) - { - if (prototype.ID == jobId) - { - return true; - } - } + Logger.Error($"Encountered job mind role entity {roleId} without a {nameof(MindRoleComponent)}"); + continue; } + + if (mindRole.JobPrototype == null) + { + Logger.Error($"Encountered job mind role entity {roleId} without a {nameof(JobPrototype)}"); + continue; + } + + if (Job.Contains(mindRole.JobPrototype.Value)) + return true; } - + return false; } - + public override string GuidebookExplanation(IPrototypeManager prototype) { var localizedNames = Job.Select(jobId => prototype.Index(jobId).LocalizedName).ToList(); return Loc.GetString("reagent-effect-condition-guidebook-job-condition", ("job", ContentLocalizationManager.FormatListToOr(localizedNames))); } } - - diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 0c7668d354d571..a7dd5d6ab6248d 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -4,6 +4,7 @@ using Content.Server.GameTicking.Events; using Content.Server.Ghost; using Content.Server.Maps; +using Content.Server.Roles; using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.GameTicking; @@ -26,6 +27,7 @@ namespace Content.Server.GameTicking public sealed partial class GameTicker { [Dependency] private readonly DiscordWebhook _discord = default!; + [Dependency] private readonly RoleSystem _role = default!; [Dependency] private readonly ITaskManager _taskManager = default!; private static readonly Counter RoundNumberMetric = Metrics.CreateCounter( @@ -190,9 +192,6 @@ public int ReadyPlayerCount() if (!_playerManager.TryGetSessionById(userId, out _)) continue; - if (_banManager.GetRoleBans(userId) == null) - continue; - total++; } @@ -236,11 +235,7 @@ public void StartRound(bool force = false) #if DEBUG DebugTools.Assert(_userDb.IsLoadComplete(session), $"Player was readied up but didn't have user DB data loaded yet??"); #endif - if (_banManager.GetRoleBans(userId) == null) - { - Logger.ErrorS("RoleBans", $"Role bans for player {session} {userId} have not been loaded yet."); - continue; - } + readyPlayers.Add(session); HumanoidCharacterProfile profile; if (_prefsManager.TryGetCachedPreferences(userId, out var preferences)) @@ -339,8 +334,23 @@ public void EndRound(string text = "") RunLevel = GameRunLevel.PostRound; - ShowRoundEndScoreboard(text); - SendRoundEndDiscordMessage(); + try + { + ShowRoundEndScoreboard(text); + } + catch (Exception e) + { + Log.Error($"Error while showing round end scoreboard: {e}"); + } + + try + { + SendRoundEndDiscordMessage(); + } + catch (Exception e) + { + Log.Error($"Error while sending round end Discord message: {e}"); + } } public void ShowRoundEndScoreboard(string text = "") @@ -373,7 +383,7 @@ public void ShowRoundEndScoreboard(string text = "") var userId = mind.UserId ?? mind.OriginalOwnerUserId; var connected = false; - var observer = HasComp(mindId); + var observer = _role.MindHasRole(mindId); // Continuing if (userId != null && _playerManager.ValidSessionId(userId.Value)) { @@ -400,7 +410,7 @@ public void ShowRoundEndScoreboard(string text = "") _pvsOverride.AddGlobalOverride(GetNetEntity(entity.Value), recursive: true); } - var roles = _roles.MindGetAllRoles(mindId); + var roles = _roles.MindGetAllRoleInfo(mindId); var playerEndRoundInfo = new RoundEndMessageEvent.RoundEndPlayerInfo() { diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 53dc712daeb936..9c8b04770fd909 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -3,8 +3,6 @@ using System.Numerics; using Content.Server.Administration.Managers; using Content.Server.GameTicking.Events; -using Content.Server.Ghost; -using Content.Server.Shuttles.Components; using Content.Server.Spawners.Components; using Content.Server.Speech.Components; using Content.Server.Station.Components; @@ -224,13 +222,12 @@ private void SpawnPlayer(ICommonSession player, _mind.SetUserId(newMind, data.UserId); var jobPrototype = _prototypeManager.Index(jobId); - var job = new JobComponent {Prototype = jobId}; - _roles.MindAddRole(newMind, job, silent: silent); + _roles.MindAddJobRole(newMind, silent: silent, jobPrototype:jobId); var jobName = _jobs.MindTryGetJobName(newMind); _playTimeTrackings.PlayerRolesChanged(player); - var mobMaybe = _stationSpawning.SpawnPlayerCharacterOnStation(station, job, character); + var mobMaybe = _stationSpawning.SpawnPlayerCharacterOnStation(station, jobId, character); DebugTools.AssertNotNull(mobMaybe); var mob = mobMaybe!.Value; @@ -269,13 +266,17 @@ private void SpawnPlayer(ICommonSession player, _stationJobs.TryAssignJob(station, jobPrototype, player.UserId); if (lateJoin) + { _adminLogger.Add(LogType.LateJoin, LogImpact.Medium, $"Player {player.Name} late joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {jobName:jobName}."); + } else + { _adminLogger.Add(LogType.RoundStartJoin, LogImpact.Medium, $"Player {player.Name} joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {jobName:jobName}."); + } // Make sure they're aware of extended access. if (Comp(station).ExtendedAccess @@ -361,7 +362,7 @@ public void SpawnObserver(ICommonSession player) var (mindId, mindComp) = _mind.CreateMind(player.UserId, name); mind = (mindId, mindComp); _mind.SetUserId(mind.Value, player.UserId); - _roles.MindAddRole(mind.Value, new ObserverRoleComponent()); + _roles.MindAddRole(mind.Value, "MindRoleObserver"); } var ghost = _ghost.SpawnGhost(mind.Value); diff --git a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs index 62f92963aa7b5d..6f82aa042f01d3 100644 --- a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Dataset; +using Content.Shared.FixedPoint; using Content.Shared.NPC.Prototypes; using Content.Shared.Random; using Content.Shared.Roles; @@ -31,6 +32,24 @@ public sealed partial class TraitorRuleComponent : Component [DataField] public ProtoId ObjectiveIssuers = "TraitorCorporations"; + /// + /// Give this traitor an Uplink on spawn. + /// + [DataField] + public bool GiveUplink = true; + + /// + /// Give this traitor the codewords. + /// + [DataField] + public bool GiveCodewords = true; + + /// + /// Give this traitor a briefing in chat. + /// + [DataField] + public bool GiveBriefing = true; + public int TotalTraitors => TraitorMinds.Count; public string[] Codewords = new string[3]; @@ -68,5 +87,5 @@ public enum SelectionState /// The amount of TC traitors start with. /// [DataField] - public int StartingBalance = 20; + public FixedPoint2 StartingBalance = 20; } diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index 57239ee8c153c0..ca6548301a7ee4 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -9,7 +9,6 @@ using Content.Server.Shuttles.Events; using Content.Server.Shuttles.Systems; using Content.Server.Station.Components; -using Content.Server.Store.Components; using Content.Server.Store.Systems; using Content.Shared.GameTicking.Components; using Content.Shared.Mobs; @@ -31,9 +30,9 @@ namespace Content.Server.GameTicking.Rules; public sealed class NukeopsRuleSystem : GameRuleSystem { + [Dependency] private readonly AntagSelectionSystem _antag = default!; [Dependency] private readonly EmergencyShuttleSystem _emergency = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!; - [Dependency] private readonly AntagSelectionSystem _antag = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly RoundEndSystem _roundEndSystem = default!; [Dependency] private readonly StoreSystem _store = default!; @@ -57,6 +56,8 @@ public override void Initialize() SubscribeLocalEvent(OnMobStateChanged); SubscribeLocalEvent(OnOperativeZombified); + SubscribeLocalEvent(OnGetBriefing); + SubscribeLocalEvent(OnShuttleFTLAttempt); SubscribeLocalEvent(OnWarDeclared); SubscribeLocalEvent(OnShuttleCallAttempt); @@ -65,7 +66,9 @@ public override void Initialize() SubscribeLocalEvent(OnRuleLoadedGrids); } - protected override void Started(EntityUid uid, NukeopsRuleComponent component, GameRuleComponent gameRule, + protected override void Started(EntityUid uid, + NukeopsRuleComponent component, + GameRuleComponent gameRule, GameRuleStartedEvent args) { var eligible = new List>(); @@ -85,7 +88,9 @@ protected override void Started(EntityUid uid, NukeopsRuleComponent component, G } #region Event Handlers - protected override void AppendRoundEndText(EntityUid uid, NukeopsRuleComponent component, GameRuleComponent gameRule, + protected override void AppendRoundEndText(EntityUid uid, + NukeopsRuleComponent component, + GameRuleComponent gameRule, ref RoundEndTextAppendEvent args) { var winText = Loc.GetString($"nukeops-{component.WinType.ToString().ToLower()}"); @@ -227,7 +232,8 @@ private void OnRoundEnd(Entity ent) // If the disk is currently at Central Command, the crew wins - just slightly. // This also implies that some nuclear operatives have died. - SetWinType(ent, diskAtCentCom + SetWinType(ent, + diskAtCentCom ? WinType.CrewMinor : WinType.OpsMinor); ent.Comp.WinConditions.Add(diskAtCentCom @@ -456,8 +462,11 @@ private void CheckRoundShouldEnd(Entity ent) : WinCondition.AllNukiesDead); SetWinType(ent, WinType.CrewMajor, false); - _roundEndSystem.DoRoundEndBehavior( - nukeops.RoundEndBehavior, nukeops.EvacShuttleTime, nukeops.RoundEndTextSender, nukeops.RoundEndTextShuttleCall, nukeops.RoundEndTextAnnouncement); + _roundEndSystem.DoRoundEndBehavior(nukeops.RoundEndBehavior, + nukeops.EvacShuttleTime, + nukeops.RoundEndTextSender, + nukeops.RoundEndTextShuttleCall, + nukeops.RoundEndTextAnnouncement); // prevent it called multiple times nukeops.RoundEndBehavior = RoundEndBehavior.Nothing; @@ -465,16 +474,22 @@ private void CheckRoundShouldEnd(Entity ent) private void OnAfterAntagEntSelected(Entity ent, ref AfterAntagEntitySelectedEvent args) { - if (ent.Comp.TargetStation is not { } station) - return; + var target = (ent.Comp.TargetStation is not null) ? Name(ent.Comp.TargetStation.Value) : "the target"; - _antag.SendBriefing(args.Session, Loc.GetString("nukeops-welcome", - ("station", station), + _antag.SendBriefing(args.Session, + Loc.GetString("nukeops-welcome", + ("station", target), ("name", Name(ent))), Color.Red, ent.Comp.GreetSoundNotification); } + private void OnGetBriefing(Entity role, ref GetBriefingEvent args) + { + // TODO Different character screen briefing for the 3 nukie types + args.Append(Loc.GetString("nukeops-briefing")); + } + /// /// Is this method the shitty glue holding together the last of my sanity? yes. /// Do i have a better solution? not presently. diff --git a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs index c5f88ab6cf1e29..a313b78eaf13d7 100644 --- a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs @@ -15,7 +15,6 @@ 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; @@ -38,8 +37,8 @@ namespace Content.Server.GameTicking.Rules; public sealed class RevolutionaryRuleSystem : GameRuleSystem { [Dependency] private readonly IAdminLogManager _adminLogManager = default!; - [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly AntagSelectionSystem _antag = default!; + [Dependency] private readonly EmergencyShuttleSystem _emergencyShuttle = default!; [Dependency] private readonly EuiManager _euiMan = default!; [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly MobStateSystem _mobState = default!; @@ -49,7 +48,7 @@ public sealed class RevolutionaryRuleSystem : GameRuleSystem RevolutionaryNpcFaction = "Revolutionary"; @@ -59,9 +58,12 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnCommandMobStateChanged); + + SubscribeLocalEvent(OnPostFlash); SubscribeLocalEvent(OnHeadRevMobStateChanged); + SubscribeLocalEvent(OnGetBriefing); - SubscribeLocalEvent(OnPostFlash); + } protected override void Started(EntityUid uid, RevolutionaryRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) @@ -85,7 +87,9 @@ protected override void ActiveTick(EntityUid uid, RevolutionaryRuleComponent com } } - protected override void AppendRoundEndText(EntityUid uid, RevolutionaryRuleComponent component, GameRuleComponent gameRule, + protected override void AppendRoundEndText(EntityUid uid, + RevolutionaryRuleComponent component, + GameRuleComponent gameRule, ref RoundEndTextAppendEvent args) { base.AppendRoundEndText(uid, component, gameRule, ref args); @@ -101,7 +105,9 @@ protected override void AppendRoundEndText(EntityUid uid, RevolutionaryRuleCompo args.AddLine(Loc.GetString("rev-headrev-count", ("initialCount", sessionData.Count))); foreach (var (mind, data, name) in sessionData) { - var count = CompOrNull(mind)?.ConvertedCount ?? 0; + _role.MindHasRole(mind, out var role); + var count = CompOrNull(role)?.ConvertedCount ?? 0; + args.AddLine(Loc.GetString("rev-headrev-name-user", ("name", name), ("username", data.UserName), @@ -113,10 +119,8 @@ protected override void AppendRoundEndText(EntityUid uid, RevolutionaryRuleCompo private void OnGetBriefing(EntityUid uid, RevolutionaryRoleComponent comp, ref GetBriefingEvent args) { - if (!TryComp(uid, out var mind) || mind.OwnedEntity == null) - return; - - var head = HasComp(mind.OwnedEntity); + var ent = args.Mind.Comp.OwnedEntity; + var head = HasComp(ent); args.Append(Loc.GetString(head ? "head-rev-briefing" : "rev-briefing")); } @@ -145,15 +149,20 @@ private void OnPostFlash(EntityUid uid, HeadRevolutionaryComponent comp, ref Aft if (ev.User != null) { - _adminLogManager.Add(LogType.Mind, LogImpact.Medium, $"{ToPrettyString(ev.User.Value)} converted {ToPrettyString(ev.Target)} into a Revolutionary"); + _adminLogManager.Add(LogType.Mind, + LogImpact.Medium, + $"{ToPrettyString(ev.User.Value)} converted {ToPrettyString(ev.Target)} into a Revolutionary"); - if (_mind.TryGetRole(ev.User.Value, out var headrev)) - headrev.ConvertedCount++; + if (_mind.TryGetMind(ev.User.Value, out var revMindId, out _)) + { + if (_role.MindHasRole(revMindId, out var role)) + role.Value.Comp2.ConvertedCount++; + } } if (mindId == default || !_role.MindHasRole(mindId)) { - _role.MindAddRole(mindId, new RevolutionaryRoleComponent { PrototypeId = RevPrototypeId }); + _role.MindAddRole(mindId, "MindRoleRevolutionary"); } if (mind?.Session != null) diff --git a/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs b/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs index 074b4c0df7a071..b00ed386363e98 100644 --- a/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs @@ -1,18 +1,12 @@ using Content.Server.Antag; using Content.Server.GameTicking.Rules.Components; -using Content.Server.Mind; -using Content.Server.Objectives; using Content.Server.Roles; using Content.Shared.Humanoid; -using Content.Shared.Mind; -using Content.Shared.Objectives.Components; -using Robust.Shared.Random; namespace Content.Server.GameTicking.Rules; public sealed class ThiefRuleSystem : GameRuleSystem { - [Dependency] private readonly MindSystem _mindSystem = default!; [Dependency] private readonly AntagSelectionSystem _antag = default!; public override void Initialize() @@ -24,32 +18,33 @@ public override void Initialize() SubscribeLocalEvent(OnGetBriefing); } - private void AfterAntagSelected(Entity ent, ref AfterAntagEntitySelectedEvent args) + // Greeting upon thief activation + private void AfterAntagSelected(Entity mindId, ref AfterAntagEntitySelectedEvent args) { - if (!_mindSystem.TryGetMind(args.EntityUid, out var mindId, out var mind)) - return; - - //Generate objectives - _antag.SendBriefing(args.EntityUid, MakeBriefing(args.EntityUid), null, null); + var ent = args.EntityUid; + _antag.SendBriefing(ent, MakeBriefing(ent), null, null); } - //Add mind briefing - private void OnGetBriefing(Entity thief, ref GetBriefingEvent args) + // Character screen briefing + private void OnGetBriefing(Entity role, ref GetBriefingEvent args) { - if (!TryComp(thief.Owner, out var mind) || mind.OwnedEntity == null) - return; + var ent = args.Mind.Comp.OwnedEntity; - args.Append(MakeBriefing(mind.OwnedEntity.Value)); + if (ent is null) + return; + args.Append(MakeBriefing(ent.Value)); } - private string MakeBriefing(EntityUid thief) + private string MakeBriefing(EntityUid ent) { - var isHuman = HasComp(thief); + var isHuman = HasComp(ent); var briefing = isHuman ? Loc.GetString("thief-role-greeting-human") : Loc.GetString("thief-role-greeting-animal"); - briefing += "\n \n" + Loc.GetString("thief-role-greeting-equipment") + "\n"; + if (isHuman) + briefing += "\n \n" + Loc.GetString("thief-role-greeting-equipment") + "\n"; + return briefing; } } diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 4e4191a51bfbef..1987613763b5f2 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Administration.Logs; using Content.Server.Antag; using Content.Server.GameTicking.Rules.Components; using Content.Server.Mind; @@ -5,12 +6,12 @@ using Content.Server.PDA.Ringer; using Content.Server.Roles; using Content.Server.Traitor.Uplink; +using Content.Shared.Database; +using Content.Shared.FixedPoint; using Content.Shared.GameTicking.Components; using Content.Shared.Mind; using Content.Shared.NPC.Systems; -using Content.Shared.Objectives.Components; using Content.Shared.PDA; -using Content.Shared.Radio; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; using Content.Shared.Roles.RoleCodeword; @@ -25,29 +26,29 @@ public sealed class TraitorRuleSystem : GameRuleSystem { private static readonly Color TraitorCodewordColor = Color.FromHex("#cc3b3b"); - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly NpcFactionSystem _npcFaction = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly AntagSelectionSystem _antag = default!; - [Dependency] private readonly UplinkSystem _uplink = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; - [Dependency] private readonly SharedRoleSystem _roleSystem = default!; [Dependency] private readonly SharedJobSystem _jobs = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly NpcFactionSystem _npcFaction = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedRoleCodewordSystem _roleCodewordSystem = default!; + [Dependency] private readonly SharedRoleSystem _roleSystem = default!; + [Dependency] private readonly UplinkSystem _uplink = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(AfterEntitySelected); - SubscribeLocalEvent(OnObjectivesTextPrepend); } protected override void Added(EntityUid uid, TraitorRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) { base.Added(uid, component, gameRule, args); - SetCodewords(component); + SetCodewords(component, args.RuleEntity); } private void AfterEntitySelected(Entity ent, ref AfterAntagEntitySelectedEvent args) @@ -55,9 +56,10 @@ private void AfterEntitySelected(Entity ent, ref AfterAnta MakeTraitor(args.EntityUid, ent); } - private void SetCodewords(TraitorRuleComponent component) + private void SetCodewords(TraitorRuleComponent component, EntityUid ruleEntity) { component.Codewords = GenerateTraitorCodewords(component); + _adminLogger.Add(LogType.EventStarted, LogImpact.Low, $"Codewords generated for game rule {ToPrettyString(ruleEntity)}: {string.Join(", ", component.Codewords)}"); } public string[] GenerateTraitorCodewords(TraitorRuleComponent component) @@ -74,47 +76,59 @@ public string[] GenerateTraitorCodewords(TraitorRuleComponent component) return codewords; } - public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component, bool giveUplink = true) + public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component) { - //Grab the mind if it wasnt provided + //Grab the mind if it wasn't provided if (!_mindSystem.TryGetMind(traitor, out var mindId, out var mind)) return false; - var briefing = Loc.GetString("traitor-role-codewords-short", ("codewords", string.Join(", ", component.Codewords))); + var briefing = ""; + + if (component.GiveCodewords) + briefing = Loc.GetString("traitor-role-codewords-short", ("codewords", string.Join(", ", component.Codewords))); + var issuer = _random.Pick(_prototypeManager.Index(component.ObjectiveIssuers).Values); + // Uplink code will go here if applicable, but we still need the variable if there aren't any Note[]? code = null; - if (giveUplink) + + if (component.GiveUplink) { // Calculate the amount of currency on the uplink. var startingBalance = component.StartingBalance; - if (_jobs.MindTryGetJob(mindId, out _, out var prototype)) - startingBalance = Math.Max(startingBalance - prototype.AntagAdvantage, 0); - - // creadth: we need to create uplink for the antag. - // PDA should be in place already - var pda = _uplink.FindUplinkTarget(traitor); - if (pda == null || !_uplink.AddUplink(traitor, startingBalance, giveDiscounts: true)) - return false; - - // Give traitors their codewords and uplink code to keep in their character info menu - code = EnsureComp(pda.Value).Code; + if (_jobs.MindTryGetJob(mindId, out var prototype)) + { + if (startingBalance < prototype.AntagAdvantage) // Can't use Math functions on FixedPoint2 + startingBalance = 0; + else + startingBalance = startingBalance - prototype.AntagAdvantage; + } - // If giveUplink is false the uplink code part is omitted - briefing = string.Format("{0}\n{1}", briefing, - Loc.GetString("traitor-role-uplink-code-short", ("code", string.Join("-", code).Replace("sharp", "#")))); + // Choose and generate an Uplink, and return the uplink code if applicable + var uplinkParams = RequestUplink(traitor, startingBalance, briefing); + code = uplinkParams.Item1; + briefing = uplinkParams.Item2; } - _antag.SendBriefing(traitor, GenerateBriefing(component.Codewords, code, issuer), null, component.GreetSoundNotification); + string[]? codewords = null; + if (component.GiveCodewords) + codewords = component.Codewords; + if (component.GiveBriefing) + _antag.SendBriefing(traitor, GenerateBriefing(codewords, code, issuer), null, component.GreetSoundNotification); component.TraitorMinds.Add(mindId); // Assign briefing - _roleSystem.MindAddRole(mindId, new RoleBriefingComponent + //Since this provides neither an antag/job prototype, nor antag status/roletype, + //and is intrinsically related to the traitor role + //it does not need to be a separate Mind Role Entity + _roleSystem.MindHasRole(mindId, out var traitorRole); + if (traitorRole is not null) { - Briefing = briefing - }, mind, true); + AddComp(traitorRole.Value.Owner); + Comp(traitorRole.Value.Owner).Briefing = briefing; + } // Send codewords to only the traitor client var color = TraitorCodewordColor; // Fall back to a dark red Syndicate color if a prototype is not found @@ -129,6 +143,32 @@ public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component, bool return true; } + private (Note[]?, string) RequestUplink(EntityUid traitor, FixedPoint2 startingBalance, string briefing) + { + var pda = _uplink.FindUplinkTarget(traitor); + Note[]? code = null; + + var uplinked = _uplink.AddUplink(traitor, startingBalance, pda, true); + + if (pda is not null && uplinked) + { + // Codes are only generated if the uplink is a PDA + code = EnsureComp(pda.Value).Code; + + // If giveUplink is false the uplink code part is omitted + briefing = string.Format("{0}\n{1}", + briefing, + Loc.GetString("traitor-role-uplink-code-short", ("code", string.Join("-", code).Replace("sharp", "#")))); + return (code, briefing); + } + else if (pda is null && uplinked) + { + briefing += "\n" + Loc.GetString("traitor-role-uplink-implant-short"); + } + + return (null, briefing); + } + // TODO: AntagCodewordsComponent private void OnObjectivesTextPrepend(EntityUid uid, TraitorRuleComponent comp, ref ObjectivesTextPrependEvent args) { @@ -136,13 +176,17 @@ private void OnObjectivesTextPrepend(EntityUid uid, TraitorRuleComponent comp, r } // TODO: figure out how to handle this? add priority to briefing event? - private string GenerateBriefing(string[] codewords, Note[]? uplinkCode, string? objectiveIssuer = null) + private string GenerateBriefing(string[]? codewords, Note[]? uplinkCode, string? objectiveIssuer = null) { var sb = new StringBuilder(); sb.AppendLine(Loc.GetString("traitor-role-greeting", ("corporation", objectiveIssuer ?? Loc.GetString("objective-issuer-unknown")))); - sb.AppendLine(Loc.GetString("traitor-role-codewords", ("codewords", string.Join(", ", codewords)))); + if (codewords != null) + sb.AppendLine(Loc.GetString("traitor-role-codewords", ("codewords", string.Join(", ", codewords)))); if (uplinkCode != null) sb.AppendLine(Loc.GetString("traitor-role-uplink-code", ("code", string.Join("-", uplinkCode).Replace("sharp", "#")))); + else + sb.AppendLine(Loc.GetString("traitor-role-uplink-implant")); + return sb.ToString(); } diff --git a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs index e91931300e2397..bb76721340dc29 100644 --- a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.Roles; using Content.Shared.Zombies; using Robust.Shared.Player; using Robust.Shared.Timing; @@ -22,15 +23,16 @@ namespace Content.Server.GameTicking.Rules; public sealed class ZombieRuleSystem : GameRuleSystem { + [Dependency] private readonly AntagSelectionSystem _antag = default!; [Dependency] private readonly ChatSystem _chat = default!; - [Dependency] private readonly RoundEndSystem _roundEnd = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly ZombieSystem _zombie = default!; [Dependency] private readonly SharedMindSystem _mindSystem = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; + [Dependency] private readonly RoundEndSystem _roundEnd = default!; [Dependency] private readonly StationSystem _station = default!; - [Dependency] private readonly AntagSelectionSystem _antag = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly ZombieSystem _zombie = default!; public override void Initialize() { @@ -41,23 +43,20 @@ public override void Initialize() SubscribeLocalEvent(OnZombifySelf); } - private void OnGetBriefing(EntityUid uid, InitialInfectedRoleComponent component, ref GetBriefingEvent args) + private void OnGetBriefing(Entity role, ref GetBriefingEvent args) { - if (!TryComp(uid, out var mind) || mind.OwnedEntity == null) - return; - if (HasComp(uid)) // don't show both briefings - return; - args.Append(Loc.GetString("zombie-patientzero-role-greeting")); + if (!_roles.MindHasRole(args.Mind.Owner)) + args.Append(Loc.GetString("zombie-patientzero-role-greeting")); } - private void OnGetBriefing(EntityUid uid, ZombieRoleComponent component, ref GetBriefingEvent args) + private void OnGetBriefing(Entity role, ref GetBriefingEvent args) { - if (!TryComp(uid, out var mind) || mind.OwnedEntity == null) - return; args.Append(Loc.GetString("zombie-infection-greeting")); } - protected override void AppendRoundEndText(EntityUid uid, ZombieRuleComponent component, GameRuleComponent gameRule, + protected override void AppendRoundEndText(EntityUid uid, + ZombieRuleComponent component, + GameRuleComponent gameRule, ref RoundEndTextAppendEvent args) { base.AppendRoundEndText(uid, component, gameRule, ref args); diff --git a/Content.Server/Ghost/Roles/GhostRoleMarkerRoleComponent.cs b/Content.Server/Ghost/Roles/GhostRoleMarkerRoleComponent.cs index bd276e6df70517..3dfa37a6b13929 100644 --- a/Content.Server/Ghost/Roles/GhostRoleMarkerRoleComponent.cs +++ b/Content.Server/Ghost/Roles/GhostRoleMarkerRoleComponent.cs @@ -1,11 +1,13 @@ -namespace Content.Server.Ghost.Roles; +using Content.Shared.Roles; + +namespace Content.Server.Ghost.Roles; /// /// This is used for round end display of ghost roles. /// It may also be used to ensure some ghost roles count as antagonists in future. /// [RegisterComponent] -public sealed partial class GhostRoleMarkerRoleComponent : Component +public sealed partial class GhostRoleMarkerRoleComponent : BaseMindRoleComponent { [DataField("name")] public string? Name; } diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index 23ce0f1539877d..cd01c964ef6cba 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -71,18 +71,22 @@ public override void Initialize() SubscribeLocalEvent(Reset); SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnMindAdded); SubscribeLocalEvent(OnMindRemoved); SubscribeLocalEvent(OnMobStateChanged); + SubscribeLocalEvent(OnTakeoverTakeRole); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnRoleStartup); SubscribeLocalEvent(OnRoleShutdown); SubscribeLocalEvent(OnPaused); SubscribeLocalEvent(OnUnpaused); + SubscribeLocalEvent(OnRaffleInit); SubscribeLocalEvent(OnRaffleShutdown); + SubscribeLocalEvent(OnSpawnerTakeRole); - SubscribeLocalEvent(OnTakeoverTakeRole); SubscribeLocalEvent>(OnVerb); SubscribeLocalEvent(OnGhostRoleRadioMessage); _playerManager.PlayerStatusChanged += PlayerStatusChanged; @@ -509,7 +513,11 @@ public void GhostRoleInternalCreateMindAndTransfer(ICommonSession player, Entity var newMind = _mindSystem.CreateMind(player.UserId, EntityManager.GetComponent(mob).EntityName); - _roleSystem.MindAddRole(newMind, new GhostRoleMarkerRoleComponent { Name = role.RoleName }); + + _roleSystem.MindAddRole(newMind, "MindRoleGhostMarker"); + + if(_roleSystem.MindHasRole(newMind!, out var markerRole)) + markerRole.Value.Comp2.Name = role.RoleName; _mindSystem.SetUserId(newMind, player.UserId); _mindSystem.TransferTo(newMind, mob); @@ -602,10 +610,7 @@ private void OnMindAdded(EntityUid uid, GhostTakeoverAvailableComponent componen if (ghostRole.JobProto != null) { - if (HasComp(args.Mind)) - _roleSystem.MindRemoveRole(args.Mind); - - _roleSystem.MindAddRole(args.Mind, new JobComponent { Prototype = ghostRole.JobProto }); + _roleSystem.MindAddJobRole(args.Mind, args.Mind, silent:false,ghostRole.JobProto); } ghostRole.Taken = true; diff --git a/Content.Server/Holosign/HolosignSystem.cs b/Content.Server/Holosign/HolosignSystem.cs index a36603b01dd3d0..b63a5459898316 100644 --- a/Content.Server/Holosign/HolosignSystem.cs +++ b/Content.Server/Holosign/HolosignSystem.cs @@ -45,7 +45,7 @@ private void OnBeforeInteract(EntityUid uid, HolosignProjectorComponent componen if (args.Handled || !args.CanReach // prevent placing out of range || HasComp(args.Target) // if it's a storage component like a bag, we ignore usage so it can be stored - || !_powerCell.TryUseCharge(uid, component.ChargeUse) // if no battery or no charge, doesn't work + || !_powerCell.TryUseCharge(uid, component.ChargeUse, user: args.User) // if no battery or no charge, doesn't work ) return; diff --git a/Content.Server/IdentityManagement/IdentitySystem.cs b/Content.Server/IdentityManagement/IdentitySystem.cs index e110a42483456a..ff6901f5a92e10 100644 --- a/Content.Server/IdentityManagement/IdentitySystem.cs +++ b/Content.Server/IdentityManagement/IdentitySystem.cs @@ -166,7 +166,7 @@ private IdentityRepresentation GetIdentityRepresentation(EntityUid target, if (_idCard.TryFindIdCard(target, out var id)) { presumedName = string.IsNullOrWhiteSpace(id.Comp.FullName) ? null : id.Comp.FullName; - presumedJob = id.Comp.JobTitle?.ToLowerInvariant(); + presumedJob = id.Comp.LocalizedJobTitle?.ToLowerInvariant(); } // If it didn't find a job, that's fine. diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index 12c5a30a4b29ec..de848b34c2c158 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Components; using Content.Shared.Containers.ItemSlots; +using Content.Shared.Destructible; using Content.Shared.FixedPoint; using Content.Shared.Interaction; using Content.Shared.Kitchen; @@ -122,6 +123,9 @@ public override void Update(float frameTime) if (solution.Volume > containerSolution.AvailableVolume) continue; + var dev = new DestructionEventArgs(); + RaiseLocalEvent(item, dev); + QueueDel(item); } diff --git a/Content.Server/Materials/MaterialStorageSystem.cs b/Content.Server/Materials/MaterialStorageSystem.cs index 25e409fd01021d..9f43a220493a4f 100644 --- a/Content.Server/Materials/MaterialStorageSystem.cs +++ b/Content.Server/Materials/MaterialStorageSystem.cs @@ -175,6 +175,10 @@ public List SpawnMultipleFromMaterial(int amount, MaterialPrototype m var materialPerStack = composition.MaterialComposition[materialProto.ID]; var amountToSpawn = amount / materialPerStack; overflowMaterial = amount - amountToSpawn * materialPerStack; + + if (amountToSpawn == 0) + return new List(); + return _stackSystem.SpawnMultiple(materialProto.StackEntity, amountToSpawn, coordinates); } diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index b1b87ae981d561..f56b16432e1723 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -363,8 +363,8 @@ public void SetSensor(Entity sensors, SuitSensorMode mode, { if (card.Comp.FullName != null) userName = card.Comp.FullName; - if (card.Comp.JobTitle != null) - userJob = card.Comp.JobTitle; + if (card.Comp.LocalizedJobTitle != null) + userJob = card.Comp.LocalizedJobTitle; userJobIcon = card.Comp.JobIcon; foreach (var department in card.Comp.JobDepartments) diff --git a/Content.Server/Mind/Commands/MindInfoCommand.cs b/Content.Server/Mind/Commands/MindInfoCommand.cs index d4961b82dbbc7d..c365702a314206 100644 --- a/Content.Server/Mind/Commands/MindInfoCommand.cs +++ b/Content.Server/Mind/Commands/MindInfoCommand.cs @@ -43,7 +43,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) builder.AppendFormat("player: {0}, mob: {1}\nroles: ", mind.UserId, mind.OwnedEntity); var roles = _entities.System(); - foreach (var role in roles.MindGetAllRoles(mindId)) + foreach (var role in roles.MindGetAllRoleInfo(mindId)) { builder.AppendFormat("{0} ", role.Name); } diff --git a/Content.Server/Movement/Systems/WaddleAnimationSystem.cs b/Content.Server/Movement/Systems/WaddleAnimationSystem.cs deleted file mode 100644 index e6083210e1bffa..00000000000000 --- a/Content.Server/Movement/Systems/WaddleAnimationSystem.cs +++ /dev/null @@ -1,5 +0,0 @@ -using Content.Shared.Movement.Systems; - -namespace Content.Server.Movement.Systems; - -public sealed class WaddleAnimationSystem : SharedWaddleAnimationSystem; diff --git a/Content.Server/NameIdentifier/NameIdentifierSystem.cs b/Content.Server/NameIdentifier/NameIdentifierSystem.cs index eefd4357cb3325..6db6e0ff565cde 100644 --- a/Content.Server/NameIdentifier/NameIdentifierSystem.cs +++ b/Content.Server/NameIdentifier/NameIdentifierSystem.cs @@ -14,6 +14,7 @@ public sealed class NameIdentifierSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly ILogManager _logManager = default!; /// /// Free IDs available per . @@ -118,23 +119,39 @@ private void OnMapInit(EntityUid uid, NameIdentifierComponent component, MapInit private void InitialSetupPrototypes() { - foreach (var proto in _prototypeManager.EnumeratePrototypes()) - { - AddGroup(proto); - } + EnsureIds(); } - private void AddGroup(NameIdentifierGroupPrototype proto) + private void FillGroup(NameIdentifierGroupPrototype proto, List values) { - var values = new List(proto.MaxValue - proto.MinValue); - + values.Clear(); for (var i = proto.MinValue; i < proto.MaxValue; i++) { values.Add(i); } _robustRandom.Shuffle(values); - CurrentIds.Add(proto.ID, values); + } + + private List GetOrCreateIdList(NameIdentifierGroupPrototype proto) + { + if (!CurrentIds.TryGetValue(proto.ID, out var ids)) + { + ids = new List(proto.MaxValue - proto.MinValue); + CurrentIds.Add(proto.ID, ids); + } + + return ids; + } + + private void EnsureIds() + { + foreach (var proto in _prototypeManager.EnumeratePrototypes()) + { + var ids = GetOrCreateIdList(proto); + + FillGroup(proto, ids); + } } private void OnReloadPrototypes(PrototypesReloadedEventArgs ev) @@ -159,19 +176,20 @@ private void OnReloadPrototypes(PrototypesReloadedEventArgs ev) foreach (var proto in set.Modified.Values) { + var name_proto = (NameIdentifierGroupPrototype) proto; + // Only bother adding new ones. if (CurrentIds.ContainsKey(proto.ID)) continue; - AddGroup((NameIdentifierGroupPrototype) proto); + var ids = GetOrCreateIdList(name_proto); + FillGroup(name_proto, ids); } } + private void CleanupIds(RoundRestartCleanupEvent ev) { - foreach (var values in CurrentIds.Values) - { - _robustRandom.Shuffle(values); - } + EnsureIds(); } } diff --git a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs index 244b7adf0362bb..20674dda8799f7 100644 --- a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs +++ b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs @@ -22,6 +22,9 @@ public sealed class NinjaSuitSystem : SharedNinjaSuitSystem [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + // How much the cell score should be increased per 1 AutoRechargeRate. + private const int AutoRechargeValue = 100; + public override void Initialize() { base.Initialize(); @@ -59,15 +62,26 @@ private void OnSuitInsertAttempt(EntityUid uid, NinjaSuitComponent comp, Contain return; // no power cell for some reason??? allow it - if (!_powerCell.TryGetBatteryFromSlot(uid, out var battery)) + if (!_powerCell.TryGetBatteryFromSlot(uid, out var batteryUid, out var battery)) + return; + + if (!TryComp(args.EntityUid, out var inserting)) + { + args.Cancel(); return; + } + + var user = Transform(uid).ParentUid; // can only upgrade power cell, not swap to recharge instantly otherwise ninja could just swap batteries with flashlights in maints for easy power - if (!TryComp(args.EntityUid, out var inserting) || inserting.MaxCharge <= battery.MaxCharge) + if (GetCellScore(inserting.Owner, inserting) <= GetCellScore(battery.Owner, battery)) + { args.Cancel(); + Popup.PopupEntity(Loc.GetString("ninja-cell-downgrade"), user, user); + return; + } // tell ninja abilities that use battery to update it so they don't use charge from the old one - var user = Transform(uid).ParentUid; if (!_ninja.IsNinja(user)) return; @@ -76,6 +90,16 @@ private void OnSuitInsertAttempt(EntityUid uid, NinjaSuitComponent comp, Contain RaiseLocalEvent(user, ref ev); } + // this function assigns a score to a power cell depending on the capacity, to be used when comparing which cell is better. + private float GetCellScore(EntityUid uid, BatteryComponent battcomp) + { + // if a cell is able to automatically recharge, boost the score drastically depending on the recharge rate, + // this is to ensure a ninja can still upgrade to a micro reactor cell even if they already have a medium or high. + if (TryComp(uid, out var selfcomp) && selfcomp.AutoRecharge) + return battcomp.MaxCharge + (selfcomp.AutoRechargeRate*AutoRechargeValue); + return battcomp.MaxCharge; + } + private void OnEmpAttempt(EntityUid uid, NinjaSuitComponent comp, EmpAttemptEvent args) { // ninja suit (battery) is immune to emp diff --git a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs index c916d568d5f1df..6594d7883bcf81 100644 --- a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs +++ b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs @@ -1,14 +1,12 @@ using Content.Server.Explosion.EntitySystems; -using Content.Server.GameTicking.Rules.Components; using Content.Server.Mind; using Content.Server.Objectives.Components; using Content.Server.Popups; using Content.Server.Roles; -using Content.Shared.Interaction; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; +using Content.Shared.Roles; using Content.Shared.Sticky; -using Robust.Shared.GameObjects; namespace Content.Server.Ninja.Systems; @@ -19,6 +17,7 @@ public sealed class SpiderChargeSystem : SharedSpiderChargeSystem { [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly SharedRoleSystem _role = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SpaceNinjaSystem _ninja = default!; @@ -41,7 +40,10 @@ private void OnAttemptStick(EntityUid uid, SpiderChargeComponent comp, ref Attem var user = args.User; - if (!_mind.TryGetRole(user, out var _)) + if (!_mind.TryGetMind(args.User, out var mind, out _)) + return; + + if (!_role.MindHasRole(mind)) { _popup.PopupEntity(Loc.GetString("spider-charge-not-ninja"), user, user); args.Cancelled = true; diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index f04d79b47da910..90a925e39f145c 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -317,7 +317,7 @@ private void OnDoAfter(Entity entity, ref ConsumeDoAfterEvent ar _adminLogger.Add(LogType.Ingestion, LogImpact.Low, $"{ToPrettyString(args.User):target} drank {ToPrettyString(entity.Owner):drink}"); } - _audio.PlayPvs(entity.Comp.UseSound, args.Target.Value, AudioParams.Default.WithVolume(-2f)); + _audio.PlayPvs(entity.Comp.UseSound, args.Target.Value, AudioParams.Default.WithVolume(-2f).WithVariation(0.25f)); _reaction.DoEntityReaction(args.Target.Value, solution, ReactionMethod.Ingestion); _stomach.TryTransferSolution(firstStomach.Value.Owner, drained, firstStomach.Value.Comp1); diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 3a7c249c2b30cb..158c7f4955c5ad 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -33,6 +33,7 @@ using Content.Shared.Containers.ItemSlots; using Robust.Server.GameObjects; using Content.Shared.Whitelist; +using Content.Shared.Destructible; namespace Content.Server.Nutrition.EntitySystems; @@ -295,7 +296,7 @@ private void OnDoAfter(Entity entity, ref ConsumeDoAfterEvent arg _adminLogger.Add(LogType.Ingestion, LogImpact.Low, $"{ToPrettyString(args.User):target} ate {ToPrettyString(entity.Owner):food}"); } - _audio.PlayPvs(entity.Comp.UseSound, args.Target.Value, AudioParams.Default.WithVolume(-1f)); + _audio.PlayPvs(entity.Comp.UseSound, args.Target.Value, AudioParams.Default.WithVolume(-1f).WithVariation(0.20f)); // Try to break all used utensils foreach (var utensil in utensils) @@ -335,6 +336,9 @@ public void DeleteAndSpawnTrash(FoodComponent component, EntityUid food, EntityU if (ev.Cancelled) return; + var dev = new DestructionEventArgs(); + RaiseLocalEvent(food, dev); + if (component.Trash.Count == 0) { QueueDel(food); diff --git a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs index c1caa819e449ed..8dcbf191b36632 100644 --- a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs +++ b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs @@ -1,9 +1,9 @@ using Content.Server.Objectives.Components; +using Content.Server.Revolutionary.Components; using Content.Server.Shuttles.Systems; using Content.Shared.CCVar; using Content.Shared.Mind; using Content.Shared.Objectives.Components; -using Content.Shared.Roles.Jobs; using Robust.Shared.Configuration; using Robust.Shared.Random; @@ -17,7 +17,6 @@ public sealed class KillPersonConditionSystem : EntitySystem [Dependency] private readonly EmergencyShuttleSystem _emergencyShuttle = default!; [Dependency] private readonly IConfigurationManager _config = default!; [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly SharedJobSystem _job = default!; [Dependency] private readonly SharedMindSystem _mind = default!; [Dependency] private readonly TargetObjectiveSystem _target = default!; @@ -86,11 +85,10 @@ private void OnHeadAssigned(EntityUid uid, PickRandomHeadComponent comp, ref Obj } var allHeads = new List(); - foreach (var mind in allHumans) + foreach (var person in allHumans) { - // RequireAdminNotify used as a cheap way to check for command department - if (_job.MindTryGetJob(mind, out _, out var prototype) && prototype.RequireAdminNotify) - allHeads.Add(mind); + if (TryComp(person, out var mind) && mind.OwnedEntity is { } ent && HasComp(ent)) + allHeads.Add(person); } if (allHeads.Count == 0) diff --git a/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs b/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs index 47c54b937a070d..ee99658f66ef12 100644 --- a/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs +++ b/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs @@ -1,9 +1,10 @@ using Content.Server.Objectives.Components; +using Content.Server.Roles; using Content.Server.Warps; using Content.Shared.Objectives.Components; using Content.Shared.Ninja.Components; +using Content.Shared.Roles; using Robust.Shared.Random; -using Content.Server.Roles; namespace Content.Server.Objectives.Systems; @@ -16,6 +17,7 @@ public sealed class NinjaConditionsSystem : EntitySystem [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly NumberObjectiveSystem _number = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; public override void Initialize() { @@ -46,10 +48,8 @@ private float DoorjackProgress(DoorjackConditionComponent comp, int target) // spider charge private void OnSpiderChargeRequirementCheck(EntityUid uid, SpiderChargeConditionComponent comp, ref RequirementCheckEvent args) { - if (args.Cancelled || !HasComp(args.MindId)) - { + if (args.Cancelled || !_roles.MindHasRole(args.MindId)) return; - } // choose spider charge detonation point var warps = new List(); diff --git a/Content.Server/Objectives/Systems/NotCommandRequirementSystem.cs b/Content.Server/Objectives/Systems/NotCommandRequirementSystem.cs index e63492bb5ed635..0808dc5bcfdcf4 100644 --- a/Content.Server/Objectives/Systems/NotCommandRequirementSystem.cs +++ b/Content.Server/Objectives/Systems/NotCommandRequirementSystem.cs @@ -1,13 +1,11 @@ using Content.Server.Objectives.Components; +using Content.Server.Revolutionary.Components; using Content.Shared.Objectives.Components; -using Content.Shared.Roles.Jobs; namespace Content.Server.Objectives.Systems; public sealed class NotCommandRequirementSystem : EntitySystem { - [Dependency] private readonly SharedJobSystem _job = default!; - public override void Initialize() { base.Initialize(); @@ -20,8 +18,7 @@ private void OnCheck(EntityUid uid, NotCommandRequirementComponent comp, ref Req if (args.Cancelled) return; - // cheap equivalent to checking that job department is command, since all command members require admin notification when leaving - if (_job.MindTryGetJob(args.MindId, out _, out var prototype) && prototype.RequireAdminNotify) + if (args.Mind.OwnedEntity is { } ent && HasComp(ent)) args.Cancelled = true; } } diff --git a/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs b/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs index 5c2b04046342db..ac7e579c38047e 100644 --- a/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs +++ b/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs @@ -8,6 +8,8 @@ namespace Content.Server.Objectives.Systems; /// public sealed class NotJobRequirementSystem : EntitySystem { + [Dependency] private readonly SharedJobSystem _jobs = default!; + public override void Initialize() { base.Initialize(); @@ -20,11 +22,10 @@ private void OnCheck(EntityUid uid, NotJobRequirementComponent comp, ref Require if (args.Cancelled) return; - // if player has no job then don't care - if (!TryComp(args.MindId, out var job)) - return; + _jobs.MindTryGetJob(args.MindId, out var proto); - if (job.Prototype == comp.Job) + // if player has no job then don't care + if (proto is not null && proto.ID == comp.Job) args.Cancelled = true; } } diff --git a/Content.Server/Objectives/Systems/RoleRequirementSystem.cs b/Content.Server/Objectives/Systems/RoleRequirementSystem.cs index 8421987bae9f5c..83d4c2ea4c553a 100644 --- a/Content.Server/Objectives/Systems/RoleRequirementSystem.cs +++ b/Content.Server/Objectives/Systems/RoleRequirementSystem.cs @@ -22,8 +22,6 @@ private void OnCheck(EntityUid uid, RoleRequirementComponent comp, ref Requireme if (args.Cancelled) return; - // this whitelist trick only works because roles are components on the mind and not entities - // if that gets reworked then this will need changing if (_whitelistSystem.IsWhitelistFail(comp.Roles, args.MindId)) args.Cancelled = true; } diff --git a/Content.Server/PDA/PdaSystem.cs b/Content.Server/PDA/PdaSystem.cs index cdcdbc02e5fb28..7f17b97d0adc73 100644 --- a/Content.Server/PDA/PdaSystem.cs +++ b/Content.Server/PDA/PdaSystem.cs @@ -192,7 +192,7 @@ public void UpdatePdaUi(EntityUid uid, PdaComponent? pda = null) { ActualOwnerName = pda.OwnerName, IdOwner = id?.FullName, - JobTitle = id?.JobTitle, + JobTitle = id?.LocalizedJobTitle, StationAlertLevel = pda.StationAlertLevel, StationAlertColor = pda.StationAlertColor }, diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs index 4139499e9fbec9..0896731a2e2c27 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs @@ -30,14 +30,15 @@ namespace Content.Server.Players.PlayTimeTracking; /// public sealed class PlayTimeTrackingSystem : EntitySystem { + [Dependency] private readonly IAdminManager _adminManager = default!; [Dependency] private readonly IAfkManager _afk = default!; - [Dependency] private readonly IPlayerManager _playerManager = default!; - [Dependency] private readonly IPrototypeManager _prototypes = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly MindSystem _minds = default!; - [Dependency] private readonly PlayTimeTrackingManager _tracking = default!; - [Dependency] private readonly IAdminManager _adminManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IServerPreferencesManager _preferencesManager = default!; + [Dependency] private readonly IPrototypeManager _prototypes = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; + [Dependency] private readonly PlayTimeTrackingManager _tracking = default!; public override void Initialize() { @@ -101,10 +102,7 @@ private bool IsPlayerAlive(ICommonSession session) public IEnumerable GetTimedRoles(EntityUid mindId) { - var ev = new MindGetAllRolesEvent(new List()); - RaiseLocalEvent(mindId, ref ev); - - foreach (var role in ev.Roles) + foreach (var role in _roles.MindGetAllRoleInfo(mindId)) { if (string.IsNullOrWhiteSpace(role.PlayTimeTrackerId)) continue; diff --git a/Content.Server/Power/Components/ApcComponent.cs b/Content.Server/Power/Components/ApcComponent.cs index bee8defc43e46c..0bf9bc1872163e 100644 --- a/Content.Server/Power/Components/ApcComponent.cs +++ b/Content.Server/Power/Components/ApcComponent.cs @@ -25,9 +25,6 @@ public sealed partial class ApcComponent : BaseApcNetComponent [DataField("enabled")] public bool MainBreakerEnabled = true; - // TODO: remove this since it probably breaks when 2 people use it - [DataField("hasAccess")] - public bool HasAccess = false; /// /// APC state needs to always be updated after first processing tick. diff --git a/Content.Server/Power/EntitySystems/ApcSystem.cs b/Content.Server/Power/EntitySystems/ApcSystem.cs index 52c19c302cee90..14dddbb43e329a 100644 --- a/Content.Server/Power/EntitySystems/ApcSystem.cs +++ b/Content.Server/Power/EntitySystems/ApcSystem.cs @@ -2,7 +2,6 @@ using Content.Server.Popups; using Content.Server.Power.Components; using Content.Server.Power.Pow3r; -using Content.Shared.Access.Components; using Content.Shared.Access.Systems; using Content.Shared.APC; using Content.Shared.Emag.Components; @@ -71,11 +70,8 @@ private static void OnApcStartup(EntityUid uid, ApcComponent component, Componen component.NeedStateUpdate = true; } - //Update the HasAccess var for UI to read private void OnBoundUiOpen(EntityUid uid, ApcComponent component, BoundUIOpenedEvent args) { - // TODO: this should be per-player not stored on the apc - component.HasAccess = _accessReader.IsAllowed(args.Actor, uid); UpdateApcState(uid, component); } @@ -165,7 +161,7 @@ public void UpdateUIState(EntityUid uid, // TODO: Fix ContentHelpers or make a new one coz this is cooked. var charge = ContentHelpers.RoundToNearestLevels(battery.CurrentStorage / battery.Capacity, 1.0, 100 / ChargeAccuracy) / 100f * ChargeAccuracy; - var state = new ApcBoundInterfaceState(apc.MainBreakerEnabled, apc.HasAccess, + var state = new ApcBoundInterfaceState(apc.MainBreakerEnabled, (int) MathF.Ceiling(battery.CurrentSupply), apc.LastExternalState, charge); diff --git a/Content.Server/Revolutionary/Components/CommandStaffComponent.cs b/Content.Server/Revolutionary/Components/CommandStaffComponent.cs index 8e42f41cb3dde6..79349b25da7bd3 100644 --- a/Content.Server/Revolutionary/Components/CommandStaffComponent.cs +++ b/Content.Server/Revolutionary/Components/CommandStaffComponent.cs @@ -1,12 +1,12 @@ -using Content.Server.GameTicking.Rules; - namespace Content.Server.Revolutionary.Components; /// -/// Given to heads at round start for Revs. Used for tracking if heads died or not. +/// Given to heads at round start. Used for assigning traitors to kill heads and for revs to check if the heads died or not. /// -[RegisterComponent, Access(typeof(RevolutionaryRuleSystem))] +[RegisterComponent] public sealed partial class CommandStaffComponent : Component { } + +//TODO this should probably be on a mind role, not the mob diff --git a/Content.Server/Roles/DragonRoleComponent.cs b/Content.Server/Roles/DragonRoleComponent.cs index b85fd53eb0cd35..c47455d8f6f053 100644 --- a/Content.Server/Roles/DragonRoleComponent.cs +++ b/Content.Server/Roles/DragonRoleComponent.cs @@ -4,9 +4,9 @@ namespace Content.Server.Roles; /// -/// Role used to keep track of space dragons for antag purposes. +/// Added to mind role entities to tag that they are a space dragon. /// -[RegisterComponent, Access(typeof(DragonSystem)), ExclusiveAntagonist] -public sealed partial class DragonRoleComponent : AntagonistRoleComponent +[RegisterComponent, Access(typeof(DragonSystem))] +public sealed partial class DragonRoleComponent : BaseMindRoleComponent { } diff --git a/Content.Server/Roles/InitialInfectedRoleComponent.cs b/Content.Server/Roles/InitialInfectedRoleComponent.cs index 52d3db41643a5d..475cd3ba603b1b 100644 --- a/Content.Server/Roles/InitialInfectedRoleComponent.cs +++ b/Content.Server/Roles/InitialInfectedRoleComponent.cs @@ -2,8 +2,11 @@ namespace Content.Server.Roles; -[RegisterComponent, ExclusiveAntagonist] -public sealed partial class InitialInfectedRoleComponent : AntagonistRoleComponent +/// +/// Added to mind role entities to tag that they are an initial infected. +/// +[RegisterComponent] +public sealed partial class InitialInfectedRoleComponent : BaseMindRoleComponent { } diff --git a/Content.Server/Roles/Jobs/JobSystem.cs b/Content.Server/Roles/Jobs/JobSystem.cs index 9f0dd7ae32b5b7..7e69d9d92bc4b7 100644 --- a/Content.Server/Roles/Jobs/JobSystem.cs +++ b/Content.Server/Roles/Jobs/JobSystem.cs @@ -30,7 +30,7 @@ private void MindOnDoGreeting(EntityUid mindId, MindComponent component, ref Min if (!_mind.TryGetSession(mindId, out var session)) return; - if (!MindTryGetJob(mindId, out _, out var prototype)) + if (!MindTryGetJob(mindId, out var prototype)) return; _chat.DispatchServerMessage(session, Loc.GetString("job-greet-introduce-job-name", @@ -47,6 +47,6 @@ public void MindAddJob(EntityUid mindId, string jobPrototypeId) if (MindHasJobWithId(mindId, jobPrototypeId)) return; - _roles.MindAddRole(mindId, new JobComponent { Prototype = jobPrototypeId }); + _roles.MindAddJobRole(mindId, null, false, jobPrototypeId); } } diff --git a/Content.Server/Roles/NinjaRoleComponent.cs b/Content.Server/Roles/NinjaRoleComponent.cs index cb60e5bdf0312f..7bdffe67a315ac 100644 --- a/Content.Server/Roles/NinjaRoleComponent.cs +++ b/Content.Server/Roles/NinjaRoleComponent.cs @@ -2,7 +2,10 @@ namespace Content.Server.Roles; -[RegisterComponent, ExclusiveAntagonist] -public sealed partial class NinjaRoleComponent : AntagonistRoleComponent +/// +/// Added to mind role entities to tag that they are a space ninja. +/// +[RegisterComponent] +public sealed partial class NinjaRoleComponent : BaseMindRoleComponent { } diff --git a/Content.Server/Roles/NukeopsRoleComponent.cs b/Content.Server/Roles/NukeopsRoleComponent.cs index a6ff0b71b06e96..41561088ea8d1a 100644 --- a/Content.Server/Roles/NukeopsRoleComponent.cs +++ b/Content.Server/Roles/NukeopsRoleComponent.cs @@ -3,9 +3,9 @@ namespace Content.Server.Roles; /// -/// Added to mind entities to tag that they are a nuke operative. +/// Added to mind role entities to tag that they are a nuke operative. /// -[RegisterComponent, ExclusiveAntagonist] -public sealed partial class NukeopsRoleComponent : AntagonistRoleComponent +[RegisterComponent] +public sealed partial class NukeopsRoleComponent : BaseMindRoleComponent { } diff --git a/Content.Server/Roles/RemoveRoleCommand.cs b/Content.Server/Roles/RemoveRoleCommand.cs index feba63a253f802..fd4bb09317af56 100644 --- a/Content.Server/Roles/RemoveRoleCommand.cs +++ b/Content.Server/Roles/RemoveRoleCommand.cs @@ -45,7 +45,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var roles = _entityManager.System(); var jobs = _entityManager.System(); if (jobs.MindHasJobWithId(mind, args[1])) - roles.MindRemoveRole(mind.Value); + roles.MindTryRemoveRole(mind.Value); } } } diff --git a/Content.Server/Roles/RevolutionaryRoleComponent.cs b/Content.Server/Roles/RevolutionaryRoleComponent.cs index bf56b960084d06..dcdb131b9d0321 100644 --- a/Content.Server/Roles/RevolutionaryRoleComponent.cs +++ b/Content.Server/Roles/RevolutionaryRoleComponent.cs @@ -3,10 +3,10 @@ namespace Content.Server.Roles; /// -/// Added to mind entities to tag that they are a Revolutionary. +/// Added to mind role entities to tag that they are a Revolutionary. /// -[RegisterComponent, ExclusiveAntagonist] -public sealed partial class RevolutionaryRoleComponent : AntagonistRoleComponent +[RegisterComponent] +public sealed partial class RevolutionaryRoleComponent : BaseMindRoleComponent { /// /// For headrevs, how many people you have converted. diff --git a/Content.Server/Roles/RoleSystem.cs b/Content.Server/Roles/RoleSystem.cs index c53fa1cf9ebcc7..333f4f9b606f90 100644 --- a/Content.Server/Roles/RoleSystem.cs +++ b/Content.Server/Roles/RoleSystem.cs @@ -1,32 +1,40 @@ +using Content.Shared.Mind; using Content.Shared.Roles; namespace Content.Server.Roles; public sealed class RoleSystem : SharedRoleSystem { - public override void Initialize() - { - // TODO make roles entities - base.Initialize(); - - SubscribeAntagEvents(); - SubscribeAntagEvents(); - SubscribeAntagEvents(); - SubscribeAntagEvents(); - SubscribeAntagEvents(); - SubscribeAntagEvents(); - SubscribeAntagEvents(); - SubscribeAntagEvents(); - SubscribeAntagEvents(); - } - public string? MindGetBriefing(EntityUid? mindId) { if (mindId == null) + { + Log.Error($"MingGetBriefing failed for mind {mindId}"); + return null; + } + + TryComp(mindId.Value, out var mindComp); + + if (mindComp is null) + { + Log.Error($"MingGetBriefing failed for mind {mindId}"); return null; + } var ev = new GetBriefingEvent(); - RaiseLocalEvent(mindId.Value, ref ev); + + // This is on the event because while this Entity is also present on every Mind Role Entity's MindRoleComp + // getting to there from a GetBriefing event subscription can be somewhat boilerplate + // and this needs to be looked up for the event anyway so why calculate it again later + ev.Mind = (mindId.Value, mindComp); + + // Briefing is no longer raised on the mind entity itself + // because all the components that briefings subscribe to should be on Mind Role Entities + foreach(var role in mindComp.MindRoles) + { + RaiseLocalEvent(role, ref ev); + } + return ev.Briefing; } } @@ -38,8 +46,16 @@ public override void Initialize() [ByRefEvent] public sealed class GetBriefingEvent { + /// + /// The text that will be shown on the Character Screen + /// public string? Briefing; + /// + /// The Mind to whose Mind Role Entities the briefing is sent to + /// + public Entity Mind; + public GetBriefingEvent(string? briefing = null) { Briefing = briefing; diff --git a/Content.Server/Roles/SubvertedSiliconRoleComponent.cs b/Content.Server/Roles/SubvertedSiliconRoleComponent.cs index 70056fbec9e9b6..55727573b9d60b 100644 --- a/Content.Server/Roles/SubvertedSiliconRoleComponent.cs +++ b/Content.Server/Roles/SubvertedSiliconRoleComponent.cs @@ -2,7 +2,10 @@ namespace Content.Server.Roles; +/// +/// Added to mind role entities to tag that they are a hacked borg. +/// [RegisterComponent] -public sealed partial class SubvertedSiliconRoleComponent : AntagonistRoleComponent +public sealed partial class SubvertedSiliconRoleComponent : BaseMindRoleComponent { } diff --git a/Content.Server/Roles/ThiefRoleComponent.cs b/Content.Server/Roles/ThiefRoleComponent.cs index 82e350ef63082a..c0ddee71a4988c 100644 --- a/Content.Server/Roles/ThiefRoleComponent.cs +++ b/Content.Server/Roles/ThiefRoleComponent.cs @@ -2,7 +2,10 @@ namespace Content.Server.Roles; +/// +/// Added to mind role entities to tag that they are a thief. +/// [RegisterComponent] -public sealed partial class ThiefRoleComponent : AntagonistRoleComponent +public sealed partial class ThiefRoleComponent : BaseMindRoleComponent { } diff --git a/Content.Server/Roles/TraitorRoleComponent.cs b/Content.Server/Roles/TraitorRoleComponent.cs index 96bfe8dd801bca..a8a11a8f1bd4c6 100644 --- a/Content.Server/Roles/TraitorRoleComponent.cs +++ b/Content.Server/Roles/TraitorRoleComponent.cs @@ -2,7 +2,10 @@ namespace Content.Server.Roles; -[RegisterComponent, ExclusiveAntagonist] -public sealed partial class TraitorRoleComponent : AntagonistRoleComponent +/// +/// Added to mind role entities to tag that they are a syndicate traitor. +/// +[RegisterComponent] +public sealed partial class TraitorRoleComponent : BaseMindRoleComponent { } diff --git a/Content.Server/Roles/ZombieRoleComponent.cs b/Content.Server/Roles/ZombieRoleComponent.cs index 2f9948022b3a0b..cff25e53e8032a 100644 --- a/Content.Server/Roles/ZombieRoleComponent.cs +++ b/Content.Server/Roles/ZombieRoleComponent.cs @@ -2,7 +2,10 @@ namespace Content.Server.Roles; -[RegisterComponent, ExclusiveAntagonist] -public sealed partial class ZombieRoleComponent : AntagonistRoleComponent +/// +/// Added to mind role entities to tag that they are a zombie. +/// +[RegisterComponent] +public sealed partial class ZombieRoleComponent : BaseMindRoleComponent { } diff --git a/Content.Server/ServerUpdates/ServerUpdateManager.cs b/Content.Server/ServerUpdates/ServerUpdateManager.cs index f4e54984e9be0c..bf18428e25bc82 100644 --- a/Content.Server/ServerUpdates/ServerUpdateManager.cs +++ b/Content.Server/ServerUpdates/ServerUpdateManager.cs @@ -12,9 +12,13 @@ namespace Content.Server.ServerUpdates; /// -/// Responsible for restarting the server for update, when not disruptive. +/// Responsible for restarting the server periodically or for update, when not disruptive. /// -public sealed class ServerUpdateManager +/// +/// This was originally only designed for restarting on *update*, +/// but now also handles periodic restarting to keep server uptime via . +/// +public sealed class ServerUpdateManager : IPostInjectInit { [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IWatchdogApi _watchdog = default!; @@ -22,23 +26,43 @@ public sealed class ServerUpdateManager [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IBaseServer _server = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly ILogManager _logManager = default!; + + private ISawmill _sawmill = default!; [ViewVariables] private bool _updateOnRoundEnd; private TimeSpan? _restartTime; + private TimeSpan _uptimeRestart; + public void Initialize() { _watchdog.UpdateReceived += WatchdogOnUpdateReceived; _playerManager.PlayerStatusChanged += PlayerManagerOnPlayerStatusChanged; + + _cfg.OnValueChanged( + CCVars.ServerUptimeRestartMinutes, + minutes => _uptimeRestart = TimeSpan.FromMinutes(minutes), + true); } public void Update() { - if (_restartTime != null && _restartTime < _gameTiming.RealTime) + if (_restartTime != null) { - DoShutdown(); + if (_restartTime < _gameTiming.RealTime) + { + DoShutdown(); + } + } + else + { + if (ShouldShutdownDueToUptime()) + { + ServerEmptyUpdateRestartCheck("uptime"); + } } } @@ -48,7 +72,7 @@ public void Update() /// True if the server is going to restart. public bool RoundEnded() { - if (_updateOnRoundEnd) + if (_updateOnRoundEnd || ShouldShutdownDueToUptime()) { DoShutdown(); return true; @@ -61,11 +85,14 @@ private void PlayerManagerOnPlayerStatusChanged(object? sender, SessionStatusEve { switch (e.NewStatus) { - case SessionStatus.Connecting: + case SessionStatus.Connected: + if (_restartTime != null) + _sawmill.Debug("Aborting server restart timer due to player connection"); + _restartTime = null; break; case SessionStatus.Disconnected: - ServerEmptyUpdateRestartCheck(); + ServerEmptyUpdateRestartCheck("last player disconnect"); break; } } @@ -74,20 +101,20 @@ private void WatchdogOnUpdateReceived() { _chatManager.DispatchServerAnnouncement(Loc.GetString("server-updates-received")); _updateOnRoundEnd = true; - ServerEmptyUpdateRestartCheck(); + ServerEmptyUpdateRestartCheck("update notification"); } /// /// Checks whether there are still players on the server, /// and if not starts a timer to automatically reboot the server if an update is available. /// - private void ServerEmptyUpdateRestartCheck() + private void ServerEmptyUpdateRestartCheck(string reason) { // Can't simple check the current connected player count since that doesn't update // before PlayerStatusChanged gets fired. // So in the disconnect handler we'd still see a single player otherwise. var playersOnline = _playerManager.Sessions.Any(p => p.Status != SessionStatus.Disconnected); - if (playersOnline || !_updateOnRoundEnd) + if (playersOnline || !(_updateOnRoundEnd || ShouldShutdownDueToUptime())) { // Still somebody online. return; @@ -95,16 +122,30 @@ private void ServerEmptyUpdateRestartCheck() if (_restartTime != null) { - // Do nothing because I guess we already have a timer running..? + // Do nothing because we already have a timer running. return; } var restartDelay = TimeSpan.FromSeconds(_cfg.GetCVar(CCVars.UpdateRestartDelay)); _restartTime = restartDelay + _gameTiming.RealTime; + + _sawmill.Debug("Started server-empty restart timer due to {Reason}", reason); } private void DoShutdown() { - _server.Shutdown(Loc.GetString("server-updates-shutdown")); + _sawmill.Debug($"Shutting down via {nameof(ServerUpdateManager)}!"); + var reason = _updateOnRoundEnd ? "server-updates-shutdown" : "server-updates-shutdown-uptime"; + _server.Shutdown(Loc.GetString(reason)); + } + + private bool ShouldShutdownDueToUptime() + { + return _uptimeRestart != TimeSpan.Zero && _gameTiming.RealTime > _uptimeRestart; + } + + void IPostInjectInit.PostInject() + { + _sawmill = _logManager.GetSawmill("restart"); } } diff --git a/Content.Server/Shuttles/Commands/FTLDiskCommand.cs b/Content.Server/Shuttles/Commands/FTLDiskCommand.cs new file mode 100644 index 00000000000000..b17c7c11a716df --- /dev/null +++ b/Content.Server/Shuttles/Commands/FTLDiskCommand.cs @@ -0,0 +1,183 @@ +using Content.Server.Administration; +using Content.Server.Labels; +using Content.Shared.Administration; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Shuttles.Components; +using Content.Shared.Storage; +using Content.Shared.Storage.EntitySystems; +using Robust.Shared.Console; +using Robust.Shared.Map.Components; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Server.Shuttles.Commands; + +/// +/// Creates FTL disks, to maps, grids, or entities. +/// +[AdminCommand(AdminFlags.Fun)] + +public sealed class FTLDiskCommand : LocalizedCommands +{ + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IEntitySystemManager _entSystemManager = default!; + + public override string Command => "ftldisk"; + + [ValidatePrototypeId] + public const string CoordinatesDisk = "CoordinatesDisk"; + + [ValidatePrototypeId] + public const string DiskCase = "DiskCase"; + public override void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length == 0) + { + shell.WriteError(Loc.GetString("shell-need-minimum-one-argument")); + return; + } + + var player = shell.Player; + + if (player == null) + { + shell.WriteLine(Loc.GetString("shell-only-players-can-run-this-command")); + return; + } + + if (player.AttachedEntity == null) + { + shell.WriteLine(Loc.GetString("shell-must-be-attached-to-entity")); + return; + } + + EntityUid entity = player.AttachedEntity.Value; + var coords = _entManager.GetComponent(entity).Coordinates; + + var handsSystem = _entSystemManager.GetEntitySystem(); + var labelSystem = _entSystemManager.GetEntitySystem(); + var mapSystem = _entSystemManager.GetEntitySystem(); + var storageSystem = _entSystemManager.GetEntitySystem(); + + foreach (var destinations in args) + { + DebugTools.AssertNotNull(destinations); + + // make sure destination is an id. + EntityUid dest; + + if (_entManager.TryParseNetEntity(destinations, out var nullableDest)) + { + DebugTools.AssertNotNull(nullableDest); + + dest = (EntityUid) nullableDest; + + // we need to go to a map, so check if the EntID is something else then try for its map + if (!_entManager.HasComponent(dest)) + { + if (!_entManager.TryGetComponent(dest, out var entTransform)) + { + shell.WriteLine(Loc.GetString("cmd-ftldisk-no-transform", ("destination", destinations))); + continue; + } + + if (!mapSystem.TryGetMap(entTransform.MapID, out var mapDest)) + { + shell.WriteLine(Loc.GetString("cmd-ftldisk-no-map", ("destination", destinations))); + continue; + } + + DebugTools.AssertNotNull(mapDest); + dest = mapDest!.Value; // explicit cast here should be fine since the previous if should catch it. + } + + // find and verify the map is not somehow unusable. + if (!_entManager.TryGetComponent(dest, out var mapComp)) // We have to check for a MapComponent here and above since we could have changed our dest entity. + { + shell.WriteLine(Loc.GetString("cmd-ftldisk-no-map-comp", ("destination", destinations), ("map", dest))); + continue; + } + if (mapComp.MapInitialized == false) + { + shell.WriteLine(Loc.GetString("cmd-ftldisk-map-not-init", ("destination", destinations), ("map", dest))); + continue; + } + if (mapComp.MapPaused == true) + { + shell.WriteLine(Loc.GetString("cmd-ftldisk-map-paused", ("destination", destinations), ("map", dest))); + continue; + } + + // check if our destination works already, if not, make it. + if (!_entManager.TryGetComponent(dest, out var ftlDestComp)) + { + FTLDestinationComponent ftlDest = _entManager.AddComponent(dest); + ftlDest.RequireCoordinateDisk = true; + + if (_entManager.HasComponent(dest)) + { + ftlDest.BeaconsOnly = true; + + shell.WriteLine(Loc.GetString("cmd-ftldisk-planet", ("destination", destinations), ("map", dest))); + } + } + else + { + // we don't do these automatically, since it isn't clear what the correct resolution is. Instead we provide feedback to the user and carry on like they know what theyre doing. + if (ftlDestComp.Enabled == false) + shell.WriteLine(Loc.GetString("cmd-ftldisk-already-dest-not-enabled", ("destination", destinations), ("map", dest))); + + if (ftlDestComp.BeaconsOnly == true) + shell.WriteLine(Loc.GetString("cmd-ftldisk-requires-ftl-point", ("destination", destinations), ("map", dest))); + } + + // create the FTL disk + EntityUid cdUid = _entManager.SpawnEntity(CoordinatesDisk, coords); + var cd = _entManager.EnsureComponent(cdUid); + cd.Destination = dest; + _entManager.Dirty(cdUid, cd); + + // create disk case + EntityUid cdCaseUid = _entManager.SpawnEntity(DiskCase, coords); + + // apply labels + if (_entManager.TryGetComponent(dest, out var meta) && meta != null && meta.EntityName != null) + { + labelSystem.Label(cdUid, meta.EntityName); + labelSystem.Label(cdCaseUid, meta.EntityName); + } + + // if the case has a storage, try to place the disk in there and then the case inhand + + if (_entManager.TryGetComponent(cdCaseUid, out var storage) && storageSystem.Insert(cdCaseUid, cdUid, out _, storageComp: storage, playSound: false)) + { + if (_entManager.TryGetComponent(entity, out var handsComponent) && handsSystem.TryGetEmptyHand(entity, out var emptyHand, handsComponent)) + { + handsSystem.TryPickup(entity, cdCaseUid, emptyHand, checkActionBlocker: false, handsComp: handsComponent); + } + } + else // the case was messed up, put disk inhand + { + _entManager.DeleteEntity(cdCaseUid); // something went wrong so just yeet the chaf + + if (_entManager.TryGetComponent(entity, out var handsComponent) && handsSystem.TryGetEmptyHand(entity, out var emptyHand, handsComponent)) + { + handsSystem.TryPickup(entity, cdUid, emptyHand, checkActionBlocker: false, handsComp: handsComponent); + } + } + } + else + { + shell.WriteLine(Loc.GetString("shell-invalid-entity-uid", ("uid", destinations))); + } + } + } + + public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) + { + if (args.Length >= 1) + return CompletionResult.FromHintOptions(CompletionHelper.MapUids(_entManager), Loc.GetString("cmd-ftldisk-hint")); + return CompletionResult.Empty; + } +} diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index f289752b7cff34..d5a429db0309f3 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -60,6 +60,10 @@ private void OnSelectableInstalled(EntityUid uid, SelectableBorgModuleComponent if (_actions.AddAction(chassis, ref component.ModuleSwapActionEntity, out var action, component.ModuleSwapActionId, uid)) { + if(TryComp(uid, out var moduleIconComp)) + { + action.Icon = moduleIconComp.Icon; + }; action.EntityIcon = uid; Dirty(component.ModuleSwapActionEntity.Value, action); } diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index 6b7df52a6ebc1d..0070beb6ef9f5c 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -28,12 +28,12 @@ namespace Content.Server.Silicons.Laws; public sealed class SiliconLawSystem : SharedSiliconLawSystem { [Dependency] private readonly IChatManager _chatManager = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly SharedMindSystem _mind = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; [Dependency] private readonly StationSystem _station = default!; - [Dependency] private readonly UserInterfaceSystem _userInterface = default!; [Dependency] private readonly SharedStunSystem _stunSystem = default!; - [Dependency] private readonly SharedRoleSystem _roles = default!; + [Dependency] private readonly UserInterfaceSystem _userInterface = default!; /// public override void Initialize() @@ -178,10 +178,8 @@ private void EnsureEmaggedRole(EntityUid uid, EmagSiliconLawComponent component) if (component.AntagonistRole == null || !_mind.TryGetMind(uid, out var mindId, out _)) return; - if (_roles.MindHasRole(mindId)) - return; - - _roles.MindAddRole(mindId, new SubvertedSiliconRoleComponent { PrototypeId = component.AntagonistRole }); + if (!_roles.MindHasRole(mindId)) + _roles.MindAddRole(mindId, "MindRoleSubvertedSilicon"); } public SiliconLawset GetLaws(EntityUid uid, SiliconLawBoundComponent? component = null) @@ -295,6 +293,8 @@ protected override void OnUpdaterInsert(Entity ent, while (query.MoveNext(out var update)) { SetLaws(lawset, update); + if (provider.LawUploadSound != null && _mind.TryGetMind(update, out var mindId, out _)) + _roles.MindPlaySound(mindId, provider.LawUploadSound); } } } diff --git a/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs index 69baf591bcaa27..db82dc70a29300 100644 --- a/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs +++ b/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs @@ -12,10 +12,10 @@ namespace Content.Server.Spawners.EntitySystems; public sealed class ContainerSpawnPointSystem : EntitySystem { + [Dependency] private readonly ContainerSystem _container = default!; [Dependency] private readonly GameTicker _gameTicker = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IPrototypeManager _proto = default!; - [Dependency] private readonly ContainerSystem _container = default!; + [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; @@ -32,7 +32,7 @@ public void HandlePlayerSpawning(PlayerSpawningEvent args) // If it's just a spawn pref check if it's for cryo (silly). if (args.HumanoidCharacterProfile?.SpawnPriority != SpawnPriorityPreference.Cryosleep && - (!_proto.TryIndex(args.Job?.Prototype, out var jobProto) || jobProto.JobEntity == null)) + (!_proto.TryIndex(args.Job, out var jobProto) || jobProto.JobEntity == null)) { return; } @@ -49,7 +49,7 @@ public void HandlePlayerSpawning(PlayerSpawningEvent args) if (spawnPoint.SpawnType == SpawnPointType.Unset) { // make sure we also check the job here for various reasons. - if (spawnPoint.Job == null || spawnPoint.Job == args.Job?.Prototype) + if (spawnPoint.Job == null || spawnPoint.Job == args.Job) possibleContainers.Add((uid, spawnPoint, container, xform)); continue; } @@ -61,7 +61,7 @@ public void HandlePlayerSpawning(PlayerSpawningEvent args) if (_gameTicker.RunLevel != GameRunLevel.InRound && spawnPoint.SpawnType == SpawnPointType.Job && - (args.Job == null || spawnPoint.Job == args.Job.Prototype)) + (args.Job == null || spawnPoint.Job == args.Job)) { possibleContainers.Add((uid, spawnPoint, container, xform)); } diff --git a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs index be555dd54aca4d..bd905e29824e05 100644 --- a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs +++ b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs @@ -39,7 +39,7 @@ private void OnPlayerSpawning(PlayerSpawningEvent args) if (_gameTicker.RunLevel != GameRunLevel.InRound && spawnPoint.SpawnType == SpawnPointType.Job && - (args.Job == null || spawnPoint.Job == args.Job.Prototype)) + (args.Job == null || spawnPoint.Job == args.Job)) { possiblePositions.Add(xform.Coordinates); } diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index e39a0943199d0e..3dd49953713747 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -1,4 +1,3 @@ -using System.Linq; using Content.Server.Access.Systems; using Content.Server.DetailExaminable; using Content.Server.Humanoid; @@ -17,13 +16,10 @@ using Content.Shared.PDA; using Content.Shared.Preferences; using Content.Shared.Preferences.Loadouts; -using Content.Shared.Preferences.Loadouts.Effects; using Content.Shared.Random; using Content.Shared.Random.Helpers; using Content.Shared.Roles; -using Content.Shared.Roles.Jobs; using Content.Shared.Station; -using Content.Shared.StatusIcon; using JetBrains.Annotations; using Robust.Shared.Configuration; using Robust.Shared.Map; @@ -41,16 +37,18 @@ namespace Content.Server.Station.Systems; [PublicAPI] public sealed class StationSpawningSystem : SharedStationSpawningSystem { - [Dependency] private readonly IConfigurationManager _configurationManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedAccessSystem _accessSystem = default!; [Dependency] private readonly ActorSystem _actors = default!; - [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; + [Dependency] private readonly ArrivalsSystem _arrivalsSystem = default!; [Dependency] private readonly IdCardSystem _cardSystem = default!; + [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly ContainerSpawnPointSystem _containerSpawnPointSystem = default!; + [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; [Dependency] private readonly IdentitySystem _identity = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; [Dependency] private readonly PdaSystem _pdaSystem = default!; - [Dependency] private readonly SharedAccessSystem _accessSystem = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; private bool _randomizeCharacters; @@ -73,7 +71,7 @@ public override void Initialize() /// /// This only spawns the character, and does none of the mind-related setup you'd need for it to be playable. /// - public EntityUid? SpawnPlayerCharacterOnStation(EntityUid? station, JobComponent? job, HumanoidCharacterProfile? profile, StationSpawningComponent? stationSpawning = null) + public EntityUid? SpawnPlayerCharacterOnStation(EntityUid? station, ProtoId? job, HumanoidCharacterProfile? profile, StationSpawningComponent? stationSpawning = null) { if (station != null && !Resolve(station.Value, ref stationSpawning)) throw new ArgumentException("Tried to use a non-station entity as a station!", nameof(station)); @@ -101,12 +99,12 @@ public override void Initialize() /// The spawned entity public EntityUid SpawnPlayerMob( EntityCoordinates coordinates, - JobComponent? job, + ProtoId? job, HumanoidCharacterProfile? profile, EntityUid? station, EntityUid? entity = null) { - _prototypeManager.TryIndex(job?.Prototype ?? string.Empty, out var prototype); + _prototypeManager.TryIndex(job ?? string.Empty, out var prototype); RoleLoadout? loadout = null; // Need to get the loadout up-front to handle names if we use an entity spawn override. @@ -200,9 +198,9 @@ public EntityUid SpawnPlayerMob( return entity.Value; } - private void DoJobSpecials(JobComponent? job, EntityUid entity) + private void DoJobSpecials(ProtoId? job, EntityUid entity) { - if (!_prototypeManager.TryIndex(job?.Prototype ?? string.Empty, out JobPrototype? prototype)) + if (!_prototypeManager.TryIndex(job ?? string.Empty, out JobPrototype? prototype)) return; foreach (var jobSpecial in prototype.Special) @@ -269,7 +267,7 @@ public sealed class PlayerSpawningEvent : EntityEventArgs /// /// The job to use, if any. /// - public readonly JobComponent? Job; + public readonly ProtoId? Job; /// /// The profile to use, if any. /// @@ -279,7 +277,7 @@ public sealed class PlayerSpawningEvent : EntityEventArgs /// public readonly EntityUid? Station; - public PlayerSpawningEvent(JobComponent? job, HumanoidCharacterProfile? humanoidCharacterProfile, EntityUid? station) + public PlayerSpawningEvent(ProtoId? job, HumanoidCharacterProfile? humanoidCharacterProfile, EntityUid? station) { Job = job; HumanoidCharacterProfile = humanoidCharacterProfile; diff --git a/Content.Server/Store/Conditions/BuyerAntagCondition.cs b/Content.Server/Store/Conditions/BuyerAntagCondition.cs index 1edc4a33657b75..4b1b6013eb83ce 100644 --- a/Content.Server/Store/Conditions/BuyerAntagCondition.cs +++ b/Content.Server/Store/Conditions/BuyerAntagCondition.cs @@ -33,16 +33,16 @@ public override bool Condition(ListingConditionArgs args) return true; var roleSystem = ent.System(); - var roles = roleSystem.MindGetAllRoles(mindId); + var roles = roleSystem.MindGetAllRoleInfo(mindId); if (Blacklist != null) { foreach (var role in roles) { - if (role.Component is not AntagonistRoleComponent blacklistantag) + if (!role.Antagonist || string.IsNullOrEmpty(role.Prototype)) continue; - if (blacklistantag.PrototypeId != null && Blacklist.Contains(blacklistantag.PrototypeId)) + if (Blacklist.Contains(role.Prototype)) return false; } } @@ -52,10 +52,11 @@ public override bool Condition(ListingConditionArgs args) var found = false; foreach (var role in roles) { - if (role.Component is not AntagonistRoleComponent antag) + + if (!role.Antagonist || string.IsNullOrEmpty(role.Prototype)) continue; - if (antag.PrototypeId != null && Whitelist.Contains(antag.PrototypeId)) + if (Whitelist.Contains(role.Prototype)) found = true; } if (!found) diff --git a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs index ea8de4a9ccd6c3..43c06efad3c1d8 100644 --- a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs +++ b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs @@ -37,13 +37,13 @@ public override bool Condition(ListingConditionArgs args) return true; var jobs = ent.System(); - jobs.MindTryGetJob(mindId, out var job, out _); + jobs.MindTryGetJob(mindId, out var job); - if (Blacklist != null && job?.Prototype != null) + if (Blacklist != null && job != null) { foreach (var department in prototypeManager.EnumeratePrototypes()) { - if (department.Roles.Contains(job.Prototype.Value) && Blacklist.Contains(department.ID)) + if (department.Roles.Contains(job.ID) && Blacklist.Contains(department.ID)) return false; } } @@ -52,11 +52,11 @@ public override bool Condition(ListingConditionArgs args) { var found = false; - if (job?.Prototype != null) + if (job != null) { foreach (var department in prototypeManager.EnumeratePrototypes()) { - if (department.Roles.Contains(job.Prototype.Value) && Whitelist.Contains(department.ID)) + if (department.Roles.Contains(job.ID) && Whitelist.Contains(department.ID)) { found = true; break; diff --git a/Content.Server/Store/Conditions/BuyerJobCondition.cs b/Content.Server/Store/Conditions/BuyerJobCondition.cs index 6a53af188c2d99..1ff4a97c33cea6 100644 --- a/Content.Server/Store/Conditions/BuyerJobCondition.cs +++ b/Content.Server/Store/Conditions/BuyerJobCondition.cs @@ -34,17 +34,17 @@ public override bool Condition(ListingConditionArgs args) return true; var jobs = ent.System(); - jobs.MindTryGetJob(mindId, out var job, out _); + jobs.MindTryGetJob(mindId, out var job); if (Blacklist != null) { - if (job?.Prototype != null && Blacklist.Contains(job.Prototype)) + if (job is not null && Blacklist.Contains(job.ID)) return false; } if (Whitelist != null) { - if (job?.Prototype == null || !Whitelist.Contains(job.Prototype)) + if (job == null || !Whitelist.Contains(job.ID)) return false; } diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index ccd981bbbc32c4..e46b18a265991c 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -130,7 +130,7 @@ public void ForceChangeTemperature(EntityUid uid, float temp, TemperatureCompone public void ChangeHeat(EntityUid uid, float heatAmount, bool ignoreHeatResistance = false, TemperatureComponent? temperature = null) { - if (!Resolve(uid, ref temperature)) + if (!Resolve(uid, ref temperature, false)) return; if (!ignoreHeatResistance) @@ -311,7 +311,7 @@ private void OnTemperatureChangeAttempt(EntityUid uid, TemperatureProtectionComp private void ChangeTemperatureOnCollide(Entity ent, ref ProjectileHitEvent args) { - _temperature.ChangeHeat(args.Target, ent.Comp.Heat, ent.Comp.IgnoreHeatResistance);// adjust the temperature + _temperature.ChangeHeat(args.Target, ent.Comp.Heat, ent.Comp.IgnoreHeatResistance);// adjust the temperature } private void OnParentChange(EntityUid uid, TemperatureComponent component, diff --git a/Content.Server/Thief/Systems/ThiefBeaconSystem.cs b/Content.Server/Thief/Systems/ThiefBeaconSystem.cs index 80471b6427946f..de1c3d2e6d1981 100644 --- a/Content.Server/Thief/Systems/ThiefBeaconSystem.cs +++ b/Content.Server/Thief/Systems/ThiefBeaconSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Foldable; using Content.Shared.Popups; using Content.Shared.Verbs; +using Content.Shared.Roles; using Robust.Shared.Audio.Systems; namespace Content.Server.Thief.Systems; @@ -18,6 +19,7 @@ public sealed class ThiefBeaconSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; public override void Initialize() { @@ -37,7 +39,7 @@ private void OnGetInteractionVerbs(Entity beacon, ref GetV return; var mind = _mind.GetMind(args.User); - if (!HasComp(mind)) + if (mind == null || !_roles.MindHasRole(mind.Value)) return; var user = args.User; diff --git a/Content.Server/Traitor/Components/AutoTraitorComponent.cs b/Content.Server/Traitor/Components/AutoTraitorComponent.cs index ab4bee2f267a74..a4710afd8ebf2b 100644 --- a/Content.Server/Traitor/Components/AutoTraitorComponent.cs +++ b/Content.Server/Traitor/Components/AutoTraitorComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Traitor.Systems; +using Robust.Shared.Prototypes; namespace Content.Server.Traitor.Components; @@ -9,14 +10,8 @@ namespace Content.Server.Traitor.Components; public sealed partial class AutoTraitorComponent : Component { /// - /// Whether to give the traitor an uplink or not. + /// The traitor profile to use /// - [DataField("giveUplink"), ViewVariables(VVAccess.ReadWrite)] - public bool GiveUplink = true; - - /// - /// Whether to give the traitor objectives or not. - /// - [DataField("giveObjectives"), ViewVariables(VVAccess.ReadWrite)] - public bool GiveObjectives = true; + [DataField] + public EntProtoId Profile = "Traitor"; } diff --git a/Content.Server/Traitor/Systems/AutoTraitorSystem.cs b/Content.Server/Traitor/Systems/AutoTraitorSystem.cs index e9307effbc645c..d5a4db591a7063 100644 --- a/Content.Server/Traitor/Systems/AutoTraitorSystem.cs +++ b/Content.Server/Traitor/Systems/AutoTraitorSystem.cs @@ -12,9 +12,6 @@ public sealed class AutoTraitorSystem : EntitySystem { [Dependency] private readonly AntagSelectionSystem _antag = default!; - [ValidatePrototypeId] - private const string DefaultTraitorRule = "Traitor"; - public override void Initialize() { base.Initialize(); @@ -24,6 +21,6 @@ public override void Initialize() private void OnMindAdded(EntityUid uid, AutoTraitorComponent comp, MindAddedMessage args) { - _antag.ForceMakeAntag(args.Mind.Comp.Session, DefaultTraitorRule); + _antag.ForceMakeAntag(args.Mind.Comp.Session, comp.Profile); } } diff --git a/Content.Server/Traitor/Uplink/UplinkSystem.cs b/Content.Server/Traitor/Uplink/UplinkSystem.cs index ae809dc4d774c4..4c0a990b148b85 100644 --- a/Content.Server/Traitor/Uplink/UplinkSystem.cs +++ b/Content.Server/Traitor/Uplink/UplinkSystem.cs @@ -1,97 +1,136 @@ using System.Linq; using Content.Server.Store.Systems; using Content.Server.StoreDiscount.Systems; +using Content.Shared.FixedPoint; using Content.Shared.Hands.EntitySystems; +using Content.Shared.Implants; using Content.Shared.Inventory; using Content.Shared.PDA; -using Content.Shared.FixedPoint; using Content.Shared.Store; using Content.Shared.Store.Components; +using Robust.Shared.Prototypes; + +namespace Content.Server.Traitor.Uplink; -namespace Content.Server.Traitor.Uplink +public sealed class UplinkSystem : EntitySystem { - public sealed class UplinkSystem : EntitySystem + [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly SharedHandsSystem _handsSystem = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly StoreSystem _store = default!; + [Dependency] private readonly SharedSubdermalImplantSystem _subdermalImplant = default!; + + [ValidatePrototypeId] + public const string TelecrystalCurrencyPrototype = "Telecrystal"; + private const string FallbackUplinkImplant = "UplinkImplant"; + private const string FallbackUplinkCatalog = "UplinkUplinkImplanter"; + + /// + /// Adds an uplink to the target + /// + /// The person who is getting the uplink + /// The amount of currency on the uplink. If null, will just use the amount specified in the preset. + /// The entity that will actually have the uplink functionality. Defaults to the PDA if null. + /// Marker that enables discounts for uplink items. + /// Whether or not the uplink was added successfully + public bool AddUplink( + EntityUid user, + FixedPoint2 balance, + EntityUid? uplinkEntity = null, + bool giveDiscounts = false) { - [Dependency] private readonly InventorySystem _inventorySystem = default!; - [Dependency] private readonly SharedHandsSystem _handsSystem = default!; - [Dependency] private readonly StoreSystem _store = default!; - - [ValidatePrototypeId] - public const string TelecrystalCurrencyPrototype = "Telecrystal"; - - /// - /// Adds an uplink to the target - /// - /// The person who is getting the uplink - /// The amount of currency on the uplink. If null, will just use the amount specified in the preset. - /// The entity that will actually have the uplink functionality. Defaults to the PDA if null. - /// Marker that enables discounts for uplink items. - /// Whether or not the uplink was added successfully - public bool AddUplink( - EntityUid user, - FixedPoint2? balance, - EntityUid? uplinkEntity = null, - bool giveDiscounts = false - ) - { - // Try to find target item if none passed - uplinkEntity ??= FindUplinkTarget(user); - if (uplinkEntity == null) - { - return false; - } + // Try to find target item if none passed - EnsureComp(uplinkEntity.Value); - var store = EnsureComp(uplinkEntity.Value); + uplinkEntity ??= FindUplinkTarget(user); - store.AccountOwner = user; - store.Balance.Clear(); - if (balance != null) - { - store.Balance.Clear(); - _store.TryAddCurrency(new Dictionary { { TelecrystalCurrencyPrototype, balance.Value } }, uplinkEntity.Value, store); - } + if (uplinkEntity == null) + return ImplantUplink(user, balance, giveDiscounts); - var uplinkInitializedEvent = new StoreInitializedEvent( - TargetUser: user, - Store: uplinkEntity.Value, - UseDiscounts: giveDiscounts, - Listings: _store.GetAvailableListings(user, uplinkEntity.Value, store) - .ToArray() - ); - RaiseLocalEvent(ref uplinkInitializedEvent); - // TODO add BUI. Currently can't be done outside of yaml -_- - - return true; - } + EnsureComp(uplinkEntity.Value); + + SetUplink(user, uplinkEntity.Value, balance, giveDiscounts); + + // TODO add BUI. Currently can't be done outside of yaml -_- + // ^ What does this even mean? + + return true; + } + + /// + /// Configure TC for the uplink + /// + private void SetUplink(EntityUid user, EntityUid uplink, FixedPoint2 balance, bool giveDiscounts) + { + var store = EnsureComp(uplink); + store.AccountOwner = user; + + store.Balance.Clear(); + _store.TryAddCurrency(new Dictionary { { TelecrystalCurrencyPrototype, balance } }, + uplink, + store); - /// - /// Finds the entity that can hold an uplink for a user. - /// Usually this is a pda in their pda slot, but can also be in their hands. (but not pockets or inside bag, etc.) - /// - public EntityUid? FindUplinkTarget(EntityUid user) + var uplinkInitializedEvent = new StoreInitializedEvent( + TargetUser: user, + Store: uplink, + UseDiscounts: giveDiscounts, + Listings: _store.GetAvailableListings(user, uplink, store) + .ToArray()); + RaiseLocalEvent(ref uplinkInitializedEvent); + } + + /// + /// Implant an uplink as a fallback measure if the traitor had no PDA + /// + private bool ImplantUplink(EntityUid user, FixedPoint2 balance, bool giveDiscounts) + { + var implantProto = new string(FallbackUplinkImplant); + + if (!_proto.TryIndex(FallbackUplinkCatalog, out var catalog)) + return false; + + if (!catalog.Cost.TryGetValue(TelecrystalCurrencyPrototype, out var cost)) + return false; + + if (balance < cost) // Can't use Math functions on FixedPoint2 + balance = 0; + else + balance = balance - cost; + + var implant = _subdermalImplant.AddImplant(user, implantProto); + + if (!HasComp(implant)) + return false; + + SetUplink(user, implant.Value, balance, giveDiscounts); + return true; + } + + /// + /// Finds the entity that can hold an uplink for a user. + /// Usually this is a pda in their pda slot, but can also be in their hands. (but not pockets or inside bag, etc.) + /// + public EntityUid? FindUplinkTarget(EntityUid user) + { + // Try to find PDA in inventory + if (_inventorySystem.TryGetContainerSlotEnumerator(user, out var containerSlotEnumerator)) { - // Try to find PDA in inventory - if (_inventorySystem.TryGetContainerSlotEnumerator(user, out var containerSlotEnumerator)) + while (containerSlotEnumerator.MoveNext(out var pdaUid)) { - while (containerSlotEnumerator.MoveNext(out var pdaUid)) - { - if (!pdaUid.ContainedEntity.HasValue) - continue; - - if (HasComp(pdaUid.ContainedEntity.Value) || HasComp(pdaUid.ContainedEntity.Value)) - return pdaUid.ContainedEntity.Value; - } - } + if (!pdaUid.ContainedEntity.HasValue) + continue; - // Also check hands - foreach (var item in _handsSystem.EnumerateHeld(user)) - { - if (HasComp(item) || HasComp(item)) - return item; + if (HasComp(pdaUid.ContainedEntity.Value) || HasComp(pdaUid.ContainedEntity.Value)) + return pdaUid.ContainedEntity.Value; } + } - return null; + // Also check hands + foreach (var item in _handsSystem.EnumerateHeld(user)) + { + if (HasComp(item) || HasComp(item)) + return item; } + + return null; } } diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs index 190a2d0263e8df..ec462ae23e8f06 100644 --- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs @@ -56,8 +56,14 @@ private void OnMeleeExamineDamage(EntityUid uid, MeleeWeaponComponent component, _damageExamine.AddDamageExamine(args.Message, damageSpec, Loc.GetString("damage-melee")); } - protected override bool ArcRaySuccessful(EntityUid targetUid, Vector2 position, Angle angle, Angle arcWidth, float range, MapId mapId, - EntityUid ignore, ICommonSession? session) + protected override bool ArcRaySuccessful(EntityUid targetUid, + Vector2 position, + Angle angle, + Angle arcWidth, + float range, + MapId mapId, + EntityUid ignore, + ICommonSession? session) { // Originally the client didn't predict damage effects so you'd intuit some level of how far // in the future you'd need to predict, but then there was a lot of complaining like "why would you add artifical delay" as if ping is a choice. diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs index e44ee6baa12f83..b1a08fb5056094 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs @@ -2,6 +2,8 @@ using Content.Server.Xenoarchaeology.XenoArtifacts.Events; using Content.Shared.Mind.Components; using Content.Shared.Teleportation.Systems; +using Robust.Shared.Collections; +using Robust.Shared.Containers; using Robust.Shared.Random; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; @@ -11,6 +13,7 @@ public sealed class PortalArtifactSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly LinkedEntitySystem _link = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; public override void Initialize() { @@ -21,21 +24,28 @@ public override void Initialize() private void OnActivate(Entity artifact, ref ArtifactActivatedEvent args) { var map = Transform(artifact).MapID; - var firstPortal = Spawn(artifact.Comp.PortalProto, _transform.GetMapCoordinates(artifact)); - - var minds = new List(); - var mindQuery = EntityQueryEnumerator(); - while (mindQuery.MoveNext(out var uid, out var mc, out var xform)) + var validMinds = new ValueList(); + var mindQuery = EntityQueryEnumerator(); + while (mindQuery.MoveNext(out var uid, out var mc, out var xform, out var meta)) { - if (mc.HasMind && xform.MapID == map) - minds.Add(uid); + // check if the MindContainer has a Mind and if the entity is not in a container (this also auto excludes AI) and if they are on the same map + if (mc.HasMind && !_container.IsEntityOrParentInContainer(uid, meta: meta, xform: xform) && xform.MapID == map) + { + validMinds.Add(uid); + } } + //this would only be 0 if there were a station full of AIs and no one else, in that case just stop this function + if (validMinds.Count == 0) + return; + + var firstPortal = Spawn(artifact.Comp.PortalProto, _transform.GetMapCoordinates(artifact)); + + var target = _random.Pick(validMinds); - var target = _random.Pick(minds); var secondPortal = Spawn(artifact.Comp.PortalProto, _transform.GetMapCoordinates(target)); //Manual position swapping, because the portal that opens doesn't trigger a collision, and doesn't teleport targets the first time. - _transform.SwapPositions(target, secondPortal); + _transform.SwapPositions(target, artifact.Owner); _link.TryLink(firstPortal, secondPortal, true); } diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index 84ab7e2e4a2d92..7acfe9dbbd9632 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -11,7 +11,6 @@ using Content.Server.NPC; using Content.Server.NPC.HTN; using Content.Server.NPC.Systems; -using Content.Server.Roles; using Content.Server.Speech.Components; using Content.Server.Temperature.Components; using Content.Shared.CombatMode; @@ -47,18 +46,18 @@ namespace Content.Server.Zombies; /// public sealed partial class ZombieSystem { - [Dependency] private readonly SharedHandsSystem _hands = default!; - [Dependency] private readonly ServerInventorySystem _inventory = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IChatManager _chatMan = default!; + [Dependency] private readonly SharedCombatModeSystem _combat = default!; [Dependency] private readonly NpcFactionSystem _faction = default!; - [Dependency] private readonly NPCSystem _npc = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly HumanoidAppearanceSystem _humanoidAppearance = default!; [Dependency] private readonly IdentitySystem _identity = default!; - [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; - [Dependency] private readonly SharedCombatModeSystem _combat = default!; - [Dependency] private readonly IChatManager _chatMan = default!; + [Dependency] private readonly ServerInventorySystem _inventory = default!; [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; + [Dependency] private readonly NPCSystem _npc = default!; [Dependency] private readonly SharedRoleSystem _roles = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; /// /// Handles an entity turning into a zombie when they die or go into crit @@ -234,7 +233,7 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) if (hasMind && _mind.TryGetSession(mindId, out var session)) { //Zombie role for player manifest - _roles.MindAddRole(mindId, new ZombieRoleComponent { PrototypeId = zombiecomp.ZombieRoleId }); + _roles.MindAddRole(mindId, "MindRoleZombie", mind: null, silent: true); //Greeting message for new bebe zombers _chatMan.DispatchServerMessage(session, Loc.GetString("zombie-infection-greeting")); diff --git a/Content.Shared/APC/SharedApc.cs b/Content.Shared/APC/SharedApc.cs index bf9fdc9444ba50..802c06a6ab6f83 100644 --- a/Content.Shared/APC/SharedApc.cs +++ b/Content.Shared/APC/SharedApc.cs @@ -178,15 +178,13 @@ public enum ApcChargeState : sbyte public sealed class ApcBoundInterfaceState : BoundUserInterfaceState, IEquatable { public readonly bool MainBreaker; - public readonly bool HasAccess; public readonly int Power; public readonly ApcExternalPowerState ApcExternalPower; public readonly float Charge; - public ApcBoundInterfaceState(bool mainBreaker, bool hasAccess, int power, ApcExternalPowerState apcExternalPower, float charge) + public ApcBoundInterfaceState(bool mainBreaker, int power, ApcExternalPowerState apcExternalPower, float charge) { MainBreaker = mainBreaker; - HasAccess = hasAccess; Power = power; ApcExternalPower = apcExternalPower; Charge = charge; @@ -197,7 +195,6 @@ public bool Equals(ApcBoundInterfaceState? other) if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return MainBreaker == other.MainBreaker && - HasAccess == other.HasAccess && Power == other.Power && ApcExternalPower == other.ApcExternalPower && MathHelper.CloseTo(Charge, other.Charge); @@ -210,7 +207,7 @@ public override bool Equals(object? obj) public override int GetHashCode() { - return HashCode.Combine(MainBreaker, HasAccess, Power, (int) ApcExternalPower, Charge); + return HashCode.Combine(MainBreaker, Power, (int) ApcExternalPower, Charge); } } diff --git a/Content.Shared/Access/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs index ccd4cccbe7b5a5..e80ced646438bd 100644 --- a/Content.Shared/Access/Components/IdCardComponent.cs +++ b/Content.Shared/Access/Components/IdCardComponent.cs @@ -20,7 +20,12 @@ public sealed partial class IdCardComponent : Component [DataField] [AutoNetworkedField] [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWrite)] - public string? JobTitle; + public LocId? JobTitle; + + private string? _jobTitle; + + [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWriteExecute)] + public string? LocalizedJobTitle { set => _jobTitle = value; get => _jobTitle ?? Loc.GetString(JobTitle ?? string.Empty); } /// /// The state of the job icon rsi. diff --git a/Content.Shared/Access/Systems/IdExaminableSystem.cs b/Content.Shared/Access/Systems/IdExaminableSystem.cs index 13359adcba2dd7..807ccc6616d4aa 100644 --- a/Content.Shared/Access/Systems/IdExaminableSystem.cs +++ b/Content.Shared/Access/Systems/IdExaminableSystem.cs @@ -67,7 +67,7 @@ public string GetMessage(EntityUid uid) private string GetNameAndJob(IdCardComponent id) { - var jobSuffix = string.IsNullOrWhiteSpace(id.JobTitle) ? string.Empty : $" ({id.JobTitle})"; + var jobSuffix = string.IsNullOrWhiteSpace(id.LocalizedJobTitle) ? string.Empty : $" ({id.LocalizedJobTitle})"; var val = string.IsNullOrWhiteSpace(id.FullName) ? Loc.GetString(id.NameLocId, diff --git a/Content.Shared/Access/Systems/SharedIdCardSystem.cs b/Content.Shared/Access/Systems/SharedIdCardSystem.cs index 8bdc548e353a88..a5a37eecbd07ea 100644 --- a/Content.Shared/Access/Systems/SharedIdCardSystem.cs +++ b/Content.Shared/Access/Systems/SharedIdCardSystem.cs @@ -116,6 +116,7 @@ public bool TryGetIdCard(EntityUid uid, out Entity idCard) /// /// /// If provided with a player's EntityUid to the player parameter, adds the change to the admin logs. + /// Actually works with the LocalizedJobTitle DataField and not with JobTitle. /// public bool TryChangeJobTitle(EntityUid uid, string? jobTitle, IdCardComponent? id = null, EntityUid? player = null) { @@ -134,9 +135,9 @@ public bool TryChangeJobTitle(EntityUid uid, string? jobTitle, IdCardComponent? jobTitle = null; } - if (id.JobTitle == jobTitle) + if (id.LocalizedJobTitle == jobTitle) return true; - id.JobTitle = jobTitle; + id.LocalizedJobTitle = jobTitle; Dirty(uid, id); UpdateEntityName(uid, id); @@ -238,7 +239,7 @@ private void UpdateEntityName(EntityUid uid, IdCardComponent? id = null) if (!Resolve(uid, ref id)) return; - var jobSuffix = string.IsNullOrWhiteSpace(id.JobTitle) ? string.Empty : $" ({id.JobTitle})"; + var jobSuffix = string.IsNullOrWhiteSpace(id.LocalizedJobTitle) ? string.Empty : $" ({id.LocalizedJobTitle})"; var val = string.IsNullOrWhiteSpace(id.FullName) ? Loc.GetString(id.NameLocId, @@ -251,7 +252,7 @@ private void UpdateEntityName(EntityUid uid, IdCardComponent? id = null) private static string ExtractFullTitle(IdCardComponent idCardComponent) { - return $"{idCardComponent.FullName} ({CultureInfo.CurrentCulture.TextInfo.ToTitleCase(idCardComponent.JobTitle ?? string.Empty)})" + return $"{idCardComponent.FullName} ({CultureInfo.CurrentCulture.TextInfo.ToTitleCase(idCardComponent.LocalizedJobTitle ?? string.Empty)})" .Trim(); } } diff --git a/Content.Shared/Bed/Sleep/SleepingSystem.cs b/Content.Shared/Bed/Sleep/SleepingSystem.cs index 0e29fcd98ae0ab..6a04bfe42df7bf 100644 --- a/Content.Shared/Bed/Sleep/SleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SleepingSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Buckle.Components; using Content.Shared.Damage; using Content.Shared.Damage.ForceSay; +using Content.Shared.Emoting; using Content.Shared.Examine; using Content.Shared.Eye.Blinding.Systems; using Content.Shared.IdentityManagement; @@ -61,6 +62,7 @@ public override void Initialize() SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnUnbuckleAttempt); + SubscribeLocalEvent(OnEmoteAttempt); } private void OnUnbuckleAttempt(Entity ent, ref UnbuckleAttemptEvent args) @@ -310,6 +312,14 @@ public bool TryWaking(Entity ent, bool force = false, Entity Wake((ent, ent.Comp)); return true; } + + /// + /// Prevents the use of emote actions while sleeping + /// + public void OnEmoteAttempt(Entity ent, ref EmoteAttemptEvent args) + { + args.Cancel(); + } } diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index a4f315d62c567f..339c0f895fc8d1 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -32,6 +32,21 @@ public sealed class CCVars : CVars public static readonly CVarDef DefaultGuide = CVarDef.Create("server.default_guide", "NewPlayer", CVar.REPLICATED | CVar.SERVER); + /// + /// If greater than 0, automatically restart the server after this many minutes of uptime. + /// + /// + /// + /// This is intended to work around various bugs and performance issues caused by long continuous server uptime. + /// + /// + /// This uses the same non-disruptive logic as update restarts, + /// i.e. the game will only restart at round end or when there is nobody connected. + /// + /// + public static readonly CVarDef ServerUptimeRestartMinutes = + CVarDef.Create("server.uptime_restart_minutes", 0, CVar.SERVERONLY); + /* * Ambience */ @@ -436,6 +451,12 @@ public static readonly CVarDef public static readonly CVarDef GameEntityMenuLookup = CVarDef.Create("game.entity_menu_lookup", 0.25f, CVar.CLIENTONLY | CVar.ARCHIVE); + /// + /// Should the clients window show the server hostname in the title? + /// + public static readonly CVarDef GameHostnameInTitlebar = + CVarDef.Create("game.hostname_in_titlebar", true, CVar.SERVER | CVar.REPLICATED); + /* * Discord */ diff --git a/Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs new file mode 100644 index 00000000000000..dca8f5b29b4503 --- /dev/null +++ b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.ChangeNameInContainer; + +/// +/// An entity with this component will get its name and verb chaned to the container it's inside of. E.g, if your a +/// pAI that has this component and are inside a lizard plushie, your name when talking will be "lizard plushie". +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ChangeNameInContainerSystem))] +public sealed partial class ChangeVoiceInContainerComponent : Component +{ + /// + /// A whitelist of containers that will change the name. + /// + [DataField] + public EntityWhitelist? Whitelist; +} diff --git a/Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs new file mode 100644 index 00000000000000..f9abda3ec2329c --- /dev/null +++ b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs @@ -0,0 +1,30 @@ +using Content.Shared.Chat; +using Robust.Shared.Containers; +using Content.Shared.Whitelist; +using Content.Shared.Speech; + +namespace Content.Shared.ChangeNameInContainer; + +public sealed partial class ChangeNameInContainerSystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnTransformSpeakerName); + } + + private void OnTransformSpeakerName(Entity ent, ref TransformSpeakerNameEvent args) + { + if (!_container.TryGetContainingContainer((ent, null, null), out var container) + || _whitelist.IsWhitelistFail(ent.Comp.Whitelist, container.Owner)) + return; + + args.VoiceName = Name(container.Owner); + if (TryComp(container.Owner, out var speechComp)) + args.SpeechVerb = speechComp.SpeechVerb; + } + +} diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index bd9ca4fa28cf70..84b0e2266ec842 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -84,6 +84,35 @@ public SpeechVerbPrototype GetSpeechVerb(EntityUid source, string message, Speec return current ?? _prototypeManager.Index(speech.SpeechVerb); } + /// + /// Splits the input message into a radio prefix part and the rest to preserve it during sanitization. + /// + /// + /// This is primarily for the chat emote sanitizer, which can match against ":b" as an emote, which is a valid radio keycode. + /// + public void GetRadioKeycodePrefix(EntityUid source, + string input, + out string output, + out string prefix) + { + prefix = string.Empty; + output = input; + + // If the string is less than 2, then it's probably supposed to be an emote. + // No one is sending empty radio messages! + if (input.Length <= 2) + return; + + if (!(input.StartsWith(RadioChannelPrefix) || input.StartsWith(RadioChannelAltPrefix))) + return; + + if (!_keyCodes.TryGetValue(input[1], out _)) + return; + + prefix = input[..2]; + output = input[2..]; + } + /// /// Attempts to resolve radio prefixes in chat messages (e.g., remove a leading ":e" and resolve the requested /// channel. Returns true if a radio message was attempted, even if the channel is invalid. diff --git a/Content.Shared/Chemistry/InjectOverTimeEvent.cs b/Content.Shared/Chemistry/InjectOverTimeEvent.cs new file mode 100644 index 00000000000000..ca5ab4213ffbca --- /dev/null +++ b/Content.Shared/Chemistry/InjectOverTimeEvent.cs @@ -0,0 +1,13 @@ +namespace Content.Shared.Chemistry.Events; + +/// +/// Raised directed on an entity when it embeds in another entity. +/// +[ByRefEvent] +public readonly record struct InjectOverTimeEvent(EntityUid embeddedIntoUid) +{ + /// + /// Entity that is embedded in. + /// + public readonly EntityUid EmbeddedIntoUid = embeddedIntoUid; +} diff --git a/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs b/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs deleted file mode 100644 index fb7490ef4fbec5..00000000000000 --- a/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Numerics; -using Robust.Shared.GameStates; - -namespace Content.Shared.Clothing.Components; - -/// -/// Defines something as causing waddling when worn. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class WaddleWhenWornComponent : Component -{ - /// - /// How high should they hop during the waddle? Higher hop = more energy. - /// - [DataField, AutoNetworkedField] - public Vector2 HopIntensity = new(0, 0.25f); - - /// - /// How far should they rock backward and forward during the waddle? - /// Each step will alternate between this being a positive and negative rotation. More rock = more scary. - /// - [DataField, AutoNetworkedField] - public float TumbleIntensity = 20.0f; - - /// - /// How long should a complete step take? Less time = more chaos. - /// - [DataField, AutoNetworkedField] - public float AnimationLength = 0.66f; - - /// - /// How much shorter should the animation be when running? - /// - [DataField, AutoNetworkedField] - public float RunAnimationLengthMultiplier = 0.568f; -} diff --git a/Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs deleted file mode 100644 index b445eb258e9a1a..00000000000000 --- a/Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Content.Shared.Clothing; -using Content.Shared.Clothing.Components; -using Content.Shared.Movement.Components; -using Content.Shared.Inventory.Events; - -namespace Content.Shared.Clothing.EntitySystems; - -public sealed class WaddleClothingSystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); - } - - private void OnGotEquipped(EntityUid entity, WaddleWhenWornComponent comp, ClothingGotEquippedEvent args) - { - var waddleAnimComp = EnsureComp(args.Wearer); - - waddleAnimComp.AnimationLength = comp.AnimationLength; - waddleAnimComp.HopIntensity = comp.HopIntensity; - waddleAnimComp.RunAnimationLengthMultiplier = comp.RunAnimationLengthMultiplier; - waddleAnimComp.TumbleIntensity = comp.TumbleIntensity; - } - - private void OnGotUnequipped(EntityUid entity, WaddleWhenWornComponent comp, ClothingGotUnequippedEvent args) - { - RemComp(args.Wearer); - } -} diff --git a/Content.Shared/Ghost/SpectralComponent.cs b/Content.Shared/Ghost/SpectralComponent.cs new file mode 100644 index 00000000000000..3799951152e969 --- /dev/null +++ b/Content.Shared/Ghost/SpectralComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Ghost; + +/// +/// Marker component to identify "ghostly" entities. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SpectralComponent : Component { } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs index 76575df2fd8e01..223c2d4a3783bb 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Inventory.VirtualItem; @@ -130,7 +131,7 @@ public bool TryDrop(EntityUid uid, Hand hand, EntityCoordinates? targetDropLocat TransformSystem.DropNextTo((entity, itemXform), (uid, userXform)); return true; } - + // drop the item with heavy calculations from their hands and place it at the calculated interaction range position // The DoDrop is handle if there's no drop target DoDrop(uid, hand, doDropInteraction: doDropInteraction, handsComp); @@ -138,7 +139,7 @@ public bool TryDrop(EntityUid uid, Hand hand, EntityCoordinates? targetDropLocat // if there's no drop location stop here if (targetDropLocation == null) return true; - + // otherwise, also move dropped item and rotate it properly according to grid/map var (itemPos, itemRot) = TransformSystem.GetWorldPositionRotation(entity); var origin = new MapCoordinates(itemPos, itemXform.MapID); @@ -197,7 +198,7 @@ private Vector2 GetFinalDropCoordinates(EntityUid user, MapCoordinates origin, M /// /// Removes the contents of a hand from its container. Assumes that the removal is allowed. In general, you should not be calling this directly. /// - public virtual void DoDrop(EntityUid uid, Hand hand, bool doDropInteraction = true, HandsComponent? handsComp = null) + public virtual void DoDrop(EntityUid uid, Hand hand, bool doDropInteraction = true, HandsComponent? handsComp = null, bool log = true) { if (!Resolve(uid, ref handsComp)) return; @@ -221,6 +222,9 @@ public virtual void DoDrop(EntityUid uid, Hand hand, bool doDropInteraction = tr if (doDropInteraction) _interactionSystem.DroppedInteraction(uid, entity); + if (log) + _adminLogger.Add(LogType.Drop, LogImpact.Low, $"{ToPrettyString(uid):user} dropped {ToPrettyString(entity):entity}"); + if (hand == handsComp.ActiveHand) RaiseLocalEvent(entity, new HandDeselectedEvent(uid)); } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index ae22efcd6a53bb..fc5adfaf15a70c 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -178,8 +178,8 @@ public bool TryMoveHeldEntityToActiveHand(EntityUid uid, string handName, bool c if (!CanPickupToHand(uid, entity, handsComp.ActiveHand, checkActionBlocker, handsComp)) return false; - DoDrop(uid, hand, false, handsComp); - DoPickup(uid, handsComp.ActiveHand, entity, handsComp); + DoDrop(uid, hand, false, handsComp, log:false); + DoPickup(uid, handsComp.ActiveHand, entity, handsComp, log: false); return true; } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs index 7124e8f8208250..2bb993b5916f46 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs @@ -220,7 +220,7 @@ public void PickupOrDrop( /// /// Puts an entity into the player's hand, assumes that the insertion is allowed. In general, you should not be calling this function directly. /// - public virtual void DoPickup(EntityUid uid, Hand hand, EntityUid entity, HandsComponent? hands = null) + public virtual void DoPickup(EntityUid uid, Hand hand, EntityUid entity, HandsComponent? hands = null, bool log = true) { if (!Resolve(uid, ref hands)) return; @@ -237,7 +237,8 @@ public virtual void DoPickup(EntityUid uid, Hand hand, EntityUid entity, HandsCo _interactionSystem.DoContactInteraction(uid, entity); //Possibly fires twice if manually picked up via interacting with the object - _adminLogger.Add(LogType.Pickup, LogImpact.Low, $"{ToPrettyString(uid):user} picked up {ToPrettyString(entity):entity}"); + if (log) + _adminLogger.Add(LogType.Pickup, LogImpact.Low, $"{ToPrettyString(uid):user} picked up {ToPrettyString(entity):entity}"); Dirty(uid, hands); diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 830d2270aa45b3..94203de615583b 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -94,20 +94,36 @@ private void OnRemove(EntityUid uid, SubdermalImplantComponent component, EntGot /// public void AddImplants(EntityUid uid, IEnumerable implants) { - var coords = Transform(uid).Coordinates; foreach (var id in implants) { - var ent = Spawn(id, coords); - if (TryComp(ent, out var implant)) - { - ForceImplant(uid, ent, implant); - } - else - { - Log.Warning($"Found invalid starting implant '{id}' on {uid} {ToPrettyString(uid):implanted}"); - Del(ent); - } + AddImplant(uid, id); + } + } + + /// + /// Adds a single implant to a person, and returns the implant. + /// Logs any implant ids that don't have . + /// + /// + /// The implant, if it was successfully created. Otherwise, null. + /// > + public EntityUid? AddImplant(EntityUid uid, String implantId) + { + var coords = Transform(uid).Coordinates; + var ent = Spawn(implantId, coords); + + if (TryComp(ent, out var implant)) + { + ForceImplant(uid, ent, implant); + } + else + { + Log.Warning($"Found invalid starting implant '{implantId}' on {uid} {ToPrettyString(uid):implanted}"); + Del(ent); + return null; } + + return ent; } /// diff --git a/Content.Shared/Interaction/Events/ContactInteractionEvent.cs b/Content.Shared/Interaction/Events/ContactInteractionEvent.cs index c9d5fba2ed0b59..7be1c01c4ad7d7 100644 --- a/Content.Shared/Interaction/Events/ContactInteractionEvent.cs +++ b/Content.Shared/Interaction/Events/ContactInteractionEvent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Interaction.Events; /// public sealed class ContactInteractionEvent : HandledEntityEventArgs { - public readonly EntityUid Other; + public EntityUid Other; public ContactInteractionEvent(EntityUid other) { diff --git a/Content.Shared/Interaction/Events/InteractionFailureEvent.cs b/Content.Shared/Interaction/Events/InteractionFailureEvent.cs index a820048104d0f5..8670164293951b 100644 --- a/Content.Shared/Interaction/Events/InteractionFailureEvent.cs +++ b/Content.Shared/Interaction/Events/InteractionFailureEvent.cs @@ -3,5 +3,7 @@ namespace Content.Shared.Interaction.Events; /// /// Raised on the target when failing to pet/hug something. /// +// TODO INTERACTION +// Rename this, or move it to another namespace to make it clearer that this is specific to "petting/hugging" (InteractionPopupSystem) [ByRefEvent] public readonly record struct InteractionFailureEvent(EntityUid User); diff --git a/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs b/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs index da4f9e43d7d263..9395ddc910c9c5 100644 --- a/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs +++ b/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs @@ -3,5 +3,7 @@ namespace Content.Shared.Interaction.Events; /// /// Raised on the target when successfully petting/hugging something. /// +// TODO INTERACTION +// Rename this, or move it to another namespace to make it clearer that this is specific to "petting/hugging" (InteractionPopupSystem) [ByRefEvent] public readonly record struct InteractionSuccessEvent(EntityUid User); diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 43dd97762c5e3c..7f2ecb50f88736 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -456,8 +456,22 @@ public void UserInteraction( inRangeUnobstructed); } + private bool IsDeleted(EntityUid uid) + { + return TerminatingOrDeleted(uid) || EntityManager.IsQueuedForDeletion(uid); + } + + private bool IsDeleted(EntityUid? uid) + { + //optional / null entities can pass this validation check. I.e., is-deleted returns false for null uids + return uid != null && IsDeleted(uid.Value); + } + public void InteractHand(EntityUid user, EntityUid target) { + if (IsDeleted(user) || IsDeleted(target)) + return; + var complexInteractions = _actionBlockerSystem.CanComplexInteract(user); if (!complexInteractions) { @@ -466,7 +480,8 @@ public void InteractHand(EntityUid user, EntityUid target) checkCanInteract: false, checkUseDelay: true, checkAccess: false, - complexInteractions: complexInteractions); + complexInteractions: complexInteractions, + checkDeletion: false); return; } @@ -479,6 +494,7 @@ public void InteractHand(EntityUid user, EntityUid target) return; } + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(target)); // all interactions should only happen when in range / unobstructed, so no range check is needed var message = new InteractHandEvent(user, target); RaiseLocalEvent(target, message, true); @@ -487,18 +503,23 @@ public void InteractHand(EntityUid user, EntityUid target) if (message.Handled) return; + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(target)); // Else we run Activate. InteractionActivate(user, target, checkCanInteract: false, checkUseDelay: true, checkAccess: false, - complexInteractions: complexInteractions); + complexInteractions: complexInteractions, + checkDeletion: false); } public void InteractUsingRanged(EntityUid user, EntityUid used, EntityUid? target, EntityCoordinates clickLocation, bool inRangeUnobstructed) { + if (IsDeleted(user) || IsDeleted(used) || IsDeleted(target)) + return; + if (target != null) { _adminLogger.Add( @@ -514,9 +535,10 @@ public void InteractUsingRanged(EntityUid user, EntityUid used, EntityUid? targe $"{ToPrettyString(user):user} interacted with *nothing* using {ToPrettyString(used):used}"); } - if (RangedInteractDoBefore(user, used, target, clickLocation, inRangeUnobstructed)) + if (RangedInteractDoBefore(user, used, target, clickLocation, inRangeUnobstructed, checkDeletion: false)) return; + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used) && !IsDeleted(target)); if (target != null) { var rangedMsg = new RangedInteractEvent(user, used, target.Value, clickLocation); @@ -524,12 +546,12 @@ public void InteractUsingRanged(EntityUid user, EntityUid used, EntityUid? targe // We contact the USED entity, but not the target. DoContactInteraction(user, used, rangedMsg); - if (rangedMsg.Handled) return; } - InteractDoAfter(user, used, target, clickLocation, inRangeUnobstructed); + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used) && !IsDeleted(target)); + InteractDoAfter(user, used, target, clickLocation, inRangeUnobstructed, checkDeletion: false); } protected bool ValidateInteractAndFace(EntityUid user, EntityCoordinates coordinates) @@ -933,11 +955,18 @@ public bool RangedInteractDoBefore( EntityUid used, EntityUid? target, EntityCoordinates clickLocation, - bool canReach) + bool canReach, + bool checkDeletion = true) { + if (checkDeletion && (IsDeleted(user) || IsDeleted(used) || IsDeleted(target))) + return false; + var ev = new BeforeRangedInteractEvent(user, used, target, clickLocation, canReach); RaiseLocalEvent(used, ev); + if (!ev.Handled) + return false; + // We contact the USED entity, but not the target. DoContactInteraction(user, used, ev); return ev.Handled; @@ -966,6 +995,9 @@ public bool InteractUsing( bool checkCanInteract = true, bool checkCanUse = true) { + if (IsDeleted(user) || IsDeleted(used) || IsDeleted(target)) + return false; + if (checkCanInteract && !_actionBlockerSystem.CanInteract(user, target)) return false; @@ -977,9 +1009,10 @@ public bool InteractUsing( LogImpact.Low, $"{ToPrettyString(user):user} interacted with {ToPrettyString(target):target} using {ToPrettyString(used):used}"); - if (RangedInteractDoBefore(user, used, target, clickLocation, true)) + if (RangedInteractDoBefore(user, used, target, clickLocation, canReach: true, checkDeletion: false)) return true; + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used) && !IsDeleted(target)); // all interactions should only happen when in range / unobstructed, so no range check is needed var interactUsingEvent = new InteractUsingEvent(user, used, target, clickLocation); RaiseLocalEvent(target, interactUsingEvent, true); @@ -989,8 +1022,10 @@ public bool InteractUsing( if (interactUsingEvent.Handled) return true; - if (InteractDoAfter(user, used, target, clickLocation, canReach: true)) + if (InteractDoAfter(user, used, target, clickLocation, canReach: true, checkDeletion: false)) return true; + + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used) && !IsDeleted(target)); return false; } @@ -1004,11 +1039,14 @@ public bool InteractUsing( /// Whether the is in range of the . /// /// True if the interaction was handled. Otherwise, false. - public bool InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, EntityCoordinates clickLocation, bool canReach) + public bool InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, EntityCoordinates clickLocation, bool canReach, bool checkDeletion = true) { if (target is { Valid: false }) target = null; + if (checkDeletion && (IsDeleted(user) || IsDeleted(used) || IsDeleted(target))) + return false; + var afterInteractEvent = new AfterInteractEvent(user, used, target, clickLocation, canReach); RaiseLocalEvent(used, afterInteractEvent); DoContactInteraction(user, used, afterInteractEvent); @@ -1024,6 +1062,7 @@ public bool InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, E if (target == null) return false; + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used) && !IsDeleted(target)); var afterInteractUsingEvent = new AfterInteractUsingEvent(user, used, target, clickLocation, canReach); RaiseLocalEvent(target.Value, afterInteractUsingEvent); @@ -1034,9 +1073,7 @@ public bool InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, E // Contact interactions are currently only used for forensics, so we don't raise used -> target } - if (afterInteractUsingEvent.Handled) - return true; - return false; + return afterInteractUsingEvent.Handled; } #region ActivateItemInWorld @@ -1068,8 +1105,13 @@ public bool InteractionActivate( bool checkCanInteract = true, bool checkUseDelay = true, bool checkAccess = true, - bool? complexInteractions = null) + bool? complexInteractions = null, + bool checkDeletion = true) { + if (checkDeletion && (IsDeleted(user) || IsDeleted(used))) + return false; + + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used)); _delayQuery.TryComp(used, out var delayComponent); if (checkUseDelay && delayComponent != null && _useDelay.IsDelayed((used, delayComponent))) return false; @@ -1085,21 +1127,32 @@ public bool InteractionActivate( if (checkAccess && !IsAccessible(user, used)) return false; - complexInteractions ??= SupportsComplexInteractions(user); + complexInteractions ??= _actionBlockerSystem.CanComplexInteract(user); var activateMsg = new ActivateInWorldEvent(user, used, complexInteractions.Value); RaiseLocalEvent(used, activateMsg, true); + if (activateMsg.Handled) + { + DoContactInteraction(user, used); + if (!activateMsg.WasLogged) + _adminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(user):user} activated {ToPrettyString(used):used}"); + + if (delayComponent != null) + _useDelay.TryResetDelay(used, component: delayComponent); + return true; + } + + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used)); var userEv = new UserActivateInWorldEvent(user, used, complexInteractions.Value); RaiseLocalEvent(user, userEv, true); - if (!activateMsg.Handled && !userEv.Handled) + if (!userEv.Handled) return false; - DoContactInteraction(user, used, activateMsg); + DoContactInteraction(user, used); // Still need to call this even without checkUseDelay in case this gets relayed from Activate. if (delayComponent != null) _useDelay.TryResetDelay(used, component: delayComponent); - if (!activateMsg.WasLogged) - _adminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(user):user} activated {ToPrettyString(used):used}"); + _adminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(user):user} activated {ToPrettyString(used):used}"); return true; } #endregion @@ -1118,6 +1171,9 @@ public bool UseInHandInteraction( bool checkCanInteract = true, bool checkUseDelay = true) { + if (IsDeleted(user) || IsDeleted(used)) + return false; + _delayQuery.TryComp(used, out var delayComponent); if (checkUseDelay && delayComponent != null && _useDelay.IsDelayed((used, delayComponent))) return true; // if the item is on cooldown, we consider this handled. @@ -1138,8 +1194,9 @@ public bool UseInHandInteraction( return true; } + DebugTools.Assert(!IsDeleted(user) && !IsDeleted(used)); // else, default to activating the item - return InteractionActivate(user, used, false, false, false); + return InteractionActivate(user, used, false, false, false, checkDeletion: false); } /// @@ -1164,10 +1221,11 @@ public bool AltInteract(EntityUid user, EntityUid target) public void DroppedInteraction(EntityUid user, EntityUid item) { + if (IsDeleted(user) || IsDeleted(item)) + return; + var dropMsg = new DroppedEvent(user); RaiseLocalEvent(item, dropMsg, true); - if (dropMsg.Handled) - _adminLogger.Add(LogType.Drop, LogImpact.Low, $"{ToPrettyString(user):user} dropped {ToPrettyString(item):entity}"); // If the dropper is rotated then use their targetrelativerotation as the drop rotation var rotation = Angle.Zero; @@ -1314,15 +1372,21 @@ public void DoContactInteraction(EntityUid uidA, EntityUid? uidB, HandledEntityE if (uidB == null || args?.Handled == false) return; - // Entities may no longer exist (banana was eaten, or human was exploded)? - if (!Exists(uidA) || !Exists(uidB)) + if (uidA == uidB.Value) return; - if (Paused(uidA) || Paused(uidB.Value)) + if (!TryComp(uidA, out MetaDataComponent? metaA) || metaA.EntityPaused) return; - RaiseLocalEvent(uidA, new ContactInteractionEvent(uidB.Value)); - RaiseLocalEvent(uidB.Value, new ContactInteractionEvent(uidA)); + if (!TryComp(uidB, out MetaDataComponent? metaB) || metaB.EntityPaused) + return ; + + // TODO Struct event + var ev = new ContactInteractionEvent(uidB.Value); + RaiseLocalEvent(uidA, ev); + + ev.Other = uidA; + RaiseLocalEvent(uidB.Value, ev); } diff --git a/Content.Shared/Mind/Components/MindContainerComponent.cs b/Content.Shared/Mind/Components/MindContainerComponent.cs index 380d30ca143b63..760f5026fad867 100644 --- a/Content.Shared/Mind/Components/MindContainerComponent.cs +++ b/Content.Shared/Mind/Components/MindContainerComponent.cs @@ -14,7 +14,6 @@ public sealed partial class MindContainerComponent : Component /// The mind controlling this mob. Can be null. /// [DataField, AutoNetworkedField] - [Access(typeof(SharedMindSystem), Other = AccessPermissions.ReadWriteExecute)] // FIXME Friends public EntityUid? Mind { get; set; } /// @@ -35,7 +34,6 @@ public sealed partial class MindContainerComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] [DataField("ghostOnShutdown")] - [Access(typeof(SharedMindSystem), Other = AccessPermissions.ReadWriteExecute)] // FIXME Friends public bool GhostOnShutdown { get; set; } = true; } diff --git a/Content.Shared/Mind/MindComponent.cs b/Content.Shared/Mind/MindComponent.cs index d603102682b7fc..a0812be8f74e2a 100644 --- a/Content.Shared/Mind/MindComponent.cs +++ b/Content.Shared/Mind/MindComponent.cs @@ -1,4 +1,3 @@ -using Content.Shared.Actions; using Content.Shared.GameTicking; using Content.Shared.Mind.Components; using Robust.Shared.GameStates; @@ -87,17 +86,21 @@ public sealed partial class MindComponent : Component /// /// Prevents user from ghosting out /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("preventGhosting")] + [DataField] public bool PreventGhosting { get; set; } /// /// Prevents user from suiciding /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("preventSuicide")] + [DataField] public bool PreventSuicide { get; set; } + /// + /// Mind Role Entities belonging to this Mind + /// + [DataField, AutoNetworkedField] + public List MindRoles = new List(); + /// /// The session of the player owning this mind. /// Can be null, in which case the player is currently not logged in. diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 162bca495caf0a..bf0b5f650adb61 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -483,19 +483,6 @@ public bool TryGetMind( return false; } - /// - /// Gets a role component from a player's mind. - /// - /// Whether a role was found - public bool TryGetRole(EntityUid user, [NotNullWhen(true)] out T? role) where T : IComponent - { - role = default; - if (!TryComp(user, out var mindContainer) || mindContainer.Mind == null) - return false; - - return TryComp(mindContainer.Mind, out role); - } - /// /// Sets the Mind's UserId, Session, and updates the player's PlayerData. This should have no direct effect on the /// entity that any mind is connected to, except as a side effect of the fact that it may change a player's diff --git a/Content.Shared/Movement/Components/WaddleAnimationComponent.cs b/Content.Shared/Movement/Components/WaddleAnimationComponent.cs deleted file mode 100644 index 3cd9a3749e81c1..00000000000000 --- a/Content.Shared/Movement/Components/WaddleAnimationComponent.cs +++ /dev/null @@ -1,74 +0,0 @@ -using System.Numerics; -using Robust.Shared.Serialization; - -namespace Content.Shared.Movement.Components; - -/// -/// Declares that an entity has started to waddle like a duck/clown. -/// -/// The newly be-waddled. -[Serializable, NetSerializable] -public sealed class StartedWaddlingEvent(NetEntity entity) : EntityEventArgs -{ - public NetEntity Entity = entity; -} - -/// -/// Declares that an entity has stopped waddling like a duck/clown. -/// -/// The former waddle-er. -[Serializable, NetSerializable] -public sealed class StoppedWaddlingEvent(NetEntity entity) : EntityEventArgs -{ - public NetEntity Entity = entity; -} - -/// -/// Defines something as having a waddle animation when it moves. -/// -[RegisterComponent, AutoGenerateComponentState] -public sealed partial class WaddleAnimationComponent : Component -{ - /// - /// What's the name of this animation? Make sure it's unique so it can play along side other animations. - /// This prevents someone accidentally causing two identical waddling effects to play on someone at the same time. - /// - [DataField] - public string KeyName = "Waddle"; - - /// - /// How high should they hop during the waddle? Higher hop = more energy. - /// - [DataField, AutoNetworkedField] - public Vector2 HopIntensity = new(0, 0.25f); - - /// - /// How far should they rock backward and forward during the waddle? - /// Each step will alternate between this being a positive and negative rotation. More rock = more scary. - /// - [DataField, AutoNetworkedField] - public float TumbleIntensity = 20.0f; - - /// - /// How long should a complete step take? Less time = more chaos. - /// - [DataField, AutoNetworkedField] - public float AnimationLength = 0.66f; - - /// - /// How much shorter should the animation be when running? - /// - [DataField, AutoNetworkedField] - public float RunAnimationLengthMultiplier = 0.568f; - - /// - /// Stores which step we made last, so if someone cancels out of the animation mid-step then restarts it looks more natural. - /// - public bool LastStep; - - /// - /// Stores if we're currently waddling so we can start/stop as appropriate and can tell other systems our state. - /// - [AutoNetworkedField] - public bool IsCurrentlyWaddling; -} diff --git a/Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs b/Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs deleted file mode 100644 index cebae8093b4015..00000000000000 --- a/Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs +++ /dev/null @@ -1,106 +0,0 @@ -using Content.Shared.Buckle.Components; -using Content.Shared.Gravity; -using Content.Shared.Movement.Components; -using Content.Shared.Movement.Events; -using Content.Shared.Movement.Systems; -using Content.Shared.Standing; -using Content.Shared.Stunnable; -using Robust.Shared.Timing; - -namespace Content.Shared.Movement.Systems; - -public abstract class SharedWaddleAnimationSystem : EntitySystem -{ - [Dependency] private readonly IGameTiming _timing = default!; - - public override void Initialize() - { - // Startup - SubscribeLocalEvent(OnComponentStartup); - - // Start moving possibilities - SubscribeLocalEvent(OnMovementInput); - SubscribeLocalEvent(OnStood); - - // Stop moving possibilities - SubscribeLocalEvent((Entity ent, ref StunnedEvent _) => StopWaddling(ent)); - SubscribeLocalEvent((Entity ent, ref DownedEvent _) => StopWaddling(ent)); - SubscribeLocalEvent((Entity ent, ref BuckledEvent _) => StopWaddling(ent)); - SubscribeLocalEvent(OnGravityChanged); - } - - private void OnGravityChanged(Entity ent, ref GravityChangedEvent args) - { - if (!args.HasGravity && ent.Comp.IsCurrentlyWaddling) - StopWaddling(ent); - } - - private void OnComponentStartup(Entity entity, ref ComponentStartup args) - { - if (!TryComp(entity.Owner, out var moverComponent)) - return; - - // If the waddler is currently moving, make them start waddling - if ((moverComponent.HeldMoveButtons & MoveButtons.AnyDirection) == MoveButtons.AnyDirection) - { - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - } - - private void OnMovementInput(Entity entity, ref MoveInputEvent args) - { - // Prediction mitigation. Prediction means that MoveInputEvents are spammed repeatedly, even though you'd assume - // they're once-only for the user actually doing something. As such do nothing if we're just repeating this FoR. - if (!_timing.IsFirstTimePredicted) - { - return; - } - - if (!args.HasDirectionalMovement && entity.Comp.IsCurrentlyWaddling) - { - StopWaddling(entity); - - return; - } - - // Only start waddling if we're not currently AND we're actually moving. - if (entity.Comp.IsCurrentlyWaddling || !args.HasDirectionalMovement) - return; - - entity.Comp.IsCurrentlyWaddling = true; - - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - - private void OnStood(Entity entity, ref StoodEvent args) - { - // Prediction mitigation. Prediction means that MoveInputEvents are spammed repeatedly, even though you'd assume - // they're once-only for the user actually doing something. As such do nothing if we're just repeating this FoR. - if (!_timing.IsFirstTimePredicted) - { - return; - } - - if (!TryComp(entity.Owner, out var mover)) - { - return; - } - - if ((mover.HeldMoveButtons & MoveButtons.AnyDirection) == MoveButtons.None) - return; - - if (entity.Comp.IsCurrentlyWaddling) - return; - - entity.Comp.IsCurrentlyWaddling = true; - - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - - private void StopWaddling(Entity entity) - { - entity.Comp.IsCurrentlyWaddling = false; - - RaiseNetworkEvent(new StoppedWaddlingEvent(GetNetEntity(entity.Owner))); - } -} diff --git a/Content.Shared/Pinpointer/NavMapComponent.cs b/Content.Shared/Pinpointer/NavMapComponent.cs index d77169d32eddd3..b876cb20fe23fd 100644 --- a/Content.Shared/Pinpointer/NavMapComponent.cs +++ b/Content.Shared/Pinpointer/NavMapComponent.cs @@ -27,6 +27,50 @@ public sealed partial class NavMapComponent : Component /// [ViewVariables] public Dictionary Beacons = new(); + + /// + /// Describes the properties of a region on the station. + /// It is indexed by the entity assigned as the region owner. + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary RegionProperties = new(); + + /// + /// All flood filled regions, ready for display on a NavMapControl. + /// It is indexed by the entity assigned as the region owner. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary RegionOverlays = new(); + + /// + /// A queue of all region owners that are waiting their associated regions to be floodfilled. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Queue QueuedRegionsToFlood = new(); + + /// + /// A look up table to get a list of region owners associated with a flood filled chunk. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary> ChunkToRegionOwnerTable = new(); + + /// + /// A look up table to find flood filled chunks associated with a given region owner. + /// + /// + /// For client use only + /// + [ViewVariables(VVAccess.ReadOnly)] + public Dictionary> RegionOwnerToChunkTable = new(); } [Serializable, NetSerializable] @@ -51,10 +95,30 @@ public sealed class NavMapChunk(Vector2i origin) public GameTick LastUpdate; } +[Serializable, NetSerializable] +public sealed class NavMapRegionOverlay(Enum uiKey, List<(Vector2i, Vector2i)> gridCoords) +{ + /// + /// The key to the UI that will be displaying this region on its navmap + /// + public Enum UiKey = uiKey; + + /// + /// The local grid coordinates of the rectangles that make up the region + /// Item1 is the top left corner, Item2 is the bottom right corner + /// + public List<(Vector2i, Vector2i)> GridCoords = gridCoords; + + /// + /// Color of the region + /// + public Color Color = Color.White; +} + public enum NavMapChunkType : byte { // Values represent bit shift offsets when retrieving data in the tile array. - Invalid = byte.MaxValue, + Invalid = byte.MaxValue, Floor = 0, // I believe floors have directional information for diagonal tiles? Wall = SharedNavMapSystem.Directions, Airlock = 2 * SharedNavMapSystem.Directions, diff --git a/Content.Shared/Pinpointer/SharedNavMapSystem.cs b/Content.Shared/Pinpointer/SharedNavMapSystem.cs index 3ced5f3c9ed529..37d60dec28a7eb 100644 --- a/Content.Shared/Pinpointer/SharedNavMapSystem.cs +++ b/Content.Shared/Pinpointer/SharedNavMapSystem.cs @@ -3,10 +3,9 @@ using System.Runtime.CompilerServices; using Content.Shared.Tag; using Robust.Shared.GameStates; +using Robust.Shared.Network; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Timing; -using Robust.Shared.Utility; namespace Content.Shared.Pinpointer; @@ -16,7 +15,7 @@ public abstract class SharedNavMapSystem : EntitySystem public const int Directions = 4; // Not directly tied to number of atmos directions public const int ChunkSize = 8; - public const int ArraySize = ChunkSize* ChunkSize; + public const int ArraySize = ChunkSize * ChunkSize; public const int AllDirMask = (1 << Directions) - 1; public const int AirlockMask = AllDirMask << (int) NavMapChunkType.Airlock; @@ -24,6 +23,7 @@ public abstract class SharedNavMapSystem : EntitySystem public const int FloorMask = AllDirMask << (int) NavMapChunkType.Floor; [Robust.Shared.IoC.Dependency] private readonly TagSystem _tagSystem = default!; + [Robust.Shared.IoC.Dependency] private readonly INetManager _net = default!; private static readonly ProtoId[] WallTags = {"Wall", "Window"}; private EntityQuery _doorQuery; @@ -57,7 +57,7 @@ public static Vector2i GetTileFromIndex(int index) public NavMapChunkType GetEntityType(EntityUid uid) { if (_doorQuery.HasComp(uid)) - return NavMapChunkType.Airlock; + return NavMapChunkType.Airlock; if (_tagSystem.HasAnyTag(uid, WallTags)) return NavMapChunkType.Wall; @@ -81,6 +81,57 @@ protected bool TryCreateNavMapBeaconData(EntityUid uid, NavMapBeaconComponent co return true; } + public void AddOrUpdateNavMapRegion(EntityUid uid, NavMapComponent component, NetEntity regionOwner, NavMapRegionProperties regionProperties) + { + // Check if a new region has been added or an existing one has been altered + var isDirty = !component.RegionProperties.TryGetValue(regionOwner, out var oldProperties) || oldProperties != regionProperties; + + if (isDirty) + { + component.RegionProperties[regionOwner] = regionProperties; + + if (_net.IsServer) + Dirty(uid, component); + } + } + + public void RemoveNavMapRegion(EntityUid uid, NavMapComponent component, NetEntity regionOwner) + { + bool regionOwnerRemoved = component.RegionProperties.Remove(regionOwner) | component.RegionOverlays.Remove(regionOwner); + + if (regionOwnerRemoved) + { + if (component.RegionOwnerToChunkTable.TryGetValue(regionOwner, out var affectedChunks)) + { + foreach (var affectedChunk in affectedChunks) + { + if (component.ChunkToRegionOwnerTable.TryGetValue(affectedChunk, out var regionOwners)) + regionOwners.Remove(regionOwner); + } + + component.RegionOwnerToChunkTable.Remove(regionOwner); + } + + if (_net.IsServer) + Dirty(uid, component); + } + } + + public Dictionary GetNavMapRegionOverlays(EntityUid uid, NavMapComponent component, Enum uiKey) + { + var regionOverlays = new Dictionary(); + + foreach (var (regionOwner, regionOverlay) in component.RegionOverlays) + { + if (!regionOverlay.UiKey.Equals(uiKey)) + continue; + + regionOverlays.Add(regionOwner, regionOverlay); + } + + return regionOverlays; + } + #region: Event handling private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentGetState args) @@ -97,7 +148,7 @@ private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentG chunks.Add(origin, chunk.TileData); } - args.State = new NavMapState(chunks, component.Beacons); + args.State = new NavMapState(chunks, component.Beacons, component.RegionProperties); return; } @@ -110,7 +161,7 @@ private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentG chunks.Add(origin, chunk.TileData); } - args.State = new NavMapDeltaState(chunks, component.Beacons, new(component.Chunks.Keys)); + args.State = new NavMapDeltaState(chunks, component.Beacons, component.RegionProperties, new(component.Chunks.Keys)); } #endregion @@ -120,22 +171,26 @@ private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentG [Serializable, NetSerializable] protected sealed class NavMapState( Dictionary chunks, - Dictionary beacons) + Dictionary beacons, + Dictionary regions) : ComponentState { public Dictionary Chunks = chunks; public Dictionary Beacons = beacons; + public Dictionary Regions = regions; } [Serializable, NetSerializable] protected sealed class NavMapDeltaState( Dictionary modifiedChunks, Dictionary beacons, + Dictionary regions, HashSet allChunks) : ComponentState, IComponentDeltaState { public Dictionary ModifiedChunks = modifiedChunks; public Dictionary Beacons = beacons; + public Dictionary Regions = regions; public HashSet AllChunks = allChunks; public void ApplyToFullState(NavMapState state) @@ -159,11 +214,18 @@ public void ApplyToFullState(NavMapState state) { state.Beacons.Add(nuid, beacon); } + + state.Regions.Clear(); + foreach (var (nuid, region) in Regions) + { + state.Regions.Add(nuid, region); + } } public NavMapState CreateNewFullState(NavMapState state) { var chunks = new Dictionary(state.Chunks.Count); + foreach (var (index, data) in state.Chunks) { if (!AllChunks!.Contains(index)) @@ -177,12 +239,25 @@ public NavMapState CreateNewFullState(NavMapState state) Array.Copy(newData, data, ArraySize); } - return new NavMapState(chunks, new(Beacons)); + return new NavMapState(chunks, new(Beacons), new(Regions)); } } [Serializable, NetSerializable] public record struct NavMapBeacon(NetEntity NetEnt, Color Color, string Text, Vector2 Position); + [Serializable, NetSerializable] + public record struct NavMapRegionProperties(NetEntity Owner, Enum UiKey, HashSet Seeds) + { + // Server defined color for the region + public Color Color = Color.White; + + // The maximum number of tiles that can be assigned to this region + public int MaxArea = 625; + + // The maximum distance this region can propagate from its seeds + public int MaxRadius = 25; + } + #endregion } diff --git a/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs b/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs index 25f97dc15a0e73..fde0319a37d6cd 100644 --- a/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs +++ b/Content.Shared/Power/Generator/ActiveGeneratorRevvingComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Power.Generator; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class ActiveGeneratorRevvingComponent: Component +public sealed partial class ActiveGeneratorRevvingComponent : Component { [DataField, ViewVariables(VVAccess.ReadOnly), AutoNetworkedField] public TimeSpan CurrentTime = TimeSpan.Zero; diff --git a/Content.Shared/Power/Generator/ActiveGeneratorRevvingSystem.cs b/Content.Shared/Power/Generator/ActiveGeneratorRevvingSystem.cs index 9cd11ae6045352..459b2fd78deef0 100644 --- a/Content.Shared/Power/Generator/ActiveGeneratorRevvingSystem.cs +++ b/Content.Shared/Power/Generator/ActiveGeneratorRevvingSystem.cs @@ -1,6 +1,6 @@ namespace Content.Shared.Power.Generator; -public sealed class ActiveGeneratorRevvingSystem: EntitySystem +public sealed class ActiveGeneratorRevvingSystem : EntitySystem { public override void Initialize() { @@ -25,7 +25,7 @@ private void OnAnchorStateChanged(EntityUid uid, ActiveGeneratorRevvingComponent /// ActiveGeneratorRevvingComponent of the generator entity. public void StartAutoRevving(EntityUid uid, ActiveGeneratorRevvingComponent? component = null) { - if (Resolve(uid, ref component)) + if (Resolve(uid, ref component, false)) { // reset the revving component.CurrentTime = TimeSpan.FromSeconds(0); diff --git a/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs index 008b7c2ced4d25..e4125945d26d23 100644 --- a/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs +++ b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs @@ -13,37 +13,43 @@ public sealed partial class EmbeddableProjectileComponent : Component /// /// Minimum speed of the projectile to embed. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public float MinimumSpeed = 5f; /// /// Delete the entity on embedded removal? /// Does nothing if there's no RemovalTime. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public bool DeleteOnRemove; /// /// How long it takes to remove the embedded object. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public float? RemovalTime = 3f; /// /// Whether this entity will embed when thrown, or only when shot as a projectile. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public bool EmbedOnThrow = true; /// /// How far into the entity should we offset (0 is wherever we collided). /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public Vector2 Offset = Vector2.Zero; /// /// Sound to play after embedding into a hit target. /// - [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] + [DataField, AutoNetworkedField] public SoundSpecifier? Sound; + + /// + /// Uid of the entity the projectile is embed into. + /// + [DataField, AutoNetworkedField] + public EntityUid? EmbeddedIntoUid; } diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index 1b7d6d6f99157c..85e75d6d291324 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -71,6 +71,8 @@ private void OnEmbedRemove(EntityUid uid, EmbeddableProjectileComponent componen TryComp(uid, out var physics); _physics.SetBodyType(uid, BodyType.Dynamic, body: physics, xform: xform); _transform.AttachToGridOrMap(uid, xform); + component.EmbeddedIntoUid = null; + Dirty(uid, component); // Reset whether the projectile has damaged anything if it successfully was removed if (TryComp(uid, out var projectile)) @@ -127,8 +129,10 @@ private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableP } _audio.PlayPredicted(component.Sound, uid, null); + component.EmbeddedIntoUid = target; var ev = new EmbedEvent(user, target); RaiseLocalEvent(uid, ref ev); + Dirty(uid, component); } private void PreventCollision(EntityUid uid, ProjectileComponent component, ref PreventCollideEvent args) diff --git a/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs b/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs index 8c5baf93f5df40..67af4cc900a581 100644 --- a/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs +++ b/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs @@ -42,10 +42,12 @@ private void OnGetVerb(Entity entity, ref GetVerbsEvent))] - public string? PrototypeId; -} - -/// -/// Mark the antagonist role component as being exclusive -/// IE by default other antagonists should refuse to select the same entity for a different antag role -/// -[AttributeUsage(AttributeTargets.Class, Inherited = false)] -[BaseTypeRequired(typeof(AntagonistRoleComponent))] -public sealed partial class ExclusiveAntagonistAttribute : Attribute -{ -} diff --git a/Content.Shared/Roles/JobRequirement/AgeRequirement.cs b/Content.Shared/Roles/JobRequirement/AgeRequirement.cs index 75a77ae155652e..30f607adf7fd09 100644 --- a/Content.Shared/Roles/JobRequirement/AgeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/AgeRequirement.cs @@ -30,7 +30,7 @@ public override bool Check(IEntityManager entManager, if (!Inverted) { - reason = FormattedMessage.FromMarkupPermissive(Loc.GetString("role-timer-age-to-young", + reason = FormattedMessage.FromMarkupPermissive(Loc.GetString("role-timer-age-too-young", ("age", RequiredAge))); if (profile.Age < RequiredAge) @@ -38,7 +38,7 @@ public override bool Check(IEntityManager entManager, } else { - reason = FormattedMessage.FromMarkupPermissive(Loc.GetString("role-timer-age-to-old", + reason = FormattedMessage.FromMarkupPermissive(Loc.GetString("role-timer-age-too-old", ("age", RequiredAge))); if (profile.Age > RequiredAge) diff --git a/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs index 56b7d8ba811b56..78c6bd25177984 100644 --- a/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs @@ -15,7 +15,7 @@ public sealed partial class DepartmentTimeRequirement : JobRequirement /// Which department needs the required amount of time. /// [DataField(required: true)] - public ProtoId Department = default!; + public ProtoId Department; /// /// How long (in seconds) this requirement is. @@ -47,7 +47,9 @@ public override bool Check(IEntityManager entManager, playtime += otherTime; } - var deptDiff = Time.TotalMinutes - playtime.TotalMinutes; + var deptDiffSpan = Time - playtime; + var deptDiff = deptDiffSpan.TotalMinutes; + var formattedDeptDiff = deptDiffSpan.ToString(Loc.GetString("role-timer-time-format")); var nameDepartment = "role-timer-department-unknown"; if (protoManager.TryIndex(Department, out var departmentIndexed)) @@ -62,7 +64,7 @@ public override bool Check(IEntityManager entManager, reason = FormattedMessage.FromMarkupPermissive(Loc.GetString( "role-timer-department-insufficient", - ("time", Math.Ceiling(deptDiff)), + ("time", formattedDeptDiff), ("department", Loc.GetString(nameDepartment)), ("departmentColor", department.Color.ToHex()))); return false; @@ -72,7 +74,7 @@ public override bool Check(IEntityManager entManager, { reason = FormattedMessage.FromMarkupPermissive(Loc.GetString( "role-timer-department-too-high", - ("time", -deptDiff), + ("time", formattedDeptDiff), ("department", Loc.GetString(nameDepartment)), ("departmentColor", department.Color.ToHex()))); return false; diff --git a/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs b/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs index acbb8f2b4d4716..ed985cadfba07e 100644 --- a/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs @@ -25,7 +25,9 @@ public override bool Check(IEntityManager entManager, reason = new FormattedMessage(); var overallTime = playTimes.GetValueOrDefault(PlayTimeTrackingShared.TrackerOverall); - var overallDiff = Time.TotalMinutes - overallTime.TotalMinutes; + var overallDiffSpan = Time - overallTime; + var overallDiff = overallDiffSpan.TotalMinutes; + var formattedOverallDiff = overallDiffSpan.ToString(Loc.GetString("role-timer-time-format")); if (!Inverted) { @@ -34,14 +36,14 @@ public override bool Check(IEntityManager entManager, reason = FormattedMessage.FromMarkupPermissive(Loc.GetString( "role-timer-overall-insufficient", - ("time", Math.Ceiling(overallDiff)))); + ("time", formattedOverallDiff))); return false; } if (overallDiff <= 0 || overallTime >= Time) { reason = FormattedMessage.FromMarkupPermissive(Loc.GetString("role-timer-overall-too-high", - ("time", -overallDiff))); + ("time", formattedOverallDiff))); return false; } diff --git a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs index 658db95ab566eb..23498ab91ad21c 100644 --- a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs @@ -17,7 +17,7 @@ public sealed partial class RoleTimeRequirement : JobRequirement /// What particular role they need the time requirement with. /// [DataField(required: true)] - public ProtoId Role = default!; + public ProtoId Role; /// [DataField(required: true)] @@ -34,7 +34,9 @@ public override bool Check(IEntityManager entManager, string proto = Role; playTimes.TryGetValue(proto, out var roleTime); - var roleDiff = Time.TotalMinutes - roleTime.TotalMinutes; + var roleDiffSpan = Time - roleTime; + var roleDiff = roleDiffSpan.TotalMinutes; + var formattedRoleDiff = roleDiffSpan.ToString(Loc.GetString("role-timer-time-format")); var departmentColor = Color.Yellow; if (entManager.EntitySysManager.TryGetEntitySystem(out SharedJobSystem? jobSystem)) @@ -52,7 +54,7 @@ public override bool Check(IEntityManager entManager, reason = FormattedMessage.FromMarkupPermissive(Loc.GetString( "role-timer-role-insufficient", - ("time", Math.Ceiling(roleDiff)), + ("time", formattedRoleDiff), ("job", Loc.GetString(proto)), ("departmentColor", departmentColor.ToHex()))); return false; @@ -62,7 +64,7 @@ public override bool Check(IEntityManager entManager, { reason = FormattedMessage.FromMarkupPermissive(Loc.GetString( "role-timer-role-too-high", - ("time", -roleDiff), + ("time", formattedRoleDiff), ("job", Loc.GetString(proto)), ("departmentColor", departmentColor.ToHex()))); return false; diff --git a/Content.Shared/Roles/Jobs/JobComponent.cs b/Content.Shared/Roles/Jobs/JobComponent.cs deleted file mode 100644 index 7191e8b3971137..00000000000000 --- a/Content.Shared/Roles/Jobs/JobComponent.cs +++ /dev/null @@ -1,14 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Prototypes; - -namespace Content.Shared.Roles.Jobs; - -/// -/// Added to mind entities to hold the data for the player's current job. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class JobComponent : Component -{ - [DataField(required: true), AutoNetworkedField] - public ProtoId? Prototype; -} diff --git a/Content.Shared/Roles/Jobs/JobRoleComponent.cs b/Content.Shared/Roles/Jobs/JobRoleComponent.cs new file mode 100644 index 00000000000000..dbaf12beec4b6e --- /dev/null +++ b/Content.Shared/Roles/Jobs/JobRoleComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Jobs; + +/// +/// Added to mind role entities to mark them as a job role entity. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class JobRoleComponent : BaseMindRoleComponent +{ + +} diff --git a/Content.Shared/Roles/Jobs/SharedJobSystem.cs b/Content.Shared/Roles/Jobs/SharedJobSystem.cs index 939a57baadff18..8a4733c83401fd 100644 --- a/Content.Shared/Roles/Jobs/SharedJobSystem.cs +++ b/Content.Shared/Roles/Jobs/SharedJobSystem.cs @@ -13,8 +13,10 @@ namespace Content.Shared.Roles.Jobs; /// public abstract class SharedJobSystem : EntitySystem { - [Dependency] private readonly IPrototypeManager _prototypes = default!; [Dependency] private readonly SharedPlayerSystem _playerSystem = default!; + [Dependency] private readonly IPrototypeManager _prototypes = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; + private readonly Dictionary _inverseTrackerLookup = new(); public override void Initialize() @@ -100,32 +102,41 @@ public bool TryGetPrimaryDepartment(string jobProto, [NotNullWhen(true)] out Dep public bool MindHasJobWithId(EntityUid? mindId, string prototypeId) { - return CompOrNull(mindId)?.Prototype == prototypeId; + + if (mindId is null) + return false; + + _roles.MindHasRole(mindId.Value, out var role); + + if (role is null) + return false; + + return role.Value.Comp1.JobPrototype == prototypeId; } public bool MindTryGetJob( [NotNullWhen(true)] EntityUid? mindId, - [NotNullWhen(true)] out JobComponent? comp, [NotNullWhen(true)] out JobPrototype? prototype) { - comp = null; prototype = null; + MindTryGetJobId(mindId, out var protoId); - return TryComp(mindId, out comp) && - comp.Prototype != null && - _prototypes.TryIndex(comp.Prototype, out prototype); + return _prototypes.TryIndex(protoId, out prototype) || prototype is not null; } - public bool MindTryGetJobId([NotNullWhen(true)] EntityUid? mindId, out ProtoId? job) + public bool MindTryGetJobId( + [NotNullWhen(true)] EntityUid? mindId, + out ProtoId? job) { - if (!TryComp(mindId, out JobComponent? comp)) - { - job = null; + job = null; + + if (mindId is null) return false; - } - job = comp.Prototype; - return true; + if (_roles.MindHasRole(mindId.Value, out var role)) + job = role.Value.Comp1.JobPrototype; + + return job is not null; } /// @@ -134,7 +145,7 @@ public bool MindTryGetJobId([NotNullWhen(true)] EntityUid? mindId, out ProtoId public bool MindTryGetJobName([NotNullWhen(true)] EntityUid? mindId, out string name) { - if (MindTryGetJob(mindId, out _, out var prototype)) + if (MindTryGetJob(mindId, out var prototype)) { name = prototype.LocalizedName; return true; @@ -161,7 +172,7 @@ public bool CanBeAntag(ICommonSession player) if (_playerSystem.ContentData(player) is not { Mind: { } mindId }) return true; - if (!MindTryGetJob(mindId, out _, out var prototype)) + if (!MindTryGetJob(mindId, out var prototype)) return true; return prototype.CanBeAntag; diff --git a/Content.Shared/Roles/MindGetAllRolesEvent.cs b/Content.Shared/Roles/MindGetAllRoleInfoEvent.cs similarity index 79% rename from Content.Shared/Roles/MindGetAllRolesEvent.cs rename to Content.Shared/Roles/MindGetAllRoleInfoEvent.cs index 69878739084bc7..a2f2820b5c3a5c 100644 --- a/Content.Shared/Roles/MindGetAllRolesEvent.cs +++ b/Content.Shared/Roles/MindGetAllRoleInfoEvent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Roles; /// /// The list of roles on the player. [ByRefEvent] -public readonly record struct MindGetAllRolesEvent(List Roles); +public readonly record struct MindGetAllRoleInfoEvent(List Roles); /// /// Returned by to give some information about a player's role. @@ -17,4 +17,4 @@ namespace Content.Shared.Roles; /// Whether or not this role makes this player an antagonist. /// The id associated with the role. /// The prototype ID of the role -public readonly record struct RoleInfo(Component Component, string Name, bool Antagonist, string? PlayTimeTrackerId, string Prototype); +public readonly record struct RoleInfo(string Name, bool Antagonist, string? PlayTimeTrackerId, string Prototype); diff --git a/Content.Shared/Roles/MindRoleComponent.cs b/Content.Shared/Roles/MindRoleComponent.cs new file mode 100644 index 00000000000000..a3dd0b3bc6da89 --- /dev/null +++ b/Content.Shared/Roles/MindRoleComponent.cs @@ -0,0 +1,50 @@ +using Content.Shared.Mind; +using JetBrains.Annotations; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Roles; + +/// +/// This holds data for, and indicates, a Mind Role entity +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class MindRoleComponent : BaseMindRoleComponent +{ + /// + /// Marks this Mind Role as Antagonist + /// A single antag Mind Role is enough to make the owner mind count as Antagonist. + /// + [DataField] + public bool Antag { get; set; } = false; + + /// + /// True if this mindrole is an exclusive antagonist. Antag setting is not checked if this is True. + /// + [DataField] + public bool ExclusiveAntag { get; set; } = false; + + /// + /// The Mind that this role belongs to + /// + public Entity Mind { get; set; } + + /// + /// The Antagonist prototype of this role + /// + [DataField] + public ProtoId? AntagPrototype { get; set; } + + /// + /// The Job prototype of this role + /// + [DataField] + public ProtoId? JobPrototype { get; set; } +} + +// Why does this base component actually exist? It does make auto-categorization easy, but before that it was useless? +[EntityCategory("Roles")] +public abstract partial class BaseMindRoleComponent : Component +{ + +} diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index 81a360ebb7f778..00271693abe29a 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -1,12 +1,14 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Administration.Logs; using Content.Shared.CCVar; using Content.Shared.Database; -using Content.Shared.Ghost.Roles; +using Content.Shared.GameTicking; using Content.Shared.Mind; using Content.Shared.Roles.Jobs; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; +using Robust.Shared.Map; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -15,20 +17,16 @@ namespace Content.Shared.Roles; public abstract class SharedRoleSystem : EntitySystem { [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; - [Dependency] private readonly IPrototypeManager _prototypes = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedMindSystem _minds = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; - - // TODO please lord make role entities - private readonly HashSet _antagTypes = new(); + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly SharedGameTicker _gameTicker = default!; + [Dependency] private readonly IPrototypeManager _prototypes = default!; private JobRequirementOverridePrototype? _requirementOverride; public override void Initialize() { - // TODO make roles entities - SubscribeLocalEvent(OnJobGetAllRoles); Subs.CVar(_cfg, CCVars.GameRoleTimerOverride, SetRequirementOverride, true); } @@ -44,62 +42,118 @@ private void SetRequirementOverride(string value) Log.Error($"Unknown JobRequirementOverridePrototype: {value}"); } - private void OnJobGetAllRoles(EntityUid uid, JobComponent component, ref MindGetAllRolesEvent args) + /// + /// Adds multiple mind roles to a mind + /// + /// The mind entity to add the role to + /// The list of mind roles to add + /// If the mind component is provided, it will be checked if it belongs to the mind entity + /// If true, no briefing will be generated upon receiving the mind role + public void MindAddRoles(EntityUid mindId, + List>? roles, + MindComponent? mind = null, + bool silent = false) { - var name = "game-ticker-unknown-role"; - var prototype = ""; - string? playTimeTracker = null; - if (component.Prototype != null && _prototypes.TryIndex(component.Prototype, out JobPrototype? job)) + if (roles is null || roles.Count == 0) + return; + + foreach (var proto in roles) { - name = job.Name; - prototype = job.ID; - playTimeTracker = job.PlayTimeTracker; + MindAddRole(mindId, proto, mind, silent); } + } - name = Loc.GetString(name); - - args.Roles.Add(new RoleInfo(component, name, false, playTimeTracker, prototype)); + /// + /// Adds a mind role to a mind + /// + /// The mind entity to add the role to + /// The mind role to add + /// If the mind component is provided, it will be checked if it belongs to the mind entity + /// If true, no briefing will be generated upon receiving the mind role + public void MindAddRole(EntityUid mindId, + ProtoId protoId, + MindComponent? mind = null, + bool silent = false) + { + if (protoId == "MindRoleJob") + MindAddJobRole(mindId, mind, silent, ""); + else + MindAddRoleDo(mindId, protoId, mind, silent); } - protected void SubscribeAntagEvents() where T : AntagonistRoleComponent + /// + /// Adds a Job mind role with the specified job prototype + /// + /// /// The mind entity to add the job role to + /// If the mind component is provided, it will be checked if it belongs to the mind entity + /// If true, no briefing will be generated upon receiving the mind role + /// The Job prototype for the new role + public void MindAddJobRole(EntityUid mindId, + MindComponent? mind = null, + bool silent = false, + string? jobPrototype = null) { - SubscribeLocalEvent((EntityUid _, T component, ref MindGetAllRolesEvent args) => - { - var name = "game-ticker-unknown-role"; - var prototype = ""; - if (component.PrototypeId != null && _prototypes.TryIndex(component.PrototypeId, out AntagPrototype? antag)) - { - name = antag.Name; - prototype = antag.ID; - } - name = Loc.GetString(name); + if (!Resolve(mindId, ref mind)) + return; - args.Roles.Add(new RoleInfo(component, name, true, null, prototype)); - }); + // Can't have someone get paid for two jobs now, can we + if (MindHasRole((mindId, mind), out var jobRole) + && jobRole.Value.Comp1.JobPrototype != jobPrototype) + { + _adminLogger.Add(LogType.Mind, + LogImpact.Low, + $"Job Role of {ToPrettyString(mind.OwnedEntity)} changed from '{jobRole.Value.Comp1.JobPrototype}' to '{jobPrototype}'"); - SubscribeLocalEvent((EntityUid _, T _, ref MindIsAntagonistEvent args) => { args.IsAntagonist = true; args.IsExclusiveAntagonist |= typeof(T).TryGetCustomAttribute(out _); }); - _antagTypes.Add(typeof(T)); + jobRole.Value.Comp1.JobPrototype = jobPrototype; + } + else + MindAddRoleDo(mindId, "MindRoleJob", mind, silent, jobPrototype); } - public void MindAddRoles(EntityUid mindId, ComponentRegistry components, MindComponent? mind = null, bool silent = false) + /// + /// Creates a Mind Role + /// + private void MindAddRoleDo(EntityUid mindId, + ProtoId protoId, + MindComponent? mind = null, + bool silent = false, + string? jobPrototype = null) { if (!Resolve(mindId, ref mind)) + { + Log.Error($"Failed to add role {protoId} to mind {mindId} : Mind does not match provided mind component"); return; + } - EntityManager.AddComponents(mindId, components); var antagonist = false; - foreach (var compReg in components.Values) + + if (!_prototypes.TryIndex(protoId, out var protoEnt)) { - var compType = compReg.Component.GetType(); + Log.Error($"Failed to add role {protoId} to mind {mindId} : Role prototype does not exist"); + return; + } - var comp = EntityManager.ComponentFactory.GetComponent(compType); - if (IsAntagonistRole(comp.GetType())) - { - antagonist = true; - break; - } + //TODO don't let a prototype being added a second time + //If that was somehow to occur, a second mindrole for that comp would be created + //Meaning any mind role checks could return wrong results, since they just return the first match they find + + var mindRoleId = Spawn(protoId, MapCoordinates.Nullspace); + EnsureComp(mindRoleId); + var mindRoleComp = Comp(mindRoleId); + + mindRoleComp.Mind = (mindId,mind); + if (jobPrototype is not null) + { + mindRoleComp.JobPrototype = jobPrototype; + EnsureComp(mindRoleId); + DebugTools.AssertNull(mindRoleComp.AntagPrototype); + DebugTools.Assert(!mindRoleComp.Antag); + DebugTools.Assert(!mindRoleComp.ExclusiveAntag); } + antagonist |= mindRoleComp.Antag; + mind.MindRoles.Add(mindRoleId); + var mindEv = new MindRoleAddedEvent(silent); RaiseLocalEvent(mindId, ref mindEv); @@ -109,157 +163,320 @@ public void MindAddRoles(EntityUid mindId, ComponentRegistry components, MindCom RaiseLocalEvent(mind.OwnedEntity.Value, message, true); } - _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"Role components {string.Join(components.Keys.ToString(), ", ")} added to mind of {_minds.MindOwnerLoggingString(mind)}"); + var name = Loc.GetString(protoEnt.Name); + if (mind.OwnedEntity is not null) + { + _adminLogger.Add(LogType.Mind, + LogImpact.Low, + $"{name} added to mind of {ToPrettyString(mind.OwnedEntity)}"); + } + else + { + //TODO: This is not tied to the player on the Admin Log filters. + //Probably only happens when Job Role is added on initial spawn, before the mind entity is put in a mob + _adminLogger.Add(LogType.Mind, + LogImpact.Low, + $"{name} added to {ToPrettyString(mindId)}"); + } } - public void MindAddRole(EntityUid mindId, Component component, MindComponent? mind = null, bool silent = false) + /// + /// Removes all instances of a specific role from this mind. + /// + /// The mind to remove the role from. + /// The type of the role to remove. + /// Returns false if the role did not exist. True if successful> + public bool MindRemoveRole(Entity mind) where T : IComponent { - if (!Resolve(mindId, ref mind)) - return; + if (typeof(T) == typeof(MindRoleComponent)) + throw new InvalidOperationException(); + + if (!Resolve(mind.Owner, ref mind.Comp)) + return false; - if (HasComp(mindId, component.GetType())) + var found = false; + var antagonist = false; + var delete = new List(); + foreach (var role in mind.Comp.MindRoles) { - throw new ArgumentException($"We already have this role: {component}"); + if (!HasComp(role)) + continue; + + if (!TryComp(role, out MindRoleComponent? roleComp)) + { + Log.Error($"Encountered mind role entity {ToPrettyString(role)} without a {nameof(MindRoleComponent)}"); + continue; + } + + antagonist |= roleComp.Antag | roleComp.ExclusiveAntag; + _entityManager.DeleteEntity(role); + delete.Add(role); + found = true; } - EntityManager.AddComponent(mindId, component); - var antagonist = IsAntagonistRole(component.GetType()); + if (!found) + return false; - var mindEv = new MindRoleAddedEvent(silent); - RaiseLocalEvent(mindId, ref mindEv); + foreach (var role in delete) + { + mind.Comp.MindRoles.Remove(role); + } - var message = new RoleAddedEvent(mindId, mind, antagonist, silent); - if (mind.OwnedEntity != null) + if (mind.Comp.OwnedEntity != null) { - RaiseLocalEvent(mind.OwnedEntity.Value, message, true); + var message = new RoleRemovedEvent(mind.Owner, mind.Comp, antagonist); + RaiseLocalEvent(mind.Comp.OwnedEntity.Value, message, true); } - _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"'Role {component}' added to mind of {_minds.MindOwnerLoggingString(mind)}"); + _adminLogger.Add(LogType.Mind, + LogImpact.Low, + $"All roles of type '{typeof(T).Name}' removed from mind of {ToPrettyString(mind.Comp.OwnedEntity)}"); + + return true; } /// - /// Gives this mind a new role. + /// Finds and removes all mind roles of a specific type /// - /// The mind to add the role to. - /// The role instance to add. - /// The role type to add. - /// Whether or not the role should be added silently - /// The instance of the role. - /// - /// Thrown if we already have a role with this type. - /// - public void MindAddRole(EntityUid mindId, T component, MindComponent? mind = null, bool silent = false) where T : IComponent, new() + /// The mind entity + /// The type of the role to remove. + /// True if the role existed and was removed + public bool MindTryRemoveRole(EntityUid mindId) where T : IComponent { - if (!Resolve(mindId, ref mind)) - return; + if (typeof(T) == typeof(MindRoleComponent)) + return false; - if (HasComp(mindId)) - { - throw new ArgumentException($"We already have this role: {typeof(T)}"); - } + if (MindRemoveRole(mindId)) + return true; - AddComp(mindId, component); - var antagonist = IsAntagonistRole(); + Log.Warning($"Failed to remove role {typeof(T)} from {ToPrettyString(mindId)} : mind does not have role "); + return false; + } - var mindEv = new MindRoleAddedEvent(silent); - RaiseLocalEvent(mindId, ref mindEv); + /// + /// Finds the first mind role of a specific T type on a mind entity. + /// Outputs entity components for the mind role's MindRoleComponent and for T + /// + /// The mind entity + /// The type of the role to find. + /// The Mind Role entity component + /// The Mind Role's entity component for T + /// True if the role is found + public bool MindHasRole(Entity mind, + [NotNullWhen(true)] out Entity? role) where T : IComponent + { + role = null; + if (!Resolve(mind.Owner, ref mind.Comp)) + return false; - var message = new RoleAddedEvent(mindId, mind, antagonist, silent); - if (mind.OwnedEntity != null) + foreach (var roleEnt in mind.Comp.MindRoles) { - RaiseLocalEvent(mind.OwnedEntity.Value, message, true); + if (!TryComp(roleEnt, out T? tcomp)) + continue; + + if (!TryComp(roleEnt, out MindRoleComponent? roleComp)) + { + Log.Error($"Encountered mind role entity {ToPrettyString(roleEnt)} without a {nameof(MindRoleComponent)}"); + continue; + } + + role = (roleEnt, roleComp, tcomp); + return true; } - _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"'Role {typeof(T).Name}' added to mind of {_minds.MindOwnerLoggingString(mind)}"); + return false; } /// - /// Removes a role from this mind. + /// Finds the first mind role of a specific type on a mind entity. + /// Outputs an entity component for the mind role's MindRoleComponent /// - /// The mind to remove the role from. - /// The type of the role to remove. - /// - /// Thrown if we do not have this role. - /// - public void MindRemoveRole(EntityUid mindId) where T : IComponent + /// The mind entity + /// The Type to look for + /// The output role + /// True if the role is found + public bool MindHasRole(EntityUid mindId, + Type type, + [NotNullWhen(true)] out Entity? role) { - if (!RemComp(mindId)) + role = null; + // All MindRoles have this component, it would just return the first one. + // Order might not be what is expected. + // Better to report null + if (type == Type.GetType("MindRoleComponent")) { - throw new ArgumentException($"We do not have this role: {typeof(T)}"); + Log.Error($"Something attempted to query mind role 'MindRoleComponent' on mind {mindId}. This component is present on every single mind role."); + return false; } - var mind = Comp(mindId); - var antagonist = IsAntagonistRole(); - var message = new RoleRemovedEvent(mindId, mind, antagonist); + if (!TryComp(mindId, out var mind)) + return false; - if (mind.OwnedEntity != null) + var found = false; + + foreach (var roleEnt in mind.MindRoles) { - RaiseLocalEvent(mind.OwnedEntity.Value, message, true); + if (!HasComp(roleEnt, type)) + continue; + + if (!TryComp(roleEnt, out MindRoleComponent? roleComp)) + { + Log.Error($"Encountered mind role entity {ToPrettyString(roleEnt)} without a {nameof(MindRoleComponent)}"); + continue; + } + + role = (roleEnt, roleComp); + found = true; + break; } - _adminLogger.Add(LogType.Mind, LogImpact.Low, - $"'Role {typeof(T).Name}' removed from mind of {_minds.MindOwnerLoggingString(mind)}"); + + return found; } - public bool MindTryRemoveRole(EntityUid mindId) where T : IComponent + /// + /// Finds the first mind role of a specific type on a mind entity. + /// + /// The mind entity + /// The type of the role to find. + /// True if the role is found + public bool MindHasRole(EntityUid mindId) where T : IComponent { - if (!MindHasRole(mindId)) - return false; - - MindRemoveRole(mindId); - return true; + return MindHasRole(mindId, out _); } - public bool MindHasRole(EntityUid mindId) where T : IComponent + //TODO: Delete this later + /// + /// Returns the first mind role of a specific type + /// + /// The mind entity + /// Entity Component of the mind role + [Obsolete("Use MindHasRole's output value")] + public Entity? MindGetRole(EntityUid mindId) where T : IComponent { - DebugTools.Assert(HasComp(mindId)); - return HasComp(mindId); + Entity? result = null; + + var mind = Comp(mindId); + + foreach (var uid in mind.MindRoles) + { + if (HasComp(uid) && TryComp(uid, out var comp)) + result = (uid,comp); + } + return result; } - public List MindGetAllRoles(EntityUid mindId) + /// + /// Reads all Roles of a mind Entity and returns their data as RoleInfo + /// + /// The mind entity + /// RoleInfo list + public List MindGetAllRoleInfo(Entity mind) { - DebugTools.Assert(HasComp(mindId)); - var ev = new MindGetAllRolesEvent(new List()); - RaiseLocalEvent(mindId, ref ev); - return ev.Roles; + var roleInfo = new List(); + + if (!Resolve(mind.Owner, ref mind.Comp)) + return roleInfo; + + foreach (var role in mind.Comp.MindRoles) + { + var valid = false; + var name = "game-ticker-unknown-role"; + var prototype = ""; + string? playTimeTracker = null; + + if (!TryComp(role, out MindRoleComponent? comp)) + { + Log.Error($"Encountered mind role entity {ToPrettyString(role)} without a {nameof(MindRoleComponent)}"); + continue; + } + + if (comp.AntagPrototype is not null) + prototype = comp.AntagPrototype; + + if (comp.JobPrototype is not null && comp.AntagPrototype is null) + { + prototype = comp.JobPrototype; + if (_prototypes.TryIndex(comp.JobPrototype, out var job)) + { + playTimeTracker = job.PlayTimeTracker; + name = job.Name; + valid = true; + } + else + { + Log.Error($" Mind Role Prototype '{role.Id}' contains invalid Job prototype: '{comp.JobPrototype}'"); + } + } + else if (comp.AntagPrototype is not null && comp.JobPrototype is null) + { + prototype = comp.AntagPrototype; + if (_prototypes.TryIndex(comp.AntagPrototype, out var antag)) + { + name = antag.Name; + valid = true; + } + else + { + Log.Error($" Mind Role Prototype '{role.Id}' contains invalid Antagonist prototype: '{comp.AntagPrototype}'"); + } + } + else if (comp.JobPrototype is not null && comp.AntagPrototype is not null) + { + Log.Error($" Mind Role Prototype '{role.Id}' contains both Job and Antagonist prototypes"); + } + + if (valid) + roleInfo.Add(new RoleInfo(name, comp.Antag, playTimeTracker, prototype)); + } + return roleInfo; } + /// + /// Does this mind possess an antagonist role + /// + /// The mind entity + /// True if the mind possesses any antag roles public bool MindIsAntagonist(EntityUid? mindId) { - if (mindId == null) + if (mindId is null) return false; - DebugTools.Assert(HasComp(mindId)); - var ev = new MindIsAntagonistEvent(); - RaiseLocalEvent(mindId.Value, ref ev); - return ev.IsAntagonist; + return CheckAntagonistStatus(mindId.Value).Antag; } /// /// Does this mind possess an exclusive antagonist role /// /// The mind entity - /// True if the mind possesses an exclusive antag role + /// True if the mind possesses any exclusive antag roles public bool MindIsExclusiveAntagonist(EntityUid? mindId) { - if (mindId == null) + if (mindId is null) return false; - var ev = new MindIsAntagonistEvent(); - RaiseLocalEvent(mindId.Value, ref ev); - return ev.IsExclusiveAntagonist; + return CheckAntagonistStatus(mindId.Value).ExclusiveAntag; } - public bool IsAntagonistRole() - { - return _antagTypes.Contains(typeof(T)); - } + public (bool Antag, bool ExclusiveAntag) CheckAntagonistStatus(Entity mind) + { + if (!Resolve(mind.Owner, ref mind.Comp)) + return (false, false); - public bool IsAntagonistRole(Type component) - { - return _antagTypes.Contains(component); + var antagonist = false; + var exclusiveAntag = false; + foreach (var role in mind.Comp.MindRoles) + { + if (!TryComp(role, out var roleComp)) + { + Log.Error($"Mind Role Entity {ToPrettyString(role)} does not have a MindRoleComponent, despite being listed as a role belonging to {ToPrettyString(mind)}|"); + continue; + } + + antagonist |= roleComp.Antag; + exclusiveAntag |= roleComp.ExclusiveAntag; + } + + return (antagonist, exclusiveAntag); } /// @@ -272,6 +489,9 @@ public void MindPlaySound(EntityUid mindId, SoundSpecifier? sound, MindComponent _audio.PlayGlobal(sound, mind.Session); } + // TODO ROLES Change to readonly. + // Passing around a reference to a prototype's hashset makes me uncomfortable because it might be accidentally + // mutated. public HashSet? GetJobRequirement(JobPrototype job) { if (_requirementOverride != null && _requirementOverride.Jobs.TryGetValue(job.ID, out var req)) @@ -280,6 +500,7 @@ public void MindPlaySound(EntityUid mindId, SoundSpecifier? sound, MindComponent return job.Requirements; } + // TODO ROLES Change to readonly. public HashSet? GetJobRequirement(ProtoId job) { if (_requirementOverride != null && _requirementOverride.Jobs.TryGetValue(job, out var req)) @@ -288,6 +509,7 @@ public void MindPlaySound(EntityUid mindId, SoundSpecifier? sound, MindComponent return _prototypes.Index(job).Requirements; } + // TODO ROLES Change to readonly. public HashSet? GetAntagRequirement(ProtoId antag) { if (_requirementOverride != null && _requirementOverride.Antags.TryGetValue(antag, out var req)) @@ -296,6 +518,7 @@ public void MindPlaySound(EntityUid mindId, SoundSpecifier? sound, MindComponent return _prototypes.Index(antag).Requirements; } + // TODO ROLES Change to readonly. public HashSet? GetAntagRequirement(AntagPrototype antag) { if (_requirementOverride != null && _requirementOverride.Antags.TryGetValue(antag.ID, out var req)) diff --git a/Content.Shared/Silicons/Borgs/Components/BorgModuleIconComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgModuleIconComponent.cs new file mode 100644 index 00000000000000..ff38a40f487e66 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/BorgModuleIconComponent.cs @@ -0,0 +1,20 @@ +//using Robust.Shared.GameObjects; +using Robust.Shared.GameStates; +using Robust.Shared.Utility; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// This is used to override the action icon for cyborg actions. +/// Without this component the no-action state will be used. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class BorgModuleIconComponent : Component +{ + /// + /// The action icon for this module + /// + [DataField] + public SpriteSpecifier.Rsi Icon = default!; + +} \ No newline at end of file diff --git a/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs index 4800aa0c59d2bd..1c54938b8a40ce 100644 --- a/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs @@ -1,4 +1,5 @@ using Robust.Shared.Prototypes; +using Robust.Shared.Audio; namespace Content.Shared.Silicons.Laws.Components; @@ -20,4 +21,12 @@ public sealed partial class SiliconLawProviderComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public SiliconLawset? Lawset; + + /// + /// The sound that plays for the Silicon player + /// when the particular lawboard has been inserted. + /// + [DataField] + public SoundSpecifier? LawUploadSound = new SoundPathSpecifier("/Audio/Misc/cryo_warning.ogg"); + } diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs index baef62c3da98ec..7eef20cebd83f3 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs @@ -285,6 +285,8 @@ private void OnAiMapInit(Entity ent, ref MapInitEvent ar private bool SetupEye(Entity ent) { + if (_net.IsClient) + return false; if (ent.Comp.RemoteEntity != null) return false; @@ -299,8 +301,11 @@ private bool SetupEye(Entity ent) private void ClearEye(Entity ent) { + if (_net.IsClient) + return; QueueDel(ent.Comp.RemoteEntity); ent.Comp.RemoteEntity = null; + Dirty(ent); } private void AttachEye(Entity ent) @@ -330,6 +335,8 @@ private void OnAiInsert(Entity ent, ref EntInsertedIntoC if (_timing.ApplyingState) return; + SetupEye(ent); + // Just so text and the likes works properly _metadata.SetEntityName(ent.Owner, MetaData(args.Entity).EntityName); @@ -351,6 +358,7 @@ private void OnAiRemove(Entity ent, ref EntRemovedFromCo { _eye.SetTarget(args.Entity, null, eyeComp); } + ClearEye(ent); } private void UpdateAppearance(Entity entity) diff --git a/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs index a979a6ec50e05e..65848cb5e57d5c 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnUIOpenComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Whitelist; using Robust.Shared.GameStates; namespace Content.Shared.Sound.Components; @@ -8,4 +9,9 @@ namespace Content.Shared.Sound.Components; [RegisterComponent, NetworkedComponent] public sealed partial class EmitSoundOnUIOpenComponent : BaseEmitSoundComponent { + /// + /// Blacklist for making the sound not play if certain entities open the UI + /// + [DataField] + public EntityWhitelist Blacklist = new(); } diff --git a/Content.Shared/Sound/SharedEmitSoundSystem.cs b/Content.Shared/Sound/SharedEmitSoundSystem.cs index 8040910dc3c799..3e051fff317770 100644 --- a/Content.Shared/Sound/SharedEmitSoundSystem.cs +++ b/Content.Shared/Sound/SharedEmitSoundSystem.cs @@ -58,7 +58,10 @@ public override void Initialize() private void HandleEmitSoundOnUIOpen(EntityUid uid, EmitSoundOnUIOpenComponent component, AfterActivatableUIOpenEvent args) { - TryEmitSound(uid, component, args.User); + if (_whitelistSystem.IsBlacklistFail(component.Blacklist, args.User)) + { + TryEmitSound(uid, component, args.User); + } } private void OnMobState(Entity entity, ref MobStateChangedEvent args) diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index 0584b10562a1a4..ad264cd22a48b2 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -150,6 +150,7 @@ public void EquipStartingGear(EntityUid entity, IEquipmentLoadout? startingGear, foreach (var (slot, entProtos) in startingGear.Storage) { + ents.Clear(); if (entProtos.Count == 0) continue; diff --git a/Content.Shared/Storage/Components/SecretStashComponent.cs b/Content.Shared/Storage/Components/SecretStashComponent.cs index 3bf8e2e871ba5c..f8fff4c19498a8 100644 --- a/Content.Shared/Storage/Components/SecretStashComponent.cs +++ b/Content.Shared/Storage/Components/SecretStashComponent.cs @@ -8,6 +8,7 @@ using Content.Shared.DoAfter; using Robust.Shared.Serialization; using Robust.Shared.Audio; +using Content.Shared.Whitelist; namespace Content.Shared.Storage.Components { @@ -26,6 +27,12 @@ public sealed partial class SecretStashComponent : Component [DataField("maxItemSize")] public ProtoId MaxItemSize = "Small"; + /// + /// Entity blacklist for secret stashes. + /// + [DataField] + public EntityWhitelist? Blacklist; + /// /// This sound will be played when you try to insert an item in the stash. /// The sound will be played whether or not the item is actually inserted. diff --git a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs index 901d744df5f386..af9b768e98be0e 100644 --- a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs @@ -13,6 +13,9 @@ using Content.Shared.Verbs; using Content.Shared.IdentityManagement; using Content.Shared.Tools.EntitySystems; +using Content.Shared.Whitelist; +using Content.Shared.Materials; +using Robust.Shared.Map; namespace Content.Shared.Storage.EntitySystems; @@ -27,13 +30,14 @@ public sealed class SecretStashSystem : EntitySystem [Dependency] private readonly SharedItemSystem _item = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly ToolOpenableSystem _toolOpenableSystem = default!; - + [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnDestroyed); + SubscribeLocalEvent(OnReclaimed); SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(ToolOpenableSystem) }); SubscribeLocalEvent(OnInteractHand); SubscribeLocalEvent>(OnGetVerb); @@ -46,12 +50,12 @@ private void OnInit(Entity entity, ref ComponentInit args) private void OnDestroyed(Entity entity, ref DestructionEventArgs args) { - var storedInside = _containerSystem.EmptyContainer(entity.Comp.ItemContainer); - if (storedInside != null && storedInside.Count >= 1) - { - var popup = Loc.GetString("comp-secret-stash-on-destroyed-popup", ("stashname", GetStashName(entity))); - _popupSystem.PopupEntity(popup, storedInside[0], PopupType.MediumCaution); - } + DropContentsAndAlert(entity); + } + + private void OnReclaimed(Entity entity, ref GotReclaimedEvent args) + { + DropContentsAndAlert(entity, args.ReclaimerCoordinates); } private void OnInteractUsing(Entity entity, ref InteractUsingEvent args) @@ -90,8 +94,9 @@ private bool TryStashItem(Entity entity, EntityUid userUid return false; } - // check if item is too big to fit into secret stash - if (_item.GetSizePrototype(itemComp.Size) > _item.GetSizePrototype(entity.Comp.MaxItemSize)) + // check if item is too big to fit into secret stash or is in the blacklist + if (_item.GetSizePrototype(itemComp.Size) > _item.GetSizePrototype(entity.Comp.MaxItemSize) || + _whitelistSystem.IsBlacklistPass(entity.Comp.Blacklist, itemToHideUid)) { var msg = Loc.GetString("comp-secret-stash-action-hide-item-too-big", ("item", itemToHideUid), ("stashname", GetStashName(entity))); @@ -209,5 +214,18 @@ private bool HasItemInside(Entity entity) return entity.Comp.ItemContainer.ContainedEntity != null; } + /// + /// Drop the item stored in the stash and alert all nearby players with a popup. + /// + private void DropContentsAndAlert(Entity entity, EntityCoordinates? cords = null) + { + var storedInside = _containerSystem.EmptyContainer(entity.Comp.ItemContainer, true, cords); + if (storedInside != null && storedInside.Count >= 1) + { + var popup = Loc.GetString("comp-secret-stash-on-destroyed-popup", ("stashname", GetStashName(entity))); + _popupSystem.PopupPredicted(popup, storedInside[0], null, PopupType.MediumCaution); + } + } + #endregion } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 5c1e2bcfad1966..fee4c1a0fb6eae 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -666,7 +666,7 @@ private void OnInsertItemIntoLocation(StorageInsertItemIntoLocationEvent msg, En private void OnSaveItemLocation(StorageSaveItemLocationEvent msg, EntitySessionEventArgs args) { - if (!ValidateInput(args, msg.Storage, msg.Item, out var player, out var storage, out var item, held: true)) + if (!ValidateInput(args, msg.Storage, msg.Item, out var player, out var storage, out var item)) return; SaveItemLocation(storage!, item.Owner); diff --git a/Content.Shared/Strip/SharedStrippableSystem.cs b/Content.Shared/Strip/SharedStrippableSystem.cs index 9313fdd870ea9f..9424d056125b5e 100644 --- a/Content.Shared/Strip/SharedStrippableSystem.cs +++ b/Content.Shared/Strip/SharedStrippableSystem.cs @@ -105,7 +105,7 @@ private void OnStripButtonPressed(Entity strippable, ref St if (userHands.ActiveHandEntity != null && !hasEnt) StartStripInsertInventory((user, userHands), strippable.Owner, userHands.ActiveHandEntity.Value, args.Slot); - else if (userHands.ActiveHandEntity == null && hasEnt) + else if (hasEnt) StartStripRemoveInventory(user, strippable.Owner, held!.Value, args.Slot); } @@ -137,7 +137,7 @@ private void StripHand( if (user.Comp.ActiveHandEntity != null && handSlot.HeldEntity == null) StartStripInsertHand(user, target, user.Comp.ActiveHandEntity.Value, handId, targetStrippable); - else if (user.Comp.ActiveHandEntity == null && handSlot.HeldEntity != null) + else if (handSlot.HeldEntity != null) StartStripRemoveHand(user, target, handSlot.HeldEntity.Value, handId, targetStrippable); } diff --git a/Content.Shared/UserInterface/IntrinsicUISystem.cs b/Content.Shared/UserInterface/IntrinsicUISystem.cs index 2d8c5d14801d2c..b16492b8355613 100644 --- a/Content.Shared/UserInterface/IntrinsicUISystem.cs +++ b/Content.Shared/UserInterface/IntrinsicUISystem.cs @@ -10,6 +10,7 @@ public sealed class IntrinsicUISystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(InitActions); + SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnActionToggle); } @@ -21,6 +22,15 @@ private void OnActionToggle(EntityUid uid, IntrinsicUIComponent component, Toggl args.Handled = InteractUI(uid, args.Key, component); } + private void OnShutdown(EntityUid uid, IntrinsicUIComponent component, ref ComponentShutdown args) + { + foreach (var actionEntry in component.UIs.Values) + { + var actionId = actionEntry.ToggleActionEntity; + _actionsSystem.RemoveAction(uid, actionId); + } + } + private void InitActions(EntityUid uid, IntrinsicUIComponent component, MapInitEvent args) { foreach (var entry in component.UIs.Values) diff --git a/Content.Shared/VendingMachines/VendingMachineComponent.cs b/Content.Shared/VendingMachines/VendingMachineComponent.cs index 50023a023ab1dd..f3fe3a1ecdba5d 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -87,12 +87,13 @@ public sealed partial class VendingMachineComponent : Component /// Sound that plays when ejecting an item /// [DataField("soundVend")] - // Grabbed from: https://github.com/discordia-space/CEV-Eris/blob/f702afa271136d093ddeb415423240a2ceb212f0/sound/machines/vending_drop.ogg + // Grabbed from: https://github.com/tgstation/tgstation/blob/d34047a5ae911735e35cd44a210953c9563caa22/sound/machines/machine_vend.ogg public SoundSpecifier SoundVend = new SoundPathSpecifier("/Audio/Machines/machine_vend.ogg") { Params = new AudioParams { - Volume = -2f + Volume = -4f, + Variation = 0.15f } }; diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index bc19235cd3927e..767b5c4ef6253b 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -435,7 +435,7 @@ private bool AttemptAttack(EntityUid user, EntityUid weaponUid, MeleeWeaponCompo throw new NotImplementedException(); } - DoLungeAnimation(user, weaponUid, weapon.Angle, GetCoordinates(attack.Coordinates).ToMap(EntityManager, TransformSystem), weapon.Range, animation); + DoLungeAnimation(user, weaponUid, weapon.Angle, TransformSystem.ToMapCoordinates(GetCoordinates(attack.Coordinates)), weapon.Range, animation); } var attackEv = new MeleeAttackEvent(weaponUid); @@ -467,12 +467,14 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity // TODO: This needs fixing if (meleeUid == user) { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Low, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Low, $"{ToPrettyString(user):actor} melee attacked (light) using their hands and missed"); } else { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Low, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Low, $"{ToPrettyString(user):actor} melee attacked (light) using {ToPrettyString(meleeUid):tool} and missed"); } var missEvent = new MeleeHitEvent(new List(), user, meleeUid, damage, null); @@ -521,12 +523,14 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity if (meleeUid == user) { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Medium, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Medium, $"{ToPrettyString(user):actor} melee attacked (light) {ToPrettyString(target.Value):subject} using their hands and dealt {damageResult.GetTotal():damage} damage"); } else { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Medium, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Medium, $"{ToPrettyString(user):actor} melee attacked (light) {ToPrettyString(target.Value):subject} using {ToPrettyString(meleeUid):tool} and dealt {damageResult.GetTotal():damage} damage"); } @@ -548,7 +552,7 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU if (!TryComp(user, out TransformComponent? userXform)) return false; - var targetMap = GetCoordinates(ev.Coordinates).ToMap(EntityManager, TransformSystem); + var targetMap = TransformSystem.ToMapCoordinates(GetCoordinates(ev.Coordinates)); if (targetMap.MapId != userXform.MapID) return false; @@ -564,12 +568,14 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU { if (meleeUid == user) { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Low, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Low, $"{ToPrettyString(user):actor} melee attacked (heavy) using their hands and missed"); } else { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Low, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Low, $"{ToPrettyString(user):actor} melee attacked (heavy) using {ToPrettyString(meleeUid):tool} and missed"); } var missEvent = new MeleeHitEvent(new List(), user, meleeUid, damage, direction); @@ -590,8 +596,14 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU // Validate client for (var i = entities.Count - 1; i >= 0; i--) { - if (ArcRaySuccessful(entities[i], userPos, direction.ToWorldAngle(), component.Angle, distance, - userXform.MapID, user, session)) + if (ArcRaySuccessful(entities[i], + userPos, + direction.ToWorldAngle(), + component.Angle, + distance, + userXform.MapID, + user, + session)) { continue; } @@ -658,16 +670,24 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU if (damageResult != null && damageResult.GetTotal() > FixedPoint2.Zero) { + // If the target has stamina and is taking blunt damage, they should also take stamina damage based on their blunt to stamina factor + if (damageResult.DamageDict.TryGetValue("Blunt", out var bluntDamage)) + { + _stamina.TakeStaminaDamage(entity, (bluntDamage * component.BluntStaminaDamageFactor).Float(), visual: false, source: user, with: meleeUid == user ? null : meleeUid); + } + appliedDamage += damageResult; if (meleeUid == user) { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Medium, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Medium, $"{ToPrettyString(user):actor} melee attacked (heavy) {ToPrettyString(entity):subject} using their hands and dealt {damageResult.GetTotal():damage} damage"); } else { - AdminLogger.Add(LogType.MeleeHit, LogImpact.Medium, + AdminLogger.Add(LogType.MeleeHit, + LogImpact.Medium, $"{ToPrettyString(user):actor} melee attacked (heavy) {ToPrettyString(entity):subject} using {ToPrettyString(meleeUid):tool} and dealt {damageResult.GetTotal():damage} damage"); } } @@ -701,8 +721,13 @@ protected HashSet ArcRayCast(Vector2 position, Angle angle, Angle arc { var castAngle = new Angle(baseAngle + increment * i); var res = _physics.IntersectRay(mapId, - new CollisionRay(position, castAngle.ToWorldVec(), - AttackMask), range, ignore, false).ToList(); + new CollisionRay(position, + castAngle.ToWorldVec(), + AttackMask), + range, + ignore, + false) + .ToList(); if (res.Count != 0) { @@ -713,8 +738,14 @@ protected HashSet ArcRayCast(Vector2 position, Angle angle, Angle arc return resSet; } - protected virtual bool ArcRaySuccessful(EntityUid targetUid, Vector2 position, Angle angle, Angle arcWidth, float range, - MapId mapId, EntityUid ignore, ICommonSession? session) + protected virtual bool ArcRaySuccessful(EntityUid targetUid, + Vector2 position, + Angle angle, + Angle arcWidth, + float range, + MapId mapId, + EntityUid ignore, + ICommonSession? session) { // Only matters for server. return true; diff --git a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs index d2f0333b8332d6..e790973538ffb6 100644 --- a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs @@ -114,19 +114,14 @@ private void OnWeightlessMove(ref CanWeightlessMoveEvent ev) private void OnGunActivate(EntityUid uid, GrapplingGunComponent component, ActivateInWorldEvent args) { - if (!Timing.IsFirstTimePredicted || args.Handled || !args.Complex) - return; - - if (Deleted(component.Projectile)) + if (!Timing.IsFirstTimePredicted || args.Handled || !args.Complex || component.Projectile is not {} projectile) return; _audio.PlayPredicted(component.CycleSound, uid, args.User); _appearance.SetData(uid, SharedTetherGunSystem.TetherVisualsStatus.Key, true); if (_netManager.IsServer) - { - QueueDel(component.Projectile.Value); - } + QueueDel(projectile); component.Projectile = null; SetReeling(uid, component, false, args.User); diff --git a/Content.Shared/Whitelist/EntityWhitelist.cs b/Content.Shared/Whitelist/EntityWhitelist.cs index 3e4e2fecb2e576..cbe4633360f8c8 100644 --- a/Content.Shared/Whitelist/EntityWhitelist.cs +++ b/Content.Shared/Whitelist/EntityWhitelist.cs @@ -32,6 +32,12 @@ public sealed partial class EntityWhitelist [DataField] public string[]? Components; // TODO yaml validation + /// + /// Mind Role Prototype names that are allowed in the whitelist. + /// + [DataField] public string[]? MindRoles; + // TODO yaml validation + /// /// Item sizes that are allowed in the whitelist. /// diff --git a/Content.Shared/Whitelist/EntityWhitelistSystem.cs b/Content.Shared/Whitelist/EntityWhitelistSystem.cs index 57fdb523dd4b5f..7c78b410a18b41 100644 --- a/Content.Shared/Whitelist/EntityWhitelistSystem.cs +++ b/Content.Shared/Whitelist/EntityWhitelistSystem.cs @@ -1,5 +1,6 @@ using System.Diagnostics.CodeAnalysis; using Content.Shared.Item; +using Content.Shared.Roles; using Content.Shared.Tag; namespace Content.Shared.Whitelist; @@ -7,6 +8,7 @@ namespace Content.Shared.Whitelist; public sealed class EntityWhitelistSystem : EntitySystem { [Dependency] private readonly IComponentFactory _factory = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; [Dependency] private readonly TagSystem _tag = default!; private EntityQuery _itemQuery; @@ -46,9 +48,30 @@ public bool CheckBoth([NotNullWhen(true)] EntityUid? uid, EntityWhitelist? black public bool IsValid(EntityWhitelist list, EntityUid uid) { if (list.Components != null) - EnsureRegistrations(list); + { + var regs = StringsToRegs(list.Components); + + list.Registrations ??= new List(); + list.Registrations.AddRange(regs); + } + + if (list.MindRoles != null) + { + var regs = StringsToRegs(list.MindRoles); + + foreach (var role in regs) + { + if ( _roles.MindHasRole(uid, role.Type, out _)) + { + if (!list.RequireAll) + return true; + } + else if (list.RequireAll) + return false; + } + } - if (list.Registrations != null) + if (list.Registrations != null && list.Registrations.Count > 0) { foreach (var reg in list.Registrations) { @@ -153,7 +176,7 @@ public bool IsBlacklistPassOrNull(EntityWhitelist? blacklist, EntityUid uid) return IsWhitelistPassOrNull(blacklist, uid); } - /// + /// /// Helper function to determine if Blacklist is either null or the entity is not on the list /// Duplicate of equivalent Whitelist function /// @@ -162,24 +185,27 @@ public bool IsBlacklistFailOrNull(EntityWhitelist? blacklist, EntityUid uid) return IsWhitelistFailOrNull(blacklist, uid); } - private void EnsureRegistrations(EntityWhitelist list) + private List StringsToRegs(string[]? input) { - if (list.Components == null) - return; + var list = new List(); - list.Registrations = new List(); - foreach (var name in list.Components) + if (input == null || input.Length == 0) + return list; + + foreach (var name in input) { var availability = _factory.GetComponentAvailability(name); if (_factory.TryGetRegistration(name, out var registration) && availability == ComponentAvailability.Available) { - list.Registrations.Add(registration); + list.Add(registration); } else if (availability == ComponentAvailability.Unknown) { - Log.Warning($"Unknown component name {name} passed to EntityWhitelist!"); + Log.Error($"StringsToRegs failed: Unknown component name {name} passed to EntityWhitelist!"); } } + + return list; } } diff --git a/Resources/Audio/Ambience/Antag/attributions.yml b/Resources/Audio/Ambience/Antag/attributions.yml index 25917a5da2bb6d..0d3d278a627d73 100644 --- a/Resources/Audio/Ambience/Antag/attributions.yml +++ b/Resources/Audio/Ambience/Antag/attributions.yml @@ -18,3 +18,7 @@ license: "CC-BY-SA-3.0" copyright: "Made by @ps3moira on github" source: https://www.youtube.com/watch?v=4-R-_DiqiLo +- files: ["silicon_lawboard_antimov.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Made by @ps3moira on Discord for SS14" + source: "https://www.youtube.com/watch?v=jf1sYGYVLsw" diff --git a/Resources/Audio/Ambience/Antag/silicon_lawboard_antimov.ogg b/Resources/Audio/Ambience/Antag/silicon_lawboard_antimov.ogg new file mode 100644 index 00000000000000..911a34532d60c3 Binary files /dev/null and b/Resources/Audio/Ambience/Antag/silicon_lawboard_antimov.ogg differ diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml index 1b4ea7474160bf..7675162a04d506 100644 --- a/Resources/Audio/Machines/attributions.yml +++ b/Resources/Audio/Machines/attributions.yml @@ -163,6 +163,7 @@ - chime.ogg - buzz-sigh.ogg - buzztwo.ogg + - machine_vend.gg license: "CC-BY-SA-3.0" copyright: "Taken from TG station." source: "https://github.com/tgstation/tgstation/tree/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0" diff --git a/Resources/Audio/Machines/machine_vend.ogg b/Resources/Audio/Machines/machine_vend.ogg index 8f7c187d0c37c1..92867a1f3d3bd6 100644 Binary files a/Resources/Audio/Machines/machine_vend.ogg and b/Resources/Audio/Machines/machine_vend.ogg differ diff --git a/Resources/Audio/MidiCustom/space-station-14.sf2 b/Resources/Audio/MidiCustom/space-station-14.sf2 index 8dcfce94729b68..54c6eb619633b5 100644 Binary files a/Resources/Audio/MidiCustom/space-station-14.sf2 and b/Resources/Audio/MidiCustom/space-station-14.sf2 differ diff --git a/Resources/Audio/Misc/attributions.yml b/Resources/Audio/Misc/attributions.yml index 9b3cb64ae730e9..a7349a445be63b 100644 --- a/Resources/Audio/Misc/attributions.yml +++ b/Resources/Audio/Misc/attributions.yml @@ -28,6 +28,11 @@ copyright: "Taken from TG station." source: "https://github.com/tgstation/tgstation/blob/2f63c779cb43543cfde76fa7ddaeacfde185fded/sound/effects/ratvar_reveal.ogg" +- files: ["cryo_warning.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from TG station." + source: "https://github.com/tgstation/tgstation/blob/00cf2da5f785c110b9930077b3202f1a4638e1fd/sound/machines/cryo_warning.ogg" + - files: ["epsilon.ogg"] license: "CC-BY-SA-3.0" copyright: "Made by dj-34 (https://github.com/dj-34)" diff --git a/Resources/Audio/Misc/cryo_warning.ogg b/Resources/Audio/Misc/cryo_warning.ogg new file mode 100644 index 00000000000000..06cdebc9447fcc Binary files /dev/null and b/Resources/Audio/Misc/cryo_warning.ogg differ diff --git a/Resources/Audio/Voice/Reptilian/attritbutions.yml b/Resources/Audio/Voice/Reptilian/attritbutions.yml index 7e8b2a0ce39bbe..7fa86b2ebfcbd9 100644 --- a/Resources/Audio/Voice/Reptilian/attritbutions.yml +++ b/Resources/Audio/Voice/Reptilian/attritbutions.yml @@ -2,3 +2,8 @@ copyright: '"scream_lizard.ogg" by Skyrat-SS13' license: source: https://github.com/Skyrat-SS13/Skyrat-tg/pull/892 + +- files: [reptilian_tailthump.ogg] + copyright: "Taken from https://freesound.org/" + license: "CC0-1.0" + source: https://freesound.org/people/TylerAM/sounds/389665/ \ No newline at end of file diff --git a/Resources/Audio/Voice/Reptilian/reptilian_tailthump.ogg b/Resources/Audio/Voice/Reptilian/reptilian_tailthump.ogg new file mode 100644 index 00000000000000..e4bf25f7b8d1e7 Binary files /dev/null and b/Resources/Audio/Voice/Reptilian/reptilian_tailthump.ogg differ diff --git a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml index 7c46974818a94f..89db045c96da7c 100644 --- a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml +++ b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml @@ -26,4 +26,9 @@ - files: ["ship_duster.ogg", "ship_friendship.ogg", "ship_svalinn.ogg", "ship_perforator.ogg"] license: "CC0-1.0" copyright: "Created by MIXnikita for Space Station 14" - source: "https://github.com/MIXnikita" \ No newline at end of file + source: "https://github.com/MIXnikita" + +- files: ["syringe_gun.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from vgstation" + source: "https://github.com/vgstation-coders/vgstation13/commit/23303188abe6fe31b114a218a1950d7325a23730" \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Gunshots/syringe_gun.ogg b/Resources/Audio/Weapons/Guns/Gunshots/syringe_gun.ogg new file mode 100644 index 00000000000000..2132808ecdc37a Binary files /dev/null and b/Resources/Audio/Weapons/Guns/Gunshots/syringe_gun.ogg differ diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 537c6b09ff5bd2..2c4db6e82b830d 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -552,5 +552,20 @@ Entries: id: 68 time: '2024-09-23T07:28:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32395 +- author: SlamBamActionman + changes: + - message: Added admin logging for generated codewords. + type: Add + id: 69 + time: '2024-10-09T11:55:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32531 +- author: IProduceWidgets + changes: + - message: invokeverb should work with smite names now. Find the names in the smite + tab on mouse hover. + type: Fix + id: 70 + time: '2024-10-16T22:24:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32844 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b46f5c46be7e1c..ca559c1338d8a9 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,476 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Thief game rule now properly selects more than one thief. - type: Fix - id: 6990 - time: '2024-07-27T07:27:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30393 -- author: BombasterDS - changes: - - message: Added new plant mutations for apple, sugarcane and galaxythistle - type: Add - id: 6991 - time: '2024-07-27T15:08:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28993 -- author: Spessmann - changes: - - message: Thief objectives for figurines and stamps now require less items - type: Tweak - id: 6992 - time: '2024-07-27T23:11:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30390 -- author: metalgearsloth - changes: - - message: Moved VGRoid from 1,000m away to ~500m. - type: Tweak - id: 6993 - time: '2024-07-28T03:14:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29943 -- author: lzk228 - changes: - - message: Fixed pancakes stacks. Before it, splitting not default pancakes stacks - would give you default pancakes. - type: Fix - id: 6994 - time: '2024-07-28T03:49:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30270 -- author: Plykiya - changes: - - message: Fixed the client mispredicting people slipping with their magboots turned - on - type: Fix - id: 6995 - time: '2024-07-28T06:17:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30425 -- author: Katzenminer - changes: - - message: Pun and similar pets are no longer firemune - type: Fix - id: 6996 - time: '2024-07-28T08:32:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30424 -- author: lzk228 - changes: - - message: Fixed permanent absence of the approver string in cargo invoice. - type: Fix - id: 6997 - time: '2024-07-29T06:19:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29690 -- author: JIPDawg - changes: - - message: F9 is correctly bound to the Round End Summary window by default now. - type: Fix - id: 6998 - time: '2024-07-29T06:49:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30438 -- author: githubuser508 - changes: - - message: Candles crate and the ability for Cargo to order it. - type: Add - id: 6999 - time: '2024-07-29T08:29:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29736 -- author: Blackern5000 - changes: - - message: Emergency oxygen and fire lockers now generally contain more supplies - type: Tweak - id: 7000 - time: '2024-07-29T09:57:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29230 -- author: Moomoobeef - changes: - - message: Added the ability to wear lizard plushies on your head! - type: Add - id: 7001 - time: '2024-07-29T12:52:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30400 -- author: TurboTrackerss14 - changes: - - message: Reduced Kobold ghostrole chance to mirror Monkey - type: Tweak - id: 7002 - time: '2024-07-29T15:16:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30450 -- author: Ian321 - changes: - - message: The Courser now comes with a defibrillator. - type: Tweak - id: 7003 - time: '2024-07-30T01:05:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30471 -- author: slarticodefast - changes: - - message: Fixed puppy Ian not counting as a thief steal target. - type: Fix - id: 7004 - time: '2024-07-30T01:22:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30474 -- author: themias - changes: - - message: Added envelopes to the PTech and bureaucracy crate - type: Add - id: 7005 - time: '2024-07-30T01:49:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30298 -- author: TheKittehJesus - changes: - - message: The recipe for chow mein, egg-fried rice, and both brownies now use liquid - egg instead of a whole egg. - type: Tweak - - message: Cake batter now also requires 5u of milk - type: Tweak - id: 7006 - time: '2024-07-30T02:14:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30262 -- author: Plykiya - changes: - - message: Wearing something that covers your head will prevent your hair from being - cut. - type: Add - - message: You now see a popup when your hair is being altered. - type: Add - - message: The doafter for altering other people's hair now takes seven seconds. - type: Tweak - id: 7007 - time: '2024-07-30T02:17:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30366 -- author: Cojoke-dot - changes: - - message: Hamlet and other ghost rolls can now spin when they enter combat mode - type: Fix - id: 7008 - time: '2024-07-30T02:48:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30478 -- author: themias - changes: - - message: Fixed the ACC wire not appearing in vending machine wire layouts - type: Fix - id: 7009 - time: '2024-07-30T03:04:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30453 -- author: Blackern5000 - changes: - - message: The defibrillator has been recolored slightly - type: Tweak - id: 7010 - time: '2024-07-30T04:41:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29964 -- author: themias - changes: - - message: Fixed victim's fingerprints transferring onto an attacker's weapon - type: Fix - id: 7011 - time: '2024-07-30T08:35:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30257 -- author: to4no_fix - changes: - - message: Now engineering access is needed to interact with the particle accelerator - type: Tweak - id: 7012 - time: '2024-07-30T11:29:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30394 -- author: Cojoke-dot - changes: - - message: You can no longer get out of a disposal chute or container while knocked - over by trying to walk - type: Fix - id: 7013 - time: '2024-07-30T13:53:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30391 -- author: Cojoke-dot - changes: - - message: QSI now swaps the top most valid container instead of QSI when placed - in an anchored container - type: Fix - id: 7014 - time: '2024-07-30T14:07:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30241 -- author: TheShuEd - changes: - - message: industrial ore processor can now process diamonds - type: Fix - id: 7015 - time: '2024-07-30T14:41:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30499 -- author: PJB3005 - changes: - - message: CLF3 is now called "chlorine trifluoride" - type: Tweak - id: 7016 - time: '2024-07-31T00:14:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30510 -- author: slarticodefast - changes: - - message: Fixed the mouse position when it is over a singularity distortion effect - while zoomed in or out. - type: Fix - id: 7017 - time: '2024-07-31T00:14:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30509 -- author: metalgearsloth - changes: - - message: Add a button to the lobby so you can export a .png of your characters - type: Add - id: 7018 - time: '2024-07-31T15:14:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29874 -- author: slarticodefast - changes: - - message: Skeletons no longer have fingerprints. - type: Tweak - id: 7019 - time: '2024-07-31T16:08:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30530 -- author: themias - changes: - - message: Pens can be clicked cathartically - type: Tweak - id: 7020 - time: '2024-07-31T17:57:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30531 -- author: Plykiya - changes: - - message: Meteors now leave behind asteroid rocks on impact. - type: Add - id: 7021 - time: '2024-08-01T02:55:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30419 -- author: PixelTheAertist - changes: - - message: The Social Anxiety trait is now renamed to "Stutter" - type: Tweak - id: 7022 - time: '2024-08-01T02:58:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29898 -- author: Plykiya - changes: - - message: Adds hand labelers to the PTech, ChemDrobe, and LawDrobe. - type: Add - id: 7023 - time: '2024-08-01T02:59:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29958 -- author: Ko4erga - changes: - - message: Added a cutter machine for crafting patterned steel tiles, concrete and - wooden tiles. - type: Add - - message: After rip off patterned tiles you get current pattern, not just steel - tile. - type: Tweak - id: 7024 - time: '2024-08-01T10:26:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30431 -- author: NakataRin - changes: - - message: Added paramedic to the train station. - type: Add - id: 7025 - time: '2024-08-01T19:59:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30556 -- author: marbow - changes: - - message: Rejoice, detectives! Hand labeler has been added to your closet! - type: Add - id: 7026 - time: '2024-08-01T20:01:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30501 -- author: metalgearsloth - changes: - - message: Fix some popups playing twice. - type: Fix - id: 7027 - time: '2024-08-02T01:33:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30452 -- author: WarMechanic - changes: - - message: Adjusted meteors to have less lethal blast fragments. - type: Tweak - id: 7028 - time: '2024-08-02T05:43:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29199 -- author: slarticodefast - changes: - - message: Fixed borgs not being able to state laws or open other UIs without an - active module. - type: Fix - id: 7029 - time: '2024-08-02T05:44:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30299 -- author: TropicalHibi - changes: - - message: Now fs (for sure) and wru (where are you) are changed to their full version - in text - type: Add - id: 7030 - time: '2024-08-02T05:57:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30508 -- author: Plykiya - changes: - - message: Rechargers now show the percent charged of the item it is charging. - type: Add - id: 7031 - time: '2024-08-02T06:05:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28500 -- author: ShadowCommander - changes: - - message: Rollerbeds now deploy when holding them in hand and clicking on the ground. - type: Add - id: 7032 - time: '2024-08-02T07:05:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30000 -- author: slarticodefast - changes: - - message: The digital audio workstation can now be rotated. - type: Tweak - id: 7033 - time: '2024-08-02T10:02:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30571 -- author: slarticodefast - changes: - - message: Added potassium iodide. It gives you short term radiation protection - and can be found in radiation treatment kits. - type: Add - - message: Added haloperidol. It removes most stimulating/hallucinogenic drugs from - the body and makes you drowsy. - type: Add - - message: Added the drowsiness status effect. It blurs your vision and makes you - randomly fall asleep. Drink some coffee or cola to remove it. - type: Add - - message: Chloral hydrate now makes you drowsy instead of forcing you to sleep - instantly. - type: Tweak - id: 7034 - time: '2024-08-02T17:12:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27454 -- author: Blackern5000 - changes: - - message: Winter boots no longer have ugly outlines - type: Tweak - id: 7035 - time: '2024-08-02T23:05:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30350 -- author: lzk228 - changes: - - message: Figurines will say phrases on activation. - type: Add - id: 7036 - time: '2024-08-03T14:06:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30455 -- author: JoelZimmerman - changes: - - message: Dank pizza is now cooked with cannabis leaves instead of ambrosia vulgaris. - type: Tweak - id: 7037 - time: '2024-08-03T14:07:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30430 -- author: Ian321 - changes: - - message: Help menus now include the linked guides. - type: Fix - id: 7038 - time: '2024-08-04T03:32:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30462 -- author: DrSmugleaf - changes: - - message: The Toggle Internals verb no longer shows up in the context menu if no - breathing tool is equipped and internals are off. - type: Tweak - id: 7039 - time: '2024-08-04T03:34:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30622 -- author: Mervill - changes: - - message: Rotten Meat can be collected in trash bags and deleted by the recycler - type: Tweak - id: 7040 - time: '2024-08-04T10:13:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30594 -- author: DrSmugleaf - changes: - - message: Fixed the client sometimes falsely showing the red color flash effect - when attacking something that they can't, like allied xenonids. - type: Fix - id: 7041 - time: '2024-08-05T03:14:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30661 -- author: Killerqu00 - changes: - - message: Sleeper agents event no longer occurs when evacuation is called. - type: Tweak - id: 7042 - time: '2024-08-05T03:17:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30646 -- author: Cojoke-dot - changes: - - message: Mice can now use combat mode with a 0 damage attack - type: Tweak - id: 7043 - time: '2024-08-05T03:26:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30487 -- author: TheShuEd - changes: - - message: Nanotrasen has introduced recruitment rules. Characters under the age - of 20 are no longer allowed to take on the role of head. - type: Tweak - id: 7044 - time: '2024-08-05T04:25:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30347 -- author: foboscheshir - changes: - - message: added missing mime mask sprites for Vox - scared and sad. - type: Add - id: 7045 - time: '2024-08-05T06:09:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30607 -- author: SlamBamActionman, PolarTundra - changes: - - message: Thief's Syndie Kit now comes with a Radio Jammer, a lighter and a Syndicate - codeword. - type: Add - - message: Thief's Agent ID has been moved from the Syndie Kit to the Chameleon - Kit. - type: Tweak - - message: The Syndicate pAI has been removed from the Thief's Syndie Kit. - type: Remove - id: 7046 - time: '2024-08-05T08:03:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30446 -- author: EmoGarbage404 - changes: - - message: Being cold now slows down your character. - type: Add - id: 7047 - time: '2024-08-05T08:07:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29692 -- author: EmoGarbage404 - changes: - - message: The biogenerator has been recolored and renamed to the "biocube fabricator." - type: Tweak - id: 7048 - time: '2024-08-06T10:51:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30696 -- author: Errant - changes: - - message: Vox can be nukies and ninjas again. - type: Tweak - id: 7049 - time: '2024-08-06T10:58:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29783 -- author: slarticodefast - changes: - - message: Fixed borgs, animals and aghosts being able to enter cryosleep. - type: Fix - id: 7050 - time: '2024-08-06T11:00:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30574 -- author: Flareguy - changes: - - message: Most hats are now automatically displaced on vox to look more fitting. - type: Tweak - id: 7051 - time: '2024-08-06T13:12:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30699 - author: Errant changes: - message: Medical Mask sprite now works on vox. @@ -3942,3 +3470,492 @@ id: 7489 time: '2024-10-05T18:44:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32452 +- author: Just_Art + changes: + - message: Added a flower wreath and hairflower to loadout! + type: Add + id: 7490 + time: '2024-10-06T12:48:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32097 +- author: Golinth + changes: + - message: Removed clown waddling until implemented properly + type: Remove + id: 7491 + time: '2024-10-06T13:33:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32652 +- author: SaphireLattice + changes: + - message: Minibomb is now explosion resistant and will start counting down if damaged + by a C4 + type: Tweak + id: 7492 + time: '2024-10-07T22:42:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32429 +- author: shampunj + changes: + - message: When curtains are destroyed, only 1 cloth drops out + type: Tweak + id: 7493 + time: '2024-10-08T09:51:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32685 +- author: Plykiya + changes: + - message: Librarians now start with a D20. + type: Tweak + id: 7494 + time: '2024-10-08T09:53:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32648 +- author: K-Dynamic + changes: + - message: CHIMP and APE particles should be almost as fast as before + type: Tweak + id: 7495 + time: '2024-10-08T18:29:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32690 +- author: ss14nekow + changes: + - message: Added pumpkin pie! Can be made in the microwave with 1 pie tin, 1 pie + dough, and 1 pumpkin. + type: Add + id: 7496 + time: '2024-10-08T23:29:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32623 +- author: Beck Thompson + changes: + - message: The radio jammers price has been decreased from 4 -> 3 TC. + type: Tweak + id: 7497 + time: '2024-10-09T12:44:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32472 +- author: beck-thompson, Moomoobeef + changes: + - message: Plushies now can have small items stuffed inside of them! To open, click + on the plush with a sharp item. You can then insert a small item into the plush. + To close, just click on it again with any sharp item! + type: Add + - message: When pAIs are inserted into plushies, their names will be updated to + the plushies name. E.g when inside a lizard plushie the pAI's name will appear + as "lizard plushie" when speaking. + type: Add + id: 7498 + time: '2024-10-09T18:01:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30805 +- author: Errant + changes: + - message: Nukies now have role briefing on their character screen. + type: Tweak + - message: Animals who are made Thief no longer get told in their briefing about + the thief gear that they don't actually have and couldn't possibly use. + type: Fix + id: 7499 + time: '2024-10-10T08:48:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31318 +- author: nikthechampiongr + changes: + - message: It is no longer impossible to do bounties other than the first one if + the server has been up for a long period of time. + type: Fix + id: 7500 + time: '2024-10-10T14:35:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32700 +- author: pheenty + changes: + - message: Quartermaster now has external access + type: Add + id: 7501 + time: '2024-10-13T04:55:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32631 +- author: Golinth + changes: + - message: Firebots can no longer become sentient via the sentience event. + type: Remove + id: 7502 + time: '2024-10-13T04:55:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32629 +- author: BramvanZijp + changes: + - message: The playtime requirements for station AI have been increased. + type: Tweak + - message: The playtime requirements to play borg have been slightly decreased. + type: Tweak + id: 7503 + time: '2024-10-13T06:38:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32007 +- author: SkaldetSkaeg + changes: + - message: Sleepers can no longer use emotions + type: Fix + id: 7504 + time: '2024-10-13T08:22:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32779 +- author: SlamBamActionman + changes: + - message: Added a new Safety MothTM poster about being SSD! + type: Add + id: 7505 + time: '2024-10-13T11:25:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32736 +- author: K-Dynamic + changes: + - message: Added rainbow lizard plushies, which can be found in arcade machines. + type: Add + id: 7506 + time: '2024-10-13T22:51:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32564 +- author: PJB3005 + changes: + - message: Fixes the client sometimes not being aware of active role bans. + type: Fix + id: 7507 + time: '2024-10-14T03:30:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32725 +- author: OnyxTheBrave + changes: + - message: Fixed the Industrial Reagent Grinder's visuals + type: Fix + id: 7508 + time: '2024-10-14T03:53:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32758 +- author: irismessage + changes: + - message: Made role requirements display in a more understandable format. + type: Tweak + id: 7509 + time: '2024-10-14T03:54:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32806 +- author: Gamer3107 + changes: + - message: Portal artifacts no longer target the AI or people within containers + type: Fix + id: 7510 + time: '2024-10-14T05:55:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32677 +- author: ScarKy0 + changes: + - message: Cyborg modules now have icons instead of using the module sprite. + type: Add + id: 7511 + time: '2024-10-14T07:05:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32505 +- author: metalgearsloth + changes: + - message: Fix tech anomalies firing every tick. + type: Fix + id: 7512 + time: '2024-10-14T07:06:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32805 +- author: ada-please + changes: + - message: Added more prizes to the Space Villain arcade machine + type: Add + id: 7513 + time: '2024-10-14T21:59:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32309 +- author: K-Dynamic + changes: + - message: Added nitrogen tanks to engineering tank dispensers. + type: Add + id: 7514 + time: '2024-10-15T08:28:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32565 +- author: slarticodefast + changes: + - message: Fixed inconsistent solution transfer amounts from spray bottles to plant + holders. + type: Fix + id: 7515 + time: '2024-10-16T03:57:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32813 +- author: Minemoder, ArtisticRoomba, Sarahon + changes: + - message: Reptiles and Kobolds can now thump their tail. + type: Add + id: 7516 + time: '2024-10-16T10:04:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32064 +- author: deltanedas + changes: + - message: Fixed grappling hooks sometimes getting bricked. + type: Fix + id: 7517 + time: '2024-10-16T22:32:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32738 +- author: SlamBamActionman + changes: + - message: The Microphone instrument has a new vocal style "Kweh". + type: Add + id: 7518 + time: '2024-10-17T01:57:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32848 +- author: deltanedas + changes: + - message: You can now eject biomass from a biogenerator without having to deconstruct + it. + type: Tweak + id: 7519 + time: '2024-10-17T03:12:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32854 +- author: lzk228 + changes: + - message: Fixed holosign projectors power cell popups. + type: Fix + id: 7520 + time: '2024-10-17T03:21:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32808 +- author: Kickguy223 + changes: + - message: As an AI, Having a Lawboard inserted into your AI Upload Computer will + now Play a sound cue + type: Add + - message: As an AI, Having the Antimov Lawboard uploaded will play an appropriate + sound cue + type: Add + id: 7521 + time: '2024-10-17T03:41:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32625 +- author: Callmore + changes: + - message: Prefered item quick store locations can be created again. + type: Fix + id: 7522 + time: '2024-10-17T04:00:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32480 +- author: Myra + changes: + - message: The game's title bar window will display the name of the server you have + joined (unless disabled). + type: Add + id: 7523 + time: '2024-10-17T11:06:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32547 +- author: Aeshus + changes: + - message: Emote shorthands (like "lol" or ":)") sent in chat are detected throughout + the whole message. Note that only the last shorthand in the message will be + emoted. + type: Tweak + id: 7524 + time: '2024-10-17T14:01:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28645 +- author: slarticodefast + changes: + - message: Fixed the playtime stats window not showing entries correctly. + type: Fix + id: 7525 + time: '2024-10-17T21:32:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32856 +- author: Thatonestomf + changes: + - message: Smile no longer has a ghost role raffle attached to her + type: Fix + id: 7526 + time: '2024-10-18T02:42:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32837 +- author: Catofquestionableethics + changes: + - message: Spacemans cake now contains Polypyrylium Oligomers instead of Omnizine. + type: Tweak + - message: Slime, Brain and Christmas cakes can now be eaten by Lizards. + type: Fix + id: 7527 + time: '2024-10-18T03:08:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32830 +- author: Plykiya + changes: + - message: You can no longer print flares or shotgun flares. + type: Remove + id: 7528 + time: '2024-10-18T03:28:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32563 +- author: pheenty + changes: + - message: QM is now considered an important job. + type: Tweak + - message: QM is now correctly considered head for traitor's kill head objective, + while warden now isn't. + type: Fix + id: 7529 + time: '2024-10-18T09:43:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32721 +- author: JIPDawg + changes: + - message: On Salamander the round will now restart after 5 minutes from when the + Evac shuttle arrives at CentCom. + type: Tweak + id: 7530 + time: '2024-10-18T10:03:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32776 +- author: Errant + changes: + - message: Players becoming Traitor without a PDA now correctly get the text and + audio notifications, and the code words. They are also given an Uplink Implant, + with the price taken from their starting TC. + type: Fix + id: 7531 + time: '2024-10-18T12:55:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30359 +- author: Beck Thompson + changes: + - message: Plushies will now eject their contents when recycled in the recycler! + type: Fix + id: 7532 + time: '2024-10-18T12:58:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32838 +- author: Ilya246 + changes: + - message: Spectral locator, rare maintenance loot that lets you know if any ghosts + are nearby. + type: Add + id: 7533 + time: '2024-10-18T13:42:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32323 +- author: PJB3005 + changes: + - message: You can now start removing items via stripping while holding something. + type: Tweak + id: 7534 + time: '2024-10-18T19:20:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32750 +- author: Beck Thompson + changes: + - message: Scalpels and shivs now work as knives! + type: Add + id: 7535 + time: '2024-10-19T02:40:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32858 +- author: PJB3005 + changes: + - message: Fix more performance issues on long-running game servers, hopefully. + type: Fix + id: 7536 + time: '2024-10-19T14:51:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32897 +- author: insoPL + changes: + - message: Zombies once again have zombie blood. + type: Fix + id: 7537 + time: '2024-10-19T15:31:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32532 +- author: Beck Thompson + changes: + - message: When MMIs and positronic brains are inserted into plushies, their names + will be updated to the plushies name (Exactly the same way pAIs do). + type: Add + id: 7538 + time: '2024-10-20T02:46:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32914 +- author: Calecute + changes: + - message: wide attacks that deal blunt damage will now deal stamina damage. + type: Fix + id: 7539 + time: '2024-10-20T03:41:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32422 +- author: Thatonestomf + changes: + - message: Mute toxin now mutes even after is metabolized, similar to glue + type: Tweak + - message: Mute toxin is now even more powerful at muting people + type: Tweak + id: 7540 + time: '2024-10-21T03:43:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32915 +- author: MendaxxDev + changes: + - message: Fixed typing sound playing when AI or admin ghosts interacted with consoles. + type: Fix + id: 7541 + time: '2024-10-21T03:50:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32906 +- author: NoElkaTheGod + changes: + - message: Station AI can now interact with long range fax machines. + type: Tweak + id: 7542 + time: '2024-10-21T12:44:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32929 +- author: Southbridge + changes: + - message: Box Station's window between the containment room and TEG has been upgraded + to plasma. + type: Fix + - message: Box Station's Engineering storage room air alarm has been properly connected + to nearby devices. + type: Fix + - message: Box Station's Janitorial disposal chute has been replaced with a working + one. + type: Fix + id: 7543 + time: '2024-10-22T05:39:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32950 +- author: Moomoobeef + changes: + - message: Ammo-boxes no longer appear empty when only one bullet is removed. + type: Fix + id: 7544 + time: '2024-10-22T09:00:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32930 +- author: ScarKy0 + changes: + - message: Added the syringe gun and it's respective ammo. Currently Admeme only. + type: Add + id: 7545 + time: '2024-10-22T13:03:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32112 +- author: ScarKy0, Fildrance + changes: + - message: Using an intellicard on the AI core now swaps the AI between the core + and intellicard. (You can evac with the AI!) + type: Add + - message: Added an intellicard to the RD's locker. + type: Add + id: 7546 + time: '2024-10-22T13:49:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32347 +- author: Southbridge + changes: + - message: Nuclear Cola can now be broken down in a centrifuge. + type: Add + id: 7547 + time: '2024-10-22T17:01:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32441 +- author: BramvanZijp + changes: + - message: The Space Ninja Suit will now give an error popup if you are trying to + install a cell that is not better compared to the current cell. + type: Add + - message: When comparing which power cell is better when trying to swap them, the + Space Ninja's Suit will now also consider if the power cells have self-recharge + capability. + type: Tweak + - message: You can no longer fit weapons-grade power cages into the space ninja + suit. + type: Fix + id: 7548 + time: '2024-10-22T23:36:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32902 +- author: UBlueberry + changes: + - message: The appraisal tool now has in-hand sprites! + type: Fix + id: 7549 + time: '2024-10-22T23:51:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32849 +- author: chromiumboy + changes: + - message: The atmospheric alerts computer has been upgraded to visually indicate + the rooms of the station that are being monitored by its air and fire alarm + systems + type: Tweak + id: 7550 + time: '2024-10-23T12:49:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31910 +- author: hyphenationc + changes: + - message: Snake meat is now properly considered Meat, so Lizards can eat it. + type: Fix + id: 7551 + time: '2024-10-24T03:41:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32965 diff --git a/Resources/ConfigPresets/WizardsDen/leviathan.toml b/Resources/ConfigPresets/WizardsDen/leviathan.toml index 7560833f13af88..a1a0e5b704d67d 100644 --- a/Resources/ConfigPresets/WizardsDen/leviathan.toml +++ b/Resources/ConfigPresets/WizardsDen/leviathan.toml @@ -4,10 +4,6 @@ [game] hostname = "[EN] Wizard's Den Leviathan [US East 1]" -panic_bunker.enabled = false -panic_bunker.disable_with_admins = false -panic_bunker.enable_without_admins = false -panic_bunker.custom_reason = "" [hub] tags = "lang:en,region:am_n_e,rp:low" diff --git a/Resources/ConfigPresets/WizardsDen/salamander.toml b/Resources/ConfigPresets/WizardsDen/salamander.toml index 676deec96dafea..e233dd95ca2e52 100644 --- a/Resources/ConfigPresets/WizardsDen/salamander.toml +++ b/Resources/ConfigPresets/WizardsDen/salamander.toml @@ -3,6 +3,7 @@ [game] desc = "Official English Space Station 14 servers. Medium roleplay ruleset. you must be whitelisted by playing on other Wizard's Den servers if there are more than 15 online players." hostname = "[EN] Wizard's Den Salamander [US West RP]" +round_restart_time = 300 [server] rules_file = "MRPRuleset" diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 077ff3fe40a687..2b059ca40e3bfb 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -4,12 +4,12 @@ [game] desc = "Official English Space Station 14 servers. Vanilla, roleplay ruleset." lobbyenabled = true -soft_max_players = 80 +soft_max_players = 70 panic_bunker.enabled = true panic_bunker.disable_with_admins = true panic_bunker.enable_without_admins = true panic_bunker.show_reason = true -panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard, Leviathan, or Farm Grass Hopper until you have more playtime." +panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard or Farm Grass Hopper until you have more playtime." [infolinks] bug_report = "https://github.com/space-wizards/space-station-14/issues/new/choose" diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index b18c4646ede2a3..e00d7c78a606f3 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, CatTheSystem, Centronias, chairbender, Charlese2, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DakotaGay, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, JoeHammad1844, joelsgp, JohnGinnane, johnku1, Jophire, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, koteq, KrasnoshchekovPavel, Krunklehorn, Kukutis96513, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, Phill101, phunnyguy, pigeonpeas, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, Soydium, SpaceManiac, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, Theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zylofan, Zymem, zzylex +0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, irismessage, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, SpaceLizardSky, SpaceManiac, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zylofan, Zymem, zzylex diff --git a/Resources/Locale/en-US/administration/smites.ftl b/Resources/Locale/en-US/administration/smites.ftl index e77725765befb2..57d8660fae09fe 100644 --- a/Resources/Locale/en-US/administration/smites.ftl +++ b/Resources/Locale/en-US/administration/smites.ftl @@ -20,42 +20,42 @@ admin-smite-explode-name = Explode admin-smite-chess-dimension-name = Chess Dimension admin-smite-set-alight-name = Set Alight admin-smite-monkeyify-name = Monkeyify -admin-smite-electrocute-name = Garbage Can -admin-smite-creampie-name = Electrocute -admin-smite-remove-blood-name = Creampie -admin-smite-vomit-organs-name = Remove blood -admin-smite-remove-hands-name = Vomit organs -admin-smite-remove-hand-name = Remove hands -admin-smite-pinball-name = Remove hand -admin-smite-yeet-name = Stomach Removal -admin-smite-become-bread-name = Lungs Removal -admin-smite-ghostkick-name = Pinball -admin-smite-nyanify-name = Yeet -admin-smite-kill-sign-name = Become Bread -admin-smite-cluwne-name = Become Mouse -admin-smite-anger-pointing-arrows-name = Ghostkick -admin-smite-dust-name = Nyanify -admin-smite-buffering-name = Kill sign -admin-smite-become-instrument-name = Cluwne -admin-smite-remove-gravity-name = Maid -admin-smite-reptilian-species-swap-name = Anger Pointing Arrows -admin-smite-locker-stuff-name = Dust -admin-smite-headstand-name = Buffering -admin-smite-become-mouse-name = Become Instrument -admin-smite-maid-name = Remove gravity -admin-smite-zoom-in-name = Reptilian Species Swap -admin-smite-flip-eye-name = Locker stuff -admin-smite-run-walk-swap-name = Headstand -admin-smite-super-speed-name = Zoom in -admin-smite-stomach-removal-name = Flip eye -admin-smite-speak-backwards-name = Run Walk Swap -admin-smite-lung-removal-name = Speak Backwards +admin-smite-garbage-can-name = Garbage Can +admin-smite-electrocute-name = Electrocute +admin-smite-remove-blood-name = Remove blood +admin-smite-remove-hands-name = Remove hands +admin-smite-remove-hand-name = Remove hand +admin-smite-pinball-name = Pinball +admin-smite-yeet-name = Yeet +admin-smite-become-bread-name = Become Bread +admin-smite-cluwne-name = Cluwne +admin-smite-anger-pointing-arrows-name = Anger Pointing Arrows +admin-smite-dust-name = Dust +admin-smite-buffering-name = Buffering +admin-smite-become-instrument-name = Become Instrument +admin-smite-remove-gravity-name = Remove Gravity +admin-smite-reptilian-species-swap-name = Become Reptilian +admin-smite-locker-stuff-name = Locker Stuff +admin-smite-headstand-name = Headstand +admin-smite-become-mouse-name = Become Mouse +admin-smite-maid-name = Cat Maid +admin-smite-zoom-in-name = Zoom In +admin-smite-flip-eye-name = Flip Eye +admin-smite-run-walk-swap-name = Run Walk Swap +admin-smite-super-speed-name = Run Up +admin-smite-stomach-removal-name = Stomach Removal +admin-smite-speak-backwards-name = Speak Backwards +admin-smite-lung-removal-name = Lungs Removal admin-smite-disarm-prone-name = Disarm Prone -admin-smite-garbage-can-name = Super speed -admin-smite-super-bonk-name = Super Bonk Lite -admin-smite-super-bonk-lite-name = Super Bonk +admin-smite-super-bonk-name = Super Bonk +admin-smite-super-bonk-lite-name = Super Bonk Lite admin-smite-terminate-name = Terminate admin-smite-super-slip-name = Super Slip +admin-smite-creampie-name = Cream +admin-smite-vomit-organs-name = Vomit Organs +admin-smite-ghostkick-name = Ghost Kick +admin-smite-nyanify-name = Cat Ears +admin-smite-kill-sign-name = Kill Sign ## Smite descriptions diff --git a/Resources/Locale/en-US/advertisements/other/firebot.ftl b/Resources/Locale/en-US/advertisements/other/firebot.ftl new file mode 100644 index 00000000000000..c614d5ecd0f04a --- /dev/null +++ b/Resources/Locale/en-US/advertisements/other/firebot.ftl @@ -0,0 +1,4 @@ +advertisement-firebot-1 = No fires detected. +advertisement-firebot-2 = Only you can prevent station fires. +advertisement-firebot-3 = Temperature nominal. +advertisement-firebot-4 = Keep it cool. \ No newline at end of file diff --git a/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl b/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl index a1640c5e9d5b4f..470a8f869529e5 100644 --- a/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl +++ b/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl @@ -25,7 +25,7 @@ atmos-alerts-window-warning-state = Warning atmos-alerts-window-danger-state = Danger! atmos-alerts-window-invalid-state = Inactive -atmos-alerts-window-no-active-alerts = [font size=16][color=white]No active alerts -[/color] [color={$color}]situation normal[/color][/font] +atmos-alerts-window-no-active-alerts = [font size=16][color=white]No active alerts -[/color] [color={$color}]Situation normal[/color][/font] atmos-alerts-window-no-data-available = No data available atmos-alerts-window-alerts-being-silenced = Silencing alerts... diff --git a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl index 7d1c07944356ed..f966f30e2d4fcd 100644 --- a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl +++ b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl @@ -2,5 +2,6 @@ ### Announcement earlyleave-cryo-job-unknown = Unknown -earlyleave-cryo-announcement = {$character} ({$job}) { CONJUGATE-HAVE($entity) } entered cryogenic storage! +# {$entity} available for GENDER function purposes +earlyleave-cryo-announcement = {$character} ({$job}) has entered cryogenic storage! earlyleave-cryo-sender = Station diff --git a/Resources/Locale/en-US/botany/components/plant-holder-component.ftl b/Resources/Locale/en-US/botany/components/plant-holder-component.ftl index 0e8c4137f4ed65..ca20c277f5314b 100644 --- a/Resources/Locale/en-US/botany/components/plant-holder-component.ftl +++ b/Resources/Locale/en-US/botany/components/plant-holder-component.ftl @@ -8,8 +8,6 @@ plant-holder-component-no-weeds-message = This plot is devoid of weeds! It doesn plant-holder-component-remove-plant-message = You remove the plant from the {$name}. plant-holder-component-remove-plant-others-message = {$name} removes the plant. plant-holder-component-no-plant-message = There is no plant to remove. -plant-holder-component-empty-message = {$owner} is empty! -plant-holder-component-spray-message = You spray {$owner}. plant-holder-component-transfer-message = You transfer {$amount}u to {$owner}. plant-holder-component-nothing-to-sample-message = There is nothing to take a sample of! plant-holder-component-already-sampled-message = This plant has already been sampled. diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl index cccb33a1f17b4e..8c74acafca2422 100644 --- a/Resources/Locale/en-US/chat/emotes.ftl +++ b/Resources/Locale/en-US/chat/emotes.ftl @@ -8,6 +8,7 @@ chat-emote-name-crying = Crying chat-emote-name-squish = Squish chat-emote-name-chitter = Chitter chat-emote-name-squeak = Squeak +chat-emote-name-thump = Thump Tail chat-emote-name-click = Click chat-emote-name-clap = Clap chat-emote-name-snap = Snap @@ -40,6 +41,7 @@ chat-emote-msg-crying = cries. chat-emote-msg-squish = squishes. chat-emote-msg-chitter = chitters. chat-emote-msg-squeak = squeaks. +chat-emote-msg-thump = thumps {POSS-ADJ($entity)} tail. chat-emote-msg-click = clicks. chat-emote-msg-clap = claps! chat-emote-msg-snap = snaps {POSS-ADJ($entity)} fingers. diff --git a/Resources/Locale/en-US/entity-categories.ftl b/Resources/Locale/en-US/entity-categories.ftl index 6067830b7aaada..4b6cf87942f930 100644 --- a/Resources/Locale/en-US/entity-categories.ftl +++ b/Resources/Locale/en-US/entity-categories.ftl @@ -1,3 +1,5 @@ entity-category-name-actions = Actions entity-category-name-game-rules = Game Rules -entity-category-name-objectives = Objectives \ No newline at end of file +entity-category-name-objectives = Objectives +entity-category-name-roles = Mind Roles +entity-category-name-mapping = Mapping diff --git a/Resources/Locale/en-US/forensics/fibers.ftl b/Resources/Locale/en-US/forensics/fibers.ftl index 53cfe5e7c1214f..72eae55e3801f1 100644 --- a/Resources/Locale/en-US/forensics/fibers.ftl +++ b/Resources/Locale/en-US/forensics/fibers.ftl @@ -25,3 +25,7 @@ fibers-white = white fibers-yellow = yellow fibers-regal-blue = regal blue fibers-olive = olive +fibers-silver = silver +fibers-gold = gold +fibers-maroon = maroon +fibers-pink = pink diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl index 1a4fcafbf862d6..06f8aeb565e56e 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl @@ -4,6 +4,7 @@ nukeops-description = Nuclear operatives have targeted the station. Try to keep nukeops-welcome = You are a nuclear operative. Your goal is to blow up {$station}, and ensure that it is nothing but a pile of rubble. Your bosses, the Syndicate, have provided you with the tools you'll need for the task. Operation {$name} is a go ! Death to Nanotrasen! +nukeops-briefing = Your objectives are simple. Deliver the payload and make sure it detonates. Begin mission. nukeops-opsmajor = [color=crimson]Syndicate major victory![/color] nukeops-opsminor = [color=crimson]Syndicate minor victory![/color] diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl index fd3e6b82aa7900..cf2f2b11308c3f 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl @@ -26,7 +26,7 @@ traitor-death-match-end-round-description-entry = {$originalName}'s PDA, with {$ traitor-role-greeting = You are an agent sent by {$corporation} on behalf of [color = darkred]The Syndicate.[/color] Your objectives and codewords are listed in the character menu. - Use the uplink loaded into your PDA to buy the tools you'll need for this mission. + Use your uplink to buy the tools you'll need for this mission. Death to Nanotrasen! traitor-role-codewords = The codewords are: [color = lightgray] @@ -36,9 +36,13 @@ traitor-role-codewords = traitor-role-uplink-code = Set your ringtone to the notes [color = lightgray]{$code}[/color] to lock or unlock your uplink. Remember to lock it after, or the stations crew will easily open it too! +traitor-role-uplink-implant = + Your uplink implant has been activated, access it from your hotbar. + The uplink is secure unless someone removes it from your body. # don't need all the flavour text for character menu traitor-role-codewords-short = The codewords are: {$codewords}. traitor-role-uplink-code-short = Your uplink code is {$code}. Set it as your PDA ringtone to access uplink. +traitor-role-uplink-implant-short = Your uplink was implanted. Access it from your hotbar. diff --git a/Resources/Locale/en-US/info/playtime-stats.ftl b/Resources/Locale/en-US/info/playtime-stats.ftl index 44ba39c25e9e08..85508c1d09cd9b 100644 --- a/Resources/Locale/en-US/info/playtime-stats.ftl +++ b/Resources/Locale/en-US/info/playtime-stats.ftl @@ -5,6 +5,6 @@ ui-playtime-overall-base = Overall Playtime: ui-playtime-overall = Overall Playtime: {$time} ui-playtime-first-time = First Time Playing ui-playtime-roles = Playtime per Role -ui-playtime-time-format = {$hours}H {$minutes}M +ui-playtime-time-format = %h\H\ %m\M ui-playtime-header-role-type = Role ui-playtime-header-role-time = Time diff --git a/Resources/Locale/en-US/job/job-names.ftl b/Resources/Locale/en-US/job/job-names.ftl index 0140adf8a2d711..5a0b615b47040c 100644 --- a/Resources/Locale/en-US/job/job-names.ftl +++ b/Resources/Locale/en-US/job/job-names.ftl @@ -62,6 +62,11 @@ job-name-unknown = Unknown job-name-virologist = Virologist job-name-zombie = Zombie +# Job titles +job-title-visitor = Visitor +job-title-cluwne = Cluwne +job-title-universal = Universal + # Role timers - Make these alphabetical or I cut you JobAtmosphericTechnician = Atmospheric Technician JobBartender = Bartender diff --git a/Resources/Locale/en-US/job/job-supervisors.ftl b/Resources/Locale/en-US/job/job-supervisors.ftl index d92065a40b1e96..b7615903ee1ed1 100644 --- a/Resources/Locale/en-US/job/job-supervisors.ftl +++ b/Resources/Locale/en-US/job/job-supervisors.ftl @@ -1,15 +1,15 @@ job-supervisors-centcom = Central Command -job-supervisors-captain = the captain -job-supervisors-hop = the head of personnel -job-supervisors-hos = the head of security -job-supervisors-ce = the chief engineer -job-supervisors-cmo = the chief medical officer -job-supervisors-rd = the research director -job-supervisors-qm = the quartermaster -job-supervisors-service = chefs, botanists, the bartender, and the head of personnel -job-supervisors-engineering = station engineers, atmospheric technicians, and the chief engineer -job-supervisors-medicine = medical doctors, chemists, and the chief medical officer -job-supervisors-security = security officers, the warden, and the head of security -job-supervisors-science = scientists, and the research director +job-supervisors-captain = the Captain +job-supervisors-hop = the Head of Personnel +job-supervisors-hos = the Head of Security +job-supervisors-ce = the Chief Engineer +job-supervisors-cmo = the Chief Medical Officer +job-supervisors-rd = the Research Director +job-supervisors-qm = the Quartermaster +job-supervisors-service = Chefs, Botanists, the Bartender, and the Head of Personnel +job-supervisors-engineering = Station Engineers, Atmospheric Technicians, and the Chief Engineer +job-supervisors-medicine = Medical Doctors, Paramedics, Chemists, and the Chief Medical Officer +job-supervisors-security = Security Officers, the Warden, and the Head of Security +job-supervisors-science = Scientists and the Research Director job-supervisors-hire = whoever hires you -job-supervisors-everyone = absolutely everyone +job-supervisors-everyone = absolutely everyone \ No newline at end of file diff --git a/Resources/Locale/en-US/job/role-requirements.ftl b/Resources/Locale/en-US/job/role-requirements.ftl index 00281fa6cd5e75..79a216fccaf41f 100644 --- a/Resources/Locale/en-US/job/role-requirements.ftl +++ b/Resources/Locale/en-US/job/role-requirements.ftl @@ -1,11 +1,12 @@ -role-timer-department-insufficient = You require [color=yellow]{TOSTRING($time, "0")}[/color] more minutes of [color={$departmentColor}]{$department}[/color] department playtime to play this role. -role-timer-department-too-high = You require [color=yellow]{TOSTRING($time, "0")}[/color] fewer minutes in [color={$departmentColor}]{$department}[/color] department to play this role. (Are you trying to play a trainee role?) -role-timer-overall-insufficient = You require [color=yellow]{TOSTRING($time, "0")}[/color] more minutes of playtime to play this role. -role-timer-overall-too-high = You require [color=yellow]{TOSTRING($time, "0")}[/color] fewer minutes of playtime to play this role. (Are you trying to play a trainee role?) -role-timer-role-insufficient = You require [color=yellow]{TOSTRING($time, "0")}[/color] more minutes with [color={$departmentColor}]{$job}[/color] to play this role. -role-timer-role-too-high = You require[color=yellow] {TOSTRING($time, "0")}[/color] fewer minutes with [color={$departmentColor}]{$job}[/color] to play this role. (Are you trying to play a trainee role?) -role-timer-age-to-old = Your character's age must be at most [color=yellow]{$age}[/color] to play this role. -role-timer-age-to-young = Your character's age must be at least [color=yellow]{$age}[/color] to play this role. +role-timer-department-insufficient = You require [color=yellow]{$time}[/color] more playtime in the [color={$departmentColor}]{$department}[/color] department to play this role. +role-timer-department-too-high = You require [color=yellow]{$time}[/color] less playtime in the [color={$departmentColor}]{$department}[/color] department to play this role. (Are you trying to play a trainee role?) +role-timer-overall-insufficient = You require [color=yellow]{$time}[/color] more overall playtime to play this role. +role-timer-overall-too-high = You require [color=yellow]{$time}[/color] less overall playtime to play this role. (Are you trying to play a trainee role?) +role-timer-role-insufficient = You require [color=yellow]{$time}[/color] more playtime with [color={$departmentColor}]{$job}[/color] to play this role. +role-timer-role-too-high = You require[color=yellow] {$time}[/color] less playtime with [color={$departmentColor}]{$job}[/color] to play this role. (Are you trying to play a trainee role?) +role-timer-time-format = %h\H\ %m\M +role-timer-age-too-old = Your character must be under the age of [color=yellow]{$age}[/color] to play this role. +role-timer-age-too-young = Your character must be over the age of [color=yellow]{$age}[/color] to play this role. role-timer-whitelisted-species = Your character must be one of the following species to play this role: role-timer-blacklisted-species = Your character must not be one of the following species to play this role: role-timer-whitelisted-traits = Your character must have one of the following traits: diff --git a/Resources/Locale/en-US/ninja/ninja-actions.ftl b/Resources/Locale/en-US/ninja/ninja-actions.ftl index f01f02a60e57fa..b3e295b7a29a13 100644 --- a/Resources/Locale/en-US/ninja/ninja-actions.ftl +++ b/Resources/Locale/en-US/ninja/ninja-actions.ftl @@ -1,6 +1,8 @@ ninja-no-power = Not enough charge in suit battery! ninja-revealed = You have been revealed! ninja-suit-cooldown = The suit needs time to recuperate from the last attack. +ninja-cell-downgrade = The suit will only accept a new power cell that is better than the current one! +ninja-cell-too-large = This power source does not fit in the ninja suit! ninja-research-steal-fail = No new research nodes were stolen... ninja-research-steal-success = Stole {$count} new nodes from {THE($server)}. diff --git a/Resources/Locale/en-US/reagents/meta/elements.ftl b/Resources/Locale/en-US/reagents/meta/elements.ftl index 6d6439565ba239..b5ef028bed9d34 100644 --- a/Resources/Locale/en-US/reagents/meta/elements.ftl +++ b/Resources/Locale/en-US/reagents/meta/elements.ftl @@ -61,8 +61,5 @@ reagent-desc-sodium = A silvery-white alkali metal. Highly reactive in its pure reagent-name-uranium = uranium reagent-desc-uranium = A grey metallic chemical element in the actinide series, weakly radioactive. -reagent-name-bananium = bananium -reagent-desc-bananium = A yellow radioactive organic solid. - reagent-name-zinc = zinc -reagent-desc-zinc = A silvery, brittle metal, often used in batteries to carry charge. \ No newline at end of file +reagent-desc-zinc = A silvery, brittle metal, often used in batteries to carry charge. diff --git a/Resources/Locale/en-US/server-updates/server-updates.ftl b/Resources/Locale/en-US/server-updates/server-updates.ftl index 72047432bb5a4b..ae775c99314bbc 100644 --- a/Resources/Locale/en-US/server-updates/server-updates.ftl +++ b/Resources/Locale/en-US/server-updates/server-updates.ftl @@ -1,2 +1,3 @@ server-updates-received = Update has been received, server will automatically restart for update at the end of this round. server-updates-shutdown = Server is shutting down for update and will automatically restart. +server-updates-shutdown-uptime = Server is shutting down for periodic cleanup and will automatically restart. diff --git a/Resources/Locale/en-US/shuttles/commands.ftl b/Resources/Locale/en-US/shuttles/commands.ftl new file mode 100644 index 00000000000000..37583568e7ccac --- /dev/null +++ b/Resources/Locale/en-US/shuttles/commands.ftl @@ -0,0 +1,14 @@ +# FTLdiskburner +cmd-ftldisk-desc = Creates an FTL coordinates disk to sail to the map the given EntityID is/on +cmd-ftldisk-help = ftldisk [EntityID] + +cmd-ftldisk-no-transform = Entity {$destination} has no Transform Component! +cmd-ftldisk-no-map = Entity {$destination} has no map! +cmd-ftldisk-no-map-comp = Entity {$destination} is somehow on map {$map} with no map component. +cmd-ftldisk-map-not-init = Entity {$destination} is on map {$map} which is not initialized! Check it's safe to initialize, then initialize the map first or the players will be stuck in place! +cmd-ftldisk-map-paused = Entity {$desintation} is on map {$map} which is paused! Please unpause the map first or the players will be stuck in place. +cmd-ftldisk-planet = Entity {$desintation} is on planet map {$map} and will require an FTL point. It may already exist. +cmd-ftldisk-already-dest-not-enabled = Entity {$destination} is on map {$map} that already has an FTLDestinationComponent, but it is not Enabled! Set this manually for safety. +cmd-ftldisk-requires-ftl-point = Entity {$destination} is on map {$map} that requires a FTL point to travel to! It may already exist. + +cmd-ftldisk-hint = Map netID diff --git a/Resources/Locale/en-US/storage/components/secret-stash-component.ftl b/Resources/Locale/en-US/storage/components/secret-stash-component.ftl index 36892428070176..16e575c0f13fcd 100644 --- a/Resources/Locale/en-US/storage/components/secret-stash-component.ftl +++ b/Resources/Locale/en-US/storage/components/secret-stash-component.ftl @@ -22,3 +22,4 @@ comp-secret-stash-verb-open = Open ### Stash names secret-stash-plant = plant secret-stash-toilet = toilet cistern +secret-stash-plushie = plushie diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index e0864de41bcaa5..b3ea4b7251294f 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -449,5 +449,5 @@ uplink-cameraBug-desc = A portable device that allows you to view the station's uplink-combat-bakery-name = Combat Bakery Kit uplink-combat-bakery-desc = A kit of clandestine baked weapons. Contains a baguette sword, a pair of throwing croissants, and a syndicate microwave board for making more. Once the job is done, eat the evidence. -uplink-business-card-name = Syndicate business card. +uplink-business-card-name = Syndicate Business Card uplink-business-card-desc = A business card that you can give to someone to demonstrate your involvement in the syndicate or leave at the crime scene in order to make fun of the detective. You can buy no more than three of them. diff --git a/Resources/Maps/Shuttles/emergency_omega.yml b/Resources/Maps/Shuttles/emergency_omega.yml index e3e6f680bf8540..bf87c0d21935ff 100644 --- a/Resources/Maps/Shuttles/emergency_omega.yml +++ b/Resources/Maps/Shuttles/emergency_omega.yml @@ -17,7 +17,7 @@ entities: - uid: 603 components: - type: MetaData - name: NT Evac Box + name: NT Evac Omega - type: Transform pos: 2.2710133,-2.4148211 parent: invalid @@ -3155,6 +3155,38 @@ entities: - type: Transform pos: -1.5,0.5 parent: 603 +- proto: Screen + entities: + - uid: 606 + components: + - type: Transform + pos: -2.5,10.5 + parent: 603 + - uid: 607 + components: + - type: Transform + pos: 5.5,4.5 + parent: 603 + - uid: 608 + components: + - type: Transform + pos: 5.5,8.5 + parent: 603 + - uid: 609 + components: + - type: Transform + pos: -10.5,8.5 + parent: 603 + - uid: 610 + components: + - type: Transform + pos: -10.5,4.5 + parent: 603 + - uid: 611 + components: + - type: Transform + pos: -2.5,1.5 + parent: 603 - proto: SheetSteel entities: - uid: 573 diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 3adc9767832ae7..2918b26110fbb4 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -10019,6 +10019,11 @@ entities: - type: Transform pos: -14.5,-67.5 parent: 8364 + - type: DeviceList + devices: + - 5463 + - 5462 + - 1860 - uid: 26908 components: - type: Transform @@ -11579,7 +11584,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -16708.217 + secondsUntilStateChange: -18243.016 state: Opening - type: DeviceLinkSource lastSignals: @@ -13271,6 +13276,9 @@ entities: - type: Transform pos: -11.5,-68.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - uid: 14486 components: - type: Transform @@ -19614,6 +19622,11 @@ entities: - type: Transform pos: 2.5,-13.5 parent: 8364 + - uid: 8185 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 8364 - uid: 8383 components: - type: Transform @@ -81253,11 +81266,6 @@ entities: - type: Transform pos: 70.5,-43.5 parent: 8364 - - uid: 21936 - components: - - type: Transform - pos: 2.5,-36.5 - parent: 8364 - uid: 25921 components: - type: Transform @@ -81280,6 +81288,11 @@ entities: - type: Transform pos: 11.5,-68.5 parent: 8364 + - uid: 27920 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 8364 - proto: DisposalYJunction entities: - uid: 6145 @@ -84418,7 +84431,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -10896.755 + secondsUntilStateChange: -12431.553 state: Closing - uid: 15010 components: @@ -84911,7 +84924,7 @@ entities: pos: -4.5,-71.5 parent: 8364 - type: Door - secondsUntilStateChange: -2644.4858 + secondsUntilStateChange: -4179.284 state: Closing - proto: Fireplace entities: @@ -110589,6 +110602,9 @@ entities: - type: Transform pos: -15.5,-68.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7282 @@ -112049,6 +112065,9 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-69.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - uid: 7284 components: - type: Transform @@ -133757,6 +133776,11 @@ entities: - type: Transform pos: 17.5,-51.5 parent: 8364 + - uid: 17697 + components: + - type: Transform + pos: 10.5,-81.5 + parent: 8364 - uid: 17718 components: - type: Transform @@ -133777,6 +133801,11 @@ entities: - type: Transform pos: 17.5,-50.5 parent: 8364 + - uid: 21936 + components: + - type: Transform + pos: 10.5,-80.5 + parent: 8364 - uid: 22830 components: - type: Transform @@ -137215,12 +137244,6 @@ entities: - type: Transform pos: -3.5,-20.5 parent: 8364 - - uid: 8185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-81.5 - parent: 8364 - uid: 8207 components: - type: Transform @@ -138045,12 +138068,6 @@ entities: - type: Transform pos: 25.5,-75.5 parent: 8364 - - uid: 17697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-80.5 - parent: 8364 - uid: 17787 components: - type: Transform diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index 883efbb9673b93..c2c8087bf891a5 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -18851,6 +18851,8 @@ entities: linkedPorts: 722: - CloningPodSender: CloningPodReceiver + 723: + - MedicalScannerSender: MedicalScannerReceiver - proto: ComputerComms entities: - uid: 652 @@ -27708,6 +27710,13 @@ entities: - type: Transform pos: -17.485325,-31.461966 parent: 1668 +- proto: NetworkConfigurator + entities: + - uid: 1461 + components: + - type: Transform + pos: 13.484868,-12.584605 + parent: 1668 - proto: NitrogenCanister entities: - uid: 5413 diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 882aab9eb1f2f4..384c60f599aa71 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -47,6 +47,7 @@ tilemap: 112: FloorTechMaint2 13: FloorTechMaint3 115: FloorWhite + 40: FloorWhiteMini 20: FloorWhiteMono 125: FloorWood 5: FloorWoodLarge @@ -80,143 +81,143 @@ entities: chunks: 0,0: ind: 0,0 - tiles: EgAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EgAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: YAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEgAAAAAAgQAAAAAAIAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEgAAAAAAgQAAAAAAIAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABEgAAAAAAgQAAAAAAIAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAIAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: YAAAAAABYAAAAAAAgQAAAAAAIwAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAOQAAAAAAOQAAAAAAYAAAAAACYAAAAAACgQAAAAAAIwAAAAAAIwAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACOQAAAAAAOQAAAAAAYAAAAAACYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAABIAAAAAACYAAAAAADYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAACYAAAAAABYAAAAAADgQAAAAAAIwAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAADYAAAAAABYAAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADIAAAAAABUQAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUQAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADUQAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAC + tiles: YAAAAAABYAAAAAAAgQAAAAAAIwAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAYAAAAAADYAAAAAABgQAAAAAAIwAAAAAAIwAAAAAIJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAOQAAAAAAOQAAAAAAYAAAAAADYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAACIAAAAAACYAAAAAABYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAABYAAAAAADYAAAAAABgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAADYAAAAAABYAAAAAABgQAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAIAAAAAADUQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACUQAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABUQAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: OQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAOQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: OQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: YAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAABwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABBwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABSgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACAAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAYAAAAAACYAAAAAAB + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACSgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACAAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAYAAAAAACYAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAABgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAACwAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAYAAAAAADYAAAAAAAUQAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD + tiles: gQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAcwAAAAABcwAAAAABcwAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAcwAAAAABcwAAAAACcwAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAACcwAAAAACgQAAAAAACwAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAACYAAAAAACYAAAAAAAUQAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAC version: 6 -2,0: ind: -2,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABOQAAAAAAIAAAAAADOQAAAAAAFgAAAAABFgAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAACgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABOQAAAAAAIAAAAAABOQAAAAAAFgAAAAADFgAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAB version: 6 -3,0: ind: -3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAADEAAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAACgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAYAAAAAACYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAAAgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAACgQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAEAAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: cwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAABUQAAAAACcwAAAAAAUQAAAAACcwAAAAAAcwAAAAABcwAAAAACgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAAA + tiles: cwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAACUQAAAAACcwAAAAADUQAAAAACcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAABcwAAAAADcwAAAAADgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAACgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAACgQAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: YAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAACwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACcwAAAAABcwAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAADcwAAAAABcwAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAACcwAAAAABcwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAACfQAAAAACcwAAAAABcwAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAfQAAAAADfQAAAAABcwAAAAABcwAAAAAA + tiles: YAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAABgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACCwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAABgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAABgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAADfQAAAAABfQAAAAABcwAAAAABcwAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAADfQAAAAACcwAAAAACcwAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAADcwAAAAAAcwAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAADcwAAAAACcwAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAfQAAAAABfQAAAAADcwAAAAAAcwAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: gQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAABcwAAAAADgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: gQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADcwAAAAABcwAAAAABcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAADEAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAEgQAAAAAAgQAAAAAAEAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAADwAAAAAAHwAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAIQAAAAAADwAAAAAAgAAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABHwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAYAAAAAAAHwAAAAAAHwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIQAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAFHwAAAAAAgQAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAIQAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAgAAAAAAADwAAAAAAHwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAFDwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAADwAAAAAAHwAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAIQAAAAAADwAAAAAAgAAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAHwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAYAAAAAABHwAAAAAAHwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAIQAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAKgQAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAIQAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAgAAAAAAADwAAAAAAHwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIgAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIgAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAIgAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAADIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcwAAAAABcwAAAAADcwAAAAAAIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACCwAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAABcwAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAD + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIgAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAABIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcwAAAAAAcwAAAAADcwAAAAACIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAABgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAACgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAADgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAADgQAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACCwAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAcwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADSgAAAAAASgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAABcwAAAAAAcwAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAACgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAADAAAAAADSgAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAABcwAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAADAAAAAABSgAAAAAADAAAAAAADAAAAAABgQAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAADcwAAAAACcwAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAAAcwAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAASgAAAAAADAAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAADcwAAAAADUQAAAAABcwAAAAAAUQAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACUQAAAAAAcwAAAAACUQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADUQAAAAABcwAAAAADUQAAAAABcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAADcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACcwAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACSgAAAAAASgAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAADDAAAAAABcwAAAAACcwAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAACgQAAAAAADAAAAAACDAAAAAADDAAAAAADDAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAADAAAAAADSgAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAAAcwAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAADAAAAAAASgAAAAAADAAAAAADDAAAAAADgQAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAADcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAAAcwAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAASgAAAAAADAAAAAABSgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAABcwAAAAABUQAAAAADcwAAAAABUQAAAAADcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABUQAAAAACcwAAAAABUQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAcwAAAAADcwAAAAADUQAAAAADcwAAAAABUQAAAAADcwAAAAABcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAADCQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJgAAAAADCQAAAAADCQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJQAAAAADCQAAAAADCQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADDAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACDAAAAAAAYAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: cwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAACcwAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABcwAAAAACcwAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACcwAAAAABcwAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAASgAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADgQAAAAAASgAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADgQAAAAAASgAAAAAAcwAAAAABgQAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAASgAAAAAA + tiles: cwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAAAcwAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABcwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABcwAAAAABcwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAcwAAAAABcwAAAAABgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAADgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACcwAAAAACcwAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADgQAAAAAASgAAAAAAcwAAAAACgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABgQAAAAAASgAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAADgQAAAAAASgAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAASgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: SgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAD + tiles: SgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAD version: 6 1,-1: ind: 1,-1 - tiles: YAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAB + tiles: YAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAC version: 6 1,0: ind: 1,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAYAAAAAABgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAYAAAAAABgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: YAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAABAgAAAAABBwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADBwAAAAAAYAAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACYAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADAgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACBwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAAgAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAAEAgAAAAAABwAAAAAAgQAAAAAAfQAAAAABfQAAAAACKAAAAAAAKAAAAAABgQAAAAAAIAAAAAACCwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABBwAAAAAAYAAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAKAAAAAABgQAAAAAAIAAAAAADCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAYAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABYAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABBwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA version: 6 2,0: ind: 2,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAwAAAAACBwAAAAAABwAAAAAAAwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAgAAAAABgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACCwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAACBwAAAAAAYAAAAAABgQAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAABAwAAAAABgQAAAAAAAgAAAAABBwAAAAAAAgAAAAAABwAAAAAABwAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAABwAAAAAAAwAAAAACgQAAAAAABwAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAACYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAABAwAAAAAEgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAwAAAAAEBwAAAAAABwAAAAAAAwAAAAAEBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAIAAAAAACCwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACCwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAABBwAAAAAAYAAAAAADgQAAAAAAYAAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAgQAAAAAAAgAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAABwAAAAAAAwAAAAAEgQAAAAAABwAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAEYAAAAAABBwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAADAwAAAAACgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: gQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABDgAAAAACDgAAAAAADgAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABDgAAAAADUQAAAAABDgAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAABDgAAAAACDgAAAAADDgAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADAgAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAgAAAAABBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAwAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAABwAAAAAAgQAAAAAAAgAAAAABgQAAAAAACwAAAAAACwAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADgQAAAAAABwAAAAAAYAAAAAACYAAAAAACAwAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAwAAAAADBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAAgAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAACYAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAADEwAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAACEwAAAAAAEwAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAADDgAAAAACDgAAAAADDgAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABDgAAAAADUQAAAAADDgAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACDgAAAAACDgAAAAADDgAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAgAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAgAAAAABBwAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAAwAAAAAEgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAABwAAAAAAYAAAAAABYAAAAAADAwAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAAwAAAAADBwAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAABwAAAAAAYAAAAAACAgAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAABYAAAAAAD version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAB version: 6 2,-3: ind: 2,-3 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAABYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAABCwAAAAAAYAAAAAAAYAAAAAABgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAACCwAAAAAAYAAAAAABYAAAAAADgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAADEwAAAAACEwAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAwAAAAACgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-4: ind: 4,-4 @@ -224,27 +225,27 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADHgAAAAACHgAAAAABIAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAADHgAAAAAAHgAAAAAAIAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAIAAAAAABHgAAAAABHgAAAAACIAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: YAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAABYAAAAAACYAAAAAAAfQAAAAABfQAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAACfQAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAYAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAACUQAAAAAAIAAAAAABYAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAACIAAAAAABUQAAAAADIAAAAAABIAAAAAADYAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAABYAAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAA + tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAABfQAAAAABfQAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAADfQAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAACYAAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADIAAAAAACIAAAAAABUQAAAAACIAAAAAADYAAAAAADIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAADIAAAAAACUQAAAAADIAAAAAADIAAAAAADYAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAADIAAAAAABBwAAAAAAgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABYAAAAAADgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAD version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: YAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 @@ -252,75 +253,75 @@ entities: version: 6 1,1: ind: 1,1 - tiles: gQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAGfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAABfQAAAAADYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAABfQAAAAABEAAAAAADYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAABgQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA + tiles: gQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAADfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAGfQAAAAADYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAYAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAGfQAAAAADEAAAAAAGYAAAAAADgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAACQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA version: 6 0,1: ind: 0,1 - tiles: gQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAADDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAADDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAADAAAAAABDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAABCAAAAAAACAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACCAAAAAADCAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAADAAAAAACDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAACDAAAAAADDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: gQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAACDAAAAAACDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACDAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAADCAAAAAABCAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAACAAAAAADCAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACDAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAACDAAAAAABDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: gAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACYAAAAAABYAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADUQAAAAACUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADUQAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABYAAAAAABYAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAUQAAAAACUQAAAAAAUQAAAAADUQAAAAABUQAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAUQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: YAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAABJwAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAACJwAAAAAEgQAAAAAAYAAAAAABYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAABYAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAABJwAAAAAFgQAAAAAAYAAAAAADYAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADJwAAAAAEJwAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAACJwAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADUQAAAAADUQAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABUQAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAC + tiles: YAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAFJwAAAAABgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAFgQAAAAAAYAAAAAADYAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAABJwAAAAAFgQAAAAAAYAAAAAABYAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAADgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADJwAAAAABJwAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAFJwAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAUQAAAAABUQAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACUQAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAB version: 6 -1,1: ind: -1,1 - tiles: YAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAUgAAAAAAYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAACCAAAAAAACAAAAAAACAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADCAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAAACAAAAAABCAAAAAAACAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAADDAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAAD + tiles: YAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAUgAAAAAAYAAAAAACYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAAADAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAACCAAAAAACCAAAAAAACAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAABCAAAAAABCAAAAAACCAAAAAABCAAAAAAACAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAACCAAAAAABCAAAAAACCAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAADDAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAACYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAADYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAYAAAAAACYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAADYAAAAAADYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAABYAAAAAACYAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAABYAAAAAABYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAACYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAACgQAAAAAAYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABYAAAAAADYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAYAAAAAADYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAYAAAAAACYAAAAAAB version: 6 -3,2: ind: -3,2 - tiles: YAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACQgAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAADQgAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADQgAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACQgAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABEwAAAAACEwAAAAADEwAAAAAAEwAAAAABEwAAAAAAEwAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACEwAAAAADEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADEwAAAAABEwAAAAADEwAAAAACEwAAAAABEwAAAAABEwAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAABgQAAAAAAgQAAAAAAfQAAAAAC + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACEwAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABEwAAAAADEwAAAAADEwAAAAAAEwAAAAACEwAAAAACEwAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABEwAAAAABEwAAAAACEwAAAAAAEwAAAAACEwAAAAABEwAAAAACgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAEwAAAAACEwAAAAAAEwAAAAACEwAAAAAAEwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAEwAAAAACEwAAAAACEwAAAAAAEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAfQAAAAAD version: 6 -1,2: ind: -1,2 - tiles: YAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,2: ind: 0,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAACcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAcwAAAAADcwAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABcwAAAAAAcwAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAcwAAAAABcwAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACcwAAAAAAcwAAAAADgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAADcwAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAADcwAAAAAAcwAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAACcwAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABFwAAAAAAFwAAAAAAFwAAAAACFwAAAAABFwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAfQAAAAACfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAACgQAAAAAAcwAAAAADcwAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAADcwAAAAAAcwAAAAACgQAAAAAAfQAAAAACfQAAAAAAfQAAAAABfQAAAAADgQAAAAAAcwAAAAABcwAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAADcwAAAAAAcwAAAAACgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAAAcwAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAACcwAAAAAAcwAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAABcwAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAACcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAACFwAAAAACFwAAAAABFwAAAAACFwAAAAACFwAAAAAB version: 6 2,1: ind: 2,1 - tiles: YAAAAAACBwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABCwAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAABwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAAwAAAAAAYAAAAAABgQAAAAAACwAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABBwAAAAAAYAAAAAABgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAABwAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAAwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAIAAAAAABQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAA + tiles: YAAAAAAABwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACCwAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACBwAAAAAAgQAAAAAACwAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACAwAAAAADYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAACwAAAAAAgQAAAAAADQAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAABwAAAAAAYAAAAAABgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAABwAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAABwAAAAAAYAAAAAACAwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAACgQAAAAAAIAAAAAABQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAABQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAA version: 6 3,0: ind: 3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAABYAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAABgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACYAAAAAACgQAAAAAAEgAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACYAAAAAABgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADYAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAABYAAAAAABgQAAAAAAEgAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAADgQAAAAAAYAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABYAAAAAADgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAADAgAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAAAAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAACYAAAAAACAgAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAA + tiles: gQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA version: 6 2,2: ind: 2,2 - tiles: QgAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAC + tiles: QgAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAYAAAAAABQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAB version: 6 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABYAAAAAABEwAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAACEwAAAAAAEwAAAAADEwAAAAADEwAAAAACEwAAAAADEwAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAABEwAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAABEwAAAAADIAAAAAADIAAAAAADIAAAAAADgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAEwAAAAACEwAAAAACEwAAAAAAEwAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAA + tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAACgQAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAABgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAYAAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAAAEwAAAAABEwAAAAABEwAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADEwAAAAADEwAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAAAEwAAAAACEwAAAAAAEwAAAAACEwAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAABEwAAAAACEwAAAAADEwAAAAACEwAAAAABEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAEwAAAAADEwAAAAACEwAAAAABEwAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAADEwAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAEwAAAAABEwAAAAABEwAAAAABEwAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAGwAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAGwAAAAAAYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAABgQAAAAAASgAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAGwAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAGwAAAAAAYAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAADgQAAAAAASgAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAA version: 6 4,3: ind: 4,3 - tiles: YAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAYAAAAAACYAAAAAAAYAAAAAADCwAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAADgQAAAAAASgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAYAAAAAACYAAAAAABYAAAAAABCwAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAADgQAAAAAASgAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAAAYAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -332,35 +333,35 @@ entities: version: 6 3,3: ind: 3,3 - tiles: YAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAADAAAAAACDAAAAAABDAAAAAADfQAAAAACfQAAAAADCwAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADfQAAAAACfQAAAAABfQAAAAAADAAAAAABDAAAAAAADAAAAAADCAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADCAAAAAAACAAAAAABCAAAAAADfQAAAAADfQAAAAACfQAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABCAAAAAACCAAAAAAACAAAAAADfQAAAAADfQAAAAACfQAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAADAAAAAAADAAAAAACDAAAAAAAfQAAAAABfQAAAAADfQAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAADAAAAAACDAAAAAACDAAAAAABfQAAAAAAfQAAAAABfQAAAAADDAAAAAADDAAAAAACDAAAAAADDAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAADAAAAAAADAAAAAACDAAAAAABfQAAAAAAfQAAAAACfQAAAAABDAAAAAACDAAAAAABDAAAAAACDAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAADAAAAAADDAAAAAABDAAAAAACfQAAAAACfQAAAAACCwAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAACDAAAAAAAfQAAAAABfQAAAAAAfQAAAAAADAAAAAADDAAAAAADDAAAAAACCAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADCAAAAAABCAAAAAAACAAAAAACfQAAAAAAfQAAAAABfQAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADCAAAAAAACAAAAAABCAAAAAABfQAAAAADfQAAAAAAfQAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAADAAAAAAADAAAAAAADAAAAAADfQAAAAADfQAAAAACfQAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAADAAAAAABDAAAAAABDAAAAAACfQAAAAABfQAAAAACfQAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAACfQAAAAABfQAAAAACfQAAAAADDAAAAAAADAAAAAADDAAAAAADDAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAQgAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADQgAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACFQAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAFQAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADFQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACFQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAADcAAAAAAAgQAAAAAAFQAAAAACgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABDQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAA + tiles: gQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACQgAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAQgAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADFQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADFQAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABFQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACFQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAYAAAAAACFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAADDQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAYAAAAAADcAAAAAAAgQAAAAAADQAAAAADgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAADQAAAAACgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACgQAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAEwAAAAADEwAAAAADEwAAAAADEwAAAAAAIAAAAAACIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAABIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAfQAAAAADfQAAAAACQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAACEwAAAAAAEwAAAAACEwAAAAABEwAAAAAAEwAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAAAEwAAAAADEwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAADEwAAAAACEwAAAAAAEwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAACFQAAAAAAFQAAAAACFQAAAAACFQAAAAADgQAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAABEwAAAAACEwAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAFQAAAAAAFQAAAAACFQAAAAABFQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAADFQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAACwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAABFQAAAAABFQAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAFQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAAAFQAAAAABFQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAFQAAAAAAFQAAAAABFQAAAAABFQAAAAACFQAAAAADFQAAAAABFQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAFQAAAAABFQAAAAAAFQAAAAAAFQAAAAABFQAAAAAAFQAAAAACFQAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAACFQAAAAABFQAAAAADFQAAAAADFQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA + tiles: gQAAAAAAEwAAAAABEwAAAAACEwAAAAACEwAAAAABIAAAAAADIAAAAAACEwAAAAADgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAADEwAAAAACEwAAAAABEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAACIAAAAAADIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAABQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAAAEwAAAAADEwAAAAADEwAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAACEwAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAACIAAAAAADIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAACEwAAAAADEwAAAAABEwAAAAABEwAAAAABEwAAAAAAEwAAAAADgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACFQAAAAACFQAAAAABFQAAAAADFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAACEwAAAAADEwAAAAABEwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAFQAAAAADFQAAAAACFQAAAAADFQAAAAADgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAADFQAAAAADFQAAAAABFQAAAAACFQAAAAADFQAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAACwAAAAAAFQAAAAABFQAAAAADFQAAAAADFQAAAAADFQAAAAACFQAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADFQAAAAAAFQAAAAADFQAAAAAAFQAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAFQAAAAACFQAAAAACFQAAAAACFQAAAAACFQAAAAADFQAAAAACFQAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAAAFQAAAAADFQAAAAADFQAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAADFQAAAAADFQAAAAAAFQAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA version: 6 0,3: ind: 0,3 - tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAACFwAAAAAAFwAAAAACFwAAAAAAFwAAAAABFwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACFwAAAAACFwAAAAABFwAAAAACFwAAAAAAFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAADFwAAAAABFwAAAAADFwAAAAAAFwAAAAACFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAABFwAAAAADFwAAAAADFwAAAAACFwAAAAADFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAADcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGgAAAAAAgQAAAAAAfQAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfQAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAGgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAACwAAAAAAgQAAAAAAcAAAAAAADQAAAAADcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAADFwAAAAAAFwAAAAADFwAAAAADFwAAAAABFwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAADFwAAAAACFwAAAAAAFwAAAAABFwAAAAACFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAAAFwAAAAAAFwAAAAADFwAAAAADFwAAAAAAFwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAADFwAAAAAAFwAAAAAAFwAAAAACFwAAAAADFwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGgAAAAAAgQAAAAAAfQAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfQAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAADCwAAAAAAgQAAAAAAcAAAAAAADQAAAAADcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: fQAAAAACfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAADQAAAAADgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAADFQAAAAAAFQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAFQAAAAABFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAFQAAAAABFQAAAAACFQAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAA + tiles: fQAAAAAAfQAAAAADfQAAAAADfQAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADgQAAAAAADQAAAAACgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACgQAAAAAADQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAACFQAAAAAAFQAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAACFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAFQAAAAADFQAAAAADFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAA version: 6 3,4: ind: 3,4 - tiles: gQAAAAAAIAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,4: ind: 2,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,4: ind: 1,4 - tiles: YAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAABwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABBwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 4,4: ind: 4,4 @@ -368,23 +369,23 @@ entities: version: 6 0,4: ind: 0,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABBwAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAABwAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: YAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAADDQAAAAABDQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAADgQAAAAAAcAAAAAAAcAAAAAAADQAAAAACcAAAAAAADQAAAAADcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABHgAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACHgAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAACHgAAAAACgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAABfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAADfQAAAAABfQAAAAABHgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAABDQAAAAACDQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAADQAAAAAAcAAAAAAADQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAACYAAAAAABfQAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADYAAAAAADfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAAAfQAAAAABfQAAAAABfQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAABfQAAAAABfQAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABfQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAACfQAAAAAAfQAAAAACfQAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAABfQAAAAACfQAAAAADfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,5: ind: 0,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEgAAAAAAIAAAAAADIAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAABYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEgAAAAAAIAAAAAADIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEgAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,0: ind: -4,0 @@ -396,11 +397,11 @@ entities: version: 6 -4,3: ind: -4,3 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAB + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAEAAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAEAAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAB version: 6 -3,3: ind: -3,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAACIAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABCwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAFAAAAAADcwAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAACYAAAAAABUQAAAAADYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAACwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAFAAAAAABcwAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAcwAAAAADcwAAAAADcwAAAAADYAAAAAAAUQAAAAAAYAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAA version: 6 -5,3: ind: -5,3 @@ -408,19 +409,19 @@ entities: version: 6 -2,3: ind: -2,3 - tiles: CwAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAEwAAAAACEwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAcAAAAAAAgQAAAAAAfQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAACwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAAD + tiles: CwAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAABcAAAAAAAgQAAAAAAfQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABBAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAACwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAAD version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHQAAAAADHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAACHQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAADHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABYAAAAAACHQAAAAABHQAAAAADHQAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADYAAAAAABHQAAAAADHQAAAAADHQAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAYAAAAAABHQAAAAACHQAAAAAAHQAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAADHQAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAADHQAAAAABHQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAACYAAAAAAAHQAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAHAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAA version: 6 -2,4: ind: -2,4 - tiles: gQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 @@ -428,7 +429,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAEfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAIAAAAAACUQAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABEAAAAAACgQAAAAAAgQAAAAAAEAAAAAAGgQAAAAAAIAAAAAADIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABEAAAAAAAgQAAAAAAgQAAAAAAEAAAAAADfQAAAAABgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAFgQAAAAAAgQAAAAAAfQAAAAABEAAAAAAFfQAAAAABfQAAAAAAfQAAAAAAEAAAAAAEgQAAAAAAIAAAAAACUQAAAAABIAAAAAABAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAfQAAAAAAEAAAAAAGEAAAAAADgQAAAAAAEAAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,5: ind: 3,5 @@ -440,24 +441,36 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-4: ind: -5,-4 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + version: 6 + -3,5: + ind: -3,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,5: + ind: -2,5 + tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -490,6 +503,13 @@ entities: id: Arrows decals: 8243: 29,5 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 8967: 6.0002394,17.436628 + 8968: 11.993295,17.42273 + 8969: 13.000239,17.436626 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -518,8 +538,13 @@ entities: decals: 8199: 30,-15 8200: 30,-9 - 8721: 57,11 - 8722: 58,11 + 8961: 9,17 + 8962: 10,17 + 8963: 16,17 + 8985: 57,11 + 8986: 58,11 + 8987: 61,11 + 8988: 62,11 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -557,6 +582,7 @@ entities: 2149: -4.9654737,27.154173 7349: -20.712843,20.881693 7381: -20.692894,-14.720455 + 9630: 4.6297913,-60.77529 - node: angle: 0.017453292519943295 rad color: '#FFFFFFFF' @@ -598,6 +624,11 @@ entities: 2152: -1.1244693,28.919865 7350: -20.36495,22.00225 7384: -12.161644,-13.896967 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 9631: 5.9526916,-63.01578 - node: color: '#FFFFFFFF' id: Basalt9 @@ -655,8 +686,6 @@ entities: 1298: 37,-19 1299: 37,-18 1300: 52,-38 - 1301: 52,-39 - 1302: 59,-40 1303: 58,-33 1304: 59,-33 1305: 60,-33 @@ -781,7 +810,6 @@ entities: 5553: -26,58 5554: -27,58 5555: -28,58 - 5779: 31,-8 5786: 31,-2 6198: 3,-46 6200: 3,-40 @@ -812,17 +840,12 @@ entities: 6793: 61,-19 6794: 62,-19 6795: 63,-19 - 7202: 3,-61 7203: 3,-60 7204: -8,-69 7205: -17,-59 7598: -26,47 7599: -31,46 7600: -9,-36 - 7700: 3,-21 - 7701: 4,-21 - 7704: 3,-19 - 7705: 4,-19 7726: 24,7 7764: 50,-2 7765: 50,-1 @@ -832,17 +855,23 @@ entities: 8196: 31,-3 8197: 42,-2 8198: 42,-1 - 8209: 39,4 - 8210: 40,4 8253: 31,6 8912: 51,-11 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bot - decals: - 8678: 52,64 - 8679: 54,63 + 8981: 61,12 + 8982: 62,12 + 8983: 58,12 + 8984: 57,12 + 8997: 12,-13 + 8998: 13,-13 + 8999: 14,-13 + 9005: 27,-15 + 9107: 32,-29 + 9207: 55,-33 + 9290: 56,-40 + 9291: 55,-40 + 9537: 39,-1 + 9613: 52,63 + 9874: -32,77 - node: zIndex: 1 color: '#FFFFFFFF' @@ -875,7 +904,6 @@ entities: id: Bot decals: 2956: 51,59 - 2957: 50,59 2958: 48,65 2959: 50,65 7999: 8,-9 @@ -884,8 +912,6 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 8726: 57,12 - 8727: 58,12 8730: 62,-4 8731: 60,-4 - node: @@ -929,14 +955,6 @@ entities: 7716: 27,6 7717: 27,7 8680: 27,8 - - node: - angle: 1.5707963267948966 rad - color: '#FFFF00FF' - id: BotGreyscale - decals: - 7996: 10,-12 - 7997: 11,-12 - 7998: 12,-12 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -948,9 +966,6 @@ entities: color: '#FFFFFFFF' id: Box decals: - 713: 29,-22 - 714: 29,-23 - 715: 29,-24 716: 31,-19 1265: 53,-25 1306: 61,-31 @@ -963,11 +978,6 @@ entities: id: Box decals: 6702: 3,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 7145: -36,-18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -1066,12 +1076,6 @@ entities: decals: 4244: 24,49 4245: 24,50 - 5561: -46,68 - 5562: -46,69 - 5563: -46,70 - 5564: -46,71 - 5582: -46,72 - 5583: -46,67 6692: 0,-15 7848: 53,4 7849: 53,5 @@ -1127,7 +1131,6 @@ entities: 4061: 76,54 4062: 74,55 4063: 77,52 - 6813: -4,76 7301: 18,-31 7302: 30,-31 7333: -10,21 @@ -1139,6 +1142,9 @@ entities: 7940: 57,-1 7974: 61,5 8598: 30,25 + 9590: -5,75 + 9591: -5,72 + 9900: -48,74 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -1147,7 +1153,6 @@ entities: 4039: 72,45 4044: 68,55 4045: 66,54 - 6812: -13,76 7292: 25,-31 7319: 11,-31 7332: -13,21 @@ -1156,6 +1161,9 @@ entities: 7939: 54,-1 7973: 58,5 8597: 28,25 + 9587: -12,72 + 9588: -12,75 + 9898: -53,74 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -1174,6 +1182,8 @@ entities: 7366: -19,-16 7935: 57,-4 7971: 61,3 + 9589: -5,74 + 9897: -48,69 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw @@ -1196,6 +1206,8 @@ entities: 7936: 54,-4 7972: 58,3 8596: 28,21 + 9592: -12,74 + 9899: -53,69 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -1210,15 +1222,12 @@ entities: id: BrickTileSteelEndS decals: 4072: 66,52 - 6827: -4,71 - 6866: -13,71 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: 2527: 1,35 6325: -37,27 - 6857: -13,73 7372: -13,-13 7373: -12,-15 7380: -21,-11 @@ -1232,15 +1241,12 @@ entities: 4040: 73,45 4077: 74,46 6326: -31,27 - 6856: -4,73 7502: 68,54 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: 2526: 1,40 - 6852: -13,73 - 6853: -13,76 7310: 28,-34 7323: 17,-33 7506: 74,43 @@ -1252,8 +1258,6 @@ entities: 2525: 8,40 4075: 73,52 4076: 74,51 - 6854: -4,76 - 6855: -4,73 7311: 26,-33 7312: 15,-32 7379: -20,-15 @@ -1269,13 +1273,6 @@ entities: 4041: 77,46 4042: 77,51 4043: 76,53 - 6815: -13,72 - 6816: -13,74 - 6817: -13,75 - 6823: -4,72 - 6824: -4,73 - 6825: -4,74 - 6826: -4,75 7307: 30,-33 7308: 30,-32 7309: 28,-35 @@ -1303,6 +1300,9 @@ entities: 8592: 30,22 8593: 30,23 8594: 30,24 + 9612: -5,71 + 9911: -48,70 + 9912: -48,73 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1325,22 +1325,6 @@ entities: 6322: -34,27 6323: -35,27 6324: -36,27 - 6828: -12,76 - 6829: -11,76 - 6830: -10,76 - 6831: -9,76 - 6832: -8,76 - 6833: -7,76 - 6834: -6,76 - 6835: -5,76 - 6836: -5,73 - 6837: -6,73 - 6838: -7,73 - 6839: -8,73 - 6840: -9,73 - 6841: -10,73 - 6842: -11,73 - 6843: -12,73 7303: 26,-31 7304: 27,-31 7305: 28,-31 @@ -1359,6 +1343,24 @@ entities: 7944: 56,-1 7977: 59,5 7978: 60,5 + 9122: 37,-30 + 9123: 36,-30 + 9593: -11,75 + 9594: -10,75 + 9595: -9,75 + 9596: -8,75 + 9597: -7,75 + 9598: -6,75 + 9603: -11,72 + 9605: -10,72 + 9607: -9,72 + 9608: -8,72 + 9609: -7,72 + 9610: -6,72 + 9901: -52,74 + 9902: -51,74 + 9903: -50,74 + 9904: -49,74 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1383,22 +1385,6 @@ entities: 6317: -34,27 6318: -33,27 6319: -32,27 - 6844: -12,73 - 6845: -11,73 - 6846: -10,73 - 6847: -9,73 - 6848: -8,73 - 6849: -7,73 - 6850: -6,73 - 6851: -5,73 - 6858: -12,76 - 6859: -11,76 - 6860: -10,76 - 6861: -9,76 - 6862: -8,76 - 6863: -7,76 - 6864: -5,76 - 6865: -6,76 7280: 12,-32 7281: 13,-32 7285: 14,-32 @@ -1414,6 +1400,28 @@ entities: 7975: 59,3 7976: 60,3 8595: 29,21 + 9114: 35,-33 + 9115: 36,-33 + 9125: 37,-33 + 9578: -12,77 + 9579: -11,77 + 9580: -10,77 + 9581: -10,77 + 9582: -9,77 + 9583: -8,77 + 9584: -7,77 + 9585: -6,77 + 9586: -5,77 + 9599: -6,74 + 9600: -7,74 + 9601: -8,74 + 9602: -9,74 + 9604: -10,74 + 9606: -11,74 + 9905: -52,69 + 9906: -51,69 + 9907: -50,69 + 9908: -49,69 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1424,13 +1432,6 @@ entities: 2506: 8,39 4060: 66,44 4071: 66,53 - 6808: -13,72 - 6809: -13,73 - 6810: -13,74 - 6811: -13,75 - 6818: -4,74 - 6819: -4,75 - 6821: -4,72 7282: 15,-35 7283: 15,-34 7284: 15,-33 @@ -1457,6 +1458,9 @@ entities: 7942: 54,-2 7979: 58,4 8591: 28,24 + 9611: -12,71 + 9909: -53,70 + 9910: -53,73 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN @@ -1752,7 +1756,6 @@ entities: 6666: -22,-3 8358: 24,-15 8359: 25,-15 - 8360: 26,-15 8708: -38,66 8709: -38,67 8711: -38,68 @@ -1760,6 +1763,7 @@ entities: 8713: -33,67 8714: -33,68 8755: -3,19 + 8960: 33,-13 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1873,15 +1877,12 @@ entities: 7146: -35,-16 7147: -26,-16 7171: -45,-17 - 7172: -55,-18 7173: -54,-13 7188: -54,-49 7189: -48,-51 7190: -40,-51 - 7197: 3,-61 7199: 3,-63 7200: 0,-65 - 7201: 4,-60 7206: 4,-52 7207: 6,-48 7208: 10,-50 @@ -1890,32 +1891,17 @@ entities: 7211: 5,-37 7212: 4,-30 7213: -10,-32 - 7445: -61,-29 - 7446: -63,-26 - 7447: -61,-23 - 7448: -63,-22 7449: -65,-22 - 7450: -61,-27 - 7497: -61,-19 7498: -66,-20 7499: -65,-20 - 7500: -61,-31 - 8175: 3,-21 - 8176: 4,-19 - 8320: 36,1 8321: 37,-3 8322: 31,0 8646: -57,-34 - 8647: -58,-31 8648: -57,-30 8649: -59,-34 8650: -57,-35 - 8651: -61,-30 8652: -59,-35 - 8653: -59,-29 - 8654: -59,-23 8655: -59,-19 - 8656: -57,-18 8674: -48,-46 8675: -48,-44 8676: -51,-51 @@ -1932,6 +1918,47 @@ entities: 8918: 46,-4 8958: -5,-62 8959: -9,-63 + 9203: -25,54 + 9204: -23,52 + 9205: -24,55 + 9206: -26,56 + 9369: -59,-30 + 9370: -61,-27 + 9371: -59,-27 + 9372: -63,-24 + 9373: -61,-31 + 9374: -62,-22 + 9375: -61,-20 + 9376: -60,-23 + 9377: -59,-21 + 9439: 36,-49 + 9440: 35,-47 + 9441: 33,-47 + 9442: 36,-45 + 9443: 35,-44 + 9444: 39,-43 + 9446: 44,-43 + 9447: 44,-43 + 9499: 9,-55 + 9500: 5,-55 + 9501: 10,-52 + 9502: -19,-70 + 9647: 3,-61 + 9648: 3,-61 + 9787: -36,76 + 9788: -36,78 + 9789: -39,79 + 9790: -40,78 + 9791: -32,77 + 9792: -29,78 + 9793: -28,75 + 9794: -30,73 + 9795: -32,72 + 9796: -43,73 + 9797: -44,69 + 9920: -32,75 + 9921: -28,74 + 9922: -29,77 - node: cleanable: True zIndex: 1 @@ -1963,15 +1990,12 @@ entities: 6960: 40,-9 6961: 44,-15 7030: 44,-22 - 7031: 39,3 - 7032: 38,4 7033: 48,27 7034: 40,31 7035: 30,10 7036: 28,14 8099: 29,6 8129: 44,-1 - 8130: 47,-4 8168: 42,4 8169: 45,0 8401: 5,68 @@ -2052,7 +2076,6 @@ entities: 1481: 19,5 1482: 22,5 1484: 19,6 - 1489: 31,-12 1490: 30,-14 1491: 32,-16 1492: 27,-18 @@ -2066,10 +2089,7 @@ entities: 1502: 10,-24 1503: 12,-23 1504: 9,-20 - 1505: 13,-16 - 1506: 9,-16 1507: 9,-14 - 1508: 13,-17 1552: 49,19 1553: 48,20 1554: 48,19 @@ -2175,7 +2195,6 @@ entities: 4154: 10,-27 4155: 15,-23 4156: 11,-21 - 4157: 13,-16 4158: 18,-18 4159: 25,-18 4160: 26,-17 @@ -2196,7 +2215,6 @@ entities: 4175: 40,-36 4176: 42,-35 4177: 44,-35 - 4178: 47,-36 4179: 48,-34 4180: 48,-35 4181: 49,-37 @@ -2206,9 +2224,6 @@ entities: 4186: 45,-40 4187: 53,-45 4188: 53,-44 - 4189: 56,-45 - 4190: 55,-42 - 4191: 57,-40 4192: 57,-38 4193: 55,-36 4194: 57,-32 @@ -2216,7 +2231,6 @@ entities: 4196: 58,-29 4199: 52,-29 4200: 51,-26 - 4201: 52,-39 4202: 51,-37 4203: 52,-34 4204: 51,-32 @@ -2343,8 +2357,6 @@ entities: 4589: -16,68 4612: 59,-50 4613: 59,-50 - 4614: 56,-49 - 4615: 55,-48 4895: -1,-50 4896: 0,-51 4898: -10,-52 @@ -2396,7 +2408,6 @@ entities: 5245: -57,-20 5246: -56,-20 5247: -56,-20 - 5248: -55,-18 5249: -51,-20 5250: -52,-19 5251: -53,-20 @@ -2508,7 +2519,6 @@ entities: 5663: -35,72 5664: -37,72 5665: -40,72 - 5666: -45,67 5667: -44,70 5668: -45,72 5669: -42,69 @@ -2526,8 +2536,6 @@ entities: 5681: -51,62 5683: -53,61 5684: -54,61 - 5685: -54,62 - 5686: -53,62 5687: -51,61 5688: -51,59 5689: -51,56 @@ -2669,9 +2677,7 @@ entities: 6536: 44,-6 6542: 29,-4 6543: 29,-1 - 6544: 31,-9 6545: 30,-11 - 6546: 29,-9 6547: 36,-7 6548: 34,-6 6549: 34,-8 @@ -2743,7 +2749,6 @@ entities: 7149: -36,-16 7150: -36,-15 7151: -35,-15 - 7152: -36,-18 7153: -28,-17 7154: -29,-17 7155: -26,-15 @@ -2764,10 +2769,6 @@ entities: 7170: -45,-13 7174: -59,-34 7175: -59,-32 - 7176: -59,-29 - 7177: -59,-27 - 7178: -59,-25 - 7179: -59,-23 7180: -59,-20 7181: -50,-41 7182: -51,-39 @@ -2809,60 +2810,30 @@ entities: 7243: -17,-68 7244: -18,-66 7245: -16,-64 - 7430: -62,-29 - 7431: -63,-28 - 7432: -61,-27 - 7433: -62,-26 - 7434: -63,-27 - 7435: -62,-25 - 7436: -61,-25 - 7437: -62,-24 - 7438: -63,-23 - 7439: -63,-23 - 7440: -62,-22 - 7441: -62,-21 - 7442: -61,-21 7443: -65,-22 7444: -65,-28 - 7484: -61,-31 - 7485: -63,-30 7486: -65,-30 7487: -64,-30 7488: -66,-20 7489: -64,-20 - 7490: -62,-19 - 7491: -61,-19 7492: -66,-22 7493: -66,-28 7494: -66,-30 7495: -65,-29 - 7496: -63,-29 - 8170: 4,-21 8171: 2,-20 - 8172: 3,-19 - 8173: 1,-21 - 8174: 1,-19 8317: 34,-2 8318: 40,-3 8319: 38,-2 8633: 54,60 8634: 54,62 8635: 52,61 - 8636: 49,61 8637: -57,-31 - 8638: -58,-30 8639: -57,-30 8641: -57,-33 8642: -57,-33 8643: -58,-34 8644: -58,-33 8657: -59,-20 - 8658: -59,-21 - 8659: -59,-23 - 8660: -59,-25 - 8661: -59,-27 - 8662: -59,-29 - 8663: -59,-31 8664: -54,-36 8665: -54,-37 8666: -54,-39 @@ -2881,23 +2852,9 @@ entities: 8688: -62,-54 8689: -63,-53 8690: -62,-53 - 8805: 35,-33 - 8806: 35,-32 - 8807: 36,-32 - 8808: 36,-31 - 8809: 37,-32 - 8810: 37,-33 - 8811: 38,-32 - 8812: 38,-33 - 8813: 36,-32 - 8814: 36,-32 - 8815: 35,-32 - 8816: 35,-32 - 8817: 34,-31 8818: 39,-36 8819: 41,-36 8820: 43,-36 - 8821: 36,-29 8822: 32,-26 8823: 39,-19 8824: 61,-3 @@ -2916,20 +2873,14 @@ entities: 8837: 58,7 8838: 61,9 8839: 59,10 - 8840: 58,11 - 8841: 60,12 8842: 60,11 - 8843: 61,10 8844: 59,10 - 8845: 58,11 8846: 57,10 - 8847: 58,10 8848: 62,7 8849: 62,-3 8892: 47,0 8893: 48,1 8894: 50,1 - 8895: 49,0 8899: -22,-32 8900: -21,-31 8901: -26,-30 @@ -2963,6 +2914,188 @@ entities: 8955: -3,-63 8956: -3,-63 8957: -5,-62 + 9234: 56,-50 + 9237: 55,-42 + 9241: 56,-40 + 9323: -60,-31 + 9324: -62,-30 + 9325: -62,-29 + 9326: -60,-27 + 9327: -62,-27 + 9328: -63,-27 + 9329: -59,-29 + 9330: -59,-26 + 9331: -60,-24 + 9332: -62,-25 + 9333: -63,-23 + 9334: -61,-22 + 9335: -59,-23 + 9336: -62,-20 + 9337: -63,-21 + 9338: -61,-20 + 9339: -61,-19 + 9340: -59,-21 + 9341: -62,-24 + 9342: -60,-27 + 9343: -60,-27 + 9344: -62,-28 + 9345: -63,-29 + 9346: -62,-30 + 9347: -61,-30 + 9348: -61,-31 + 9349: -59,-31 + 9413: -23,-16 + 9414: -24,-16 + 9415: -25,-15 + 9416: -25,-16 + 9417: -25,-17 + 9418: -23,-15 + 9419: -23,-15 + 9420: -23,-15 + 9421: -31,-15 + 9422: -33,-14 + 9423: -32,-14 + 9424: 35,-51 + 9425: 36,-51 + 9426: 36,-53 + 9427: 34,-53 + 9428: 33,-55 + 9429: 33,-56 + 9430: 34,-54 + 9431: 33,-53 + 9432: 33,-52 + 9433: 33,-51 + 9434: 33,-50 + 9435: 36,-49 + 9436: 35,-48 + 9437: 36,-47 + 9438: 35,-49 + 9448: 43,-43 + 9449: 42,-42 + 9450: 40,-42 + 9451: 38,-43 + 9452: 36,-43 + 9453: 35,-42 + 9454: 37,-42 + 9455: 37,-43 + 9456: 36,-43 + 9457: 33,-43 + 9485: 8,-57 + 9487: 6,-55 + 9488: 10,-52 + 9489: 10,-54 + 9490: 10,-55 + 9491: 13,-57 + 9492: 12,-57 + 9493: 13,-56 + 9494: 13,-57 + 9495: 13,-57 + 9496: 8,-57 + 9497: 6,-58 + 9498: 5,-57 + 9503: -20,-70 + 9504: -19,-69 + 9505: -20,-68 + 9506: -19,-68 + 9507: -19,-67 + 9508: -22,-68 + 9509: -20,-67 + 9510: -19,-67 + 9511: -21,-68 + 9520: -18,-65 + 9521: -17,-70 + 9522: -17,-71 + 9552: 37,0 + 9553: 35,0 + 9554: 34,1 + 9555: 34,3 + 9556: 36,4 + 9557: 37,3 + 9558: 37,2 + 9559: 39,4 + 9560: 40,2 + 9733: -32,77 + 9734: -32,77 + 9735: -32,78 + 9736: -31,78 + 9737: -29,79 + 9738: -28,79 + 9739: -28,78 + 9740: -27,77 + 9741: -29,77 + 9742: -28,75 + 9743: -29,75 + 9744: -30,75 + 9745: -28,77 + 9746: -28,76 + 9747: -27,78 + 9748: -28,78 + 9749: -29,79 + 9750: -30,78 + 9751: -28,79 + 9752: -27,79 + 9753: -30,73 + 9754: -32,74 + 9755: -33,73 + 9756: -34,73 + 9757: -35,73 + 9758: -38,74 + 9760: -36,76 + 9761: -38,76 + 9762: -39,77 + 9763: -38,77 + 9764: -37,77 + 9875: -40,76 + 9876: -37,76 + 9877: -37,77 + 9878: -37,77 + 9879: -38,77 + 9880: -39,77 + 9881: -39,78 + 9882: -39,79 + 9883: -38,79 + 9884: -38,78 + 9885: -37,78 + 9886: -37,79 + 9887: -36,78 + 9888: -39,74 + 9889: -40,74 + 9890: -36,73 + 9891: -35,74 + 9892: -37,74 + 9893: -38,74 + 9894: -38,74 + 9895: -38,74 + 9896: -38,74 + 9913: -28,73 + 9914: -28,74 + 9915: -29,73 + 9916: -29,74 + 9917: -30,74 + 9918: -28,75 + 9919: -30,75 + 9923: -30,77 + 9924: -28,77 + 9925: -28,76 + 9926: -28,75 + 9927: -29,75 + 9928: -30,74 + 9929: -30,74 + 9930: -30,73 + 9931: -31,72 + 9932: -32,72 + 9933: -34,72 + 9934: -39,73 + 9935: -43,72 + 9936: -44,72 + 9937: -43,69 + 9938: -43,68 + 9939: -44,69 + 9940: -44,68 + 9941: -43,67 + 9942: -43,67 + 9943: -43,68 + 9944: -46,68 - node: cleanable: True zIndex: 1 @@ -3020,19 +3153,10 @@ entities: 8107: 31,5 8111: 29,2 8112: 29,6 - 8113: 34,4 - 8114: 35,4 - 8115: 37,4 - 8116: 40,4 - 8117: 40,2 - 8118: 40,1 - 8119: 39,0 - 8120: 39,0 8121: 45,-2 8122: 45,-1 8123: 43,-2 8124: 47,-2 - 8125: 48,-1 8126: 44,-1 8127: 43,1 8128: 42,2 @@ -3204,7 +3328,6 @@ entities: 3047: -45,52 3049: -47,55 3050: -43,58 - 3051: -46,59 3052: -45,61 3053: -49,62 3054: -42,62 @@ -3392,11 +3515,9 @@ entities: 3261: 43,62 3262: 44,59 3263: 45,58 - 3264: 46,59 3265: 45,60 3266: 45,59 3267: 43,55 - 3268: 46,56 3269: 38,56 3270: 35,53 3271: 36,51 @@ -3414,7 +3535,6 @@ entities: 3283: 40,49 3284: 40,47 3286: 32,46 - 3287: 31,45 3288: 29,46 3289: 35,50 3290: 31,49 @@ -3438,7 +3558,6 @@ entities: 3310: 28,55 3311: 30,57 3312: 27,59 - 3313: 47,56 3314: 51,55 3315: 50,54 3316: 51,50 @@ -3535,8 +3654,6 @@ entities: 3411: 47,10 3412: 43,7 3426: 10,0 - 3430: 13,-16 - 3432: 11,-16 3433: 9,-21 3434: 10,-22 3435: 11,-23 @@ -3547,7 +3664,6 @@ entities: 3443: 26,-17 3444: 26,-22 3445: 27,-23 - 3446: 29,-23 3447: 32,-22 3448: 32,-23 3449: 34,-19 @@ -3594,11 +3710,6 @@ entities: 3503: 60,-30 3504: 56,-36 3505: 57,-36 - 3506: 57,-41 - 3507: 55,-42 - 3508: 56,-43 - 3509: 56,-47 - 3510: 55,-45 3511: 50,-44 3512: 50,-43 3513: 50,-44 @@ -3616,13 +3727,9 @@ entities: 3527: 50,-41 3528: 49,-36 3529: 46,-37 - 3530: 45,-36 3531: 47,-35 - 3532: 47,-36 3533: 48,-36 3534: 48,-36 - 3535: 47,-36 - 3536: 47,-37 3537: 49,-34 3538: 49,-33 3539: 48,-33 @@ -3982,8 +4089,6 @@ entities: 4592: -19,71 4593: -19,72 4594: -19,72 - 4607: 56,-50 - 4608: 55,-49 4609: 58,-49 4610: 58,-50 5149: -56,-40 @@ -3995,13 +4100,6 @@ entities: 5155: -58,-36 5156: -59,-34 5157: -59,-32 - 5158: -59,-29 - 5159: -59,-27 - 5160: -59,-25 - 5161: -59,-23 - 5162: -59,-21 - 5163: -59,-18 - 5164: -58,-17 5165: -55,-17 5166: -54,-17 5167: -53,-17 @@ -4045,24 +4143,6 @@ entities: 7078: -29,-59 7079: -28,-60 7080: -29,-57 - 7191: 3,-61 - 7192: 3,-61 - 7193: 4,-60 - 7194: 4,-60 - 7451: -62,-28 - 7452: -62,-29 - 7453: -61,-29 - 7454: -62,-27 - 7455: -63,-27 - 7456: -63,-27 - 7457: -63,-26 - 7458: -62,-25 - 7459: -62,-24 - 7460: -61,-23 - 7461: -62,-23 - 7462: -63,-22 - 7463: -61,-21 - 7464: -62,-21 7695: 1,-38 7696: -2,-36 7697: 2,-33 @@ -4170,25 +4250,10 @@ entities: 7130: 1,-66 7131: -3,-69 7132: -5,-69 - 7465: -62,-28 - 7466: -62,-26 7467: -65,-28 - 7468: -61,-24 - 7469: -62,-26 - 7470: -61,-26 - 7471: -61,-23 - 7472: -61,-23 - 7473: -62,-25 - 7474: -62,-31 - 7475: -61,-31 7476: -65,-30 7477: -65,-28 7478: -65,-20 - 7479: -63,-20 - 7480: -62,-19 - 7481: -61,-20 - 7482: -61,-19 - 7483: -62,-20 7681: 0,-39 7682: 1,-40 7683: -1,-37 @@ -4205,18 +4270,13 @@ entities: 7694: -6,-38 8614: 58,61 8615: 58,60 - 8616: 54,63 8617: 52,62 8618: 49,62 - 8619: 48,61 8620: 50,63 - 8621: 52,64 8622: 48,63 8623: 49,62 8624: 58,64 8625: 49,59 - 8626: 50,57 - 8627: 48,55 8628: 56,62 8629: 56,62 8630: 56,62 @@ -4243,6 +4303,158 @@ entities: 8949: 49,1 8950: 49,1 8951: 49,1 + 9155: -14,-42 + 9156: -18,-39 + 9157: -14,-29 + 9158: -16,-25 + 9159: -17,-21 + 9160: -17,-26 + 9161: -6,-27 + 9162: 3,-28 + 9163: 6,-27 + 9164: 10,-27 + 9165: 17,-28 + 9166: 21,-27 + 9167: 31,-28 + 9168: 31,-23 + 9169: 26,-16 + 9170: 25,-18 + 9171: 11,-17 + 9172: 9,-16 + 9173: 10,-15 + 9174: 8,-15 + 9175: 32,-16 + 9176: 31,-15 + 9177: 30,-15 + 9178: 31,-12 + 9179: 29,-9 + 9180: 30,-8 + 9181: 29,-4 + 9182: 30,-2 + 9183: 13,-13 + 9184: 15,-13 + 9185: 17,-13 + 9186: 19,-13 + 9187: 18,-10 + 9188: 15,-9 + 9189: 49,0 + 9190: 48,1 + 9191: 47,1 + 9192: 46,0 + 9193: 46,0 + 9194: 46,0 + 9195: 46,0 + 9196: 53,1 + 9197: 61,11 + 9198: 62,11 + 9199: 57,12 + 9200: 62,5 + 9201: 57,6 + 9202: 48,3 + 9243: 54,-43 + 9246: 57,-49 + 9247: 57,-49 + 9350: -60,-31 + 9351: -63,-30 + 9352: -62,-31 + 9353: -61,-27 + 9354: -60,-26 + 9355: -59,-27 + 9356: -59,-25 + 9357: -59,-23 + 9358: -61,-23 + 9359: -63,-23 + 9360: -61,-23 + 9361: -63,-20 + 9362: -59,-21 + 9363: -62,-26 + 9364: -63,-27 + 9365: -61,-27 + 9366: -60,-25 + 9367: -60,-25 + 9368: -60,-27 + 9458: 33,-54 + 9459: 33,-53 + 9460: 33,-52 + 9461: 34,-51 + 9462: 34,-51 + 9463: 33,-56 + 9464: 31,-57 + 9465: 30,-57 + 9466: 31,-53 + 9467: 33,-48 + 9468: 33,-47 + 9469: 33,-46 + 9470: 36,-44 + 9471: 35,-43 + 9472: 33,-43 + 9473: 33,-44 + 9474: 34,-43 + 9475: 35,-42 + 9476: 37,-42 + 9477: 38,-42 + 9478: 40,-42 + 9479: 41,-42 + 9480: 42,-42 + 9481: 43,-43 + 9482: 42,-43 + 9483: 41,-43 + 9484: 44,-42 + 9512: -23,-68 + 9513: -20,-70 + 9514: -19,-70 + 9515: -19,-70 + 9516: -20,-65 + 9517: -20,-65 + 9518: -18,-65 + 9519: -18,-65 + 9561: 33,0 + 9562: 33,1 + 9563: 33,2 + 9564: 35,3 + 9565: 37,3 + 9566: 38,2 + 9567: 37,1 + 9568: 33,4 + 9569: 40,2 + 9570: 39,2 + 9571: 39,1 + 9572: 39,1 + 9573: 40,4 + 9574: 39,-1 + 9575: 39,-2 + 9576: 39,-1 + 9577: 39,-1 + 9617: 5,-60 + 9618: 5,-60 + 9619: 5,-60 + 9620: 5,-60 + 9621: 5,-60 + 9798: -53,68 + 9799: -55,70 + 9800: -54,71 + 9801: -54,74 + 9802: -51,75 + 9803: -50,76 + 9804: -47,74 + 9805: -46,72 + 9806: -47,70 + 9807: -47,70 + 9808: -47,68 + 9809: -50,68 + 9810: -49,67 + 9811: -51,67 + 9812: -52,68 + 9864: -33,74 + 9865: -32,73 + 9866: -31,74 + 9867: -31,74 + 9868: -31,74 + 9869: -31,74 + 9870: -31,74 + 9871: -31,75 + 9872: -31,75 + 9873: -32,75 - node: cleanable: True zIndex: 1 @@ -4316,6 +4528,18 @@ entities: 8561: 30.483143,22.477749 8562: 29.489317,22.508635 8563: 29.612774,23.37652 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 9622: 5,-60 + 9623: 5,-60 + 9624: 6,-62 + 9625: 6,-62 + 9626: 6,-62 + 9627: 6,-62 - node: cleanable: True color: '#FFFFFFFF' @@ -4357,29 +4581,76 @@ entities: 7128: -5,-69 7129: 0,-66 7196: 4,-61 - 8323: 40,0 8324: 40,-1 8325: 38,-3 8326: 34,-2 8327: 40,-2 8328: 40,-1 - 8329: 39,-2 8330: 36,-3 - 8331: 40,3 - 8332: 39,2 - 8333: 36,1 - 8334: 35,1 - 8335: 34,2 - 8336: 35,3 - 8337: 35,3 - 8338: 34,3 - 8339: 35,4 - 8340: 37,3 - 8341: 36,2 - 8342: 34,0 - 8343: 33,1 - 8344: 34,2 - 8345: 35,3 + 9378: -59,-24 + 9379: -63,-29 + 9381: -63,-28 + 9382: -61,-26 + 9383: -61,-25 + 9384: -60,-30 + 9385: -62,-23 + 9386: -63,-22 + 9387: -60,-23 + 9388: -63,-22 + 9389: -62,-21 + 9390: -62,-21 + 9391: -62,-21 + 9813: -50,67 + 9814: -46,68 + 9815: -46,70 + 9816: -47,71 + 9817: -54,72 + 9818: -55,73 + 9819: -51,75 + 9820: -50,76 + 9821: -49,76 + 9822: -49,75 + 9823: -52,64 + 9824: -52,65 + 9825: -51,65 + 9826: -51,63 + 9827: -51,61 + 9828: -51,59 + 9829: -52,59 + 9830: -52,60 + 9831: -52,57 + 9832: -52,55 + 9833: -52,55 + 9834: -53,54 + 9835: -52,51 + 9836: -52,49 + 9837: -54,51 + 9838: -50,52 + 9839: -49,52 + 9840: -49,50 + 9841: -49,50 + 9842: -42,68 + 9843: -42,69 + 9844: -42,71 + 9845: -43,71 + 9846: -41,73 + 9847: -40,73 + 9848: -38,74 + 9849: -37,73 + 9850: -43,73 + 9851: -44,72 + 9852: -34,74 + 9853: -33,74 + 9854: -31,73 + 9855: -30,72 + 9856: -31,72 + 9857: -33,72 + 9858: -34,72 + 9859: -32,77 + 9860: -31,78 + 9861: -31,78 + 9862: -29,75 + 9863: -29,75 - node: cleanable: True zIndex: 1 @@ -4415,6 +4686,11 @@ entities: id: FlowersBRThree decals: 7264: 26.104586,-35.788994 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 9634: 3.844667,-59.998734 - node: cleanable: True color: '#8600003C' @@ -4432,6 +4708,11 @@ entities: id: Flowerspv1 decals: 7266: 29.790075,-31.994879 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 9635: 4.798371,-61.027225 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -4448,6 +4729,7 @@ entities: decals: 7258: 26.24314,-34.01442 7259: 28.224497,-32.072487 + 9633: 6.0730624,-60.884834 - node: cleanable: True color: '#8600003C' @@ -4618,6 +4900,9 @@ entities: 1154: 49,-23 1335: 48,-21 5765: 33,-5 + 9129: 48,-31 + 9130: 49,-31 + 9289: 54,-40 - node: color: '#D381C996' id: FullTileOverlayGreyscale @@ -4635,6 +4920,8 @@ entities: 3943: -19,-21 3944: -19,-20 5762: 36,-5 + 9153: 47,60 + 9154: 48,60 - node: zIndex: 1 color: '#D381C996' @@ -4708,6 +4995,10 @@ entities: 8860: 49,48 8861: 49,46 8862: 48,46 + 9056: 29,-8 + 9057: 29,-7 + 9058: 32,-16 + 9059: 33,-16 - node: cleanable: True color: '#5CCD74FF' @@ -4744,6 +5035,12 @@ entities: 2154: -1.157942,30.175095 7267: 16.652384,-34.100002 7269: 11.344307,-31.211573 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassc3 + decals: + 9641: 5.033425,-62.563927 - node: color: '#FFFFFFFF' id: Grassd1 @@ -4771,6 +5068,7 @@ entities: 7524: -6.217932,-59.185604 7675: -3.5938263,-56.260292 7680: -1.5469481,-58.996563 + 9638: 5.0452843,-61.87877 - node: color: '#FFFFFFFF' id: Grassd2 @@ -4802,6 +5100,7 @@ entities: 7536: -6.9667845,-59.92288 7537: -7.3973403,-55.888157 7676: -1.5469494,-57.83951 + 9639: 5.616272,-62.734875 - node: color: '#FFFFFFFF' id: Grassd3 @@ -4815,6 +5114,12 @@ entities: 6346: -12.371423,21.042667 7526: -6.3637667,-55.222935 7535: -5.6820626,-58.1451 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassd3 + decals: + 9642: 5.450092,-61.303795 - node: color: '#FFFFFFFF' id: Grasse1 @@ -4849,6 +5154,7 @@ entities: 6342: -11.392975,19.721764 7529: -8.943234,-55.069675 7679: -2.2657008,-56.79191 + 9640: 5.962713,-59.932472 - node: color: '#FFFFFFFF' id: Grasse3 @@ -4865,6 +5171,13 @@ entities: 4017: 70.72331,43.30718 7528: -6.4679327,-56.7646 7678: -3.7188244,-58.042778 + - node: + color: '#32CD3293' + id: HalfTileOverlayGreyscale + decals: + 9656: -46,59 + 9657: -44,59 + 9661: -45,63 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -4972,19 +5285,12 @@ entities: id: HalfTileOverlayGreyscale decals: 1534: 45,21 - - node: - color: '#8D1C9996' - id: HalfTileOverlayGreyscale - decals: - 1204: 57,-40 - 1205: 55,-40 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: 2454: -12,66 2873: 57,45 - 2874: 56,45 2875: 55,45 2876: 54,45 2877: 53,45 @@ -5013,6 +5319,13 @@ entities: 4240: 40,57 7501: 76,50 8368: 66,50 + - node: + color: '#A020F093' + id: HalfTileOverlayGreyscale + decals: + 9662: -43,59 + 9663: -41,59 + 9666: -42,63 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -5022,8 +5335,6 @@ entities: 1133: 52,-25 1134: 53,-25 1170: 54,-11 - 1191: 58,-40 - 1203: 56,-40 1321: 76,-31 1322: 77,-31 1323: 78,-31 @@ -5049,6 +5360,9 @@ entities: 6261: 61,-19 6262: 62,-19 6275: 62,-24 + 9285: 59,-40 + 9286: 58,-40 + 9287: 57,-40 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -5091,6 +5405,8 @@ entities: 3939: -22,-20 3940: -21,-20 3941: -20,-20 + 9146: 49,56 + 9147: 47,56 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale @@ -5124,13 +5440,14 @@ entities: 5873: 5,45 5929: 44,56 5930: 45,56 - 5931: 46,56 - 5932: 47,56 5935: -23,29 5936: -24,29 5937: -25,29 6328: -12,2 6329: -13,2 + 9400: -61,-30 + 9403: -61,-22 + 9404: -60,-22 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale @@ -5166,12 +5483,6 @@ entities: 2283: -31,60 2284: -32,60 2285: -33,60 - 2358: -49,59 - 2359: -47,59 - 2360: -46,59 - 2361: -44,59 - 2362: -43,59 - 2363: -41,59 2778: 22,59 4220: -31,31 5363: -43,53 @@ -5227,7 +5538,6 @@ entities: 776: 11,-20 777: 12,-20 778: 13,-20 - 801: 27,-16 858: 26,-21 1364: 32,-14 1393: -24,-3 @@ -5239,7 +5549,6 @@ entities: 2790: 48,45 2791: 47,45 2792: 46,45 - 2793: 45,45 2794: 44,45 2795: 43,45 2796: 39,43 @@ -5249,8 +5558,6 @@ entities: 2802: 34,43 2804: 29,43 2805: 30,43 - 2806: 31,43 - 2807: 32,43 2808: 33,43 2811: 34,47 4724: 35,43 @@ -5274,7 +5581,6 @@ entities: 6622: 17,-16 6623: 18,-16 6629: 27,-26 - 7844: 48,-1 7863: 53,2 7865: 57,0 7866: 56,0 @@ -5285,6 +5591,16 @@ entities: 8346: 38,-2 8802: 2,20 8803: 3,20 + 8991: 48,1 + 8993: 46,0 + 9006: 26,-15 + 9024: 8,-14 + 9025: 9,-14 + 9030: 11,-15 + 9044: 2,-19 + 9045: 3,-19 + 9046: 4,-19 + 9069: 29,-9 - node: zIndex: 1 color: '#EFB34196' @@ -5304,6 +5620,13 @@ entities: 190: -28,-42 191: -27,-42 204: -31,-42 + - node: + color: '#FFA50093' + id: HalfTileOverlayGreyscale + decals: + 9652: -48,63 + 9654: -49,59 + 9655: -47,59 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -5333,6 +5656,7 @@ entities: decals: 8008: 17,-14 8009: 18,-14 + 9007: 15,-13 - node: color: '#43990996' id: HalfTileOverlayGreyscale180 @@ -5423,7 +5747,6 @@ entities: decals: 1108: 55,-38 1113: 58,-33 - 1216: 58,-41 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -5461,7 +5784,6 @@ entities: 1159: 53,-22 1179: 56,-25 1180: 57,-25 - 1202: 57,-41 1315: 76,-33 1316: 77,-33 1317: 78,-33 @@ -5579,6 +5901,11 @@ entities: 6333: -13,1 6334: -12,1 6335: -11,1 + 9281: 59,-41 + 9282: 58,-41 + 9283: 57,-41 + 9401: -60,-28 + 9402: -61,-28 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale180 @@ -5642,13 +5969,6 @@ entities: 708: 32,-24 709: 31,-24 710: 30,-24 - 711: 29,-24 - 729: 38,-29 - 730: 37,-29 - 731: 36,-29 - 732: 35,-29 - 733: 34,-29 - 734: 33,-29 735: 31,-29 736: 30,-29 737: 29,-29 @@ -5664,9 +5984,6 @@ entities: 754: 17,-29 755: 19,-29 756: 18,-29 - 769: 12,-16 - 770: 13,-16 - 771: 14,-16 783: 10,-24 784: 9,-24 785: 11,-24 @@ -5681,14 +5998,10 @@ entities: 817: 24,-18 859: 26,-24 1362: 30,-17 - 1363: 31,-17 1391: -23,-8 1392: -22,-8 2401: -48,24 - 2784: 45,47 2785: 44,47 - 2809: 32,45 - 2810: 31,45 6038: 30,45 6040: 33,45 6041: 34,45 @@ -5711,6 +6024,14 @@ entities: 8907: 55,-6 8908: 56,-6 8909: 57,-6 + 9027: 9,-17 + 9028: 10,-17 + 9048: 2,-21 + 9051: 3,-21 + 9052: 4,-21 + 9068: 29,-11 + 9104: 33,-29 + 9127: 34,-29 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -5721,6 +6042,12 @@ entities: 6050: -33,-45 8386: -29,-45 8387: -28,-45 + - node: + color: '#32CD3293' + id: HalfTileOverlayGreyscale270 + decals: + 9658: -46,61 + 9659: -46,62 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -5819,11 +6146,7 @@ entities: decals: 1104: 56,-31 1106: 55,-34 - 1209: 55,-46 - 1210: 55,-44 - 1211: 55,-42 1349: 56,-29 - 4599: 55,-48 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -5833,23 +6156,24 @@ entities: 2458: -13,61 2459: -13,65 2872: 53,48 + - node: + color: '#A020F093' + id: HalfTileOverlayGreyscale270 + decals: + 9664: -43,61 + 9665: -43,62 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 1118: 55,-33 1119: 56,-30 1120: 55,-35 1142: 49,-26 1143: 49,-25 1174: 46,-19 - 1192: 55,-43 - 1193: 55,-45 - 1194: 55,-47 1333: 46,-20 1339: 46,-17 1340: 46,-15 - 4603: 55,-49 5295: 50,-13 5308: 49,-17 5322: 52,-18 @@ -5892,6 +6216,10 @@ entities: 4506: -27,-31 4728: -18,-24 6090: -27,-30 + 9148: 50,57 + 9149: 50,58 + 9151: 50,59 + 9152: 47,59 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale270 @@ -5917,9 +6245,6 @@ entities: 5881: 18,28 5882: 18,29 5883: 18,30 - 5925: 48,57 - 5926: 48,58 - 5927: 48,59 5961: 33,-7 5962: 33,-6 6432: -17,-16 @@ -5929,10 +6254,22 @@ entities: 6436: -17,-12 6437: -17,-11 7413: -14,-1 - 7420: -63,-27 - 7421: -63,-26 - 7422: -63,-25 - 7424: -63,-23 + 9266: 55,-50 + 9267: 55,-49 + 9268: 55,-48 + 9269: 55,-47 + 9270: 55,-46 + 9271: 55,-45 + 9272: 55,-44 + 9273: 55,-42 + 9405: -63,-27 + 9406: -63,-26 + 9407: -63,-25 + 9408: -63,-23 + 9409: -63,-22 + 9410: -63,-20 + 9411: -63,-30 + 9412: -63,-28 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale270 @@ -5963,7 +6300,6 @@ entities: 2327: -18,36 2328: -18,37 2329: -19,39 - 2330: -19,40 2331: -18,42 2332: -18,43 2333: -18,44 @@ -5996,8 +6332,6 @@ entities: 743: 20,-32 744: 20,-33 757: 20,-30 - 767: 11,-15 - 768: 11,-14 779: 8,-20 780: 8,-21 781: 8,-22 @@ -6042,9 +6376,6 @@ entities: 7952: 57,4 7953: 57,5 7954: 57,6 - 8223: 39,-1 - 8224: 39,0 - 8236: 39,2 8781: 1,19 8782: 1,17 8783: 1,18 @@ -6052,12 +6383,21 @@ entities: 8785: 1,14 8786: 1,13 8787: 1,12 + 8994: 29,-22 + 8995: 29,-23 + 9055: 1,-20 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 decals: 182: -36,-44 183: -36,-43 + - node: + color: '#FFA50093' + id: HalfTileOverlayGreyscale270 + decals: + 9649: -49,61 + 9650: -49,62 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -6160,10 +6500,6 @@ entities: 1110: 61,-30 1114: 57,-34 1115: 57,-36 - 1212: 56,-43 - 1213: 56,-45 - 1214: 56,-47 - 4601: 56,-49 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -6186,6 +6522,9 @@ entities: 7570: -58,31 8369: 72,48 8370: 72,49 + 9101: 38,-31 + 9102: 38,-32 + 9103: 38,-33 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -6196,13 +6535,9 @@ entities: 1136: 54,-27 1137: 54,-28 1138: 54,-29 - 1195: 56,-46 - 1196: 56,-44 - 1197: 56,-42 1341: 63,-16 1342: 63,-15 1343: 63,-14 - 4602: 56,-48 5313: 48,-18 5314: 48,-17 5315: 48,-16 @@ -6317,10 +6652,21 @@ entities: 6442: -15,-12 6443: -15,-11 7415: -13,-1 - 7425: -61,-27 - 7426: -61,-26 - 7427: -61,-25 - 7428: -61,-24 + 9274: 56,-48 + 9275: 56,-47 + 9276: 56,-46 + 9277: 56,-45 + 9278: 56,-44 + 9279: 56,-43 + 9280: 56,-42 + 9392: -59,-21 + 9393: -59,-22 + 9394: -59,-23 + 9395: -59,-24 + 9396: -59,-25 + 9397: -59,-26 + 9398: -59,-29 + 9399: -59,-31 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale90 @@ -6350,7 +6696,6 @@ entities: 2293: -34,48 2309: -33,37 2321: -21,39 - 2322: -21,40 2781: 23,57 2782: 23,58 4217: -33,32 @@ -6421,9 +6766,13 @@ entities: 7947: 55,4 7948: 55,5 7949: 55,6 - 8230: 40,0 - 8234: 40,2 - 8235: 40,3 + 9039: 11,-16 + 9061: 31,-16 + 9062: 31,-9 + 9063: 31,-10 + 9065: 31,-13 + 9067: 31,-7 + 9070: 31,-12 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -6706,6 +7055,7 @@ entities: 130: -28,-22 635: -7,-27 5605: -32,-38 + 9144: 50,56 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale @@ -6713,7 +7063,6 @@ entities: 1883: -18,11 5851: -4,45 5852: -11,45 - 5933: 48,56 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -6776,14 +7125,12 @@ entities: 6485: -28,-4 6486: -28,-3 7830: 42,-8 - 7846: 49,-1 7847: 44,0 7917: 57,-4 7923: 56,-2 7924: 55,-4 7926: 57,-2 7934: 55,-3 - 8225: 39,-2 8232: 33,-2 8233: 34,-2 8882: 58,7 @@ -6792,6 +7139,7 @@ entities: 8885: 61,7 8886: 62,-3 8887: 61,-2 + 8989: 47,0 - node: zIndex: 1 color: '#EFB34196' @@ -6945,7 +7293,6 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 1111: 60,-31 - 1215: 56,-41 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 @@ -6991,6 +7338,7 @@ entities: 5959: 34,-8 5960: 36,-7 6336: -15,1 + 9284: 56,-41 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -7036,13 +7384,7 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 759: 23,-29 - 1367: 31,-11 - 1368: 31,-12 - 1369: 31,-13 1389: -21,-7 - 5768: 31,-10 - 5769: 31,-9 - 5770: 31,-7 7840: 43,-2 7914: 54,-1 7918: 56,-1 @@ -7064,6 +7406,7 @@ entities: 8799: 13,12 8888: 60,-1 8889: 61,-2 + 9106: 38,-29 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale180 @@ -7088,6 +7431,11 @@ entities: 6468: -12,27 6469: -11,27 6470: -10,27 + - node: + color: '#3EB38896' + id: QuarterTileOverlayGreyscale270 + decals: + 9008: 16,-13 - node: color: '#52B4E956' id: QuarterTileOverlayGreyscale270 @@ -7149,7 +7497,6 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 1201: 55,-41 6253: 56,-22 - node: color: '#D381C996' @@ -7270,16 +7617,12 @@ entities: 2620: 17,60 2621: 17,61 2824: 50,55 - 5774: 29,-11 - 5775: 29,-10 - 5776: 29,-9 - 5777: 29,-8 - 5778: 29,-7 6620: 19,-18 7838: 42,3 7845: 49,-2 7931: 57,-1 8891: 62,-1 + 9128: 35,-29 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -7483,6 +7826,9 @@ entities: 7932: 54,-4 8238: 10,-20 8890: 60,-3 + 9009: 27,-16 + 9042: 10,-15 + 9066: 31,-14 - node: color: '#FFFFFFFF' id: Rock01 @@ -7562,6 +7908,11 @@ entities: id: SpaceStationSign7 decals: 1867: -19,9 + - node: + color: '#32CD3293' + id: ThreeQuarterTileOverlayGreyscale + decals: + 9660: -46,63 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale @@ -7613,6 +7964,11 @@ entities: 2869: 53,49 2870: 54,50 2920: 67,52 + - node: + color: '#A020F093' + id: ThreeQuarterTileOverlayGreyscale + decals: + 9667: -43,63 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale @@ -7620,7 +7976,6 @@ entities: 1129: 54,-36 1130: 49,-24 1168: 53,-11 - 1200: 54,-40 1347: 56,-28 5291: 46,-14 5292: 50,-12 @@ -7639,7 +7994,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 7409: -14,0 - 7419: -63,-22 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale @@ -7672,11 +8026,18 @@ entities: 7860: 52,2 8042: 53,-3 8801: 1,20 + 8990: 47,1 + 9053: 1,-19 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale decals: 200: -36,-42 + - node: + color: '#FFA50093' + id: ThreeQuarterTileOverlayGreyscale + decals: + 9653: -49,63 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale180 @@ -7722,8 +8083,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 1124: 61,-31 - 1198: 59,-41 - 4604: 56,-50 5331: 51,-18 5335: 58,-17 6239: 58,-25 @@ -7771,6 +8130,8 @@ entities: 2830: 48,47 6039: 35,45 8231: 40,-3 + 9040: 11,-17 + 9060: 31,-17 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale180 @@ -7809,12 +8170,6 @@ entities: decals: 609: 6,-53 1538: 43,16 - - node: - color: '#8D1C9996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1206: 54,-41 - 4600: 55,-50 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -7830,18 +8185,19 @@ entities: 5332: 49,-18 5340: 49,-22 5500: 54,-17 + 9292: 54,-38 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: 118: -39,-36 4517: -27,-32 + 9131: 47,58 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale270 decals: 7417: -14,-2 - 7418: -63,-28 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 @@ -7860,7 +8216,6 @@ entities: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 766: 11,-16 773: 8,-24 792: 16,-18 793: 25,-19 @@ -7872,6 +8227,8 @@ entities: 8041: 52,0 8800: 1,11 8910: 53,-6 + 8996: 29,-24 + 9054: 1,-21 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 @@ -7920,11 +8277,6 @@ entities: 610: 8,-51 1540: 47,17 1541: 46,21 - - node: - color: '#8D1C9996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1208: 59,-40 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 @@ -7979,6 +8331,8 @@ entities: 1387: -20,-3 2829: 48,53 7864: 55,2 + 8992: 50,1 + 9041: 10,-14 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale90 @@ -8051,7 +8405,7 @@ entities: 2697: 12,84 2698: 25,84 2699: 26,82 - 8185: 35,3 + 9540: 35,3 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -8061,7 +8415,7 @@ entities: 2700: 10,82 2701: 11,84 2742: 24,84 - 8184: 33,3 + 9541: 33,3 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8084,7 +8438,7 @@ entities: 2693: 12,72 2694: 25,72 2695: 26,77 - 8177: 35,1 + 9539: 35,1 - node: zIndex: 1 color: '#EFB341FF' @@ -8100,20 +8454,22 @@ entities: 2691: 24,72 2692: 11,72 2696: 10,77 - 8183: 33,1 + 9542: 33,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: 886: 13,-22 - 902: 10,-17 2746: 25,82 + 9546: 33,0 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 885: 18,-22 2743: 11,82 + 9547: 35,0 + 9548: 36,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -8124,13 +8480,21 @@ entities: 602: -16,-46 1260: 57,-37 2745: 25,77 + 9551: 33,4 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 905: 9,-15 1253: 57,-25 2744: 11,77 + 9549: 36,3 + 9550: 35,4 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 9034: 9,-15 - node: color: '#439909FF' id: WarnEndE @@ -8200,9 +8564,6 @@ entities: 877: 23,-21 878: 13,-21 879: 13,-20 - 895: 10,-16 - 896: 10,-15 - 897: 10,-14 1259: 57,-38 2069: -15,5 2070: -15,6 @@ -8243,7 +8604,6 @@ entities: 4606: 59,-49 4616: 59,-50 5598: -35,62 - 8195: 35,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8252,6 +8612,9 @@ entities: 8718: -38,66 8719: -38,67 8720: -38,68 + 9036: 11,-17 + 9037: 11,-16 + 9038: 11,-15 - node: color: '#FFFFFFFF' id: WarnLineN @@ -8278,7 +8641,6 @@ entities: 215: -45,-34 576: -4,-44 577: 0,-44 - 906: 8,-15 973: -1,-14 1244: 59,-15 1252: 56,-25 @@ -8297,7 +8659,6 @@ entities: 5522: -29,66 5523: -28,66 5524: -27,66 - 8192: 34,1 8297: 13,-12 8298: 14,-12 8299: 15,-12 @@ -8312,6 +8673,17 @@ entities: 8735: 61,9 8736: 62,9 8737: 57,9 + 9000: 12,-12 + 9001: 11,-12 + 9002: 10,-12 + 9003: 9,-12 + 9545: 34,4 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineN + decals: + 9035: 8,-15 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8339,8 +8711,6 @@ entities: 872: 20,-22 873: 20,-21 884: 18,-21 - 903: 9,-17 - 904: 9,-16 1431: -37,-11 1715: 36,17 2060: -13,5 @@ -8382,7 +8752,7 @@ entities: 2944: 57,54 2945: 57,55 5597: -36,62 - 8193: 33,2 + 9543: 36,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8394,6 +8764,8 @@ entities: 8715: -33,66 8716: -33,67 8717: -33,68 + 9032: 9,-17 + 9033: 9,-16 - node: color: '#FFFFFFFF' id: WarnLineW @@ -8417,10 +8789,6 @@ entities: 881: 16,-22 882: 15,-22 883: 17,-22 - 898: 11,-17 - 899: 12,-17 - 900: 13,-17 - 901: 14,-17 974: -1,-14 1249: 59,-15 1417: -32,-10 @@ -8432,7 +8800,6 @@ entities: 2223: -30,49 2375: -37,62 2378: -34,62 - 8194: 34,3 8305: 14,4 8306: 15,4 8307: 16,4 @@ -8440,6 +8807,7 @@ entities: 8309: 18,4 8310: 19,4 8311: 20,4 + 9544: 34,0 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -8484,37 +8852,11 @@ entities: id: WoodTrimThinInnerNe decals: 7551: -22,-55 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 6915: -13,73 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: 6726: -24,0 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 6914: -4,73 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 6910: -13,73 - 6911: -13,76 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 6912: -4,76 - 6913: -4,73 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -8530,15 +8872,6 @@ entities: 5759: -42,32 6727: -24,0 7540: -20,-56 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 6906: -13,71 - 6907: -13,72 - 6908: -13,74 - 6909: -13,75 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -8564,27 +8897,6 @@ entities: 8376: 13,51 8377: 14,51 8378: 15,51 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 6872: -12,76 - 6873: -11,76 - 6874: -10,76 - 6875: -9,76 - 6876: -8,76 - 6877: -7,76 - 6878: -6,76 - 6879: -5,76 - 6880: -5,73 - 6881: -6,73 - 6882: -7,73 - 6883: -8,73 - 6884: -9,73 - 6885: -10,73 - 6886: -11,73 - 6887: -12,73 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -8595,27 +8907,6 @@ entities: 7544: -23,-57 7545: -22,-57 7546: -21,-57 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 6888: -12,76 - 6889: -11,76 - 6890: -10,76 - 6891: -9,76 - 6892: -8,76 - 6893: -7,76 - 6894: -6,76 - 6895: -5,76 - 6896: -5,73 - 6897: -6,73 - 6898: -7,73 - 6899: -8,73 - 6900: -9,73 - 6901: -10,73 - 6902: -11,73 - 6903: -12,73 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -8633,18 +8924,6 @@ entities: 8372: 11,47 8373: 11,48 8374: 11,49 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 6867: -13,71 - 6868: -13,72 - 6869: -13,73 - 6870: -4,74 - 6871: -4,75 - 6904: -4,71 - 6905: -4,72 - node: cleanable: True color: '#780000FF' @@ -8663,6 +8942,12 @@ entities: id: arrow decals: 7134: -1,-66 + - node: + cleanable: True + color: '#FFFFFFFF' + id: body + decals: + 9704: -54.01239,56.214497 - node: cleanable: True color: '#FFFFFFFF' @@ -8723,6 +9008,25 @@ entities: 5225: -46.56901,-13.125473 5226: -46.193733,-12.893991 5227: -45.901848,-13.130102 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FF000019' + id: footprint + decals: + 9709: -55.204544,57.35501 + 9710: -55.016273,57.10175 + 9711: -54.559483,57.01218 + 9712: -54.917507,57.568123 + 9713: -55.182938,57.836826 + - node: + cleanable: True + angle: 3.9269908169872414 rad + color: '#FF000019' + id: footprint + decals: + 9707: -54.94837,56.814514 + 9708: -54.83726,57.216026 - node: cleanable: True color: '#8600003C' @@ -8765,6 +9069,14 @@ entities: id: revolution decals: 6670: -20.968155,61.005226 + - node: + cleanable: True + color: '#FF0000FF' + id: revolution + decals: + 9644: 3.5085063,-61.033157 + 9645: 6.0640616,-61.992157 + 9646: 5.022396,-59.949074 - node: cleanable: True angle: 0.05235987755982989 rad @@ -8787,6 +9099,32 @@ entities: 4348: -43.279102,-46.79024 4349: -43.888477,-48.399616 4350: -45.903927,-47.07149 + - node: + cleanable: True + color: '#894A0067' + id: splatter + decals: + 9732: -56.899662,59.249393 + - node: + cleanable: True + color: '#EC000019' + id: splatter + decals: + 9731: -55.007996,61.89848 + - node: + cleanable: True + color: '#FF000019' + id: splatter + decals: + 9668: -54.08878,56.11026 + - node: + cleanable: True + angle: 0.7853981633974483 rad + color: '#FF000019' + id: splatter + decals: + 9705: -54.38739,56.499416 + 9706: -54.380444,56.061615 - type: GridAtmosphere version: 2 data: @@ -8854,9 +9192,9 @@ entities: 0: 51404 3,2: 2: 817 - 0: 36040 + 0: 3272 3,3: - 0: 65467 + 0: 65399 3,-1: 2: 4096 0: 52479 @@ -8867,10 +9205,10 @@ entities: 4,1: 0: 43775 4,2: - 0: 816 + 0: 4912 2: 52416 4,3: - 0: 4353 + 0: 4369 2: 52428 -4,0: 0: 32767 @@ -8944,14 +9282,16 @@ entities: 2: 32768 -3,-5: 0: 44687 + -2,-4: + 0: 32819 -2,-3: 2: 61440 0: 136 -2,-2: 0: 240 2: 61440 - -2,-4: - 0: 32768 + -2,-5: + 0: 4794 -1,-4: 0: 64989 -1,-3: @@ -8964,16 +9304,16 @@ entities: 0: 511 0,-2: 0: 3581 + 1,-4: + 0: 17623 1,-2: 0: 41718 - 1,-4: - 0: 17638 + 1,-5: + 0: 21591 1,-3: 0: 25668 - 1,-5: - 0: 25687 2,-4: - 0: 4095 + 0: 2047 2,-3: 0: 65535 2,-2: @@ -8981,7 +9321,7 @@ entities: 2,-5: 0: 62079 3,-4: - 0: 57463 + 0: 61559 3,-3: 0: 65535 3,-2: @@ -9026,19 +9366,16 @@ entities: 0: 63931 -2,-9: 0: 56829 - -2,-5: - 2: 8192 -1,-8: 0: 28912 -1,-7: 0: 2047 -1,-6: - 0: 33023 - 2: 8192 + 0: 45567 + -1,-5: + 0: 51 -1,-9: 0: 56829 - -1,-5: - 2: 50 0,-8: 0: 14576 0,-7: @@ -9082,11 +9419,12 @@ entities: 4,-5: 0: 65411 -8,-4: - 2: 48 - 0: 63624 + 0: 64440 + -8,-5: + 2: 12288 + 0: 32887 -9,-4: - 2: 128 - 0: 61747 + 0: 63731 -8,-3: 1: 272 0: 224 @@ -9098,9 +9436,6 @@ entities: -8,-1: 2: 8736 0: 49152 - -8,-5: - 0: 32887 - 2: 12288 -7,-4: 0: 45279 -7,-3: @@ -9238,14 +9573,13 @@ entities: -13,-4: 0: 61024 -11,-4: - 0: 61713 - 2: 192 + 0: 62365 -11,-5: - 0: 4111 - 2: 3072 + 0: 53263 -10,-4: - 2: 112 - 0: 61440 + 0: 61815 + -10,-5: + 0: 30479 -10,-3: 1: 2176 -13,-8: @@ -9262,7 +9596,7 @@ entities: 0: 3581 -13,-5: 2: 136 - 0: 62003 + 0: 57907 -12,-9: 0: 61166 -11,-8: @@ -9279,9 +9613,6 @@ entities: 0: 61644 -10,-6: 0: 65535 - -10,-5: - 0: 15 - 2: 1792 -10,-9: 0: 61182 -4,-12: @@ -9397,48 +9728,52 @@ entities: 0: 12288 2: 2048 -16,-8: - 0: 61376 + 0: 28608 -17,-8: 0: 35840 -16,-7: - 0: 61159 + 0: 61167 -17,-7: 0: 12 2: 50176 -16,-6: - 0: 59374 + 0: 61422 -17,-6: 0: 35840 2: 4 -16,-5: - 0: 207 + 0: 35023 -17,-5: 0: 12 -15,-8: - 0: 16106 - -15,-6: - 0: 12834 + 0: 15290 -15,-7: - 0: 8738 + 0: 13107 2: 32768 + -15,-6: + 0: 9011 + -16,-4: + 0: 2184 -15,-5: - 0: 52906 + 0: 54506 -15,-9: - 0: 61164 + 0: 65527 -15,-4: - 0: 36044 + 0: 56797 -14,-7: 2: 4369 0: 3276 -14,-5: - 0: 64139 + 0: 63739 -14,-8: 0: 3822 -14,-6: 2: 273 0: 3276 + -14,-4: + 0: 65535 -14,-9: - 0: 58621 + 0: 58620 -16,-12: 2: 19524 -16,-13: @@ -9450,18 +9785,16 @@ entities: 2: 61422 -15,-11: 2: 3918 + -15,-10: + 0: 24584 -15,-13: 2: 59968 1: 5284 -14,-11: 2: 257 0: 17612 - -15,-10: - 0: 8 - 2: 2048 -14,-10: - 0: 17487 - 2: 256 + 0: 30543 -14,-12: 0: 49356 -14,-13: @@ -9492,6 +9825,7 @@ entities: 2: 57360 1: 256 -14,-14: + 0: 290 1: 4096 2: 10820 -13,-15: @@ -9506,26 +9840,43 @@ entities: 2: 61440 -11,-14: 0: 64256 + -11,-16: + 2: 58030 + -11,-17: + 2: 41646 + -10,-16: + 2: 58111 -10,-14: 0: 16368 + -10,-17: + 2: 62207 -10,-15: 0: 61152 + -9,-16: + 2: 2047 -9,-14: 0: 4084 + -9,-17: + 2: 63487 -9,-15: 0: 60142 + -8,-16: + 2: 767 -8,-15: 0: 65535 -8,-14: 0: 4087 -8,-13: 2: 1792 + -8,-17: + 2: 62207 + -7,-16: + 2: 1 + 0: 17608 -7,-15: 0: 26469 -7,-14: 0: 30582 - -7,-16: - 0: 17608 -6,-16: 0: 65039 -6,-15: @@ -9541,7 +9892,7 @@ entities: -5,-14: 0: 40413 -5,-17: - 0: 52364 + 0: 64187 -4,-16: 0: 56769 -4,-15: @@ -9585,29 +9936,29 @@ entities: 0,-15: 0: 36394 1,-16: - 0: 30304 + 0: 30560 1,-15: - 0: 4375 - 2: 17408 + 0: 63255 1,-14: - 0: 53521 - 2: 76 + 0: 53745 1,-13: - 0: 60317 + 0: 64413 1,-17: 2: 4369 1,-12: 0: 65294 + 2,-15: + 0: 28672 2,-14: - 2: 19 - 0: 4096 + 0: 54374 2,-13: - 0: 21521 - 2: 4 + 0: 21525 2,-12: 0: 21831 + 3,-15: + 0: 12800 3,-14: - 0: 14096 + 0: 14099 3,-13: 0: 13111 3,-12: @@ -9650,7 +10001,7 @@ entities: 6,-6: 0: 61166 6,-4: - 0: 127 + 0: 255 1: 12288 2: 49152 6,-9: @@ -9668,7 +10019,7 @@ entities: 7,-4: 0: 61133 8,-8: - 0: 61917 + 0: 61883 8,-7: 0: 4095 8,-6: @@ -9710,9 +10061,9 @@ entities: 7,0: 0: 61006 8,-4: - 0: 33787 + 0: 41979 8,-3: - 0: 2746 + 0: 2744 8,-2: 0: 61167 8,-1: @@ -9761,31 +10112,31 @@ entities: 9,-1: 0: 36848 9,0: - 0: 64443 + 0: 65531 10,-4: 0: 65535 10,-3: 0: 56799 10,-1: 0: 65500 - 10,0: - 0: 56797 10,-2: 0: 52428 10,-5: 0: 52703 + 10,0: + 0: 56796 11,-4: 0: 57309 11,-3: 0: 57565 11,-2: - 0: 12046 + 0: 28430 11,-1: - 0: 65439 + 0: 65431 11,-5: 0: 56797 11,0: - 0: 58023 + 0: 58031 12,-4: 0: 65535 12,-3: @@ -9799,7 +10150,7 @@ entities: 8,4: 0: 48059 9,1: - 0: 65291 + 0: 65295 9,2: 0: 63343 9,3: @@ -9823,7 +10174,7 @@ entities: 11,4: 0: 63487 12,0: - 0: 12401 + 0: 12407 12,1: 0: 3003 12,2: @@ -9831,9 +10182,9 @@ entities: 12,3: 0: 44943 8,-9: - 0: 54783 + 0: 47615 9,-8: - 0: 28791 + 0: 29559 9,-7: 0: 1919 9,-6: @@ -9857,7 +10208,7 @@ entities: 11,-6: 0: 56799 11,-9: - 0: 29439 + 0: 29425 12,-8: 0: 65464 12,-7: @@ -9879,34 +10230,43 @@ entities: 7,-13: 0: 52430 8,-11: - 0: 4078 + 0: 4074 8,-10: 0: 15291 + 7,-15: + 0: 50176 7,-14: - 0: 52864 + 0: 52876 + 8,-14: + 0: 30242 8,-12: - 2: 224 + 0: 41642 + 8,-13: + 0: 58082 9,-12: - 2: 2298 + 0: 4113 + 2: 2248 + 9,-11: + 0: 4081 9,-10: 0: 35771 9,-13: - 2: 43770 + 0: 4113 + 2: 35016 10,-12: 2: 12287 + 10,-11: + 0: 36832 10,-10: - 0: 4095 + 0: 35771 10,-13: 2: 12287 - 10,-11: - 2: 546 11,-12: 2: 65535 11,-11: - 2: 273 - 0: 16580 + 0: 16852 11,-10: - 0: 57422 + 0: 20814 11,-13: 2: 61439 12,-12: @@ -9915,15 +10275,12 @@ entities: 12,-11: 0: 58622 12,-10: - 0: 47779 + 0: 47919 12,-9: 0: 48059 - 8,-14: - 2: 224 - 8,-13: - 2: 224 9,-14: - 2: 43770 + 2: 35066 + 0: 4096 9,-16: 2: 11776 9,-15: @@ -9954,9 +10311,9 @@ entities: 13,-11: 0: 63722 13,-10: - 0: 56732 + 0: 56717 13,-9: - 0: 48028 + 0: 64412 13,-8: 0: 63259 13,-13: @@ -9964,6 +10321,7 @@ entities: 2: 52 14,-12: 0: 4369 + 2: 3072 14,-11: 0: 61713 14,-10: @@ -9975,11 +10333,15 @@ entities: 2: 4 14,-8: 0: 65535 + 15,-12: + 2: 4368 15,-9: 0: 4351 2: 52224 15,-13: 0: 4352 + 15,-11: + 2: 17 15,-8: 0: 13105 15,-10: @@ -10738,19 +11100,21 @@ entities: 11,13: 0: 61695 12,14: - 0: 65535 + 0: 56799 11,14: - 0: 30479 + 0: 47887 12,15: - 0: 65532 + 0: 65481 + 11,15: + 0: 30491 12,16: - 0: 634 + 0: 626 13,13: 0: 65485 13,14: 0: 7645 13,15: - 0: 64988 + 0: 57308 13,16: 0: 4381 2: 51200 @@ -10798,8 +11162,6 @@ entities: 10,16: 0: 12 2: 8720 - 11,15: - 0: 30487 11,16: 0: 7 2: 41472 @@ -11036,8 +11398,8 @@ entities: -4,18: 0: 35071 -4,19: - 2: 32832 0: 8 + 2: 32768 -3,17: 0: 62718 -3,18: @@ -11055,7 +11417,7 @@ entities: 2: 1092 -1,19: 0: 1 - 2: 4128 + 2: 4096 1,21: 2: 34952 2,21: @@ -11112,9 +11474,10 @@ entities: 2: 3 0: 36736 -14,12: - 2: 22003 + 2: 4403 + 0: 49280 -13,12: - 0: 60136 + 0: 64504 -19,11: 2: 52224 -19,12: @@ -11138,25 +11501,25 @@ entities: -15,13: 2: 8191 -15,14: - 2: 3 + 2: 15 + 0: 32768 -15,15: - 0: 3212 + 0: 2184 -14,13: - 2: 20309 - -14,15: - 0: 4079 + 2: 273 + 0: 1036 -14,14: - 0: 35016 - -14,16: - 2: 17604 - -13,15: - 0: 43938 + 0: 28774 + -14,15: + 0: 32631 -13,13: - 0: 59950 + 0: 64318 -13,14: - 0: 43690 + 0: 47803 + -13,15: + 0: 43939 -13,16: - 0: 57570 + 0: 61683 -12,13: 0: 45966 -12,14: @@ -11202,8 +11565,7 @@ entities: -7,13: 0: 56784 -7,14: - 0: 63233 - 2: 4 + 0: 63237 -7,15: 0: 29431 -7,16: @@ -11218,63 +11580,73 @@ entities: 0: 1395 2: 16384 -14,17: - 2: 17484 + 0: 61132 -14,18: - 2: 2244 - -13,18: - 2: 61745 - 0: 8 + 0: 52462 + -14,16: + 2: 1088 -13,17: - 0: 52974 + 0: 65535 + -13,18: + 0: 65535 + -13,19: + 0: 15 -12,16: - 0: 61680 + 0: 1776 -12,17: - 0: 65535 + 0: 30527 -12,18: - 0: 15 - 2: 63488 + 0: 13175 + 2: 32768 -11,16: 0: 29808 -11,17: - 0: 21845 + 0: 30071 -11,18: - 0: 13 - 2: 62464 + 0: 127 + 2: 28672 -10,17: 2: 3857 0: 12 -10,18: - 0: 15 - 2: 61440 + 0: 20415 + -10,19: + 0: 61439 -9,17: 0: 15 2: 3840 -9,18: - 0: 15 - 2: 61440 + 0: 1887 + -9,19: + 0: 273 + 2: 1024 -8,17: 2: 256 0: 3276 -8,18: - 0: 15 - 2: 61952 + 0: 65535 + -8,19: + 0: 53205 -7,17: 0: 819 -7,18: - 0: 15 - 2: 29696 + 0: 4383 + 2: 17408 + -7,19: + 0: 13105 -6,18: 0: 15 + 2: 32768 -6,17: 2: 1092 -5,18: 0: 631 - -14,-4: - 0: 65520 + -6,19: + 2: 8 + -5,-18: + 0: 48000 -4,-18: 2: 3584 - -5,-18: - 0: 51200 -3,-18: 2: 18176 -2,-18: @@ -11286,8 +11658,25 @@ entities: 0: 4095 0,-18: 0: 29440 + -8,-18: + 2: 62192 + -9,-18: + 2: 62192 + -7,-18: + 2: 65535 + -7,-17: + 2: 255 + -6,-18: + 2: 6001 + -6,-17: + 2: 1041 + 0: 14 -17,-13: 1: 4 + -11,-18: + 2: 41696 + -10,-18: + 2: 62192 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -11415,6 +11804,14 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap +- proto: AcousticGuitarInstrument + entities: + - uid: 29038 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 26.526651,-21.486578 + parent: 12 - proto: ActionStethoscope entities: - uid: 4711 @@ -11425,6 +11822,13 @@ entities: container: 12708 - proto: ActionToggleBlock entities: + - uid: 11047 + components: + - type: Transform + parent: 4565 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4565 - uid: 19882 components: - type: Transform @@ -11445,6 +11849,13 @@ entities: container: 31201 - proto: ActionToggleInternals entities: + - uid: 899 + components: + - type: Transform + parent: 28460 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 28460 - uid: 2687 components: - type: Transform @@ -11463,18 +11874,20 @@ entities: parent: 5895 - type: InstantAction container: 5895 - - uid: 9079 + - uid: 6678 components: - type: Transform - parent: 2681 + parent: 31675 - type: InstantAction - container: 2681 - - uid: 9083 + originalIconColor: '#FFFFFFFF' + container: 31675 + - uid: 6679 components: - type: Transform - parent: 2680 + parent: 31364 - type: InstantAction - container: 2680 + originalIconColor: '#FFFFFFFF' + container: 31364 - uid: 9757 components: - type: Transform @@ -11547,6 +11960,20 @@ entities: container: 28698 - proto: ActionToggleLight entities: + - uid: 5528 + components: + - type: Transform + parent: 26655 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 26655 + - uid: 5542 + components: + - type: Transform + parent: 26694 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 26694 - uid: 5596 components: - type: Transform @@ -11642,6 +12069,9 @@ entities: - type: Transform pos: 56.5,65.5 parent: 12 + - type: DeviceList + devices: + - 616 - uid: 377 components: - type: Transform @@ -11712,6 +12142,37 @@ entities: - 9316 - 9317 - 9314 + - uid: 706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-50.5 + parent: 12 + - type: DeviceList + devices: + - 8423 + - 2824 + - 4155 + - 6980 + - 6973 + - 8416 + - 8351 + - uid: 752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-41.5 + parent: 12 + - type: DeviceList + devices: + - 8541 + - 8542 + - 6708 + - 690 + - 7617 + - 7618 + - 27433 + - 704 - uid: 921 components: - type: Transform @@ -11727,6 +12188,21 @@ entities: - 2097 - 1135 - 1146 + - uid: 1169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-50.5 + parent: 12 + - type: DeviceList + devices: + - 26030 + - 25984 + - 6005 + - 6175 + - 6981 + - 6977 + - 23101 - uid: 1288 components: - type: Transform @@ -11740,6 +12216,17 @@ entities: - 9302 - 4266 - 9305 + - uid: 1375 + components: + - type: Transform + pos: 38.5,5.5 + parent: 12 + - type: DeviceList + devices: + - 1348 + - 2680 + - 2416 + - 6197 - uid: 1699 components: - type: Transform @@ -11825,17 +12312,6 @@ entities: - 2100 - 1250 - 2081 - - uid: 2682 - components: - - type: Transform - pos: 35.5,5.5 - parent: 12 - - type: DeviceList - devices: - - 26593 - - 2684 - - 26415 - - 4787 - uid: 2852 components: - type: Transform @@ -11930,18 +12406,6 @@ entities: - 26312 - 28364 - 29393 - - uid: 4887 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 12 - - type: DeviceList - devices: - - 28375 - - 9321 - - 5255 - - 5316 - - 5305 - uid: 4906 components: - type: Transform @@ -11949,7 +12413,6 @@ entities: parent: 12 - type: DeviceList devices: - - 26593 - 9303 - 10811 - 5298 @@ -12000,6 +12463,7 @@ entities: - 8916 - 8597 - 8540 + - 27072 - uid: 7342 components: - type: Transform @@ -12061,6 +12525,7 @@ entities: - 7461 - 26319 - 26314 + - 27072 - uid: 8971 components: - type: Transform @@ -12255,11 +12720,11 @@ entities: - type: DeviceList devices: - 11341 - - 9488 - 6735 - 2516 - 2604 - 3702 + - 1537 - uid: 13076 components: - type: Transform @@ -12430,6 +12895,19 @@ entities: - 26327 - 26569 - 8461 + - uid: 22005 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 12 + - type: DeviceList + devices: + - 7529 + - 9321 + - 7229 + - 5316 + - 28375 + - 4938 - uid: 22248 components: - type: Transform @@ -12871,7 +13349,7 @@ entities: parent: 12 - type: DeviceList devices: - - 26949 + - 2501 - 2020 - 26923 - 609 @@ -12923,13 +13401,16 @@ entities: parent: 12 - type: DeviceList devices: - - 24083 - - 24082 - 28272 - - 23940 + - 4523 - 23941 - - 14474 + - 24083 + - 24082 + - 23943 + - 14476 - 14475 + - 26899 + - 14472 - 14471 - uid: 28328 components: @@ -12939,11 +13420,11 @@ entities: - type: DeviceList devices: - 23093 - - 23092 - 28329 - - 14474 - 14475 - - 12055 + - 616 + - 708 + - 5873 - uid: 28330 components: - type: Transform @@ -13289,27 +13770,6 @@ entities: - 19338 - 19339 - 16364 - - uid: 29782 - components: - - type: Transform - pos: -53.5,63.5 - parent: 12 - - type: DeviceList - devices: - - 29397 - - 29396 - - 9513 - - uid: 29783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,71.5 - parent: 12 - - type: DeviceList - devices: - - 29820 - - 29651 - - 29784 - uid: 30349 components: - type: Transform @@ -13471,6 +13931,16 @@ entities: - type: Transform pos: 63.5,-18.5 parent: 12 + - uid: 6282 + components: + - type: Transform + pos: -51.5,-29.5 + parent: 12 + - uid: 7609 + components: + - type: Transform + pos: -59.5,-34.5 + parent: 12 - uid: 8863 components: - type: Transform @@ -13506,6 +13976,11 @@ entities: - type: Transform pos: -4.5,11.5 parent: 12 + - uid: 23715 + components: + - type: Transform + pos: -53.5,52.5 + parent: 12 - uid: 23899 components: - type: Transform @@ -13536,6 +14011,11 @@ entities: - type: Transform pos: 45.5,10.5 parent: 12 + - uid: 30113 + components: + - type: Transform + pos: -39.5,73.5 + parent: 12 - uid: 30705 components: - type: Transform @@ -13546,16 +14026,6 @@ entities: - type: Transform pos: -60.5,-53.5 parent: 12 - - uid: 31447 - components: - - type: Transform - pos: 4.5,-53.5 - parent: 12 - - uid: 31669 - components: - - type: Transform - pos: -60.5,-24.5 - parent: 12 - proto: Airlock entities: - uid: 2309 @@ -13568,12 +14038,6 @@ entities: - type: Transform pos: 8.5,-28.5 parent: 12 - - uid: 12071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,63.5 - parent: 12 - uid: 12345 components: - type: Transform @@ -13592,6 +14056,12 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,52.5 parent: 12 + - uid: 27239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,62.5 + parent: 12 - proto: AirlockArmoryGlassLocked entities: - uid: 10592 @@ -13959,6 +14429,12 @@ entities: parent: 12 - proto: AirlockEngineeringGlassLocked entities: + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-16.5 + parent: 12 - uid: 1346 components: - type: Transform @@ -13969,12 +14445,6 @@ entities: - type: Transform pos: 30.5,-5.5 parent: 12 - - uid: 5434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 12 - uid: 5435 components: - type: Transform @@ -14006,6 +14476,11 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-8.5 parent: 12 + - uid: 79 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 12 - uid: 494 components: - type: Transform @@ -14017,11 +14492,10 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,46.5 parent: 12 - - uid: 2891 + - uid: 2421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-48.5 + pos: 39.5,0.5 parent: 12 - uid: 3226 components: @@ -14040,6 +14514,12 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 12 + - uid: 4683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 12 - uid: 5517 components: - type: Transform @@ -14050,11 +14530,6 @@ entities: - type: Transform pos: 23.5,-19.5 parent: 12 - - uid: 5865 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 12 - uid: 5866 components: - type: Transform @@ -14161,11 +14636,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-19.5 parent: 12 - - uid: 21885 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 12 - uid: 22224 components: - type: Transform @@ -14187,6 +14657,12 @@ entities: - type: Transform pos: -23.5,58.5 parent: 12 + - uid: 26389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 12 - uid: 27457 components: - type: Transform @@ -14197,17 +14673,22 @@ entities: - type: Transform pos: -37.5,-51.5 parent: 12 + - uid: 28299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-65.5 + parent: 12 - uid: 28552 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,1.5 parent: 12 - - uid: 29098 + - uid: 29431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 + pos: 5.5,-54.5 parent: 12 - uid: 31074 components: @@ -14253,41 +14734,29 @@ entities: linkedPorts: 25549: - DoorStatus: InputB - - uid: 1537 + - uid: 2246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,13.5 + pos: 59.5,-1.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1552: - - DoorStatus: DoorBolt - - uid: 1552 + 25549: + - DoorStatus: InputA + - uid: 4629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,11.5 + rot: 3.141592653589793 rad + pos: 16.5,13.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1537: + 14474: - DoorStatus: DoorBolt - - uid: 2246 - components: - - type: Transform - pos: 59.5,-1.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 25549: - - DoorStatus: InputA - uid: 6350 components: - type: Transform @@ -14360,6 +14829,18 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,8.5 parent: 12 + - uid: 28301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-67.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28300: + - DoorStatus: DoorBolt - uid: 31108 components: - type: Transform @@ -14413,20 +14894,25 @@ entities: linkedPorts: 479: - DoorStatus: DoorBolt + - uid: 756 + components: + - type: Transform + pos: 57.5,-48.5 + parent: 12 - uid: 906 components: - type: Transform pos: -28.5,-6.5 parent: 12 - - uid: 6145 + - uid: 6255 components: - type: Transform - pos: 32.5,-41.5 + pos: 12.5,-54.5 parent: 12 - - uid: 8336 + - uid: 6267 components: - type: Transform - pos: -16.5,-66.5 + pos: 31.5,-54.5 parent: 12 - uid: 10296 components: @@ -14484,11 +14970,10 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,71.5 parent: 12 - - uid: 22328 + - uid: 21313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,59.5 + pos: 57.5,-49.5 parent: 12 - uid: 28520 components: @@ -14572,32 +15057,6 @@ entities: linkedPorts: 5024: - DoorStatus: DoorBolt -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 5150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-42.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5151: - - DoorStatus: DoorBolt - - uid: 5151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-45.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5150: - - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 1810 @@ -14692,6 +15151,18 @@ entities: linkedPorts: 25550: - DoorStatus: InputB + - uid: 14474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4629: + - DoorStatus: DoorBolt - uid: 16347 components: - type: Transform @@ -14720,6 +15191,18 @@ entities: linkedPorts: 19020: - DoorStatus: DoorBolt + - uid: 28300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-67.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28301: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 452 @@ -14741,12 +15224,6 @@ entities: - DoorStatus: DoorBolt 478: - DoorStatus: DoorBolt - - uid: 1061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,62.5 - parent: 12 - uid: 2041 components: - type: Transform @@ -14823,17 +15300,23 @@ entities: pos: 52.5,67.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 19847: + 18560: - DoorStatus: DoorBolt - - uid: 22277 + - uid: 25678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,60.5 + rot: 1.5707963267948966 rad + pos: 54.5,-42.5 parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25663: + - DoorStatus: DoorBolt - uid: 27232 components: - type: Transform @@ -14964,12 +15447,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,66.5 parent: 12 - - uid: 22322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,57.5 - parent: 12 - uid: 24238 components: - type: Transform @@ -15010,16 +15487,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-4.5 parent: 12 - - uid: 1968 - components: - - type: Transform - pos: 12.5,-54.5 - parent: 12 - - uid: 5500 - components: - - type: Transform - pos: 31.5,-54.5 - parent: 12 - uid: 7491 components: - type: Transform @@ -15054,17 +15521,15 @@ entities: - type: Transform pos: -36.5,13.5 parent: 12 - - uid: 22320 + - uid: 10393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,62.5 + pos: 13.5,-57.5 parent: 12 - - uid: 22321 + - uid: 25330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,60.5 + pos: 30.5,-57.5 parent: 12 - uid: 26130 components: @@ -15140,11 +15605,11 @@ entities: linkedPorts: 530: - DoorStatus: DoorBolt - - uid: 19847 + - uid: 18560 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,65.5 + pos: 52.5,64.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 @@ -15152,12 +15617,24 @@ entities: linkedPorts: 19844: - DoorStatus: DoorBolt + - uid: 25663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-45.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25678: + - DoorStatus: DoorBolt - proto: AirlockExternalShuttleLocked entities: - - uid: 31396 + - uid: 28051 components: - type: Transform - pos: -16.5,-69.5 + pos: -16.5,-70.5 parent: 12 - proto: AirlockFreezerLocked entities: @@ -15444,12 +15921,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,44.5 parent: 12 - - uid: 24218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,60.5 - parent: 12 - uid: 24219 components: - type: Transform @@ -15663,6 +16134,18 @@ entities: parent: 12 - proto: AirlockMaint entities: + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-41.5 + parent: 12 + - uid: 2894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-52.5 + parent: 12 - uid: 2967 components: - type: Transform @@ -15718,17 +16201,28 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-33.5 parent: 12 - - uid: 9663 + - uid: 14196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-33.5 + pos: 34.5,-48.5 parent: 12 - uid: 24134 components: - type: Transform pos: 45.5,46.5 parent: 12 + - uid: 26727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-33.5 + parent: 12 + - uid: 27048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-52.5 + parent: 12 - proto: AirlockMaintAtmoLocked entities: - uid: 5070 @@ -15885,17 +16379,34 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,22.5 parent: 12 + - uid: 4112 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 12 - uid: 5428 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,11.5 parent: 12 - - uid: 6712 + - uid: 5662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-28.5 + rot: 1.5707963267948966 rad + pos: -60.5,-17.5 + parent: 12 + - uid: 6145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-31.5 + parent: 12 + - uid: 6155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-19.5 parent: 12 - uid: 7375 components: @@ -16008,12 +16519,6 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 - - uid: 13002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-20.5 - parent: 12 - uid: 14946 components: - type: Transform @@ -16196,6 +16701,11 @@ entities: - type: Transform pos: -18.5,69.5 parent: 12 + - uid: 27395 + components: + - type: Transform + pos: 53.5,-40.5 + parent: 12 - uid: 27453 components: - type: Transform @@ -16219,17 +16729,39 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-13.5 parent: 12 + - uid: 28436 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 12 - uid: 28518 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,8.5 parent: 12 - - uid: 29517 + - uid: 29024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,67.5 + rot: 3.141592653589793 rad + pos: -44.5,68.5 + parent: 12 + - type: Door + secondsUntilStateChange: -5764.909 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 29076 + components: + - type: Transform + pos: -31.5,76.5 + parent: 12 + - uid: 29138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,75.5 parent: 12 - uid: 29718 components: @@ -16300,11 +16832,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-63.5 parent: 12 - - uid: 31349 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 12 - uid: 31393 components: - type: Transform @@ -16312,6 +16839,11 @@ entities: parent: 12 - proto: AirlockMaintMedLocked entities: + - uid: 619 + components: + - type: Transform + pos: -16.5,-66.5 + parent: 12 - uid: 2868 components: - type: Transform @@ -16400,13 +16932,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-49.5 parent: 12 -- proto: AirlockMaintSalvageLocked - entities: - - uid: 8044 - components: - - type: Transform - pos: 53.5,-40.5 - parent: 12 - proto: AirlockMaintSecLocked entities: - uid: 18246 @@ -16655,31 +17180,17 @@ entities: parent: 12 - proto: AirlockSalvageGlassLocked entities: - - uid: 7485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-49.5 - parent: 12 - - uid: 7501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-48.5 - parent: 12 - uid: 8034 components: - type: Transform pos: 58.5,-35.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 4 - type: DeviceLinkSource linkedPorts: - 8036: - - DoorStatus: DoorBolt - 8037: - - DoorStatus: DoorBolt + 27073: + - DoorStatus: InputB 8034: - DoorStatus: DoorBolt - uid: 8035 @@ -16688,49 +17199,47 @@ entities: pos: 58.5,-34.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: - 8037: - - DoorStatus: DoorBolt - 8036: - - DoorStatus: DoorBolt + 27073: + - DoorStatus: InputA - uid: 8036 components: - type: Transform pos: 61.5,-34.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: - 8035: - - DoorStatus: DoorBolt + 26946: + - DoorStatus: InputA - uid: 8037 components: - type: Transform pos: 61.5,-35.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: - 8034: - - DoorStatus: DoorBolt - 8035: - - DoorStatus: DoorBolt - - uid: 8038 + 26946: + - DoorStatus: InputB +- proto: AirlockSalvageLocked + entities: + - uid: 771 components: - type: Transform + rot: 3.141592653589793 rad pos: 55.5,-38.5 parent: 12 - - uid: 8039 + - uid: 772 components: - type: Transform + rot: 3.141592653589793 rad pos: 56.5,-38.5 parent: 12 -- proto: AirlockSalvageLocked - entities: - uid: 2830 components: - type: Transform @@ -16764,6 +17273,12 @@ entities: - type: Transform pos: -50.5,-22.5 parent: 12 + - uid: 11039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,57.5 + parent: 12 - proto: AirlockScienceLocked entities: - uid: 486 @@ -16894,6 +17409,11 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,60.5 parent: 12 + - uid: 27071 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 12 - proto: AirlockServiceGlassLocked entities: - uid: 15803 @@ -17120,6 +17640,14 @@ entities: - type: DeviceNetwork deviceLists: - 28373 + - uid: 2416 + components: + - type: Transform + pos: 38.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1375 - uid: 2604 components: - type: Transform @@ -17204,15 +17732,6 @@ entities: - type: DeviceNetwork deviceLists: - 29272 - - uid: 4787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 2682 - uid: 5011 components: - type: Transform @@ -17248,7 +17767,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 4887 + - 22005 - uid: 7350 components: - type: Transform @@ -17301,6 +17820,15 @@ entities: - type: DeviceNetwork deviceLists: - 8420 + - uid: 8423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-51.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 706 - uid: 8916 components: - type: Transform @@ -17787,6 +18315,15 @@ entities: - type: DeviceNetwork deviceLists: - 22582 + - uid: 23101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1169 - uid: 23592 components: - type: Transform @@ -18281,23 +18818,6 @@ entities: - type: DeviceNetwork deviceLists: - 29275 - - uid: 29396 - components: - - type: Transform - pos: -53.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29782 - - uid: 29784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,69.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29783 - uid: 30260 components: - type: Transform @@ -18404,7 +18924,8 @@ entities: - uid: 5894 components: - type: Transform - pos: 29.66415,-23.535322 + rot: -43.98229715025713 rad + pos: 33.353954,-19.804523 parent: 12 - type: GasTank toggleActionEntity: 3128 @@ -18417,7 +18938,8 @@ entities: - uid: 5895 components: - type: Transform - pos: 29.333408,-23.36321 + rot: -43.98229715025713 rad + pos: 33.696545,-19.883226 parent: 12 - type: GasTank toggleActionEntity: 4142 @@ -18445,8 +18967,16 @@ entities: - uid: 28460 components: - type: Transform - pos: 55.478806,-34.59952 + pos: 55.77801,-34.463158 parent: 12 + - type: GasTank + toggleActionEntity: 899 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 899 - uid: 30709 components: - type: Transform @@ -18461,6 +18991,13 @@ entities: actions: !type:Container ents: - 2687 +- proto: AltarConvertMaint + entities: + - uid: 22330 + components: + - type: Transform + pos: -37.5,78.5 + parent: 12 - proto: AltarSpawner entities: - uid: 13340 @@ -18477,13 +19014,20 @@ entities: parent: 12 - proto: AmeController entities: - - uid: 4915 + - uid: 2682 components: - type: Transform pos: 36.5,2.5 parent: 12 - proto: AnomalyScanner entities: + - uid: 9548 + components: + - type: Transform + parent: 9298 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13796 components: - type: Transform @@ -18602,6 +19146,12 @@ entities: - type: Transform pos: -21.5,-48.5 parent: 12 + - uid: 3132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 12 - uid: 3146 components: - type: Transform @@ -18619,8 +19169,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-21.5 parent: 12 - - type: Apc - hasAccess: True - uid: 5600 components: - type: Transform @@ -18637,12 +19185,6 @@ entities: - type: Transform pos: 13.5,-36.5 parent: 12 - - uid: 7207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,4.5 - parent: 12 - uid: 7825 components: - type: Transform @@ -18676,10 +19218,11 @@ entities: - type: Transform pos: 59.5,-27.5 parent: 12 - - uid: 9541 + - uid: 9589 components: - type: Transform - pos: 16.5,13.5 + rot: 3.141592653589793 rad + pos: -47.5,67.5 parent: 12 - uid: 9899 components: @@ -18981,17 +19524,17 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 12 - - uid: 26652 + - uid: 26780 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,0.5 + pos: 24.5,9.5 parent: 12 - - uid: 26780 + - uid: 27078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,9.5 + rot: 3.141592653589793 rad + pos: 38.5,0.5 parent: 12 - uid: 27295 components: @@ -19023,12 +19566,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,3.5 parent: 12 - - uid: 29647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,68.5 - parent: 12 - uid: 29777 components: - type: Transform @@ -19146,6 +19683,13 @@ entities: rot: -12.566370614359172 rad pos: -3.622931,-15.409775 parent: 12 +- proto: Ash + entities: + - uid: 28977 + components: + - type: Transform + pos: -55.65416,60.668686 + parent: 12 - proto: Ashtray entities: - uid: 6886 @@ -19178,6 +19722,11 @@ entities: - type: Transform pos: 11.456245,57.051254 parent: 12 + - uid: 28976 + components: + - type: Transform + pos: -54.97468,61.653255 + parent: 12 - proto: AsimovCircuitBoard entities: - uid: 28848 @@ -19228,11 +19777,6 @@ entities: - type: Transform pos: -62.5,-51.5 parent: 12 - - uid: 31034 - components: - - type: Transform - pos: -55.5,-53.5 - parent: 12 - uid: 31035 components: - type: Transform @@ -19248,21 +19792,11 @@ entities: - type: Transform pos: -57.5,-56.5 parent: 12 - - uid: 31038 - components: - - type: Transform - pos: -54.5,-54.5 - parent: 12 - uid: 31039 components: - type: Transform pos: -53.5,-53.5 parent: 12 - - uid: 31040 - components: - - type: Transform - pos: -54.5,-55.5 - parent: 12 - uid: 31043 components: - type: Transform @@ -19425,6 +19959,11 @@ entities: - type: Transform pos: 80.5,-33.5 parent: 12 + - uid: 745 + components: + - type: Transform + pos: -16.5,-70.5 + parent: 12 - uid: 919 components: - type: Transform @@ -19479,16 +20018,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-45.5 parent: 12 - - uid: 4967 - components: - - type: Transform - pos: 31.5,-54.5 - parent: 12 - - uid: 4968 - components: - - type: Transform - pos: 12.5,-54.5 - parent: 12 - uid: 7776 components: - type: Transform @@ -19551,35 +20080,27 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,76.5 parent: 12 - - uid: 12033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,57.5 - parent: 12 - - uid: 12057 + - uid: 13558 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,62.5 + pos: 23.5,83.5 parent: 12 - - uid: 12645 + - uid: 13836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,60.5 + pos: 30.5,-57.5 parent: 12 - - uid: 13558 + - uid: 14183 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,83.5 + pos: 29.5,-53.5 parent: 12 - - uid: 14183 + - uid: 14527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-53.5 + pos: 13.5,-57.5 parent: 12 - uid: 14697 components: @@ -19623,11 +20144,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,2.5 parent: 12 - - uid: 30198 - components: - - type: Transform - pos: -16.5,-69.5 - parent: 12 - uid: 31633 components: - type: Transform @@ -20374,10 +20890,10 @@ entities: - type: Transform pos: 18.5,-25.5 parent: 12 - - uid: 5542 + - uid: 5620 components: - type: Transform - pos: 44.5,0.5 + pos: 50.5,1.5 parent: 12 - proto: BannerGreen entities: @@ -20461,11 +20977,10 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-2.5 parent: 12 - - uid: 28210 + - uid: 27404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-15.5 + pos: -52.5,-17.5 parent: 12 - uid: 30898 components: @@ -20489,6 +21004,22 @@ entities: - type: Transform pos: -61.5,-57.5 parent: 12 + - uid: 23721 + components: + - type: Transform + pos: -51.5,62.5 + parent: 12 + - uid: 23760 + components: + - type: Transform + pos: -37.5,75.5 + parent: 12 + - uid: 26914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-17.5 + parent: 12 - uid: 30900 components: - type: Transform @@ -20513,10 +21044,10 @@ entities: parent: 12 - proto: BarSignRobustaCafe entities: - - uid: 11378 + - uid: 27403 components: - type: Transform - pos: -54.5,-15.5 + pos: -55.5,-17.5 parent: 12 - proto: BaseBallBat entities: @@ -20630,11 +21161,6 @@ entities: - type: Transform pos: 27.5,-22.5 parent: 12 - - uid: 8725 - components: - - type: Transform - pos: 52.5,-38.5 - parent: 12 - uid: 8726 components: - type: Transform @@ -20765,6 +21291,11 @@ entities: - type: Transform pos: 3.5,66.5 parent: 12 + - uid: 27076 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 12 - uid: 28264 components: - type: Transform @@ -20834,6 +21365,11 @@ entities: parent: 12 - proto: BedsheetGreen entities: + - uid: 2384 + components: + - type: Transform + pos: -44.5,63.5 + parent: 12 - uid: 21711 components: - type: Transform @@ -20928,18 +21464,13 @@ entities: - type: Transform pos: -47.5,63.5 parent: 12 - - uid: 19377 - components: - - type: Transform - pos: -44.5,63.5 - parent: 12 - - uid: 19378 +- proto: BedsheetPurple + entities: + - uid: 2467 components: - type: Transform pos: -41.5,63.5 parent: 12 -- proto: BedsheetPurple - entities: - uid: 12283 components: - type: Transform @@ -20967,6 +21498,14 @@ entities: - type: Transform pos: -49.5,-14.5 parent: 12 +- proto: BedsheetUSA + entities: + - uid: 9223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 12 - proto: BenchBlueComfy entities: - uid: 12706 @@ -21679,6 +22218,16 @@ entities: canCollide: False - proto: Bookshelf entities: + - uid: 4531 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 12 + - uid: 28386 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 12 - uid: 31819 components: - type: Transform @@ -21766,6 +22315,11 @@ entities: - 31832 - proto: BookshelfFilled entities: + - uid: 2405 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 12 - uid: 3026 components: - type: Transform @@ -21776,6 +22330,21 @@ entities: - type: Transform pos: 45.5,41.5 parent: 12 + - uid: 4168 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 12 + - uid: 5151 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 12 + - uid: 5372 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 12 - uid: 19636 components: - type: Transform @@ -21915,6 +22484,12 @@ entities: parent: 12 - proto: BoozeDispenser entities: + - uid: 2426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-16.5 + parent: 12 - uid: 15088 components: - type: Transform @@ -21926,12 +22501,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,48.5 parent: 12 - - uid: 28192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-13.5 - parent: 12 - proto: BorgCharger entities: - uid: 1777 @@ -21954,11 +22523,6 @@ entities: - type: Transform pos: -8.5,-35.5 parent: 12 - - uid: 5253 - components: - - type: Transform - pos: 33.5,-15.5 - parent: 12 - uid: 7509 components: - type: Transform @@ -22025,6 +22589,12 @@ entities: - 0 - 0 - 0 + - uid: 26715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 12 - uid: 27093 components: - type: Transform @@ -22068,7 +22638,7 @@ entities: - uid: 8797 components: - type: Transform - pos: 55.46302,-32.505604 + pos: 55.495014,-33.790596 parent: 12 - proto: BorgModuleRadiationDetection entities: @@ -22329,6 +22899,14 @@ entities: - type: Transform pos: -29.430593,58.567467 parent: 12 +- proto: BoxInflatable + entities: + - uid: 26848 + components: + - type: Transform + rot: -43.98229715025713 rad + pos: 33.488213,-20.573042 + parent: 12 - proto: BoxingBell entities: - uid: 12634 @@ -22561,7 +23139,7 @@ entities: - uid: 4212 components: - type: Transform - pos: 5.6581864,-60.013676 + pos: 4.33757,-60.111046 parent: 12 - uid: 13623 components: @@ -22593,6 +23171,22 @@ entities: - type: Transform pos: 57.314083,57.13435 parent: 12 +- proto: BulletFoam + entities: + - uid: 6284 + components: + - type: Transform + parent: 28254 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6285 + components: + - type: Transform + parent: 28254 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ButchCleaver entities: - uid: 15386 @@ -22673,6 +23267,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 12 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 12 - uid: 495 components: - type: Transform @@ -22709,6 +23309,12 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,29.5 parent: 12 + - uid: 14211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 12 - uid: 15861 components: - type: Transform @@ -22766,6 +23372,12 @@ entities: - type: Transform pos: 14.5,6.5 parent: 12 + - uid: 29187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,58.5 + parent: 12 - uid: 29367 components: - type: Transform @@ -22779,6 +23391,11 @@ entities: - type: Transform pos: -25.5,6.5 parent: 12 + - uid: 20 + components: + - type: Transform + pos: 11.5,24.5 + parent: 12 - uid: 51 components: - type: Transform @@ -22799,11 +23416,6 @@ entities: - type: Transform pos: 51.5,-12.5 parent: 12 - - uid: 68 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 12 - uid: 72 components: - type: Transform @@ -22819,10 +23431,10 @@ entities: - type: Transform pos: -10.5,4.5 parent: 12 - - uid: 79 + - uid: 97 components: - type: Transform - pos: 34.5,-32.5 + pos: 14.5,12.5 parent: 12 - uid: 98 components: @@ -22849,16 +23461,21 @@ entities: - type: Transform pos: 52.5,-11.5 parent: 12 - - uid: 190 + - uid: 185 components: - type: Transform - pos: 37.5,-31.5 + pos: 4.5,20.5 parent: 12 - uid: 194 components: - type: Transform pos: 14.5,-3.5 parent: 12 + - uid: 203 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 12 - uid: 253 components: - type: Transform @@ -22869,21 +23486,11 @@ entities: - type: Transform pos: 1.5,68.5 parent: 12 - - uid: 271 - components: - - type: Transform - pos: 34.5,-31.5 - parent: 12 - uid: 272 components: - type: Transform pos: 40.5,-13.5 parent: 12 - - uid: 273 - components: - - type: Transform - pos: 36.5,-31.5 - parent: 12 - uid: 317 components: - type: Transform @@ -22999,6 +23606,16 @@ entities: - type: Transform pos: -43.5,1.5 parent: 12 + - uid: 707 + components: + - type: Transform + pos: 30.5,-57.5 + parent: 12 + - uid: 746 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 12 - uid: 764 components: - type: Transform @@ -23029,6 +23646,11 @@ entities: - type: Transform pos: -30.5,-25.5 parent: 12 + - uid: 1054 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 12 - uid: 1074 components: - type: Transform @@ -23049,16 +23671,31 @@ entities: - type: Transform pos: 24.5,12.5 parent: 12 + - uid: 1165 + components: + - type: Transform + pos: 12.5,-56.5 + parent: 12 - uid: 1267 components: - type: Transform pos: 3.5,20.5 parent: 12 + - uid: 1284 + components: + - type: Transform + pos: -55.5,-16.5 + parent: 12 - uid: 1315 components: - type: Transform pos: 45.5,-0.5 parent: 12 + - uid: 1316 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 12 - uid: 1368 components: - type: Transform @@ -23479,11 +24116,6 @@ entities: - type: Transform pos: 54.5,-5.5 parent: 12 - - uid: 1505 - components: - - type: Transform - pos: -52.5,-15.5 - parent: 12 - uid: 1522 components: - type: Transform @@ -24159,6 +24791,11 @@ entities: - type: Transform pos: -22.5,-29.5 parent: 12 + - uid: 1755 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 12 - uid: 1783 components: - type: Transform @@ -24224,6 +24861,11 @@ entities: - type: Transform pos: 17.5,17.5 parent: 12 + - uid: 2120 + components: + - type: Transform + pos: 48.5,58.5 + parent: 12 - uid: 2136 components: - type: Transform @@ -24469,11 +25111,101 @@ entities: - type: Transform pos: 30.5,-12.5 parent: 12 + - uid: 2378 + components: + - type: Transform + pos: 33.5,-43.5 + parent: 12 + - uid: 2379 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 12 + - uid: 2380 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 12 + - uid: 2385 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 12 + - uid: 2386 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 12 + - uid: 2388 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 12 + - uid: 2402 + components: + - type: Transform + pos: 33.5,-48.5 + parent: 12 + - uid: 2403 + components: + - type: Transform + pos: 33.5,-47.5 + parent: 12 + - uid: 2404 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 12 + - uid: 2409 + components: + - type: Transform + pos: -52.5,-16.5 + parent: 12 + - uid: 2414 + components: + - type: Transform + pos: 38.5,2.5 + parent: 12 + - uid: 2415 + components: + - type: Transform + pos: 39.5,2.5 + parent: 12 + - uid: 2417 + components: + - type: Transform + pos: 36.5,2.5 + parent: 12 + - uid: 2425 + components: + - type: Transform + pos: -18.5,-66.5 + parent: 12 + - uid: 2427 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 12 + - uid: 2428 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 12 + - uid: 2429 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 12 - uid: 2464 components: - type: Transform pos: 13.5,12.5 parent: 12 + - uid: 2491 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 12 - uid: 2509 components: - type: Transform @@ -24529,20 +25261,15 @@ entities: - type: Transform pos: 1.5,20.5 parent: 12 - - uid: 2670 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 12 - uid: 2671 components: - type: Transform - pos: 40.5,-1.5 + pos: -54.5,-16.5 parent: 12 - - uid: 2678 + - uid: 2681 components: - type: Transform - pos: 40.5,1.5 + pos: 38.5,1.5 parent: 12 - uid: 2705 components: @@ -24594,11 +25321,6 @@ entities: - type: Transform pos: 57.5,53.5 parent: 12 - - uid: 2862 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - uid: 2881 components: - type: Transform @@ -24729,6 +25451,11 @@ entities: - type: Transform pos: 11.5,-34.5 parent: 12 + - uid: 3198 + components: + - type: Transform + pos: 43.5,-39.5 + parent: 12 - uid: 3222 components: - type: Transform @@ -25747,7 +26474,17 @@ entities: - uid: 3962 components: - type: Transform - pos: 40.5,3.5 + pos: -39.5,-14.5 + parent: 12 + - uid: 3974 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 12 + - uid: 3977 + components: + - type: Transform + pos: 43.5,-37.5 parent: 12 - uid: 3978 components: @@ -25774,6 +26511,16 @@ entities: - type: Transform pos: 7.5,-3.5 parent: 12 + - uid: 4103 + components: + - type: Transform + pos: 43.5,-40.5 + parent: 12 + - uid: 4106 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 12 - uid: 4119 components: - type: Transform @@ -25814,6 +26561,11 @@ entities: - type: Transform pos: 7.5,-51.5 parent: 12 + - uid: 4188 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 12 - uid: 4190 components: - type: Transform @@ -26214,6 +26966,11 @@ entities: - type: Transform pos: 11.5,1.5 parent: 12 + - uid: 4800 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 12 - uid: 4857 components: - type: Transform @@ -26234,6 +26991,11 @@ entities: - type: Transform pos: 63.5,6.5 parent: 12 + - uid: 4968 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 12 - uid: 4974 components: - type: Transform @@ -26259,6 +27021,11 @@ entities: - type: Transform pos: 22.5,-11.5 parent: 12 + - uid: 5023 + components: + - type: Transform + pos: 43.5,-35.5 + parent: 12 - uid: 5029 components: - type: Transform @@ -26279,6 +27046,11 @@ entities: - type: Transform pos: -28.5,8.5 parent: 12 + - uid: 5067 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 12 - uid: 5080 components: - type: Transform @@ -26304,11 +27076,21 @@ entities: - type: Transform pos: 29.5,2.5 parent: 12 + - uid: 5097 + components: + - type: Transform + pos: 43.5,-41.5 + parent: 12 - uid: 5118 components: - type: Transform pos: 4.5,-19.5 parent: 12 + - uid: 5123 + components: + - type: Transform + pos: 42.5,-41.5 + parent: 12 - uid: 5133 components: - type: Transform @@ -26369,10 +27151,20 @@ entities: - type: Transform pos: 21.5,2.5 parent: 12 - - uid: 5249 + - uid: 5250 components: - type: Transform - pos: 42.5,-39.5 + pos: -39.5,-15.5 + parent: 12 + - uid: 5253 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 12 + - uid: 5255 + components: + - type: Transform + pos: 37.5,-31.5 parent: 12 - uid: 5322 components: @@ -26389,11 +27181,6 @@ entities: - type: Transform pos: 27.5,-11.5 parent: 12 - - uid: 5404 - components: - - type: Transform - pos: 37.5,2.5 - parent: 12 - uid: 5429 components: - type: Transform @@ -26402,7 +27189,7 @@ entities: - uid: 5481 components: - type: Transform - pos: 34.5,0.5 + pos: 43.5,-38.5 parent: 12 - uid: 5482 components: @@ -26414,21 +27201,11 @@ entities: - type: Transform pos: 1.5,14.5 parent: 12 - - uid: 5503 - components: - - type: Transform - pos: 36.5,4.5 - parent: 12 - uid: 5512 components: - type: Transform pos: 1.5,15.5 parent: 12 - - uid: 5535 - components: - - type: Transform - pos: 40.5,0.5 - parent: 12 - uid: 5544 components: - type: Transform @@ -26569,11 +27346,6 @@ entities: - type: Transform pos: 36.5,-1.5 parent: 12 - - uid: 5662 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 12 - uid: 5669 components: - type: Transform @@ -26754,16 +27526,6 @@ entities: - type: Transform pos: 14.5,-16.5 parent: 12 - - uid: 5725 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 12 - - uid: 5726 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 12 - uid: 5727 components: - type: Transform @@ -27129,6 +27891,11 @@ entities: - type: Transform pos: 21.5,5.5 parent: 12 + - uid: 5834 + components: + - type: Transform + pos: -53.5,68.5 + parent: 12 - uid: 5837 components: - type: Transform @@ -27164,25 +27931,10 @@ entities: - type: Transform pos: 15.5,-3.5 parent: 12 - - uid: 5927 - components: - - type: Transform - pos: 38.5,4.5 - parent: 12 - - uid: 5985 - components: - - type: Transform - pos: 39.5,4.5 - parent: 12 - - uid: 6020 - components: - - type: Transform - pos: 37.5,1.5 - parent: 12 - - uid: 6029 + - uid: 5914 components: - type: Transform - pos: 37.5,0.5 + pos: 14.5,13.5 parent: 12 - uid: 6033 components: @@ -27279,40 +28031,45 @@ entities: - type: Transform pos: 12.5,-33.5 parent: 12 - - uid: 6261 + - uid: 6192 components: - type: Transform - pos: -1.5,22.5 + pos: -50.5,-17.5 parent: 12 - - uid: 6267 + - uid: 6193 components: - type: Transform - pos: 37.5,4.5 + pos: -50.5,-18.5 parent: 12 - - uid: 6287 + - uid: 6195 components: - type: Transform - pos: 13.5,13.5 + pos: -56.5,-16.5 parent: 12 - - uid: 6703 + - uid: 6196 components: - type: Transform - pos: 14.5,-37.5 + pos: 37.5,2.5 parent: 12 - - uid: 6708 + - uid: 6249 components: - type: Transform - pos: 35.5,0.5 + pos: -62.5,-28.5 parent: 12 - - uid: 6732 + - uid: 6261 components: - type: Transform - pos: 13.5,14.5 + pos: -1.5,22.5 parent: 12 - - uid: 6739 + - uid: 6305 components: - type: Transform - pos: 14.5,14.5 + pos: 40.5,-0.5 + parent: 12 + - uid: 6703 + components: + - type: Transform + pos: 14.5,-37.5 parent: 12 - uid: 6778 components: @@ -27649,11 +28406,6 @@ entities: - type: Transform pos: 32.5,-41.5 parent: 12 - - uid: 6970 - components: - - type: Transform - pos: 33.5,-41.5 - parent: 12 - uid: 6971 components: - type: Transform @@ -27674,6 +28426,11 @@ entities: - type: Transform pos: 32.5,-38.5 parent: 12 + - uid: 7034 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 12 - uid: 7153 components: - type: Transform @@ -27699,11 +28456,6 @@ entities: - type: Transform pos: 21.5,0.5 parent: 12 - - uid: 7223 - components: - - type: Transform - pos: 37.5,3.5 - parent: 12 - uid: 7233 components: - type: Transform @@ -27759,6 +28511,21 @@ entities: - type: Transform pos: -8.5,-6.5 parent: 12 + - uid: 7492 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 12 + - uid: 7500 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 12 + - uid: 7501 + components: + - type: Transform + pos: 38.5,-41.5 + parent: 12 - uid: 7516 components: - type: Transform @@ -28154,11 +28921,6 @@ entities: - type: Transform pos: 51.5,-37.5 parent: 12 - - uid: 8131 - components: - - type: Transform - pos: 51.5,-38.5 - parent: 12 - uid: 8132 components: - type: Transform @@ -29009,6 +29771,21 @@ entities: - type: Transform pos: 43.5,-9.5 parent: 12 + - uid: 8346 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 12 + - uid: 8441 + components: + - type: Transform + pos: 30.5,-56.5 + parent: 12 + - uid: 8447 + components: + - type: Transform + pos: 15.5,13.5 + parent: 12 - uid: 8463 components: - type: Transform @@ -29019,6 +29796,11 @@ entities: - type: Transform pos: -11.5,-8.5 parent: 12 + - uid: 8500 + components: + - type: Transform + pos: 13.5,-56.5 + parent: 12 - uid: 8533 components: - type: Transform @@ -29099,6 +29881,11 @@ entities: - type: Transform pos: 85.5,-33.5 parent: 12 + - uid: 8836 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 12 - uid: 8864 components: - type: Transform @@ -29124,11 +29911,6 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 12 - - uid: 8979 - components: - - type: Transform - pos: 33.5,0.5 - parent: 12 - uid: 8995 components: - type: Transform @@ -29244,6 +30026,11 @@ entities: - type: Transform pos: 46.5,-39.5 parent: 12 + - uid: 9138 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 12 - uid: 9147 components: - type: Transform @@ -29344,11 +30131,6 @@ entities: - type: Transform pos: 42.5,-34.5 parent: 12 - - uid: 9167 - components: - - type: Transform - pos: 42.5,-35.5 - parent: 12 - uid: 9170 components: - type: Transform @@ -29359,11 +30141,6 @@ entities: - type: Transform pos: 34.5,-34.5 parent: 12 - - uid: 9178 - components: - - type: Transform - pos: 34.5,-33.5 - parent: 12 - uid: 9179 components: - type: Transform @@ -29444,11 +30221,6 @@ entities: - type: Transform pos: 41.5,-38.5 parent: 12 - - uid: 9200 - components: - - type: Transform - pos: 42.5,-38.5 - parent: 12 - uid: 9201 components: - type: Transform @@ -29504,6 +30276,11 @@ entities: - type: Transform pos: 36.5,-37.5 parent: 12 + - uid: 9227 + components: + - type: Transform + pos: -61.5,-29.5 + parent: 12 - uid: 9294 components: - type: Transform @@ -29559,6 +30336,16 @@ entities: - type: Transform pos: 22.5,5.5 parent: 12 + - uid: 9525 + components: + - type: Transform + pos: -47.5,68.5 + parent: 12 + - uid: 9531 + components: + - type: Transform + pos: -48.5,68.5 + parent: 12 - uid: 9536 components: - type: Transform @@ -29594,15 +30381,15 @@ entities: - type: Transform pos: 11.5,19.5 parent: 12 - - uid: 9615 + - uid: 9617 components: - type: Transform - pos: 3.5,19.5 + pos: 11.5,23.5 parent: 12 - - uid: 9617 + - uid: 9624 components: - type: Transform - pos: 11.5,23.5 + pos: -47.5,67.5 parent: 12 - uid: 9635 components: @@ -29614,11 +30401,6 @@ entities: - type: Transform pos: 4.5,22.5 parent: 12 - - uid: 9655 - components: - - type: Transform - pos: 4.5,21.5 - parent: 12 - uid: 9668 components: - type: Transform @@ -29824,6 +30606,11 @@ entities: - type: Transform pos: -23.5,-10.5 parent: 12 + - uid: 10166 + components: + - type: Transform + pos: -59.5,-29.5 + parent: 12 - uid: 10328 components: - type: Transform @@ -30084,11 +30871,6 @@ entities: - type: Transform pos: 11.5,12.5 parent: 12 - - uid: 11047 - components: - - type: Transform - pos: 15.5,14.5 - parent: 12 - uid: 11129 components: - type: Transform @@ -30174,11 +30956,6 @@ entities: - type: Transform pos: 9.5,20.5 parent: 12 - - uid: 11366 - components: - - type: Transform - pos: -53.5,61.5 - parent: 12 - uid: 11367 components: - type: Transform @@ -30209,11 +30986,6 @@ entities: - type: Transform pos: -35.5,-58.5 parent: 12 - - uid: 11400 - components: - - type: Transform - pos: -52.5,61.5 - parent: 12 - uid: 11411 components: - type: Transform @@ -30234,6 +31006,11 @@ entities: - type: Transform pos: 31.5,30.5 parent: 12 + - uid: 11646 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 12 - uid: 11980 components: - type: Transform @@ -30874,6 +31651,11 @@ entities: - type: Transform pos: 31.5,33.5 parent: 12 + - uid: 12933 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 12 - uid: 12934 components: - type: Transform @@ -34349,11 +35131,6 @@ entities: - type: Transform pos: 16.5,12.5 parent: 12 - - uid: 16339 - components: - - type: Transform - pos: 15.5,12.5 - parent: 12 - uid: 16344 components: - type: Transform @@ -34364,6 +35141,11 @@ entities: - type: Transform pos: 11.5,21.5 parent: 12 + - uid: 16349 + components: + - type: Transform + pos: 16.5,11.5 + parent: 12 - uid: 16351 components: - type: Transform @@ -35229,6 +36011,21 @@ entities: - type: Transform pos: 23.5,4.5 parent: 12 + - uid: 17920 + components: + - type: Transform + pos: -54.5,60.5 + parent: 12 + - uid: 17921 + components: + - type: Transform + pos: -54.5,59.5 + parent: 12 + - uid: 17922 + components: + - type: Transform + pos: -54.5,58.5 + parent: 12 - uid: 17934 components: - type: Transform @@ -36099,11 +36896,6 @@ entities: - type: Transform pos: 50.5,63.5 parent: 12 - - uid: 18582 - components: - - type: Transform - pos: 53.5,63.5 - parent: 12 - uid: 18589 components: - type: Transform @@ -36124,16 +36916,6 @@ entities: - type: Transform pos: 49.5,63.5 parent: 12 - - uid: 18642 - components: - - type: Transform - pos: 49.5,60.5 - parent: 12 - - uid: 18643 - components: - - type: Transform - pos: 48.5,60.5 - parent: 12 - uid: 18741 components: - type: Transform @@ -36344,16 +37126,36 @@ entities: - type: Transform pos: -45.5,22.5 parent: 12 + - uid: 19179 + components: + - type: Transform + pos: -54.5,57.5 + parent: 12 - uid: 19294 components: - type: Transform pos: 57.5,8.5 parent: 12 + - uid: 19377 + components: + - type: Transform + pos: -54.5,56.5 + parent: 12 - uid: 19556 components: - type: Transform pos: -0.5,-15.5 parent: 12 + - uid: 19560 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 12 + - uid: 19561 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 12 - uid: 19643 components: - type: Transform @@ -36399,11 +37201,6 @@ entities: - type: Transform pos: 52.5,64.5 parent: 12 - - uid: 19861 - components: - - type: Transform - pos: 48.5,61.5 - parent: 12 - uid: 19885 components: - type: Transform @@ -36419,10 +37216,15 @@ entities: - type: Transform pos: -19.5,-62.5 parent: 12 - - uid: 20552 + - uid: 20523 components: - type: Transform - pos: 36.5,0.5 + pos: -51.5,75.5 + parent: 12 + - uid: 20527 + components: + - type: Transform + pos: -50.5,75.5 parent: 12 - uid: 20570 components: @@ -38089,6 +38891,21 @@ entities: - type: Transform pos: -24.5,22.5 parent: 12 + - uid: 21696 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 12 + - uid: 21760 + components: + - type: Transform + pos: 37.5,-41.5 + parent: 12 + - uid: 21917 + components: + - type: Transform + pos: 39.5,-41.5 + parent: 12 - uid: 21920 components: - type: Transform @@ -38119,15 +38936,25 @@ entities: - type: Transform pos: -9.5,-1.5 parent: 12 - - uid: 22058 + - uid: 22026 components: - type: Transform - pos: -23.5,54.5 + pos: -49.5,75.5 parent: 12 - - uid: 22059 + - uid: 22029 + components: + - type: Transform + pos: -48.5,75.5 + parent: 12 + - uid: 22031 components: - type: Transform - pos: -23.5,53.5 + pos: -47.5,75.5 + parent: 12 + - uid: 22058 + components: + - type: Transform + pos: -23.5,54.5 parent: 12 - uid: 22060 components: @@ -38139,6 +38966,11 @@ entities: - type: Transform pos: -46.5,53.5 parent: 12 + - uid: 22160 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 12 - uid: 22217 components: - type: Transform @@ -38249,11 +39081,6 @@ entities: - type: Transform pos: 42.5,43.5 parent: 12 - - uid: 24196 - components: - - type: Transform - pos: -54.5,61.5 - parent: 12 - uid: 24202 components: - type: Transform @@ -38264,25 +39091,20 @@ entities: - type: Transform pos: 46.5,-5.5 parent: 12 - - uid: 24255 - components: - - type: Transform - pos: -55.5,61.5 - parent: 12 - - uid: 24256 + - uid: 24234 components: - type: Transform - pos: -56.5,61.5 + pos: 31.5,-56.5 parent: 12 - uid: 24295 components: - type: Transform pos: -24.5,-60.5 parent: 12 - - uid: 24300 + - uid: 24325 components: - type: Transform - pos: -52.5,60.5 + pos: 13.5,-57.5 parent: 12 - uid: 24332 components: @@ -38294,35 +39116,25 @@ entities: - type: Transform pos: -28.5,10.5 parent: 12 - - uid: 24340 - components: - - type: Transform - pos: -52.5,59.5 - parent: 12 - uid: 24455 components: - type: Transform pos: 45.5,-5.5 parent: 12 - - uid: 24456 - components: - - type: Transform - pos: -52.5,58.5 - parent: 12 - uid: 24469 components: - type: Transform pos: 48.5,-5.5 parent: 12 - - uid: 24640 + - uid: 24496 components: - type: Transform - pos: 30.5,18.5 + pos: 12.5,-55.5 parent: 12 - - uid: 24642 + - uid: 24640 components: - type: Transform - pos: -52.5,57.5 + pos: 30.5,18.5 parent: 12 - uid: 24651 components: @@ -39374,6 +40186,11 @@ entities: - type: Transform pos: 65.5,44.5 parent: 12 + - uid: 25136 + components: + - type: Transform + pos: 12.5,-54.5 + parent: 12 - uid: 25137 components: - type: Transform @@ -40049,11 +40866,6 @@ entities: - type: Transform pos: 30.5,4.5 parent: 12 - - uid: 25465 - components: - - type: Transform - pos: 33.5,4.5 - parent: 12 - uid: 25483 components: - type: Transform @@ -40064,6 +40876,11 @@ entities: - type: Transform pos: -23.5,-12.5 parent: 12 + - uid: 25532 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 12 - uid: 25568 components: - type: Transform @@ -40144,11 +40961,21 @@ entities: - type: Transform pos: -52.5,-39.5 parent: 12 + - uid: 26242 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 12 - uid: 26243 components: - type: Transform pos: -53.5,-38.5 parent: 12 + - uid: 26250 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 12 - uid: 26295 components: - type: Transform @@ -40229,15 +41056,10 @@ entities: - type: Transform pos: 59.5,-48.5 parent: 12 - - uid: 26425 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 12 - - uid: 26434 + - uid: 26415 components: - type: Transform - pos: 51.5,0.5 + pos: -60.5,-25.5 parent: 12 - uid: 26444 components: @@ -40279,25 +41101,30 @@ entities: - type: Transform pos: 55.5,2.5 parent: 12 - - uid: 26500 + - uid: 26488 components: - type: Transform - pos: 31.5,4.5 + pos: 5.5,-15.5 parent: 12 - - uid: 26501 + - uid: 26489 components: - type: Transform - pos: 26.5,11.5 + pos: 4.5,-15.5 parent: 12 - - uid: 26502 + - uid: 26490 components: - type: Transform - pos: 35.5,4.5 + pos: 4.5,-16.5 parent: 12 - - uid: 26503 + - uid: 26500 components: - type: Transform - pos: 34.5,4.5 + pos: 31.5,4.5 + parent: 12 + - uid: 26501 + components: + - type: Transform + pos: 26.5,11.5 parent: 12 - uid: 26505 components: @@ -40319,25 +41146,20 @@ entities: - type: Transform pos: 31.5,7.5 parent: 12 - - uid: 26574 + - uid: 26536 components: - type: Transform - pos: 15.5,7.5 + pos: 11.5,26.5 parent: 12 - - uid: 26589 + - uid: 26537 components: - type: Transform - pos: 3.5,-21.5 + pos: 11.5,25.5 parent: 12 - - uid: 26599 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 12 - - uid: 26600 + - uid: 26574 components: - type: Transform - pos: 2.5,-21.5 + pos: 15.5,7.5 parent: 12 - uid: 26615 components: @@ -40354,6 +41176,16 @@ entities: - type: Transform pos: 26.5,7.5 parent: 12 + - uid: 26750 + components: + - type: Transform + pos: 48.5,59.5 + parent: 12 + - uid: 26751 + components: + - type: Transform + pos: 48.5,60.5 + parent: 12 - uid: 26766 components: - type: Transform @@ -40409,6 +41241,11 @@ entities: - type: Transform pos: 28.5,10.5 parent: 12 + - uid: 26803 + components: + - type: Transform + pos: 48.5,57.5 + parent: 12 - uid: 26812 components: - type: Transform @@ -40474,6 +41311,66 @@ entities: - type: Transform pos: 65.5,-2.5 parent: 12 + - uid: 26875 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 12 + - uid: 26876 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 12 + - uid: 26877 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 12 + - uid: 26878 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 12 + - uid: 26879 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 12 + - uid: 26880 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 12 + - uid: 26881 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 12 + - uid: 26882 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 12 + - uid: 26886 + components: + - type: Transform + pos: 57.5,6.5 + parent: 12 + - uid: 26904 + components: + - type: Transform + pos: -60.5,-29.5 + parent: 12 + - uid: 26905 + components: + - type: Transform + pos: -60.5,-24.5 + parent: 12 + - uid: 26915 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 12 - uid: 26922 components: - type: Transform @@ -40544,6 +41441,16 @@ entities: - type: Transform pos: 65.5,-1.5 parent: 12 + - uid: 26951 + components: + - type: Transform + pos: 41.5,-41.5 + parent: 12 + - uid: 26952 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 12 - uid: 26957 components: - type: Transform @@ -40589,11 +41496,41 @@ entities: - type: Transform pos: 58.5,-0.5 parent: 12 + - uid: 26980 + components: + - type: Transform + pos: -19.5,-67.5 + parent: 12 + - uid: 26997 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 12 + - uid: 27030 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 12 + - uid: 27038 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 12 + - uid: 27045 + components: + - type: Transform + pos: 38.5,0.5 + parent: 12 - uid: 27046 components: - type: Transform pos: 9.5,31.5 parent: 12 + - uid: 27100 + components: + - type: Transform + pos: -60.5,-14.5 + parent: 12 - uid: 27109 components: - type: Transform @@ -40614,6 +41551,16 @@ entities: - type: Transform pos: 48.5,-7.5 parent: 12 + - uid: 27209 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 12 + - uid: 27241 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 12 - uid: 27257 components: - type: Transform @@ -40664,6 +41611,21 @@ entities: - type: Transform pos: 73.5,50.5 parent: 12 + - uid: 27382 + components: + - type: Transform + pos: -60.5,-26.5 + parent: 12 + - uid: 27392 + components: + - type: Transform + pos: -60.5,-22.5 + parent: 12 + - uid: 27393 + components: + - type: Transform + pos: -60.5,-23.5 + parent: 12 - uid: 27417 components: - type: Transform @@ -40784,6 +41746,11 @@ entities: - type: Transform pos: -51.5,-16.5 parent: 12 + - uid: 27446 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 12 - uid: 27512 components: - type: Transform @@ -40794,6 +41761,16 @@ entities: - type: Transform pos: -28.5,-0.5 parent: 12 + - uid: 27712 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 12 + - uid: 27721 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 12 - uid: 27766 components: - type: Transform @@ -41014,31 +41991,6 @@ entities: - type: Transform pos: -58.5,-28.5 parent: 12 - - uid: 27811 - components: - - type: Transform - pos: -58.5,-26.5 - parent: 12 - - uid: 27812 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 12 - - uid: 27813 - components: - - type: Transform - pos: -58.5,-24.5 - parent: 12 - - uid: 27814 - components: - - type: Transform - pos: -58.5,-23.5 - parent: 12 - - uid: 27815 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 12 - uid: 27816 components: - type: Transform @@ -41064,55 +42016,50 @@ entities: - type: Transform pos: -58.5,-18.5 parent: 12 - - uid: 27821 - components: - - type: Transform - pos: -58.5,-17.5 - parent: 12 - - uid: 27822 + - uid: 27848 components: - type: Transform - pos: -57.5,-17.5 + pos: -21.5,59.5 parent: 12 - - uid: 27823 + - uid: 27849 components: - type: Transform - pos: -57.5,-16.5 + pos: -22.5,59.5 parent: 12 - - uid: 27824 + - uid: 27850 components: - type: Transform - pos: -56.5,-16.5 + pos: -23.5,59.5 parent: 12 - - uid: 27825 + - uid: 27911 components: - type: Transform - pos: -55.5,-16.5 + pos: -26.5,62.5 parent: 12 - - uid: 27826 + - uid: 28071 components: - type: Transform - pos: -54.5,-16.5 + pos: -50.5,68.5 parent: 12 - - uid: 27848 + - uid: 28075 components: - type: Transform - pos: -21.5,59.5 + pos: -49.5,68.5 parent: 12 - - uid: 27849 + - uid: 28117 components: - type: Transform - pos: -22.5,59.5 + pos: -53.5,71.5 parent: 12 - - uid: 27850 + - uid: 28122 components: - type: Transform - pos: -23.5,59.5 + pos: -53.5,73.5 parent: 12 - - uid: 27911 + - uid: 28138 components: - type: Transform - pos: -26.5,62.5 + pos: -53.5,72.5 parent: 12 - uid: 28186 components: @@ -41129,11 +42076,21 @@ entities: - type: Transform pos: -52.5,-12.5 parent: 12 + - uid: 28196 + components: + - type: Transform + pos: -18.5,-65.5 + parent: 12 - uid: 28197 components: - type: Transform pos: -52.5,-13.5 parent: 12 + - uid: 28198 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 12 - uid: 28206 components: - type: Transform @@ -41169,35 +42126,15 @@ entities: - type: Transform pos: -27.5,-14.5 parent: 12 - - uid: 28298 - components: - - type: Transform - pos: -52.5,-18.5 - parent: 12 - - uid: 28299 - components: - - type: Transform - pos: -52.5,-17.5 - parent: 12 - - uid: 28300 - components: - - type: Transform - pos: -51.5,-18.5 - parent: 12 - - uid: 28301 - components: - - type: Transform - pos: -49.5,-18.5 - parent: 12 - - uid: 28302 + - uid: 28291 components: - type: Transform - pos: -50.5,-18.5 + pos: -21.5,-67.5 parent: 12 - - uid: 28303 + - uid: 28297 components: - type: Transform - pos: -49.5,-19.5 + pos: -22.5,-67.5 parent: 12 - uid: 28304 components: @@ -41209,25 +42146,15 @@ entities: - type: Transform pos: -45.5,-20.5 parent: 12 - - uid: 28306 - components: - - type: Transform - pos: -39.5,-18.5 - parent: 12 - - uid: 28307 - components: - - type: Transform - pos: -38.5,-18.5 - parent: 12 - - uid: 28308 + - uid: 28313 components: - type: Transform - pos: -37.5,-18.5 + pos: -29.5,-0.5 parent: 12 - - uid: 28313 + - uid: 28327 components: - type: Transform - pos: -29.5,-0.5 + pos: 33.5,-49.5 parent: 12 - uid: 28352 components: @@ -41294,6 +42221,36 @@ entities: - type: Transform pos: -28.5,-15.5 parent: 12 + - uid: 28418 + components: + - type: Transform + pos: 33.5,-50.5 + parent: 12 + - uid: 28435 + components: + - type: Transform + pos: 33.5,-51.5 + parent: 12 + - uid: 28438 + components: + - type: Transform + pos: 33.5,-52.5 + parent: 12 + - uid: 28439 + components: + - type: Transform + pos: 33.5,-53.5 + parent: 12 + - uid: 28442 + components: + - type: Transform + pos: 33.5,-54.5 + parent: 12 + - uid: 28443 + components: + - type: Transform + pos: 33.5,-55.5 + parent: 12 - uid: 28457 components: - type: Transform @@ -41304,6 +42261,11 @@ entities: - type: Transform pos: -40.5,30.5 parent: 12 + - uid: 28464 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 12 - uid: 28475 components: - type: Transform @@ -41394,6 +42356,16 @@ entities: - type: Transform pos: 1.5,-22.5 parent: 12 + - uid: 28493 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 12 + - uid: 28494 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 12 - uid: 28495 components: - type: Transform @@ -41469,16 +42441,56 @@ entities: - type: Transform pos: -5.5,9.5 parent: 12 + - uid: 28522 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 12 + - uid: 28533 + components: + - type: Transform + pos: 10.5,-56.5 + parent: 12 + - uid: 28534 + components: + - type: Transform + pos: 9.5,-56.5 + parent: 12 + - uid: 28535 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 12 + - uid: 28553 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 12 - uid: 28556 components: - type: Transform pos: 31.5,15.5 parent: 12 + - uid: 28558 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 12 + - uid: 28613 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 12 - uid: 28630 components: - type: Transform pos: 32.5,19.5 parent: 12 + - uid: 28632 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 12 - uid: 28656 components: - type: Transform @@ -41554,6 +42566,21 @@ entities: - type: Transform pos: -40.5,27.5 parent: 12 + - uid: 28801 + components: + - type: Transform + pos: 34.5,-48.5 + parent: 12 + - uid: 28804 + components: + - type: Transform + pos: 35.5,-48.5 + parent: 12 + - uid: 28807 + components: + - type: Transform + pos: 35.5,-47.5 + parent: 12 - uid: 28866 components: - type: Transform @@ -41634,11 +42661,6 @@ entities: - type: Transform pos: 55.5,5.5 parent: 12 - - uid: 28890 - components: - - type: Transform - pos: 58.5,7.5 - parent: 12 - uid: 28908 components: - type: Transform @@ -41799,11 +42821,66 @@ entities: - type: Transform pos: 5.5,-11.5 parent: 12 + - uid: 28978 + components: + - type: Transform + pos: -54.5,62.5 + parent: 12 + - uid: 28980 + components: + - type: Transform + pos: -54.5,61.5 + parent: 12 + - uid: 28982 + components: + - type: Transform + pos: -46.5,74.5 + parent: 12 + - uid: 29018 + components: + - type: Transform + pos: -53.5,69.5 + parent: 12 + - uid: 29039 + components: + - type: Transform + pos: -52.5,68.5 + parent: 12 + - uid: 29040 + components: + - type: Transform + pos: -51.5,68.5 + parent: 12 + - uid: 29041 + components: + - type: Transform + pos: -52.5,75.5 + parent: 12 + - uid: 29042 + components: + - type: Transform + pos: -53.5,74.5 + parent: 12 + - uid: 29043 + components: + - type: Transform + pos: -53.5,75.5 + parent: 12 + - uid: 29059 + components: + - type: Transform + pos: -53.5,70.5 + parent: 12 - uid: 29093 components: - type: Transform pos: 32.5,18.5 parent: 12 + - uid: 29102 + components: + - type: Transform + pos: -46.5,75.5 + parent: 12 - uid: 29124 components: - type: Transform @@ -42014,6 +43091,16 @@ entities: - type: Transform pos: 48.5,5.5 parent: 12 + - uid: 29368 + components: + - type: Transform + pos: -53.5,62.5 + parent: 12 + - uid: 29373 + components: + - type: Transform + pos: -55.5,62.5 + parent: 12 - uid: 29414 components: - type: Transform @@ -42039,111 +43126,16 @@ entities: - type: Transform pos: -44.5,65.5 parent: 12 - - uid: 29601 - components: - - type: Transform - pos: -43.5,73.5 - parent: 12 - - uid: 29604 - components: - - type: Transform - pos: -44.5,73.5 - parent: 12 - - uid: 29617 - components: - - type: Transform - pos: -45.5,73.5 - parent: 12 - uid: 29618 components: - type: Transform pos: -46.5,73.5 parent: 12 - - uid: 29619 - components: - - type: Transform - pos: -47.5,73.5 - parent: 12 - - uid: 29620 - components: - - type: Transform - pos: -48.5,73.5 - parent: 12 - - uid: 29621 - components: - - type: Transform - pos: -49.5,73.5 - parent: 12 - - uid: 29622 - components: - - type: Transform - pos: -49.5,72.5 - parent: 12 - - uid: 29623 - components: - - type: Transform - pos: -50.5,72.5 - parent: 12 - - uid: 29624 - components: - - type: Transform - pos: -50.5,71.5 - parent: 12 - - uid: 29625 - components: - - type: Transform - pos: -51.5,71.5 - parent: 12 - - uid: 29626 - components: - - type: Transform - pos: -51.5,70.5 - parent: 12 - - uid: 29627 - components: - - type: Transform - pos: -51.5,69.5 - parent: 12 - - uid: 29628 - components: - - type: Transform - pos: -51.5,68.5 - parent: 12 - - uid: 29629 - components: - - type: Transform - pos: -51.5,67.5 - parent: 12 - - uid: 29630 - components: - - type: Transform - pos: -50.5,69.5 - parent: 12 - - uid: 29631 - components: - - type: Transform - pos: -49.5,69.5 - parent: 12 - - uid: 29632 - components: - - type: Transform - pos: -48.5,69.5 - parent: 12 - - uid: 29633 - components: - - type: Transform - pos: -47.5,69.5 - parent: 12 - uid: 29635 components: - type: Transform pos: -46.5,68.5 parent: 12 - - uid: 29637 - components: - - type: Transform - pos: -45.5,69.5 - parent: 12 - uid: 29639 components: - type: Transform @@ -42154,26 +43146,6 @@ entities: - type: Transform pos: -46.5,71.5 parent: 12 - - uid: 29643 - components: - - type: Transform - pos: -44.5,69.5 - parent: 12 - - uid: 29644 - components: - - type: Transform - pos: -43.5,69.5 - parent: 12 - - uid: 29645 - components: - - type: Transform - pos: -43.5,68.5 - parent: 12 - - uid: 29646 - components: - - type: Transform - pos: -42.5,68.5 - parent: 12 - uid: 29649 components: - type: Transform @@ -42324,11 +43296,6 @@ entities: - type: Transform pos: -41.5,65.5 parent: 12 - - uid: 29755 - components: - - type: Transform - pos: -41.5,66.5 - parent: 12 - uid: 29756 components: - type: Transform @@ -42489,11 +43456,6 @@ entities: - type: Transform pos: 11.5,-24.5 parent: 12 - - uid: 29980 - components: - - type: Transform - pos: 14.5,-24.5 - parent: 12 - uid: 29983 components: - type: Transform @@ -42509,6 +43471,126 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 12 + - uid: 30037 + components: + - type: Transform + pos: -31.5,73.5 + parent: 12 + - uid: 30047 + components: + - type: Transform + pos: -31.5,74.5 + parent: 12 + - uid: 30052 + components: + - type: Transform + pos: -31.5,75.5 + parent: 12 + - uid: 30056 + components: + - type: Transform + pos: -31.5,76.5 + parent: 12 + - uid: 30057 + components: + - type: Transform + pos: -31.5,77.5 + parent: 12 + - uid: 30059 + components: + - type: Transform + pos: -31.5,78.5 + parent: 12 + - uid: 30062 + components: + - type: Transform + pos: -30.5,78.5 + parent: 12 + - uid: 30063 + components: + - type: Transform + pos: -29.5,78.5 + parent: 12 + - uid: 30064 + components: + - type: Transform + pos: -28.5,78.5 + parent: 12 + - uid: 30068 + components: + - type: Transform + pos: -27.5,78.5 + parent: 12 + - uid: 30072 + components: + - type: Transform + pos: -28.5,77.5 + parent: 12 + - uid: 30078 + components: + - type: Transform + pos: -38.5,73.5 + parent: 12 + - uid: 30085 + components: + - type: Transform + pos: -38.5,74.5 + parent: 12 + - uid: 30088 + components: + - type: Transform + pos: -37.5,74.5 + parent: 12 + - uid: 30094 + components: + - type: Transform + pos: -37.5,75.5 + parent: 12 + - uid: 30096 + components: + - type: Transform + pos: -37.5,76.5 + parent: 12 + - uid: 30101 + components: + - type: Transform + pos: -37.5,77.5 + parent: 12 + - uid: 30112 + components: + - type: Transform + pos: -37.5,78.5 + parent: 12 + - uid: 30144 + components: + - type: Transform + pos: -41.5,67.5 + parent: 12 + - uid: 30149 + components: + - type: Transform + pos: -42.5,67.5 + parent: 12 + - uid: 30159 + components: + - type: Transform + pos: -43.5,67.5 + parent: 12 + - uid: 30163 + components: + - type: Transform + pos: -43.5,68.5 + parent: 12 + - uid: 30165 + components: + - type: Transform + pos: -44.5,68.5 + parent: 12 + - uid: 30175 + components: + - type: Transform + pos: -45.5,68.5 + parent: 12 - uid: 30242 components: - type: Transform @@ -43409,21 +44491,6 @@ entities: - type: Transform pos: -61.5,-19.5 parent: 12 - - uid: 31645 - components: - - type: Transform - pos: -59.5,-28.5 - parent: 12 - - uid: 31646 - components: - - type: Transform - pos: -60.5,-28.5 - parent: 12 - - uid: 31647 - components: - - type: Transform - pos: -61.5,-28.5 - parent: 12 - uid: 31648 components: - type: Transform @@ -43449,31 +44516,6 @@ entities: - type: Transform pos: -65.5,-27.5 parent: 12 - - uid: 31653 - components: - - type: Transform - pos: -61.5,-26.5 - parent: 12 - - uid: 31654 - components: - - type: Transform - pos: -61.5,-25.5 - parent: 12 - - uid: 31655 - components: - - type: Transform - pos: -61.5,-24.5 - parent: 12 - - uid: 31656 - components: - - type: Transform - pos: -61.5,-23.5 - parent: 12 - - uid: 31657 - components: - - type: Transform - pos: -61.5,-22.5 - parent: 12 - uid: 31658 components: - type: Transform @@ -43484,16 +44526,6 @@ entities: - type: Transform pos: -61.5,-20.5 parent: 12 - - uid: 31660 - components: - - type: Transform - pos: -60.5,-20.5 - parent: 12 - - uid: 31661 - components: - - type: Transform - pos: -59.5,-20.5 - parent: 12 - uid: 31662 components: - type: Transform @@ -43534,11 +44566,6 @@ entities: - type: Transform pos: -65.5,-19.5 parent: 12 - - uid: 31710 - components: - - type: Transform - pos: -61.5,-29.5 - parent: 12 - uid: 31711 components: - type: Transform @@ -43719,8 +44746,8 @@ entities: - uid: 28714 components: - type: Transform - rot: -37.69911184307754 rad - pos: 54.474026,-5.1717267 + rot: -50.265482457436725 rad + pos: 55.51719,-5.372972 parent: 12 - proto: CableApcStack1 entities: @@ -43729,11 +44756,6 @@ entities: - type: Transform pos: 44.4912,60.56555 parent: 12 - - uid: 1048 - components: - - type: Transform - pos: -52.5,-16.5 - parent: 12 - uid: 9130 components: - type: Transform @@ -43749,11 +44771,6 @@ entities: - type: Transform pos: 43.47266,63.509254 parent: 12 - - uid: 22062 - components: - - type: Transform - pos: -22.412212,55.392742 - parent: 12 - uid: 31067 components: - type: Transform @@ -43767,6 +44784,11 @@ entities: parent: 12 - proto: CableApcStack10 entities: + - uid: 3011 + components: + - type: Transform + pos: -25.504803,56.737953 + parent: 12 - uid: 17622 components: - type: Transform @@ -43774,10 +44796,16 @@ entities: parent: 12 - proto: Cablecuffs entities: - - uid: 22063 + - uid: 5820 components: - type: Transform - pos: -24.345606,55.376434 + pos: -24.5,54.5 + parent: 12 + - uid: 23759 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -54.55476,56.53342 parent: 12 - uid: 31135 components: @@ -43792,16 +44820,6 @@ entities: - type: Transform pos: 54.5,7.5 parent: 12 - - uid: 20 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 12 - - uid: 21 - components: - - type: Transform - pos: 50.5,62.5 - parent: 12 - uid: 71 components: - type: Transform @@ -43832,6 +44850,11 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 12 + - uid: 212 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 12 - uid: 230 components: - type: Transform @@ -43877,10 +44900,15 @@ entities: - type: Transform pos: 8.5,28.5 parent: 12 - - uid: 681 + - uid: 510 components: - type: Transform - pos: 31.5,-10.5 + pos: 6.5,-54.5 + parent: 12 + - uid: 617 + components: + - type: Transform + pos: 36.5,2.5 parent: 12 - uid: 693 components: @@ -43932,11 +44960,6 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 12 - - uid: 899 - components: - - type: Transform - pos: 39.5,3.5 - parent: 12 - uid: 904 components: - type: Transform @@ -43957,6 +44980,11 @@ entities: - type: Transform pos: -44.5,-14.5 parent: 12 + - uid: 1048 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 12 - uid: 1170 components: - type: Transform @@ -44112,21 +45140,11 @@ entities: - type: Transform pos: 35.5,-1.5 parent: 12 - - uid: 1348 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 12 - uid: 1349 components: - type: Transform pos: 43.5,-3.5 parent: 12 - - uid: 1350 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - uid: 1353 components: - type: Transform @@ -44135,12 +45153,7 @@ entities: - uid: 1358 components: - type: Transform - pos: -15.5,-29.5 - parent: 12 - - uid: 1359 - components: - - type: Transform - pos: -15.5,-28.5 + pos: 38.5,2.5 parent: 12 - uid: 1360 components: @@ -44207,11 +45220,6 @@ entities: - type: Transform pos: 61.5,4.5 parent: 12 - - uid: 2090 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - uid: 2119 components: - type: Transform @@ -44287,6 +45295,31 @@ entities: - type: Transform pos: 30.5,-12.5 parent: 12 + - uid: 2392 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 12 + - uid: 2394 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 12 + - uid: 2410 + components: + - type: Transform + pos: 40.5,1.5 + parent: 12 + - uid: 2413 + components: + - type: Transform + pos: 39.5,0.5 + parent: 12 + - uid: 2422 + components: + - type: Transform + pos: 39.5,2.5 + parent: 12 - uid: 2466 components: - type: Transform @@ -44297,6 +45330,11 @@ entities: - type: Transform pos: 14.5,-15.5 parent: 12 + - uid: 2575 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 12 - uid: 2669 components: - type: Transform @@ -44337,26 +45375,11 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 12 - - uid: 3077 - components: - - type: Transform - pos: 37.5,3.5 - parent: 12 - uid: 3131 components: - type: Transform pos: 8.5,-14.5 parent: 12 - - uid: 3147 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 12 - - uid: 3148 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 12 - uid: 3149 components: - type: Transform @@ -44527,6 +45550,11 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 12 + - uid: 3238 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 12 - uid: 3517 components: - type: Transform @@ -44537,6 +45565,11 @@ entities: - type: Transform pos: 16.5,5.5 parent: 12 + - uid: 3940 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 12 - uid: 3945 components: - type: Transform @@ -44647,6 +45680,21 @@ entities: - type: Transform pos: 12.5,-18.5 parent: 12 + - uid: 4466 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 12 + - uid: 4467 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 12 + - uid: 4470 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 12 - uid: 4480 components: - type: Transform @@ -44867,6 +45915,16 @@ entities: - type: Transform pos: 12.5,-16.5 parent: 12 + - uid: 4551 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 12 + - uid: 4552 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 12 - uid: 4600 components: - type: Transform @@ -44937,6 +45995,11 @@ entities: - type: Transform pos: -14.5,-23.5 parent: 12 + - uid: 4709 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 12 - uid: 4713 components: - type: Transform @@ -44957,11 +46020,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 12 - - uid: 4785 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 12 - uid: 4799 components: - type: Transform @@ -44992,11 +46050,6 @@ entities: - type: Transform pos: 5.5,1.5 parent: 12 - - uid: 4875 - components: - - type: Transform - pos: 40.5,0.5 - parent: 12 - uid: 4895 components: - type: Transform @@ -45012,11 +46065,6 @@ entities: - type: Transform pos: 34.5,-1.5 parent: 12 - - uid: 4957 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 12 - uid: 4970 components: - type: Transform @@ -45112,11 +46160,6 @@ entities: - type: Transform pos: -25.5,-55.5 parent: 12 - - uid: 5177 - components: - - type: Transform - pos: 33.5,-10.5 - parent: 12 - uid: 5179 components: - type: Transform @@ -45222,6 +46265,26 @@ entities: - type: Transform pos: 1.5,15.5 parent: 12 + - uid: 5483 + components: + - type: Transform + pos: 21.5,2.5 + parent: 12 + - uid: 5487 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 12 + - uid: 5500 + components: + - type: Transform + pos: 39.5,1.5 + parent: 12 + - uid: 5535 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 12 - uid: 5638 components: - type: Transform @@ -45242,6 +46305,11 @@ entities: - type: Transform pos: 17.5,-16.5 parent: 12 + - uid: 5725 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 12 - uid: 5759 components: - type: Transform @@ -45272,6 +46340,11 @@ entities: - type: Transform pos: 9.5,-20.5 parent: 12 + - uid: 6291 + components: + - type: Transform + pos: 37.5,2.5 + parent: 12 - uid: 6414 components: - type: Transform @@ -46002,11 +47075,6 @@ entities: - type: Transform pos: 29.5,5.5 parent: 12 - - uid: 7283 - components: - - type: Transform - pos: 33.5,0.5 - parent: 12 - uid: 7284 components: - type: Transform @@ -46037,6 +47105,11 @@ entities: - type: Transform pos: 61.5,0.5 parent: 12 + - uid: 7485 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 12 - uid: 7549 components: - type: Transform @@ -46367,11 +47440,6 @@ entities: - type: Transform pos: 30.5,16.5 parent: 12 - - uid: 8441 - components: - - type: Transform - pos: 34.5,0.5 - parent: 12 - uid: 8494 components: - type: Transform @@ -46737,6 +47805,11 @@ entities: - type: Transform pos: -55.5,22.5 parent: 12 + - uid: 10345 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 12 - uid: 10462 components: - type: Transform @@ -47042,25 +48115,10 @@ entities: - type: Transform pos: 43.5,-0.5 parent: 12 - - uid: 10814 - components: - - type: Transform - pos: 36.5,4.5 - parent: 12 - - uid: 10815 - components: - - type: Transform - pos: 35.5,4.5 - parent: 12 - - uid: 10816 - components: - - type: Transform - pos: 34.5,4.5 - parent: 12 - - uid: 10817 + - uid: 10803 components: - type: Transform - pos: 33.5,4.5 + pos: 22.5,3.5 parent: 12 - uid: 10827 components: @@ -47222,6 +48280,11 @@ entities: - type: Transform pos: 27.5,10.5 parent: 12 + - uid: 10874 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 12 - uid: 10878 components: - type: Transform @@ -47382,6 +48445,11 @@ entities: - type: Transform pos: 18.5,20.5 parent: 12 + - uid: 11323 + components: + - type: Transform + pos: 21.5,3.5 + parent: 12 - uid: 11330 components: - type: Transform @@ -47417,11 +48485,6 @@ entities: - type: Transform pos: 21.5,24.5 parent: 12 - - uid: 11377 - components: - - type: Transform - pos: 35.5,0.5 - parent: 12 - uid: 11395 components: - type: Transform @@ -47487,16 +48550,6 @@ entities: - type: Transform pos: 62.5,6.5 parent: 12 - - uid: 11591 - components: - - type: Transform - pos: 40.5,3.5 - parent: 12 - - uid: 11646 - components: - - type: Transform - pos: 38.5,3.5 - parent: 12 - uid: 11867 components: - type: Transform @@ -47577,15 +48630,15 @@ entities: - type: Transform pos: -2.5,34.5 parent: 12 - - uid: 11955 + - uid: 11944 components: - type: Transform - pos: 40.5,-0.5 + pos: 12.5,-14.5 parent: 12 - - uid: 11978 + - uid: 11955 components: - type: Transform - pos: 40.5,2.5 + pos: 40.5,-0.5 parent: 12 - uid: 11986 components: @@ -50322,55 +51375,15 @@ entities: - type: Transform pos: 1.5,62.5 parent: 12 - - uid: 18558 - components: - - type: Transform - pos: 50.5,57.5 - parent: 12 - - uid: 18559 - components: - - type: Transform - pos: 50.5,58.5 - parent: 12 - - uid: 18560 - components: - - type: Transform - pos: 50.5,59.5 - parent: 12 - - uid: 18561 - components: - - type: Transform - pos: 50.5,60.5 - parent: 12 - - uid: 18562 - components: - - type: Transform - pos: 50.5,61.5 - parent: 12 - - uid: 18627 - components: - - type: Transform - pos: 50.5,63.5 - parent: 12 - - uid: 18628 - components: - - type: Transform - pos: 51.5,63.5 - parent: 12 - - uid: 18629 - components: - - type: Transform - pos: 52.5,63.5 - parent: 12 - - uid: 18630 + - uid: 18640 components: - type: Transform - pos: 53.5,63.5 + pos: 53.5,61.5 parent: 12 - - uid: 18640 + - uid: 18709 components: - type: Transform - pos: 53.5,61.5 + pos: -22.5,-67.5 parent: 12 - uid: 19244 components: @@ -50722,6 +51735,16 @@ entities: - type: Transform pos: -49.5,46.5 parent: 12 + - uid: 21032 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 12 + - uid: 21065 + components: + - type: Transform + pos: -31.5,-68.5 + parent: 12 - uid: 21077 components: - type: Transform @@ -50792,6 +51815,11 @@ entities: - type: Transform pos: -10.5,-2.5 parent: 12 + - uid: 21906 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 12 - uid: 21912 components: - type: Transform @@ -50817,6 +51845,11 @@ entities: - type: Transform pos: 15.5,5.5 parent: 12 + - uid: 21935 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 12 - uid: 21937 components: - type: Transform @@ -50857,6 +51890,11 @@ entities: - type: Transform pos: 31.5,-7.5 parent: 12 + - uid: 22063 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 12 - uid: 22109 components: - type: Transform @@ -50902,11 +51940,6 @@ entities: - type: Transform pos: -49.5,25.5 parent: 12 - - uid: 23101 - components: - - type: Transform - pos: 40.5,1.5 - parent: 12 - uid: 23104 components: - type: Transform @@ -51437,6 +52470,11 @@ entities: - type: Transform pos: -24.5,-46.5 parent: 12 + - uid: 24565 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 12 - uid: 24633 components: - type: Transform @@ -51517,6 +52555,11 @@ entities: - type: Transform pos: 58.5,5.5 parent: 12 + - uid: 25534 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 12 - uid: 25535 components: - type: Transform @@ -51532,6 +52575,11 @@ entities: - type: Transform pos: 30.5,14.5 parent: 12 + - uid: 25613 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 12 - uid: 25763 components: - type: Transform @@ -51762,15 +52810,20 @@ entities: - type: Transform pos: -26.5,27.5 parent: 12 + - uid: 25832 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 12 - uid: 25839 components: - type: Transform pos: -25.5,-54.5 parent: 12 - - uid: 25888 + - uid: 26072 components: - type: Transform - pos: 36.5,0.5 + pos: 7.5,-14.5 parent: 12 - uid: 26079 components: @@ -51817,6 +52870,26 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 + - uid: 26154 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 12 + - uid: 26202 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 12 + - uid: 26261 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 12 + - uid: 26262 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 12 - uid: 26417 components: - type: Transform @@ -51872,16 +52945,51 @@ entities: - type: Transform pos: 58.5,1.5 parent: 12 + - uid: 26525 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 12 + - uid: 26526 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 12 + - uid: 26527 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 12 + - uid: 26528 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 12 + - uid: 26529 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 12 - uid: 26543 components: - type: Transform pos: -9.5,-19.5 parent: 12 + - uid: 26552 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 12 - uid: 26583 components: - type: Transform pos: 30.5,-2.5 parent: 12 + - uid: 26589 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 - uid: 26606 components: - type: Transform @@ -51957,10 +53065,10 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 12 - - uid: 26690 + - uid: 26680 components: - type: Transform - pos: 36.5,3.5 + pos: 40.5,-14.5 parent: 12 - uid: 26701 components: @@ -51977,6 +53085,16 @@ entities: - type: Transform pos: 65.5,0.5 parent: 12 + - uid: 26713 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 12 + - uid: 26714 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 12 - uid: 26719 components: - type: Transform @@ -52027,15 +53145,70 @@ entities: - type: Transform pos: 45.5,8.5 parent: 12 + - uid: 26752 + components: + - type: Transform + pos: 22.5,4.5 + parent: 12 + - uid: 26757 + components: + - type: Transform + pos: 21.5,0.5 + parent: 12 + - uid: 26763 + components: + - type: Transform + pos: 21.5,1.5 + parent: 12 - uid: 26805 components: - type: Transform pos: 31.5,-4.5 parent: 12 - - uid: 26833 + - uid: 26853 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 12 + - uid: 26855 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 12 + - uid: 26857 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 12 + - uid: 26859 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 12 + - uid: 26860 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 12 + - uid: 26862 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 12 + - uid: 26863 components: - type: Transform - pos: 40.5,-1.5 + pos: 22.5,-13.5 + parent: 12 + - uid: 26864 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 12 + - uid: 26867 + components: + - type: Transform + pos: 21.5,-14.5 parent: 12 - uid: 26893 components: @@ -52047,10 +53220,20 @@ entities: - type: Transform pos: 30.5,-4.5 parent: 12 - - uid: 26927 + - uid: 26901 components: - type: Transform - pos: 33.5,-9.5 + pos: -32.5,-68.5 + parent: 12 + - uid: 26950 + components: + - type: Transform + pos: -21.5,-67.5 + parent: 12 + - uid: 26975 + components: + - type: Transform + pos: -51.5,-18.5 parent: 12 - uid: 27028 components: @@ -52132,6 +53315,21 @@ entities: - type: Transform pos: 43.5,-11.5 parent: 12 + - uid: 27123 + components: + - type: Transform + pos: -18.5,-66.5 + parent: 12 + - uid: 27124 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 12 + - uid: 27126 + components: + - type: Transform + pos: -19.5,-67.5 + parent: 12 - uid: 27132 components: - type: Transform @@ -52427,6 +53625,11 @@ entities: - type: Transform pos: 44.5,-13.5 parent: 12 + - uid: 27245 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 12 - uid: 27339 components: - type: Transform @@ -52662,50 +53865,15 @@ entities: - type: Transform pos: -58.5,-18.5 parent: 12 - - uid: 27495 - components: - - type: Transform - pos: -58.5,-17.5 - parent: 12 - - uid: 27496 - components: - - type: Transform - pos: -57.5,-17.5 - parent: 12 - - uid: 27497 - components: - - type: Transform - pos: -57.5,-16.5 - parent: 12 - - uid: 27498 - components: - - type: Transform - pos: -56.5,-16.5 - parent: 12 - uid: 27499 components: - type: Transform - pos: -55.5,-16.5 - parent: 12 - - uid: 27500 - components: - - type: Transform - pos: -54.5,-16.5 + pos: -32.5,-66.5 parent: 12 - uid: 27501 components: - type: Transform - pos: -53.5,-16.5 - parent: 12 - - uid: 27502 - components: - - type: Transform - pos: -52.5,-16.5 - parent: 12 - - uid: 27503 - components: - - type: Transform - pos: -51.5,-16.5 + pos: -28.5,-68.5 parent: 12 - uid: 27504 components: @@ -52747,6 +53915,11 @@ entities: - type: Transform pos: -45.5,-14.5 parent: 12 + - uid: 27514 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 12 - uid: 27515 components: - type: Transform @@ -53002,6 +54175,16 @@ entities: - type: Transform pos: -53.5,-33.5 parent: 12 + - uid: 27600 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 12 + - uid: 27601 + components: + - type: Transform + pos: -57.5,-18.5 + parent: 12 - uid: 27609 components: - type: Transform @@ -53252,16 +54435,181 @@ entities: - type: Transform pos: -37.5,-30.5 parent: 12 + - uid: 27707 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 12 + - uid: 27718 + components: + - type: Transform + pos: -19.5,-66.5 + parent: 12 - uid: 27923 components: - type: Transform pos: -34.5,59.5 parent: 12 + - uid: 27991 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 12 + - uid: 27993 + components: + - type: Transform + pos: -25.5,-69.5 + parent: 12 + - uid: 28118 + components: + - type: Transform + pos: -38.5,-62.5 + parent: 12 + - uid: 28119 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 12 + - uid: 28121 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 12 + - uid: 28142 + components: + - type: Transform + pos: -36.5,-64.5 + parent: 12 + - uid: 28144 + components: + - type: Transform + pos: -37.5,-64.5 + parent: 12 + - uid: 28145 + components: + - type: Transform + pos: -38.5,-64.5 + parent: 12 + - uid: 28160 + components: + - type: Transform + pos: -38.5,-66.5 + parent: 12 + - uid: 28161 + components: + - type: Transform + pos: -37.5,-66.5 + parent: 12 + - uid: 28162 + components: + - type: Transform + pos: -36.5,-66.5 + parent: 12 + - uid: 28181 + components: + - type: Transform + pos: -36.5,-68.5 + parent: 12 + - uid: 28192 + components: + - type: Transform + pos: -38.5,-68.5 + parent: 12 + - uid: 28193 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 12 + - uid: 28199 + components: + - type: Transform + pos: -29.5,-68.5 + parent: 12 + - uid: 28210 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 12 - uid: 28221 components: - type: Transform pos: -33.5,59.5 parent: 12 + - uid: 28223 + components: + - type: Transform + pos: -18.5,-65.5 + parent: 12 + - uid: 28225 + components: + - type: Transform + pos: -32.5,-64.5 + parent: 12 + - uid: 28226 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 12 + - uid: 28227 + components: + - type: Transform + pos: -30.5,-64.5 + parent: 12 + - uid: 28228 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 12 + - uid: 28229 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 12 + - uid: 28234 + components: + - type: Transform + pos: -28.5,-62.5 + parent: 12 + - uid: 28235 + components: + - type: Transform + pos: -29.5,-62.5 + parent: 12 + - uid: 28236 + components: + - type: Transform + pos: -30.5,-62.5 + parent: 12 + - uid: 28240 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 12 + - uid: 28241 + components: + - type: Transform + pos: -32.5,-62.5 + parent: 12 + - uid: 28285 + components: + - type: Transform + pos: -31.5,-66.5 + parent: 12 + - uid: 28287 + components: + - type: Transform + pos: -29.5,-66.5 + parent: 12 + - uid: 28289 + components: + - type: Transform + pos: -28.5,-66.5 + parent: 12 + - uid: 28290 + components: + - type: Transform + pos: -30.5,-66.5 + parent: 12 - uid: 28430 components: - type: Transform @@ -53667,10 +55015,10 @@ entities: - type: Transform pos: 30.5,-5.5 parent: 12 - - uid: 29001 + - uid: 29002 components: - type: Transform - pos: 36.5,2.5 + pos: -28.5,-63.5 parent: 12 - uid: 29047 components: @@ -53687,10 +55035,10 @@ entities: - type: Transform pos: 18.5,21.5 parent: 12 - - uid: 29087 + - uid: 29091 components: - type: Transform - pos: 36.5,1.5 + pos: 4.5,-54.5 parent: 12 - uid: 29182 components: @@ -53717,6 +55065,96 @@ entities: - type: Transform pos: 45.5,5.5 parent: 12 + - uid: 29426 + components: + - type: Transform + pos: -39.5,-64.5 + parent: 12 + - uid: 29432 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 12 + - uid: 29433 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 12 + - uid: 29469 + components: + - type: Transform + pos: -40.5,-63.5 + parent: 12 + - uid: 29470 + components: + - type: Transform + pos: -40.5,-64.5 + parent: 12 + - uid: 29471 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 12 + - uid: 29472 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 12 + - uid: 29473 + components: + - type: Transform + pos: -39.5,-66.5 + parent: 12 + - uid: 29474 + components: + - type: Transform + pos: -40.5,-66.5 + parent: 12 + - uid: 29475 + components: + - type: Transform + pos: -40.5,-68.5 + parent: 12 + - uid: 29476 + components: + - type: Transform + pos: -39.5,-68.5 + parent: 12 + - uid: 29478 + components: + - type: Transform + pos: -40.5,-67.5 + parent: 12 + - uid: 29479 + components: + - type: Transform + pos: -36.5,-67.5 + parent: 12 + - uid: 29480 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 12 + - uid: 29481 + components: + - type: Transform + pos: -32.5,-63.5 + parent: 12 + - uid: 29482 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 12 + - uid: 29483 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 12 + - uid: 29484 + components: + - type: Transform + pos: -35.5,-67.5 + parent: 12 - uid: 29873 components: - type: Transform @@ -55082,8 +56520,8 @@ entities: - uid: 28713 components: - type: Transform - rot: -37.69911184307754 rad - pos: 54.49033,-5.6204934 + rot: -50.265482457436725 rad + pos: 55.498672,-5.6926384 parent: 12 - proto: CableMV entities: @@ -55092,6 +56530,11 @@ entities: - type: Transform pos: 0.5,2.5 parent: 12 + - uid: 211 + components: + - type: Transform + pos: 15.5,13.5 + parent: 12 - uid: 278 components: - type: Transform @@ -55227,11 +56670,6 @@ entities: - type: Transform pos: 50.5,61.5 parent: 12 - - uid: 1054 - components: - - type: Transform - pos: 50.5,63.5 - parent: 12 - uid: 1070 components: - type: Transform @@ -55997,6 +57435,11 @@ entities: - type: Transform pos: 0.5,-37.5 parent: 12 + - uid: 3143 + components: + - type: Transform + pos: -38.5,61.5 + parent: 12 - uid: 3160 components: - type: Transform @@ -56027,16 +57470,6 @@ entities: - type: Transform pos: 10.5,-43.5 parent: 12 - - uid: 3199 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 12 - - uid: 3200 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 12 - uid: 3201 components: - type: Transform @@ -56182,11 +57615,6 @@ entities: - type: Transform pos: -16.5,-42.5 parent: 12 - - uid: 3242 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 12 - uid: 3243 components: - type: Transform @@ -56347,11 +57775,6 @@ entities: - type: Transform pos: -23.5,-2.5 parent: 12 - - uid: 3591 - components: - - type: Transform - pos: 52.5,63.5 - parent: 12 - uid: 3613 components: - type: Transform @@ -56372,6 +57795,11 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 12 + - uid: 4012 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 12 - uid: 4258 components: - type: Transform @@ -56422,6 +57850,36 @@ entities: - type: Transform pos: 55.5,5.5 parent: 12 + - uid: 4412 + components: + - type: Transform + pos: 54.5,-1.5 + parent: 12 + - uid: 4434 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 12 + - uid: 4459 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 12 + - uid: 4464 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 12 + - uid: 4472 + components: + - type: Transform + pos: 54.5,1.5 + parent: 12 + - uid: 4473 + components: + - type: Transform + pos: 54.5,0.5 + parent: 12 - uid: 4602 components: - type: Transform @@ -56487,21 +57945,16 @@ entities: - type: Transform pos: -17.5,-24.5 parent: 12 - - uid: 4800 + - uid: 4715 components: - type: Transform - pos: 40.5,0.5 + pos: 4.5,-16.5 parent: 12 - uid: 4859 components: - type: Transform pos: 57.5,56.5 parent: 12 - - uid: 4910 - components: - - type: Transform - pos: 39.5,-1.5 - parent: 12 - uid: 4921 components: - type: Transform @@ -56522,15 +57975,15 @@ entities: - type: Transform pos: -11.5,-31.5 parent: 12 - - uid: 4969 + - uid: 4977 components: - type: Transform - pos: 15.5,11.5 + pos: -27.5,65.5 parent: 12 - - uid: 4977 + - uid: 4988 components: - type: Transform - pos: -27.5,65.5 + pos: 7.5,-14.5 parent: 12 - uid: 5036 components: @@ -56557,11 +58010,6 @@ entities: - type: Transform pos: 30.5,-9.5 parent: 12 - - uid: 5093 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - uid: 5102 components: - type: Transform @@ -56582,6 +58030,26 @@ entities: - type: Transform pos: -1.5,1.5 parent: 12 + - uid: 5170 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 12 + - uid: 5175 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 12 + - uid: 5176 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 12 + - uid: 5177 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 12 - uid: 5272 components: - type: Transform @@ -56597,6 +58065,11 @@ entities: - type: Transform pos: 14.5,4.5 parent: 12 + - uid: 5303 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 12 - uid: 5311 components: - type: Transform @@ -56605,7 +58078,7 @@ entities: - uid: 5378 components: - type: Transform - pos: 33.5,-9.5 + pos: 7.5,-21.5 parent: 12 - uid: 5405 components: @@ -56907,6 +58380,31 @@ entities: - type: Transform pos: 32.5,16.5 parent: 12 + - uid: 6306 + components: + - type: Transform + pos: 54.5,62.5 + parent: 12 + - uid: 6307 + components: + - type: Transform + pos: 51.5,62.5 + parent: 12 + - uid: 6314 + components: + - type: Transform + pos: 53.5,62.5 + parent: 12 + - uid: 6317 + components: + - type: Transform + pos: 52.5,62.5 + parent: 12 + - uid: 6349 + components: + - type: Transform + pos: 37.5,0.5 + parent: 12 - uid: 6354 components: - type: Transform @@ -56932,11 +58430,31 @@ entities: - type: Transform pos: 28.5,-8.5 parent: 12 + - uid: 6739 + components: + - type: Transform + pos: 61.5,9.5 + parent: 12 - uid: 6756 components: - type: Transform pos: 63.5,-23.5 parent: 12 + - uid: 6774 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 12 + - uid: 6775 + components: + - type: Transform + pos: 61.5,8.5 + parent: 12 + - uid: 6777 + components: + - type: Transform + pos: -49.5,55.5 + parent: 12 - uid: 6891 components: - type: Transform @@ -56957,6 +58475,16 @@ entities: - type: Transform pos: 10.5,-39.5 parent: 12 + - uid: 7101 + components: + - type: Transform + pos: 61.5,7.5 + parent: 12 + - uid: 7114 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 12 - uid: 7124 components: - type: Transform @@ -56997,11 +58525,6 @@ entities: - type: Transform pos: 15.5,5.5 parent: 12 - - uid: 7276 - components: - - type: Transform - pos: 52.5,-0.5 - parent: 12 - uid: 7328 components: - type: Transform @@ -57042,6 +58565,11 @@ entities: - type: Transform pos: 43.5,-12.5 parent: 12 + - uid: 7524 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 12 - uid: 7580 components: - type: Transform @@ -57637,10 +59165,10 @@ entities: - type: Transform pos: -36.5,-35.5 parent: 12 - - uid: 8297 + - uid: 8805 components: - type: Transform - pos: 53.5,63.5 + pos: 13.5,-21.5 parent: 12 - uid: 9002 components: @@ -57662,11 +59190,6 @@ entities: - type: Transform pos: 64.5,6.5 parent: 12 - - uid: 9069 - components: - - type: Transform - pos: 40.5,2.5 - parent: 12 - uid: 9070 components: - type: Transform @@ -57727,11 +59250,6 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 12 - - uid: 9433 - components: - - type: Transform - pos: 40.5,3.5 - parent: 12 - uid: 9444 components: - type: Transform @@ -57782,11 +59300,6 @@ entities: - type: Transform pos: 54.5,11.5 parent: 12 - - uid: 9503 - components: - - type: Transform - pos: 15.5,12.5 - parent: 12 - uid: 9505 components: - type: Transform @@ -57817,6 +59330,11 @@ entities: - type: Transform pos: 62.5,-0.5 parent: 12 + - uid: 9615 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 12 - uid: 9628 components: - type: Transform @@ -57832,30 +59350,15 @@ entities: - type: Transform pos: 30.5,4.5 parent: 12 - - uid: 9671 - components: - - type: Transform - pos: 37.5,-1.5 - parent: 12 - - uid: 9711 - components: - - type: Transform - pos: 51.5,0.5 - parent: 12 - - uid: 9720 - components: - - type: Transform - pos: 38.5,-1.5 - parent: 12 - - uid: 9820 + - uid: 9644 components: - type: Transform - pos: 40.5,-1.5 + pos: -42.5,67.5 parent: 12 - - uid: 9840 + - uid: 9655 components: - type: Transform - pos: 38.5,4.5 + pos: 17.5,-21.5 parent: 12 - uid: 9866 components: @@ -58122,11 +59625,6 @@ entities: - type: Transform pos: -1.5,-33.5 parent: 12 - - uid: 10001 - components: - - type: Transform - pos: 39.5,4.5 - parent: 12 - uid: 10020 components: - type: Transform @@ -58162,11 +59660,6 @@ entities: - type: Transform pos: -0.5,-18.5 parent: 12 - - uid: 10144 - components: - - type: Transform - pos: 52.5,0.5 - parent: 12 - uid: 10196 components: - type: Transform @@ -58187,11 +59680,6 @@ entities: - type: Transform pos: -54.5,13.5 parent: 12 - - uid: 10305 - components: - - type: Transform - pos: 58.5,7.5 - parent: 12 - uid: 10307 components: - type: Transform @@ -58367,6 +59855,11 @@ entities: - type: Transform pos: -6.5,28.5 parent: 12 + - uid: 10655 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 12 - uid: 10668 components: - type: Transform @@ -58377,11 +59870,6 @@ entities: - type: Transform pos: -6.5,30.5 parent: 12 - - uid: 10812 - components: - - type: Transform - pos: 40.5,1.5 - parent: 12 - uid: 10919 components: - type: Transform @@ -58417,11 +59905,6 @@ entities: - type: Transform pos: 30.5,5.5 parent: 12 - - uid: 10996 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 12 - uid: 11034 components: - type: Transform @@ -58437,6 +59920,11 @@ entities: - type: Transform pos: 32.5,15.5 parent: 12 + - uid: 11371 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 12 - uid: 11383 components: - type: Transform @@ -58465,7 +59953,7 @@ entities: - uid: 11487 components: - type: Transform - pos: -52.5,59.5 + pos: -47.5,68.5 parent: 12 - uid: 11517 components: @@ -58477,6 +59965,11 @@ entities: - type: Transform pos: -9.5,-19.5 parent: 12 + - uid: 11574 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 12 - uid: 11932 components: - type: Transform @@ -58757,11 +60250,6 @@ entities: - type: Transform pos: 50.5,25.5 parent: 12 - - uid: 12640 - components: - - type: Transform - pos: -52.5,58.5 - parent: 12 - uid: 12856 components: - type: Transform @@ -59857,11 +61345,6 @@ entities: - type: Transform pos: 33.5,50.5 parent: 12 - - uid: 15371 - components: - - type: Transform - pos: 51.5,63.5 - parent: 12 - uid: 15372 components: - type: Transform @@ -60437,10 +61920,10 @@ entities: - type: Transform pos: -0.5,3.5 parent: 12 - - uid: 16546 + - uid: 16586 components: - type: Transform - pos: 52.5,1.5 + pos: 16.5,11.5 parent: 12 - uid: 16644 components: @@ -61052,6 +62535,11 @@ entities: - type: Transform pos: -60.5,24.5 parent: 12 + - uid: 17584 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 12 - uid: 17735 components: - type: Transform @@ -61350,7 +62838,7 @@ entities: - uid: 18631 components: - type: Transform - pos: 33.5,-10.5 + pos: 8.5,-14.5 parent: 12 - uid: 18759 components: @@ -61447,11 +62935,6 @@ entities: - type: Transform pos: -23.5,59.5 parent: 12 - - uid: 19514 - components: - - type: Transform - pos: -38.5,61.5 - parent: 12 - uid: 19515 components: - type: Transform @@ -61557,6 +63040,11 @@ entities: - type: Transform pos: -47.5,17.5 parent: 12 + - uid: 20097 + components: + - type: Transform + pos: -44.5,68.5 + parent: 12 - uid: 20343 components: - type: Transform @@ -62392,6 +63880,11 @@ entities: - type: Transform pos: -44.5,60.5 parent: 12 + - uid: 20521 + components: + - type: Transform + pos: -43.5,68.5 + parent: 12 - uid: 20524 components: - type: Transform @@ -62447,11 +63940,6 @@ entities: - type: Transform pos: -48.5,55.5 parent: 12 - - uid: 20539 - components: - - type: Transform - pos: -49.5,56.5 - parent: 12 - uid: 20544 components: - type: Transform @@ -62752,6 +64240,11 @@ entities: - type: Transform pos: -6.5,32.5 parent: 12 + - uid: 21604 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 12 - uid: 21705 components: - type: Transform @@ -62775,7 +64268,12 @@ entities: - uid: 21884 components: - type: Transform - pos: 32.5,-10.5 + pos: 13.5,-15.5 + parent: 12 + - uid: 21885 + components: + - type: Transform + pos: 14.5,-16.5 parent: 12 - uid: 21901 components: @@ -62877,45 +64375,25 @@ entities: - type: Transform pos: 39.5,18.5 parent: 12 - - uid: 22330 - components: - - type: Transform - pos: -53.5,57.5 - parent: 12 - - uid: 22338 - components: - - type: Transform - pos: -53.5,56.5 - parent: 12 - uid: 22524 components: - type: Transform pos: -2.5,34.5 parent: 12 - - uid: 23122 - components: - - type: Transform - pos: -53.5,58.5 - parent: 12 - uid: 23123 components: - type: Transform pos: -31.5,70.5 parent: 12 - - uid: 23713 - components: - - type: Transform - pos: -55.5,61.5 - parent: 12 - - uid: 23715 + - uid: 23130 components: - type: Transform - pos: -57.5,61.5 + pos: 16.5,-16.5 parent: 12 - - uid: 23716 + - uid: 23884 components: - type: Transform - pos: -56.5,61.5 + pos: -50.5,55.5 parent: 12 - uid: 24661 components: @@ -63787,6 +65265,41 @@ entities: - type: Transform pos: -30.5,12.5 parent: 12 + - uid: 25824 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 12 + - uid: 25825 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 12 + - uid: 25826 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 12 + - uid: 25827 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 12 + - uid: 25828 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 12 + - uid: 25829 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 12 + - uid: 25830 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 12 - uid: 25833 components: - type: Transform @@ -63827,6 +65340,41 @@ entities: - type: Transform pos: -27.5,-27.5 parent: 12 + - uid: 26263 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 12 + - uid: 26264 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 12 + - uid: 26276 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 12 + - uid: 26311 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 12 + - uid: 26368 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 12 + - uid: 26382 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 12 + - uid: 26383 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 12 - uid: 26451 components: - type: Transform @@ -63862,6 +65410,11 @@ entities: - type: Transform pos: 58.5,4.5 parent: 12 + - uid: 26531 + components: + - type: Transform + pos: 16.5,10.5 + parent: 12 - uid: 26545 components: - type: Transform @@ -63977,11 +65530,6 @@ entities: - type: Transform pos: 63.5,2.5 parent: 12 - - uid: 26831 - components: - - type: Transform - pos: 52.5,2.5 - parent: 12 - uid: 26844 components: - type: Transform @@ -64002,36 +65550,26 @@ entities: - type: Transform pos: 54.5,2.5 parent: 12 - - uid: 26848 - components: - - type: Transform - pos: 53.5,2.5 - parent: 12 - - uid: 26900 + - uid: 26884 components: - type: Transform - pos: 55.5,2.5 + pos: 62.5,9.5 parent: 12 - - uid: 27019 + - uid: 26885 components: - type: Transform - pos: 54.5,-0.5 + pos: 57.5,6.5 parent: 12 - - uid: 27113 + - uid: 27091 components: - type: Transform - pos: 51.5,-0.5 + pos: 38.5,0.5 parent: 12 - uid: 27114 components: - type: Transform pos: 54.5,13.5 parent: 12 - - uid: 27115 - components: - - type: Transform - pos: 53.5,-0.5 - parent: 12 - uid: 27253 components: - type: Transform @@ -64042,11 +65580,6 @@ entities: - type: Transform pos: -33.5,-35.5 parent: 12 - - uid: 27325 - components: - - type: Transform - pos: 54.5,0.5 - parent: 12 - uid: 27358 components: - type: Transform @@ -64447,6 +65980,11 @@ entities: - type: Transform pos: -25.5,67.5 parent: 12 + - uid: 28165 + components: + - type: Transform + pos: -45.5,68.5 + parent: 12 - uid: 28220 components: - type: Transform @@ -64522,90 +66060,10 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 - - uid: 28888 - components: - - type: Transform - pos: 54.5,1.5 - parent: 12 - - uid: 28970 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 12 - - uid: 28971 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 12 - - uid: 28972 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 12 - - uid: 28973 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 12 - - uid: 28974 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 12 - - uid: 28975 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 12 - - uid: 28976 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 12 - - uid: 28977 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 12 - - uid: 28978 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 12 - uid: 28979 components: - type: Transform - pos: 1.5,-22.5 - parent: 12 - - uid: 28980 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 12 - - uid: 28981 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 12 - - uid: 28982 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 12 - - uid: 28983 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 12 - - uid: 28984 - components: - - type: Transform - pos: 6.5,-22.5 - parent: 12 - - uid: 28985 - components: - - type: Transform - pos: -2.5,-22.5 + pos: -46.5,68.5 parent: 12 - uid: 28986 components: @@ -64822,240 +66280,40 @@ entities: - type: Transform pos: -44.5,65.5 parent: 12 - - uid: 29466 - components: - - type: Transform - pos: -50.5,62.5 - parent: 12 - - uid: 29467 - components: - - type: Transform - pos: -52.5,62.5 - parent: 12 - - uid: 29468 - components: - - type: Transform - pos: -53.5,62.5 - parent: 12 - - uid: 29469 - components: - - type: Transform - pos: -51.5,62.5 - parent: 12 - - uid: 29470 - components: - - type: Transform - pos: -53.5,63.5 - parent: 12 - - uid: 29471 - components: - - type: Transform - pos: -53.5,64.5 - parent: 12 - - uid: 29472 - components: - - type: Transform - pos: -53.5,65.5 - parent: 12 - - uid: 29473 - components: - - type: Transform - pos: -53.5,66.5 - parent: 12 - - uid: 29474 - components: - - type: Transform - pos: -53.5,67.5 - parent: 12 - - uid: 29475 - components: - - type: Transform - pos: -53.5,68.5 - parent: 12 - - uid: 29476 - components: - - type: Transform - pos: -53.5,69.5 - parent: 12 - - uid: 29477 - components: - - type: Transform - pos: -53.5,70.5 - parent: 12 - - uid: 29478 - components: - - type: Transform - pos: -53.5,71.5 - parent: 12 - - uid: 29479 - components: - - type: Transform - pos: -53.5,72.5 - parent: 12 - - uid: 29480 - components: - - type: Transform - pos: -53.5,73.5 - parent: 12 - - uid: 29481 - components: - - type: Transform - pos: -52.5,73.5 - parent: 12 - - uid: 29482 - components: - - type: Transform - pos: -52.5,74.5 - parent: 12 - - uid: 29483 - components: - - type: Transform - pos: -51.5,74.5 - parent: 12 - - uid: 29484 - components: - - type: Transform - pos: -51.5,75.5 - parent: 12 - - uid: 29485 - components: - - type: Transform - pos: -50.5,75.5 - parent: 12 - - uid: 29486 - components: - - type: Transform - pos: -49.5,75.5 - parent: 12 - - uid: 29487 - components: - - type: Transform - pos: -48.5,75.5 - parent: 12 - - uid: 29488 - components: - - type: Transform - pos: -47.5,75.5 - parent: 12 - - uid: 29489 - components: - - type: Transform - pos: -46.5,75.5 - parent: 12 - - uid: 29490 - components: - - type: Transform - pos: -45.5,75.5 - parent: 12 - - uid: 29491 - components: - - type: Transform - pos: -44.5,75.5 - parent: 12 - - uid: 29492 - components: - - type: Transform - pos: -43.5,75.5 - parent: 12 - - uid: 29493 - components: - - type: Transform - pos: -42.5,75.5 - parent: 12 - - uid: 29494 - components: - - type: Transform - pos: -41.5,75.5 - parent: 12 - - uid: 29495 - components: - - type: Transform - pos: -40.5,75.5 - parent: 12 - - uid: 29496 - components: - - type: Transform - pos: -39.5,75.5 - parent: 12 - - uid: 29497 - components: - - type: Transform - pos: -38.5,75.5 - parent: 12 - - uid: 29498 - components: - - type: Transform - pos: -37.5,75.5 - parent: 12 - - uid: 29499 - components: - - type: Transform - pos: -36.5,75.5 - parent: 12 - - uid: 29500 - components: - - type: Transform - pos: -35.5,75.5 - parent: 12 - - uid: 29501 - components: - - type: Transform - pos: -33.5,75.5 - parent: 12 - - uid: 29502 - components: - - type: Transform - pos: -32.5,75.5 - parent: 12 - - uid: 29503 - components: - - type: Transform - pos: -34.5,75.5 - parent: 12 - - uid: 29504 - components: - - type: Transform - pos: -31.5,75.5 - parent: 12 - - uid: 29505 - components: - - type: Transform - pos: -30.5,75.5 - parent: 12 - - uid: 29506 + - uid: 29421 components: - type: Transform - pos: -29.5,75.5 + pos: -47.5,67.5 parent: 12 - - uid: 29507 + - uid: 29424 components: - type: Transform - pos: -28.5,75.5 + pos: -43.5,67.5 parent: 12 - - uid: 29508 + - uid: 29434 components: - type: Transform - pos: -27.5,75.5 + pos: 4.5,-54.5 parent: 12 - - uid: 29509 + - uid: 29435 components: - type: Transform - pos: -26.5,75.5 + pos: 5.5,-54.5 parent: 12 - - uid: 29510 + - uid: 29436 components: - type: Transform - pos: -25.5,75.5 + pos: 6.5,-54.5 parent: 12 - - uid: 29511 + - uid: 29437 components: - type: Transform - pos: -25.5,74.5 + pos: 7.5,-54.5 parent: 12 - - uid: 29512 + - uid: 29466 components: - type: Transform - pos: -25.5,73.5 + pos: -50.5,62.5 parent: 12 - uid: 29513 components: @@ -65322,11 +66580,6 @@ entities: - type: Transform pos: -50.5,64.5 parent: 12 - - uid: 29648 - components: - - type: Transform - pos: -42.5,68.5 - parent: 12 - uid: 29699 components: - type: Transform @@ -65362,31 +66615,11 @@ entities: - type: Transform pos: 26.5,-21.5 parent: 12 - - uid: 29822 - components: - - type: Transform - pos: -53.5,61.5 - parent: 12 - uid: 29823 components: - type: Transform pos: 26.5,-22.5 parent: 12 - - uid: 29824 - components: - - type: Transform - pos: -54.5,61.5 - parent: 12 - - uid: 29826 - components: - - type: Transform - pos: -52.5,60.5 - parent: 12 - - uid: 29827 - components: - - type: Transform - pos: -53.5,60.5 - parent: 12 - uid: 29840 components: - type: Transform @@ -65932,8 +67165,8 @@ entities: - uid: 28716 components: - type: Transform - rot: -37.69911184307754 rad - pos: 54.425102,-5.334914 + rot: -50.265482457436725 rad + pos: 55.50793,-5.5443873 parent: 12 - proto: CableMVStack1 entities: @@ -65979,6 +67212,24 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-44.5 parent: 12 + - uid: 10305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-15.5 + parent: 12 + - uid: 10561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 12 + - uid: 10605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-15.5 + parent: 12 - uid: 14271 components: - type: Transform @@ -65995,6 +67246,12 @@ entities: - type: Transform pos: 38.5,-5.5 parent: 12 + - uid: 27220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-67.5 + parent: 12 - uid: 27377 components: - type: Transform @@ -66170,20 +67427,15 @@ entities: - type: Transform pos: 10.5,12.5 parent: 12 - - uid: 707 + - uid: 5635 components: - type: Transform - pos: -52.5,-32.5 + pos: 24.5,-4.5 parent: 12 - - uid: 708 + - uid: 14954 components: - type: Transform - pos: -51.5,-32.5 - parent: 12 - - uid: 5635 - components: - - type: Transform - pos: 24.5,-4.5 + pos: -52.5,-29.5 parent: 12 - uid: 26628 components: @@ -66192,150 +67444,6 @@ entities: parent: 12 - proto: Carpet entities: - - uid: 2376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-24.5 - parent: 12 - - uid: 2377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-23.5 - parent: 12 - - uid: 2378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-22.5 - parent: 12 - - uid: 2379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 12 - - uid: 2380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 12 - - uid: 2381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-19.5 - parent: 12 - - uid: 2382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-24.5 - parent: 12 - - uid: 2383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-23.5 - parent: 12 - - uid: 2384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-22.5 - parent: 12 - - uid: 2385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-21.5 - parent: 12 - - uid: 2386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-20.5 - parent: 12 - - uid: 2387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 12 - - uid: 2388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-24.5 - parent: 12 - - uid: 2389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-23.5 - parent: 12 - - uid: 2390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-22.5 - parent: 12 - - uid: 2391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 12 - - uid: 2392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-20.5 - parent: 12 - - uid: 2393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-19.5 - parent: 12 - - uid: 2394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-24.5 - parent: 12 - - uid: 2395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-23.5 - parent: 12 - - uid: 2396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-22.5 - parent: 12 - - uid: 2397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 12 - - uid: 2398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 12 - - uid: 2399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-19.5 - parent: 12 - uid: 4023 components: - type: Transform @@ -68228,42 +69336,6 @@ entities: parent: 12 - proto: CarpetOrange entities: - - uid: 2400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-24.5 - parent: 12 - - uid: 2401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-23.5 - parent: 12 - - uid: 2402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-22.5 - parent: 12 - - uid: 2403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-23.5 - parent: 12 - - uid: 2404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-22.5 - parent: 12 - - uid: 2405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 12 - uid: 12116 components: - type: Transform @@ -68614,149 +69686,137 @@ entities: parent: 12 - proto: CarpetPurple entities: - - uid: 2406 + - uid: 2395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-24.5 + rot: 1.5707963267948966 rad + pos: -38.5,-19.5 parent: 12 - - uid: 2407 + - uid: 2396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-24.5 + rot: 1.5707963267948966 rad + pos: -39.5,-19.5 parent: 12 - - uid: 2408 + - uid: 2983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-24.5 + rot: 1.5707963267948966 rad + pos: -38.5,-23.5 parent: 12 - - uid: 2409 + - uid: 3242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-24.5 + rot: 1.5707963267948966 rad + pos: -38.5,-20.5 parent: 12 - - uid: 2410 + - uid: 3591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-23.5 + rot: 1.5707963267948966 rad + pos: -37.5,-24.5 parent: 12 - - uid: 2411 + - uid: 4105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-22.5 + rot: 1.5707963267948966 rad + pos: -37.5,-22.5 parent: 12 - - uid: 2412 + - uid: 4107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-21.5 + rot: 1.5707963267948966 rad + pos: -36.5,-21.5 parent: 12 - - uid: 2413 + - uid: 4108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-20.5 + rot: 1.5707963267948966 rad + pos: -36.5,-22.5 parent: 12 - - uid: 2414 + - uid: 4110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-19.5 + rot: 1.5707963267948966 rad + pos: -39.5,-23.5 parent: 12 - - uid: 2415 + - uid: 4111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-19.5 + rot: 1.5707963267948966 rad + pos: -36.5,-19.5 parent: 12 - - uid: 2416 + - uid: 4787 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -37.5,-19.5 parent: 12 - - uid: 2417 + - uid: 4910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-19.5 + rot: 1.5707963267948966 rad + pos: -39.5,-21.5 parent: 12 - - uid: 2418 + - uid: 4915 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -36.5,-20.5 parent: 12 - - uid: 2419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 12 - - uid: 2420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-22.5 - parent: 12 - - uid: 2421 + - uid: 4957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-23.5 + rot: 1.5707963267948966 rad + pos: -37.5,-23.5 parent: 12 - - uid: 2422 + - uid: 4967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-23.5 + rot: 1.5707963267948966 rad + pos: -37.5,-20.5 parent: 12 - - uid: 2423 + - uid: 5078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-22.5 + rot: 1.5707963267948966 rad + pos: -38.5,-22.5 parent: 12 - - uid: 2424 + - uid: 5093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-21.5 + rot: 1.5707963267948966 rad + pos: -38.5,-24.5 parent: 12 - - uid: 2425 + - uid: 5150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-20.5 + rot: 1.5707963267948966 rad + pos: -39.5,-24.5 parent: 12 - - uid: 2426 + - uid: 5314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-23.5 + rot: 1.5707963267948966 rad + pos: -36.5,-23.5 parent: 12 - - uid: 2427 + - uid: 5371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-22.5 + rot: 1.5707963267948966 rad + pos: -39.5,-22.5 parent: 12 - - uid: 2428 + - uid: 5401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-21.5 + rot: 1.5707963267948966 rad + pos: -36.5,-24.5 parent: 12 - - uid: 2429 + - uid: 5430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-20.5 + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 parent: 12 - uid: 17127 components: @@ -68776,6 +69836,18 @@ entities: rot: 3.141592653589793 rad pos: 5.5,53.5 parent: 12 + - uid: 26973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 12 + - uid: 26999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 12 - proto: CarpetSBlue entities: - uid: 17124 @@ -68890,6 +69962,12 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,25.5 parent: 12 + - uid: 2090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-41.5 + parent: 12 - uid: 2185 components: - type: Transform @@ -68907,6 +69985,24 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-36.5 parent: 12 + - uid: 2390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-18.5 + parent: 12 + - uid: 2391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-17.5 + parent: 12 + - uid: 2393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-18.5 + parent: 12 - uid: 2463 components: - type: Transform @@ -68923,6 +70019,11 @@ entities: - type: Transform pos: 87.5,-34.5 parent: 12 + - uid: 2670 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 12 - uid: 2675 components: - type: Transform @@ -69242,6 +70343,11 @@ entities: - type: Transform pos: 54.5,10.5 parent: 12 + - uid: 4477 + components: + - type: Transform + pos: -46.5,44.5 + parent: 12 - uid: 4593 components: - type: Transform @@ -69346,12 +70452,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,22.5 parent: 12 - - uid: 5023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,3.5 - parent: 12 - uid: 5041 components: - type: Transform @@ -69364,12 +70464,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-17.5 parent: 12 - - uid: 5097 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,1.5 - parent: 12 - uid: 5105 components: - type: Transform @@ -69394,6 +70488,12 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 12 + - uid: 5273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 12 - uid: 5319 components: - type: Transform @@ -69540,6 +70640,18 @@ entities: - type: Transform pos: 9.5,-34.5 parent: 12 + - uid: 6253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-35.5 + parent: 12 + - uid: 6289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-36.5 + parent: 12 - uid: 6498 components: - type: Transform @@ -70038,6 +71150,12 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-58.5 parent: 12 + - uid: 6758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-18.5 + parent: 12 - uid: 7112 components: - type: Transform @@ -70102,6 +71220,18 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-0.5 parent: 12 + - uid: 7276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 12 + - uid: 7482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-18.5 + parent: 12 - uid: 7621 components: - type: Transform @@ -70598,6 +71728,12 @@ entities: - type: Transform pos: 65.5,10.5 parent: 12 + - uid: 8928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 12 - uid: 8937 components: - type: Transform @@ -70794,6 +71930,18 @@ entities: - type: Transform pos: 20.5,11.5 parent: 12 + - uid: 10954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-63.5 + parent: 12 + - uid: 10955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-67.5 + parent: 12 - uid: 10967 components: - type: Transform @@ -70805,6 +71953,12 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,16.5 parent: 12 + - uid: 11030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-67.5 + parent: 12 - uid: 11049 components: - type: Transform @@ -70872,6 +72026,42 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,68.5 parent: 12 + - uid: 11277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-67.5 + parent: 12 + - uid: 11278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-67.5 + parent: 12 + - uid: 11297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-67.5 + parent: 12 + - uid: 11299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-67.5 + parent: 12 + - uid: 11300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-63.5 + parent: 12 + - uid: 11301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-67.5 + parent: 12 - uid: 11303 components: - type: Transform @@ -70903,6 +72093,12 @@ entities: - type: Transform pos: 30.5,8.5 parent: 12 + - uid: 11389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-65.5 + parent: 12 - uid: 11392 components: - type: Transform @@ -70937,12 +72133,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,15.5 parent: 12 - - uid: 11574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-22.5 - parent: 12 - uid: 11688 components: - type: Transform @@ -71020,6 +72210,12 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,29.5 parent: 12 + - uid: 14175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 12 - uid: 14294 components: - type: Transform @@ -71290,10 +72486,10 @@ entities: - type: Transform pos: 51.5,76.5 parent: 12 - - uid: 15115 + - uid: 15007 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: 6.5,-16.5 parent: 12 - uid: 15678 @@ -71371,6 +72567,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 12 + - uid: 16870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 12 - uid: 17226 components: - type: Transform @@ -71620,6 +72822,12 @@ entities: - type: Transform pos: -67.5,53.5 parent: 12 + - uid: 19278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 12 - uid: 19559 components: - type: Transform @@ -71976,12 +73184,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-41.5 parent: 12 - - uid: 22110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,0.5 - parent: 12 - uid: 22170 components: - type: Transform @@ -72086,6 +73288,16 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-52.5 parent: 12 + - uid: 23704 + components: + - type: Transform + pos: -42.5,67.5 + parent: 12 + - uid: 23722 + components: + - type: Transform + pos: -43.5,67.5 + parent: 12 - uid: 24144 components: - type: Transform @@ -72708,11 +73920,6 @@ entities: - type: Transform pos: -46.5,45.5 parent: 12 - - uid: 24673 - components: - - type: Transform - pos: -46.5,44.5 - parent: 12 - uid: 24674 components: - type: Transform @@ -72871,11 +74078,95 @@ entities: rot: 3.141592653589793 rad pos: -20.5,59.5 parent: 12 - - uid: 26447 + - uid: 26414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,0.5 + rot: 3.141592653589793 rad + pos: 5.5,-22.5 + parent: 12 + - uid: 26421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 12 + - uid: 26422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-22.5 + parent: 12 + - uid: 26432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 12 + - uid: 26438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 12 + - uid: 26440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-22.5 + parent: 12 + - uid: 26445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-22.5 + parent: 12 + - uid: 26446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 12 + - uid: 26452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-22.5 + parent: 12 + - uid: 26455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-22.5 + parent: 12 + - uid: 26461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-22.5 + parent: 12 + - uid: 26462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-21.5 + parent: 12 + - uid: 26466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-20.5 + parent: 12 + - uid: 26469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-20.5 + parent: 12 + - uid: 26470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-20.5 parent: 12 - uid: 26778 components: @@ -72883,29 +74174,46 @@ entities: rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 12 + - uid: 26797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 12 + - uid: 26981 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 12 - uid: 27064 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 12 - - uid: 27241 + - uid: 27223 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,4.5 + pos: -56.5,-18.5 parent: 12 - - uid: 27317 + - uid: 27244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-13.5 + rot: 1.5707963267948966 rad + pos: -52.5,-18.5 parent: 12 - - uid: 27318 + - uid: 27250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-18.5 + parent: 12 + - uid: 27317 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-14.5 + pos: 6.5,-13.5 parent: 12 - uid: 27319 components: @@ -72925,6 +74233,12 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-13.5 parent: 12 + - uid: 27391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-18.5 + parent: 12 - uid: 27400 components: - type: Transform @@ -73131,121 +74445,11 @@ entities: - type: Transform pos: -58.5,-32.5 parent: 12 - - uid: 27703 - components: - - type: Transform - pos: -58.5,-31.5 - parent: 12 - - uid: 27704 - components: - - type: Transform - pos: -58.5,-30.5 - parent: 12 - - uid: 27705 - components: - - type: Transform - pos: -58.5,-29.5 - parent: 12 - - uid: 27706 - components: - - type: Transform - pos: -58.5,-28.5 - parent: 12 - - uid: 27707 - components: - - type: Transform - pos: -58.5,-27.5 - parent: 12 - - uid: 27708 - components: - - type: Transform - pos: -58.5,-26.5 - parent: 12 - - uid: 27709 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 12 - - uid: 27710 - components: - - type: Transform - pos: -58.5,-23.5 - parent: 12 - - uid: 27711 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 12 - - uid: 27712 - components: - - type: Transform - pos: -58.5,-21.5 - parent: 12 - - uid: 27713 - components: - - type: Transform - pos: -58.5,-20.5 - parent: 12 - - uid: 27714 - components: - - type: Transform - pos: -58.5,-19.5 - parent: 12 - uid: 27715 components: - type: Transform pos: -58.5,-18.5 parent: 12 - - uid: 27716 - components: - - type: Transform - pos: -58.5,-17.5 - parent: 12 - - uid: 27717 - components: - - type: Transform - pos: -58.5,-24.5 - parent: 12 - - uid: 27718 - components: - - type: Transform - pos: -57.5,-17.5 - parent: 12 - - uid: 27719 - components: - - type: Transform - pos: -57.5,-16.5 - parent: 12 - - uid: 27720 - components: - - type: Transform - pos: -56.5,-16.5 - parent: 12 - - uid: 27721 - components: - - type: Transform - pos: -55.5,-16.5 - parent: 12 - - uid: 27722 - components: - - type: Transform - pos: -54.5,-16.5 - parent: 12 - - uid: 27723 - components: - - type: Transform - pos: -53.5,-16.5 - parent: 12 - - uid: 27725 - components: - - type: Transform - pos: -51.5,-16.5 - parent: 12 - - uid: 27726 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 12 - uid: 27727 components: - type: Transform @@ -73634,75 +74838,238 @@ entities: - type: Transform pos: -7.5,-20.5 parent: 12 - - uid: 28632 + - uid: 28641 components: - type: Transform - pos: -6.5,-20.5 + rot: -1.5707963267948966 rad + pos: 43.5,-37.5 parent: 12 - - uid: 28633 + - uid: 28642 components: - type: Transform - pos: -5.5,-20.5 + rot: -1.5707963267948966 rad + pos: 43.5,-38.5 parent: 12 - - uid: 28634 + - uid: 28643 components: - type: Transform - pos: -4.5,-20.5 + rot: -1.5707963267948966 rad + pos: 43.5,-39.5 parent: 12 - - uid: 28635 + - uid: 28644 components: - type: Transform - pos: -4.5,-22.5 + rot: -1.5707963267948966 rad + pos: 43.5,-40.5 parent: 12 - - uid: 28636 + - uid: 28645 components: - type: Transform - pos: -3.5,-22.5 + rot: -1.5707963267948966 rad + pos: 43.5,-41.5 parent: 12 - - uid: 28637 + - uid: 28647 components: - type: Transform - pos: -2.5,-22.5 + rot: -1.5707963267948966 rad + pos: 41.5,-41.5 parent: 12 - - uid: 28638 + - uid: 28651 components: - type: Transform - pos: -1.5,-22.5 + rot: -1.5707963267948966 rad + pos: 39.5,-41.5 parent: 12 - - uid: 28639 + - uid: 28652 components: - type: Transform - pos: -0.5,-22.5 + rot: -1.5707963267948966 rad + pos: 38.5,-41.5 parent: 12 - - uid: 28640 + - uid: 28672 components: - type: Transform - pos: 0.5,-22.5 + rot: -1.5707963267948966 rad + pos: 37.5,-41.5 parent: 12 - - uid: 28641 + - uid: 28674 components: - type: Transform - pos: 1.5,-22.5 + rot: -1.5707963267948966 rad + pos: 36.5,-41.5 parent: 12 - - uid: 28642 + - uid: 28677 components: - type: Transform - pos: 2.5,-22.5 + rot: -1.5707963267948966 rad + pos: 35.5,-41.5 parent: 12 - - uid: 28643 + - uid: 28678 components: - type: Transform - pos: 3.5,-22.5 + rot: -1.5707963267948966 rad + pos: 34.5,-41.5 parent: 12 - - uid: 28644 + - uid: 28681 components: - type: Transform - pos: 4.5,-22.5 + rot: -1.5707963267948966 rad + pos: 34.5,-42.5 parent: 12 - - uid: 28647 + - uid: 28682 components: - type: Transform - pos: -4.5,-21.5 + rot: -1.5707963267948966 rad + pos: 33.5,-43.5 + parent: 12 + - uid: 28688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-44.5 + parent: 12 + - uid: 28689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-45.5 + parent: 12 + - uid: 28690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-46.5 + parent: 12 + - uid: 28691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-47.5 + parent: 12 + - uid: 28692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-48.5 + parent: 12 + - uid: 28693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-49.5 + parent: 12 + - uid: 28694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-51.5 + parent: 12 + - uid: 28704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-50.5 + parent: 12 + - uid: 28705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-52.5 + parent: 12 + - uid: 28706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-53.5 + parent: 12 + - uid: 28707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-54.5 + parent: 12 + - uid: 28710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-52.5 + parent: 12 + - uid: 28718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-53.5 + parent: 12 + - uid: 28719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-54.5 + parent: 12 + - uid: 28720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-55.5 + parent: 12 + - uid: 28721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-56.5 + parent: 12 + - uid: 28722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-56.5 + parent: 12 + - uid: 28737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-56.5 + parent: 12 + - uid: 28738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 12 + - uid: 28743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-56.5 + parent: 12 + - uid: 28751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-57.5 + parent: 12 + - uid: 28761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 12 + - uid: 28762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-57.5 + parent: 12 + - uid: 28784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-42.5 + parent: 12 + - uid: 28828 + components: + - type: Transform + pos: 40.5,-41.5 parent: 12 - uid: 28922 components: @@ -73727,18 +75094,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 12 - - uid: 29000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - uid: 29004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - uid: 29054 components: - type: Transform @@ -73763,29 +75118,53 @@ entities: rot: 3.141592653589793 rad pos: 18.5,22.5 parent: 12 + - uid: 29080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-67.5 + parent: 12 + - uid: 29081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-66.5 + parent: 12 + - uid: 29082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-62.5 + parent: 12 + - uid: 29085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-64.5 + parent: 12 - uid: 29086 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,0.5 + pos: -33.5,-67.5 parent: 12 - - uid: 29094 + - uid: 29087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,4.5 + pos: -32.5,-67.5 parent: 12 - - uid: 29102 + - uid: 29089 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,2.5 + pos: -34.5,-67.5 parent: 12 - - uid: 29148 + - uid: 29090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,0.5 + pos: -31.5,-67.5 parent: 12 - uid: 29418 components: @@ -73799,6 +75178,119 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,65.5 parent: 12 + - uid: 29428 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 12 + - uid: 29438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-63.5 + parent: 12 + - uid: 29439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-63.5 + parent: 12 + - uid: 29440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-63.5 + parent: 12 + - uid: 29441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-63.5 + parent: 12 + - uid: 29442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-63.5 + parent: 12 + - uid: 29443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-63.5 + parent: 12 + - uid: 29444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-63.5 + parent: 12 + - uid: 29445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-63.5 + parent: 12 + - uid: 29446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-63.5 + parent: 12 + - uid: 29447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-63.5 + parent: 12 + - uid: 29448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-63.5 + parent: 12 + - uid: 29449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-67.5 + parent: 12 + - uid: 29450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-67.5 + parent: 12 + - uid: 29451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-67.5 + parent: 12 + - uid: 29452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-67.5 + parent: 12 + - uid: 29453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-67.5 + parent: 12 + - uid: 29454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-67.5 + parent: 12 + - uid: 29455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-68.5 + parent: 12 - uid: 29562 components: - type: Transform @@ -74121,6 +75613,11 @@ entities: - type: Transform pos: 52.5,68.5 parent: 12 + - uid: 30131 + components: + - type: Transform + pos: -43.5,68.5 + parent: 12 - uid: 30473 components: - type: Transform @@ -74684,11 +76181,66 @@ entities: - type: Transform pos: 31.5,-3.5 parent: 12 - - uid: 6151 + - uid: 5918 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-3.5 + pos: -62.5,-26.5 + parent: 12 + - uid: 5966 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 12 + - uid: 5982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-25.5 + parent: 12 + - uid: 5985 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 12 + - uid: 6020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-27.5 + parent: 12 + - uid: 6187 + components: + - type: Transform + pos: -59.5,-23.5 + parent: 12 + - uid: 6198 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 12 + - uid: 6243 + components: + - type: Transform + pos: -60.5,-23.5 + parent: 12 + - uid: 6245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-27.5 + parent: 12 + - uid: 6250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-22.5 + parent: 12 + - uid: 6251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-25.5 parent: 12 - uid: 6266 components: @@ -74783,12 +76335,22 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-24.5 parent: 12 + - uid: 9664 + components: + - type: Transform + pos: 48.5,1.5 + parent: 12 - uid: 9706 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,36.5 parent: 12 + - uid: 9784 + components: + - type: Transform + pos: 49.5,1.5 + parent: 12 - uid: 9962 components: - type: Transform @@ -74824,6 +76386,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,42.5 parent: 12 + - uid: 11978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-34.5 + parent: 12 - uid: 12020 components: - type: Transform @@ -74848,6 +76416,12 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,27.5 parent: 12 + - uid: 12994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-23.5 + parent: 12 - uid: 13019 components: - type: Transform @@ -75011,6 +76585,12 @@ entities: - type: Transform pos: -42.5,62.5 parent: 12 + - uid: 19619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-10.5 + parent: 12 - uid: 20875 components: - type: Transform @@ -75250,6 +76830,11 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,55.5 parent: 12 + - uid: 22141 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 12 - uid: 22171 components: - type: Transform @@ -75748,18 +77333,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,56.5 parent: 12 - - uid: 25933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,57.5 - parent: 12 - - uid: 25934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,58.5 - parent: 12 - uid: 26001 components: - type: Transform @@ -75806,17 +77379,34 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,70.5 parent: 12 + - uid: 26887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,59.5 + parent: 12 + - uid: 26888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,58.5 + parent: 12 + - uid: 26916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-15.5 + parent: 12 - uid: 28037 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-13.5 parent: 12 - - uid: 28251 + - uid: 28302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-13.5 + pos: -19.5,-68.5 parent: 12 - uid: 28529 components: @@ -75852,102 +77442,77 @@ entities: - type: Transform pos: 56.5,0.5 parent: 12 - - uid: 29349 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 12 - - uid: 29350 + - uid: 29026 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-3.5 + pos: -49.5,67.5 parent: 12 - - uid: 29351 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 12 - - uid: 29352 + - uid: 29027 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-9.5 + pos: -48.5,67.5 parent: 12 - - uid: 29838 - components: - - type: Transform - pos: -38.5,60.5 - parent: 12 - - uid: 29972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-12.5 - parent: 12 - - uid: 29973 + - uid: 29349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-12.5 + pos: 29.5,-1.5 parent: 12 - - uid: 29974 + - uid: 29350 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-12.5 + pos: 29.5,-3.5 parent: 12 - - uid: 31264 + - uid: 29517 components: - type: Transform - pos: 1.5,-66.5 + rot: -1.5707963267948966 rad + pos: -27.5,74.5 parent: 12 - - uid: 31359 + - uid: 29594 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-15.5 + pos: -27.5,73.5 parent: 12 - - uid: 31596 + - uid: 29609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,23.5 + pos: -26.5,78.5 parent: 12 - - uid: 31667 + - uid: 29755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-26.5 + pos: -42.5,73.5 parent: 12 - - uid: 31668 + - uid: 29782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-25.5 + pos: -41.5,73.5 parent: 12 - - uid: 31670 + - uid: 29838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-23.5 + pos: -38.5,60.5 parent: 12 - - uid: 31671 + - uid: 29973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-22.5 + rot: 3.141592653589793 rad + pos: 15.5,-12.5 parent: 12 - - uid: 31672 + - uid: 31264 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-25.5 + pos: 1.5,-66.5 parent: 12 - - uid: 31673 + - uid: 31596 components: - type: Transform - pos: -62.5,-23.5 + rot: 1.5707963267948966 rad + pos: 30.5,23.5 parent: 12 - uid: 31817 components: @@ -76223,11 +77788,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,0.5 parent: 12 - - uid: 23130 - components: - - type: Transform - pos: 56.427277,-4.6059856 - parent: 12 - uid: 23441 components: - type: Transform @@ -76252,11 +77812,22 @@ entities: rot: -1.5707963267948966 rad pos: 58.720875,57.492115 parent: 12 + - uid: 26532 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 12 - uid: 27066 components: - type: Transform pos: 48.602276,-10.465746 parent: 12 + - uid: 29288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,60.5 + parent: 12 - uid: 30282 components: - type: Transform @@ -76336,6 +77907,12 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,21.5 parent: 12 + - uid: 4780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 12 - uid: 5970 components: - type: Transform @@ -76460,6 +78037,18 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,77.5 parent: 12 + - uid: 28791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-46.5 + parent: 12 + - uid: 28792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-47.5 + parent: 12 - uid: 30323 components: - type: Transform @@ -76468,6 +78057,11 @@ entities: parent: 12 - proto: CheapLighter entities: + - uid: 2044 + components: + - type: Transform + pos: -56.64224,59.774014 + parent: 12 - uid: 13017 components: - type: Transform @@ -76479,11 +78073,6 @@ entities: - type: Transform pos: -25.366394,45.399204 parent: 12 - - uid: 22064 - components: - - type: Transform - pos: -23.224808,54.359283 - parent: 12 - proto: CheapRollerBedSpawnFolded entities: - uid: 13865 @@ -76499,14 +78088,14 @@ entities: - uid: 19379 components: - type: Transform - pos: -47.544018,57.542088 + pos: -47.5615,56.51636 parent: 12 - proto: CheckerBoard entities: - uid: 8729 components: - type: Transform - pos: 51.497044,-38.513325 + pos: 51.79037,-36.868877 parent: 12 - uid: 25500 components: @@ -76690,6 +78279,20 @@ entities: - type: Transform pos: 31.640083,27.649036 parent: 12 +- proto: CigCartonMixed + entities: + - uid: 28906 + components: + - type: Transform + pos: 46.470013,-36.518024 + parent: 12 +- proto: CigPackBlack + entities: + - uid: 29176 + components: + - type: Transform + pos: -56.756435,59.391033 + parent: 12 - proto: CigPackBlue entities: - uid: 30152 @@ -76786,15 +78389,15 @@ entities: - type: Transform pos: -52.5,-34.5 parent: 12 - - uid: 31367 + - uid: 28303 components: - type: Transform - pos: -26.5,-55.5 + pos: -19.5,-64.5 parent: 12 - - uid: 31442 + - uid: 31367 components: - type: Transform - pos: -17.5,-64.5 + pos: -26.5,-55.5 parent: 12 - uid: 31443 components: @@ -76803,10 +78406,10 @@ entities: parent: 12 - proto: ClosetEmergencyFilledRandom entities: - - uid: 1276 + - uid: 2381 components: - type: Transform - pos: 35.5,-43.5 + pos: -60.5,-19.5 parent: 12 - uid: 4140 components: @@ -76818,15 +78421,15 @@ entities: - type: Transform pos: -13.5,-19.5 parent: 12 - - uid: 8805 + - uid: 6290 components: - type: Transform - pos: 5.5,-15.5 + pos: 59.5,-39.5 parent: 12 - - uid: 9567 + - uid: 9233 components: - type: Transform - pos: 16.5,12.5 + pos: 30.5,-55.5 parent: 12 - uid: 9819 components: @@ -76978,11 +78581,31 @@ entities: - type: Transform pos: -45.5,31.5 parent: 12 + - uid: 26027 + components: + - type: Transform + pos: -0.5,10.5 + parent: 12 + - uid: 26246 + components: + - type: Transform + pos: 13.5,-55.5 + parent: 12 + - uid: 26473 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 12 - uid: 26682 components: - type: Transform pos: 14.5,7.5 parent: 12 + - uid: 26728 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 12 - uid: 27016 components: - type: Transform @@ -76993,11 +78616,21 @@ entities: - type: Transform pos: -29.5,60.5 parent: 12 + - uid: 27711 + components: + - type: Transform + pos: -51.5,65.5 + parent: 12 - uid: 27862 components: - type: Transform pos: 27.5,16.5 parent: 12 + - uid: 28824 + components: + - type: Transform + pos: 39.5,-42.5 + parent: 12 - uid: 28840 components: - type: Transform @@ -77026,6 +78659,11 @@ entities: - 0 - 0 - 0 + - uid: 29648 + components: + - type: Transform + pos: -43.5,72.5 + parent: 12 - uid: 30464 components: - type: Transform @@ -77036,18 +78674,8 @@ entities: - type: Transform pos: 44.5,-18.5 parent: 12 - - uid: 31695 - components: - - type: Transform - pos: -61.5,-18.5 - parent: 12 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 6198 - components: - - type: Transform - pos: 35.5,-42.5 - parent: 12 - uid: 14957 components: - type: Transform @@ -77093,10 +78721,20 @@ entities: - type: Transform pos: 41.5,59.5 parent: 12 - - uid: 28947 + - uid: 26683 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 12 + - uid: 28830 + components: + - type: Transform + pos: 38.5,-42.5 + parent: 12 + - uid: 29145 components: - type: Transform - pos: 4.5,-23.5 + pos: -51.5,64.5 parent: 12 - uid: 31273 components: @@ -77130,10 +78768,10 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 - - uid: 9212 + - uid: 6278 components: - type: Transform - pos: 47.5,-36.5 + pos: 48.5,-36.5 parent: 12 - uid: 12023 components: @@ -77165,11 +78803,6 @@ entities: - type: Transform pos: 52.5,52.5 parent: 12 - - uid: 24223 - components: - - type: Transform - pos: 46.5,60.5 - parent: 12 - uid: 24236 components: - type: Transform @@ -77255,20 +78888,20 @@ entities: - type: Transform pos: -45.5,30.5 parent: 12 - - uid: 27833 + - uid: 26796 components: - type: Transform - pos: -52.5,-35.5 + pos: 45.5,60.5 parent: 12 - - uid: 28285 + - uid: 27833 components: - type: Transform - pos: -52.5,-19.5 + pos: -52.5,-35.5 parent: 12 - - uid: 28442 + - uid: 29654 components: - type: Transform - pos: 5.5,-14.5 + pos: -43.5,71.5 parent: 12 - uid: 30472 components: @@ -77285,11 +78918,6 @@ entities: - type: Transform pos: -26.5,-56.5 parent: 12 - - uid: 31441 - components: - - type: Transform - pos: -17.5,-65.5 - parent: 12 - uid: 31444 components: - type: Transform @@ -77433,6 +79061,11 @@ entities: - type: Transform pos: -42.5,-53.5 parent: 12 + - uid: 2148 + components: + - type: Transform + pos: -51.5,57.5 + parent: 12 - uid: 2973 components: - type: Transform @@ -77443,16 +79076,6 @@ entities: - type: Transform pos: -12.5,-3.5 parent: 12 - - uid: 5817 - components: - - type: Transform - pos: -48.5,52.5 - parent: 12 - - uid: 6291 - components: - - type: Transform - pos: 35.5,-41.5 - parent: 12 - uid: 7012 components: - type: Transform @@ -77492,11 +79115,6 @@ entities: - type: Transform pos: 37.5,-23.5 parent: 12 - - uid: 9255 - components: - - type: Transform - pos: -56.5,-32.5 - parent: 12 - uid: 9996 components: - type: Transform @@ -77527,15 +79145,15 @@ entities: - type: Transform pos: 36.5,10.5 parent: 12 - - uid: 12058 + - uid: 12057 components: - type: Transform - pos: 40.5,12.5 + pos: -45.5,66.5 parent: 12 - - uid: 12113 + - uid: 12058 components: - type: Transform - pos: -52.5,56.5 + pos: 40.5,12.5 parent: 12 - uid: 12246 components: @@ -77552,11 +79170,6 @@ entities: - type: Transform pos: -56.5,-29.5 parent: 12 - - uid: 17584 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 12 - uid: 18105 components: - type: Transform @@ -77567,11 +79180,6 @@ entities: - type: Transform pos: -27.5,21.5 parent: 12 - - uid: 21760 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 12 - uid: 22123 components: - type: Transform @@ -77647,15 +79255,35 @@ entities: - type: Transform pos: 34.5,-35.5 parent: 12 - - uid: 25330 + - uid: 25364 components: - type: Transform - pos: 48.5,-36.5 + pos: 4.5,64.5 parent: 12 - - uid: 25364 + - uid: 26634 components: - type: Transform - pos: 4.5,64.5 + pos: -6.5,-17.5 + parent: 12 + - uid: 26784 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 12 + - uid: 26786 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 12 + - uid: 27020 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 12 + - uid: 27236 + components: + - type: Transform + pos: 48.5,-37.5 parent: 12 - uid: 27327 components: @@ -77688,26 +79316,61 @@ entities: showEnts: False occludes: True ent: null + - uid: 28634 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 12 + - uid: 28639 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 12 - uid: 28654 components: - type: Transform pos: -7.5,3.5 parent: 12 + - uid: 28708 + components: + - type: Transform + pos: 33.5,-55.5 + parent: 12 - uid: 28839 components: - type: Transform pos: 29.5,8.5 parent: 12 - - uid: 29165 + - uid: 28870 components: - type: Transform - pos: -2.5,-23.5 + pos: 41.5,-42.5 parent: 12 - uid: 29638 components: - type: Transform pos: -49.5,47.5 parent: 12 + - uid: 29647 + components: + - type: Transform + pos: -30.5,75.5 + parent: 12 + - uid: 29824 + components: + - type: Transform + pos: -43.5,69.5 + parent: 12 + - uid: 29989 + components: + - type: Transform + pos: -52.5,52.5 + parent: 12 + - uid: 29995 + components: + - type: Transform + pos: -39.5,74.5 + parent: 12 - uid: 30471 components: - type: Transform @@ -77735,15 +79398,10 @@ entities: - type: Transform pos: -33.5,-39.5 parent: 12 - - uid: 6771 - components: - - type: Transform - pos: 29.5,-6.5 - parent: 12 - - uid: 17199 + - uid: 13002 components: - type: Transform - pos: -54.5,-30.5 + pos: -54.5,-32.5 parent: 12 - uid: 22041 components: @@ -77839,11 +79497,6 @@ entities: - type: Transform pos: -26.5,52.5 parent: 12 - - uid: 23712 - components: - - type: Transform - pos: -54.5,63.5 - parent: 12 - uid: 25358 components: - type: Transform @@ -77857,11 +79510,6 @@ entities: - type: Transform pos: -27.5,49.5 parent: 12 - - uid: 23760 - components: - - type: Transform - pos: -52.5,63.5 - parent: 12 - uid: 25345 components: - type: Transform @@ -77942,7 +79590,8 @@ entities: - uid: 25378 components: - type: Transform - pos: 11.527891,-16.45502 + rot: -100.53096491487331 rad + pos: 9.531616,-13.506657 parent: 12 - proto: ClothingBeltUtilityFilled entities: @@ -78090,23 +79739,39 @@ entities: - type: Transform pos: 33.68242,-17.632181 parent: 12 - - uid: 5909 + - uid: 9236 components: - type: Transform - pos: 33.729294,-18.522806 + pos: 41.51222,-38.624264 parent: 12 - - uid: 9236 + - uid: 19204 components: - type: Transform - pos: 42.52788,-37.64374 + pos: 21.5,-23.5 parent: 12 - uid: 23685 components: - type: Transform pos: 48.481655,51.562435 parent: 12 + - uid: 29311 + components: + - type: MetaData + desc: They seem to just be regular insulated gloves. These gloves will protect the wearer from electric shocks. + name: holy relic + - type: Transform + rot: -12.566370614359172 rad + pos: -37.51887,78.52481 + parent: 12 - proto: ClothingHandsGlovesLatex entities: + - uid: 9488 + components: + - type: Transform + parent: 9298 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13266 components: - type: Transform @@ -78234,6 +79899,14 @@ entities: - type: Transform pos: 42.777477,-19.21 parent: 12 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 29181 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -55.470665,63.704964 + parent: 12 - proto: ClothingHeadHatGladiator entities: - uid: 31203 @@ -78256,6 +79929,13 @@ entities: rot: -6.283185307179586 rad pos: -16.4813,60.833267 parent: 12 +- proto: ClothingHeadHatPirateTricord + entities: + - uid: 28831 + components: + - type: Transform + pos: 36.49667,-52.277916 + parent: 12 - proto: ClothingHeadHatPwig entities: - uid: 22378 @@ -78263,8 +79943,22 @@ entities: - type: Transform pos: -15.479212,51.570213 parent: 12 +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 5726 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -22.27849,52.449715 + parent: 12 - proto: ClothingHeadHatTophat entities: + - uid: 5053 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -39.400192,-15.16795 + parent: 12 - uid: 23553 components: - type: Transform @@ -78276,15 +79970,20 @@ entities: - uid: 30941 components: - type: Transform - pos: 4.3314962,-59.50384 + pos: 5.4417367,-60.162846 parent: 12 - uid: 31184 components: - type: Transform - pos: 4.665799,-60.034203 + pos: 5.6500697,-60.402912 parent: 12 - proto: ClothingHeadHatWelding entities: + - uid: 5503 + components: + - type: Transform + pos: 40.49897,3.5981612 + parent: 12 - uid: 6745 components: - type: Transform @@ -78358,8 +80057,7 @@ entities: - uid: 32167 components: - type: Transform - rot: -125.66370614359157 rad - pos: -62.594955,-52.33298 + pos: -61.5426,-52.550335 parent: 12 - proto: ClothingHeadHelmetRiot entities: @@ -78458,7 +80156,8 @@ entities: - uid: 31358 components: - type: Transform - pos: -34.50593,-15.354567 + rot: -31.415926535897945 rad + pos: -34.346054,-15.604868 parent: 12 - proto: ClothingMaskGas entities: @@ -78475,6 +80174,11 @@ entities: rot: -6.283185307179586 rad pos: 42.37392,63.744247 parent: 12 + - uid: 29502 + components: + - type: Transform + pos: -35.515575,77.54999 + parent: 12 - proto: ClothingMaskGasAtmos entities: - uid: 27188 @@ -78483,6 +80187,13 @@ entities: rot: -25.132741228718352 rad pos: 17.825888,-13.641907 parent: 12 +- proto: ClothingMaskMuzzle + entities: + - uid: 26829 + components: + - type: Transform + pos: -24.5,53.5 + parent: 12 - proto: ClothingMaskSterile entities: - uid: 8888 @@ -78490,6 +80201,13 @@ entities: - type: Transform pos: -12.50767,-45.32497 parent: 12 + - uid: 9503 + components: + - type: Transform + parent: 9298 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13276 components: - type: Transform @@ -78545,7 +80263,8 @@ entities: - uid: 29599 components: - type: Transform - pos: -43.44968,72.43989 + rot: -6.283185307179586 rad + pos: -50.5738,76.70312 parent: 12 - proto: ClothingNeckScarfStripedBlue entities: @@ -78587,6 +80306,21 @@ entities: actions: !type:Container ents: - 4711 +- proto: ClothingNeckTieDet + entities: + - uid: 29309 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.762493,61.658695 + parent: 12 +- proto: ClothingOuterApronBar + entities: + - uid: 19822 + components: + - type: Transform + pos: 38.296032,-30.817263 + parent: 12 - proto: ClothingOuterApronBotanist entities: - uid: 21363 @@ -78724,6 +80458,13 @@ entities: - type: Transform pos: -4.4779925,21.516867 parent: 12 +- proto: ClothingOuterCoatTrench + entities: + - uid: 1523 + components: + - type: Transform + pos: -54.5,60.5 + parent: 12 - proto: ClothingOuterFlannelBlue entities: - uid: 30219 @@ -78743,8 +80484,7 @@ entities: - uid: 32142 components: - type: Transform - rot: -125.66370614359157 rad - pos: -62.331066,-52.62485 + pos: -62.521767,-52.550335 parent: 12 - proto: ClothingOuterHoodieBlack entities: @@ -78799,11 +80539,6 @@ entities: parent: 12 - proto: ClothingOuterSuitEmergency entities: - - uid: 2683 - components: - - type: Transform - pos: -17.312998,-67.46378 - parent: 12 - uid: 10386 components: - type: Transform @@ -78896,22 +80631,26 @@ entities: - uid: 836 components: - type: Transform - pos: -43.654907,69.632965 + rot: -6.283185307179586 rad + pos: -51.46078,67.59943 parent: 12 - uid: 1836 components: - type: Transform - pos: -43.72829,70.59985 + rot: -12.566370614359172 rad + pos: -45.59967,73.321205 parent: 12 - uid: 25439 components: - type: Transform - pos: -43.55706,69.76759 + rot: -6.283185307179586 rad + pos: -50.495502,67.57858 parent: 12 - uid: 29215 components: - type: Transform - pos: -43.603027,70.68353 + rot: -12.566370614359172 rad + pos: -45.342724,73.68256 parent: 12 - proto: ClothingShoesTourist entities: @@ -79000,6 +80739,22 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitColorOrange + entities: + - uid: 1878 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -54.02698,57.18202 + parent: 12 +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 29094 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.392857,61.517265 + parent: 12 - proto: ClothingUniformJumpsuitGladiator entities: - uid: 31205 @@ -79046,6 +80801,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPirate + entities: + - uid: 28865 + components: + - type: Transform + pos: 36.521133,-52.661407 + parent: 12 - proto: ClothingUniformJumpsuitPyjamaSyndicateRed entities: - uid: 28255 @@ -79073,12 +80835,6 @@ entities: parent: 12 - proto: Cobweb1 entities: - - uid: 4897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-41.5 - parent: 12 - uid: 4899 components: - type: Transform @@ -79090,11 +80846,6 @@ entities: - type: Transform pos: 53.5,-42.5 parent: 12 - - uid: 5303 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 12 - uid: 9215 components: - type: Transform @@ -79226,11 +80977,17 @@ entities: - type: Transform pos: 42.5,64.5 parent: 12 - - uid: 25038 + - uid: 25835 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,58.5 + pos: 6.5,-23.5 + parent: 12 + - uid: 28785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-44.5 parent: 12 - uid: 30201 components: @@ -79322,11 +81079,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,65.5 parent: 12 - - uid: 30196 - components: - - type: Transform - pos: -22.5,53.5 - parent: 12 - proto: ComfyChair entities: - uid: 887 @@ -79362,6 +81114,12 @@ entities: - type: Transform pos: -23.5,-55.5 parent: 12 + - uid: 4113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 12 - uid: 12236 components: - type: Transform @@ -79540,10 +81298,11 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-20.5 parent: 12 - - uid: 4012 + - uid: 4785 components: - type: Transform - pos: 17.5,-15.5 + rot: -1.5707963267948966 rad + pos: 18.5,-15.5 parent: 12 - uid: 29966 components: @@ -79838,11 +81597,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,27.5 parent: 12 - - uid: 4732 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 12 - uid: 5474 components: - type: Transform @@ -79871,6 +81625,12 @@ entities: - type: Transform pos: -6.5,36.5 parent: 12 + - uid: 25831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 12 - proto: ComputerRadar entities: - uid: 2447 @@ -79879,11 +81639,6 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,-34.5 parent: 12 - - uid: 2491 - components: - - type: Transform - pos: 59.5,-39.5 - parent: 12 - uid: 3915 components: - type: Transform @@ -79907,6 +81662,12 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,-8.5 parent: 12 + - uid: 26947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-36.5 + parent: 12 - proto: ComputerResearchAndDevelopment entities: - uid: 784 @@ -79975,12 +81736,6 @@ entities: parent: 12 - proto: ComputerSolarControl entities: - - uid: 499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 - parent: 12 - uid: 9217 components: - type: Transform @@ -80003,6 +81758,18 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,47.5 parent: 12 + - uid: 26073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-5.5 + parent: 12 + - uid: 27125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-69.5 + parent: 12 - uid: 31765 components: - type: Transform @@ -80071,6 +81838,12 @@ entities: - type: Transform pos: 21.5,59.5 parent: 12 + - uid: 28975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,60.5 + parent: 12 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 17952 @@ -80155,6 +81928,11 @@ entities: - type: Transform pos: -7.5,63.5 parent: 12 + - uid: 29302 + components: + - type: Transform + pos: -53.5,63.5 + parent: 12 - uid: 30262 components: - type: Transform @@ -80678,6 +82456,52 @@ entities: rot: 3.141592653589793 rad pos: 39.5,15.5 parent: 12 + - uid: 22952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,75.5 + parent: 12 + - uid: 23122 + components: + - type: Transform + pos: -27.5,77.5 + parent: 12 + - uid: 23177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,76.5 + parent: 12 + - uid: 23700 + components: + - type: Transform + pos: -27.5,76.5 + parent: 12 + - uid: 27040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,77.5 + parent: 12 + - uid: 27329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,75.5 + parent: 12 + - uid: 27498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,77.5 + parent: 12 + - uid: 27716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,75.5 + parent: 12 - proto: ConveyorBeltAssembly entities: - uid: 6163 @@ -80776,6 +82600,11 @@ entities: - 0 - 0 - 0 + - uid: 22064 + components: + - type: Transform + pos: 47.5,60.5 + parent: 12 - proto: CrateBaseSecure entities: - uid: 6770 @@ -80856,13 +82685,6 @@ entities: - type: Transform pos: -8.5,13.5 parent: 12 -- proto: CrateEmergencyRadiation - entities: - - uid: 5983 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 12 - proto: CrateEmptySpawner entities: - uid: 436 @@ -80933,17 +82755,17 @@ entities: ent: null - proto: CrateEngineeringAMEJar entities: - - uid: 29395 + - uid: 773 components: - type: Transform - pos: 33.5,4.5 + pos: 40.5,4.5 parent: 12 - proto: CrateEngineeringAMEShielding entities: - - uid: 29355 + - uid: 1357 components: - type: Transform - pos: 33.5,0.5 + pos: 34.5,2.5 parent: 12 - proto: CrateEngineeringElectricalSupplies entities: @@ -80983,8 +82805,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -81001,9 +82823,9 @@ entities: showEnts: False occludes: True ents: - - 2920 - - 2923 - 2929 + - 2923 + - 2920 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -81021,8 +82843,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -81039,9 +82861,93 @@ entities: showEnts: False occludes: True ents: - - 5888 - 5886 - 5885 + - 4887 + - 4851 + - 5888 + - 6298 + - 6299 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringTeslaCoil + entities: + - uid: 24085 + components: + - type: Transform + pos: 62.5,12.5 + parent: 12 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 24193 + - 24218 + - 24223 + - 24224 + - 24225 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringTeslaGroundingRod + entities: + - uid: 24702 + components: + - type: Transform + pos: 61.5,12.5 + parent: 12 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25027 + - 25038 + - 25101 + - 25104 + - 25195 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -81518,11 +83424,23 @@ entities: - type: Transform pos: -28.283596,23.347982 parent: 12 + - uid: 30176 + components: + - type: Transform + pos: -42.437584,42.39632 + parent: 12 - uid: 31702 components: - type: Transform pos: -60.47375,-25.60259 parent: 12 +- proto: CrowbarRed + entities: + - uid: 29500 + components: + - type: Transform + pos: -36.524837,76.4381 + parent: 12 - proto: CryogenicSleepUnit entities: - uid: 21356 @@ -81681,6 +83599,11 @@ entities: parent: 12 - proto: d6Dice entities: + - uid: 929 + components: + - type: Transform + pos: 36.674004,-46.37224 + parent: 12 - uid: 22659 components: - type: Transform @@ -81784,6 +83707,16 @@ entities: text: Pool - type: WarpPoint location: Pool + - uid: 26754 + components: + - type: Transform + pos: 47.5,59.5 + parent: 12 + - type: NavMapBeacon + color: '#D381C993' + text: Science checkpoint + - type: WarpPoint + location: Science checkpoint - proto: DefaultStationBeaconAI entities: - uid: 115 @@ -81800,10 +83733,10 @@ entities: parent: 12 - proto: DefaultStationBeaconAME entities: - - uid: 5966 + - uid: 2411 components: - type: Transform - pos: 36.5,2.5 + pos: 37.5,3.5 parent: 12 - proto: DefaultStationBeaconAnomalyGenerator entities: @@ -81917,11 +83850,6 @@ entities: - type: Transform pos: -30.5,30.5 parent: 12 - - uid: 21604 - components: - - type: Transform - pos: -22.5,44.5 - parent: 12 - proto: DefaultStationBeaconCryonics entities: - uid: 3938 @@ -81966,11 +83894,6 @@ entities: parent: 12 - proto: DefaultStationBeaconEscapePod entities: - - uid: 509 - components: - - type: Transform - pos: -52.5,57.5 - parent: 12 - uid: 627 components: - type: Transform @@ -82102,10 +84025,10 @@ entities: parent: 12 - proto: DefaultStationBeaconPowerBank entities: - - uid: 8968 + - uid: 4476 components: - type: Transform - pos: 13.5,-16.5 + pos: 13.5,-15.5 parent: 12 - proto: DefaultStationBeaconQMRoom entities: @@ -82176,10 +84099,10 @@ entities: parent: 12 - proto: DefaultStationBeaconSingularity entities: - - uid: 26754 + - uid: 26654 components: - type: Transform - pos: 59.5,4.5 + pos: 60.5,5.5 parent: 12 - proto: DefaultStationBeaconSolars entities: @@ -82198,6 +84121,11 @@ entities: - type: Transform pos: -51.5,46.5 parent: 12 + - uid: 27449 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 12 - uid: 31018 components: - type: Transform @@ -82224,6 +84152,13 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 12 +- proto: DefaultStationBeaconTEG + entities: + - uid: 4013 + components: + - type: Transform + pos: 7.5,15.5 + parent: 12 - proto: DefaultStationBeaconTelecoms entities: - uid: 21869 @@ -82398,6 +84333,12 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 12 + - uid: 2423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 12 - uid: 2900 components: - type: Transform @@ -82536,11 +84477,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-47.5 parent: 12 - - uid: 5131 - components: - - type: Transform - pos: -23.5,53.5 - parent: 12 - uid: 5173 components: - type: Transform @@ -82580,6 +84516,18 @@ entities: - type: Transform pos: -7.5,-51.5 parent: 12 + - uid: 6313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 12 + - uid: 6315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,62.5 + parent: 12 - uid: 6864 components: - type: Transform @@ -82598,6 +84546,12 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-37.5 parent: 12 + - uid: 7207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,62.5 + parent: 12 - uid: 7510 components: - type: Transform @@ -82632,12 +84586,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-40.5 parent: 12 - - uid: 8423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-40.5 - parent: 12 - uid: 8474 components: - type: Transform @@ -82662,12 +84610,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,21.5 parent: 12 - - uid: 9084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 12 - uid: 9457 components: - type: Transform @@ -83070,12 +85012,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,28.5 parent: 12 - - uid: 17773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-30.5 - parent: 12 - uid: 18671 components: - type: Transform @@ -83451,6 +85387,12 @@ entities: - type: Transform pos: 23.5,11.5 parent: 12 + - uid: 26523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 12 - uid: 26729 components: - type: Transform @@ -83568,12 +85510,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,12.5 parent: 12 - - uid: 28998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 - parent: 12 - uid: 29033 components: - type: Transform @@ -83731,18 +85667,6 @@ entities: - type: Transform pos: 52.5,46.5 parent: 12 - - uid: 32109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,63.5 - parent: 12 - - uid: 32112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,63.5 - parent: 12 - proto: DisposalJunction entities: - uid: 1900 @@ -83786,6 +85710,12 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 12 + - uid: 5186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 12 - uid: 5810 components: - type: Transform @@ -83973,6 +85903,12 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-27.5 parent: 12 + - uid: 5190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-16.5 + parent: 12 - uid: 5892 components: - type: Transform @@ -84112,6 +86048,11 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-41.5 parent: 12 + - uid: 26519 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 12 - proto: DisposalMachineFrame entities: - uid: 12940 @@ -84121,6 +86062,12 @@ entities: parent: 12 - proto: DisposalPipe entities: + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-14.5 + parent: 12 - uid: 357 components: - type: Transform @@ -84133,6 +86080,12 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-12.5 parent: 12 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-12.5 + parent: 12 - uid: 637 components: - type: Transform @@ -84518,6 +86471,12 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-12.5 parent: 12 + - uid: 2369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 12 - uid: 2538 components: - type: Transform @@ -85044,11 +87003,17 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,45.5 parent: 12 - - uid: 4695 + - uid: 4681 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,53.5 + pos: 32.5,-10.5 + parent: 12 + - uid: 4684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 parent: 12 - uid: 4697 components: @@ -85168,6 +87133,18 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-5.5 parent: 12 + - uid: 5131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 12 + - uid: 5304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-15.5 + parent: 12 - uid: 5323 components: - type: Transform @@ -85302,12 +87279,29 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-21.5 parent: 12 + - uid: 6303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 12 + - uid: 6323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-40.5 + parent: 12 - uid: 6719 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 12 + - uid: 6743 + components: + - type: Transform + pos: 54.5,63.5 + parent: 12 - uid: 6765 components: - type: Transform @@ -85476,6 +87470,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-26.5 parent: 12 + - uid: 7300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,62.5 + parent: 12 - uid: 7305 components: - type: Transform @@ -85494,6 +87494,12 @@ entities: rot: 3.141592653589793 rad pos: -39.5,51.5 parent: 12 + - uid: 7423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,62.5 + parent: 12 - uid: 7469 components: - type: Transform @@ -86625,12 +88631,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,10.5 parent: 12 - - uid: 10874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 12 - uid: 10875 components: - type: Transform @@ -89464,12 +91464,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-26.5 parent: 12 - - uid: 22107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 12 - uid: 22108 components: - type: Transform @@ -90806,6 +92800,12 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-23.5 parent: 12 + - uid: 26104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-13.5 + parent: 12 - uid: 26114 components: - type: Transform @@ -91568,12 +93568,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-1.5 parent: 12 - - uid: 28999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-1.5 - parent: 12 - uid: 29016 components: - type: Transform @@ -91755,12 +93749,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 12 - - uid: 29368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 12 - uid: 29369 components: - type: Transform @@ -92399,31 +94387,8 @@ entities: - type: Transform pos: 57.5,49.5 parent: 12 - - uid: 32107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,63.5 - parent: 12 - - uid: 32113 - components: - - type: Transform - pos: 51.5,62.5 - parent: 12 - - uid: 32114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,63.5 - parent: 12 - proto: DisposalPipeBroken entities: - - uid: 2704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-31.5 - parent: 12 - uid: 4901 components: - type: Transform @@ -92559,12 +94524,6 @@ entities: - type: Transform pos: -27.5,-18.5 parent: 12 - - uid: 2031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-30.5 - parent: 12 - uid: 3387 components: - type: Transform @@ -92622,18 +94581,6 @@ entities: - type: Transform pos: 43.5,39.5 parent: 12 - - uid: 4709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,52.5 - parent: 12 - - uid: 5067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,53.5 - parent: 12 - uid: 5209 components: - type: Transform @@ -92646,6 +94593,12 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-11.5 parent: 12 + - uid: 6328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-40.5 + parent: 12 - uid: 6847 components: - type: Transform @@ -92693,11 +94646,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-37.5 parent: 12 - - uid: 8351 - components: - - type: Transform - pos: 58.5,-39.5 - parent: 12 - uid: 8831 components: - type: Transform @@ -92734,11 +94682,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-23.5 parent: 12 - - uid: 9773 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 12 - uid: 10413 components: - type: Transform @@ -92906,6 +94849,11 @@ entities: - type: Transform pos: -14.5,45.5 parent: 12 + - uid: 22158 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 12 - uid: 22414 components: - type: Transform @@ -92988,6 +94936,11 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-13.5 parent: 12 + - uid: 26522 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 12 - uid: 27021 components: - type: Transform @@ -93129,21 +95082,11 @@ entities: - type: Transform pos: 8.5,-52.5 parent: 12 - - uid: 4613 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 12 - uid: 4669 components: - type: Transform pos: 35.5,-23.5 parent: 12 - - uid: 4708 - components: - - type: Transform - pos: -23.5,52.5 - parent: 12 - uid: 5110 components: - type: Transform @@ -93169,11 +95112,6 @@ entities: - type: Transform pos: 55.5,6.5 parent: 12 - - uid: 8346 - components: - - type: Transform - pos: 58.5,-39.5 - parent: 12 - uid: 8347 components: - type: Transform @@ -93226,6 +95164,11 @@ entities: - type: Transform pos: 47.5,17.5 parent: 12 + - uid: 12697 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 12 - uid: 12703 components: - type: Transform @@ -93376,6 +95319,11 @@ entities: - type: Transform pos: -38.5,50.5 parent: 12 + - uid: 26927 + components: + - type: Transform + pos: 59.5,-40.5 + parent: 12 - uid: 29391 components: - type: Transform @@ -93410,12 +95358,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-31.5 parent: 12 - - uid: 9784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 12 - uid: 13964 components: - type: Transform @@ -93500,6 +95442,14 @@ entities: - type: Transform pos: -22.413641,-10.548397 parent: 12 +- proto: DoorElectronicsMaintenance + entities: + - uid: 8428 + components: + - type: Transform + rot: -43.98229715025713 rad + pos: 56.495026,-7.6256537 + parent: 12 - proto: DoubleEmergencyNitrogenTankFilled entities: - uid: 16510 @@ -93570,6 +95520,23 @@ entities: - type: Transform pos: -36.5,-19.5 parent: 12 +- proto: Drill + entities: + - uid: 5618 + components: + - type: Transform + pos: -4.3746023,-32.230583 + parent: 12 + - uid: 22072 + components: + - type: Transform + pos: -23.010513,52.69631 + parent: 12 + - uid: 26825 + components: + - type: Transform + pos: -5.369359,-38.283527 + parent: 12 - proto: DrinkBeerBottleFull entities: - uid: 21456 @@ -93705,20 +95672,32 @@ entities: parent: 12 - proto: DrinkGlass entities: + - uid: 5365 + components: + - type: Transform + pos: 38.69985,-31.605726 + parent: 12 + - uid: 5434 + components: + - type: Transform + pos: 38.520466,-31.39358 + parent: 12 - uid: 7306 components: - type: Transform - pos: -55.469055,-13.652544 + rot: -43.98229715025713 rad + pos: -57.251377,-13.417505 parent: 12 - uid: 8343 components: - type: Transform - pos: -55.744446,-13.579161 + rot: -43.98229715025713 rad + pos: -57.626377,-13.21438 parent: 12 - - uid: 10602 + - uid: 11435 components: - type: Transform - pos: -55.19366,-13.542469 + pos: 38.313904,-31.611166 parent: 12 - uid: 17626 components: @@ -93802,6 +95781,14 @@ entities: - type: Transform pos: 54.260303,17.501846 parent: 12 +- proto: DrinkHoochGlass + entities: + - uid: 26959 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: -55.403515,-12.701015 + parent: 12 - proto: DrinkHotCoffee entities: - uid: 3804 @@ -93832,8 +95819,7 @@ entities: - uid: 8908 components: - type: Transform - rot: -37.69911184307754 rad - pos: 55.649223,-33.80984 + pos: 55.37848,-34.243008 parent: 12 - uid: 8911 components: @@ -93909,8 +95895,29 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: DrinkIceCreamGlass + entities: + - uid: 11795 + components: + - type: Transform + rot: -106.81415022205287 rad + pos: 35.761303,-30.34728 + parent: 12 +- proto: DrinkIcedTeaGlass + entities: + - uid: 19267 + components: + - type: Transform + rot: -94.24777960769374 rad + pos: 35.519463,-30.544924 + parent: 12 - proto: DrinkJar entities: + - uid: 10001 + components: + - type: Transform + pos: -59.470123,-16.35501 + parent: 12 - uid: 22881 components: - type: Transform @@ -93921,6 +95928,14 @@ entities: - type: Transform pos: 30.54954,56.766605 parent: 12 +- proto: DrinkLemonadeGlass + entities: + - uid: 19203 + components: + - type: Transform + rot: -94.24777960769374 rad + pos: 35.28798,-30.34108 + parent: 12 - proto: DrinkMilkCarton entities: - uid: 21399 @@ -93936,22 +95951,11 @@ entities: parent: 12 - proto: DrinkMopwataBottleRandom entities: - - uid: 2120 - components: - - type: Transform - pos: 34.4878,-30.348785 - parent: 12 - - uid: 25532 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 38.32821,-31.26264 - parent: 12 - - uid: 25534 + - uid: 9720 components: - type: Transform - rot: -12.566370614359172 rad - pos: 38.66251,-31.572699 + rot: -31.415926535897945 rad + pos: -39.55718,-16.449203 parent: 12 - proto: DrinkMugBlue entities: @@ -94003,7 +96007,7 @@ entities: - uid: 8907 components: - type: Transform - pos: 55.313694,-34.01245 + pos: 55.305096,-34.53654 parent: 12 - uid: 20832 components: @@ -94052,6 +96056,13 @@ entities: - type: Transform pos: -35.56558,-20.24829 parent: 12 +- proto: DrinkTequilaBottleFull + entities: + - uid: 288 + components: + - type: Transform + pos: -56.342857,59.59179 + parent: 12 - proto: DrinkWhiskeyBottleFull entities: - uid: 13631 @@ -94120,6 +96131,12 @@ entities: - type: Transform pos: 12.175709,56.95935 parent: 12 + - uid: 28420 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: -39.284416,-16.399513 + parent: 12 - proto: Dropper entities: - uid: 13845 @@ -94153,6 +96170,13 @@ entities: rot: -12.566370614359172 rad pos: -29.330828,7.500151 parent: 12 +- proto: ElectrolysisUnitMachineCircuitboard + entities: + - uid: 26647 + components: + - type: Transform + pos: -3.5,21.5 + parent: 12 - proto: EmergencyFunnyOxygenTankFilled entities: - uid: 27129 @@ -94176,6 +96200,12 @@ entities: - type: Transform pos: 60.5,12.5 parent: 12 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-28.5 + parent: 12 - uid: 274 components: - type: Transform @@ -94206,12 +96236,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-7.5 parent: 12 - - uid: 5982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 12 - uid: 8887 components: - type: Transform @@ -94421,12 +96445,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-33.5 parent: 12 - - uid: 10557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-43.5 - parent: 12 - uid: 10558 components: - type: Transform @@ -94444,12 +96462,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-32.5 parent: 12 - - uid: 10561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-28.5 - parent: 12 - uid: 10562 components: - type: Transform @@ -94474,12 +96486,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,24.5 parent: 12 - - uid: 12999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-2.5 - parent: 12 - uid: 13527 components: - type: Transform @@ -94521,6 +96527,12 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,30.5 parent: 12 + - uid: 16525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-43.5 + parent: 12 - uid: 16666 components: - type: Transform @@ -94597,6 +96609,17 @@ entities: - type: Transform pos: -50.5,26.5 parent: 12 + - uid: 18559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-2.5 + parent: 12 + - uid: 18630 + components: + - type: Transform + pos: 36.5,4.5 + parent: 12 - uid: 21240 components: - type: Transform @@ -94804,10 +96827,11 @@ entities: - type: Transform pos: -32.5,30.5 parent: 12 - - uid: 22336 + - uid: 23940 components: - type: Transform - pos: 47.5,-0.5 + rot: 3.141592653589793 rad + pos: 46.5,-1.5 parent: 12 - uid: 25296 components: @@ -95034,12 +97058,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 12 - - uid: 31890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 12 - uid: 32037 components: - type: Transform @@ -95051,8 +97069,17 @@ entities: - uid: 31675 components: - type: Transform - pos: -62.500305,-24.414648 + rot: -37.69911184307754 rad + pos: -59.610268,-21.437107 parent: 12 + - type: GasTank + toggleActionEntity: 6678 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6678 - proto: EmergencyRollerBed entities: - uid: 2511 @@ -95067,6 +97094,20 @@ entities: parent: 12 - proto: EmitterFlatpack entities: + - uid: 4851 + components: + - type: Transform + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4887 + components: + - type: Transform + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 5885 components: - type: Transform @@ -95088,6 +97129,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 6298 + components: + - type: Transform + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6299 + components: + - type: Transform + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: EncryptionKeyCommon entities: - uid: 22253 @@ -95123,41 +97178,22 @@ entities: - type: Transform pos: -25.5,-31.5 parent: 12 -- proto: ExtendedEmergencyNitrogenTankFilled - entities: - - uid: 2681 - components: - - type: Transform - pos: -17.667685,-67.53716 - parent: 12 - - type: GasTank - toggleActionEntity: 9079 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 9079 - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 2680 + - uid: 31364 components: - type: Transform - pos: -17.74107,-67.10909 + rot: -31.415926535897945 rad + pos: -34.689804,-15.469358 parent: 12 - type: GasTank - toggleActionEntity: 9083 + toggleActionEntity: 6679 - type: ActionsContainer - type: ContainerContainer containers: actions: !type:Container ents: - - 9083 - - uid: 31364 - components: - - type: Transform - pos: -34.3601,-15.681181 - parent: 12 + - 6679 - proto: ExtinguisherCabinetFilled entities: - uid: 2106 @@ -95188,11 +97224,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,31.5 parent: 12 - - uid: 7229 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 12 - uid: 9238 components: - type: Transform @@ -95220,6 +97251,12 @@ entities: - type: Transform pos: 39.5,12.5 parent: 12 + - uid: 25680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-45.5 + parent: 12 - uid: 26003 components: - type: Transform @@ -95335,11 +97372,6 @@ entities: - type: Transform pos: 43.5,-33.5 parent: 12 - - uid: 26030 - components: - - type: Transform - pos: 54.5,-43.5 - parent: 12 - uid: 26031 components: - type: Transform @@ -95415,6 +97447,11 @@ entities: - type: Transform pos: 58.5,44.5 parent: 12 + - uid: 26633 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 12 - uid: 29963 components: - type: Transform @@ -95425,6 +97462,13 @@ entities: - type: Transform pos: 41.5,-4.5 parent: 12 +- proto: FancyTableSpawner + entities: + - uid: 5160 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 12 - proto: FaxMachineBase entities: - uid: 3793 @@ -95593,6 +97637,11 @@ entities: - type: Transform pos: -40.5,-24.5 parent: 12 + - uid: 2325 + components: + - type: Transform + pos: -55.5,63.5 + parent: 12 - proto: filingCabinetRandom entities: - uid: 1959 @@ -95899,12 +97948,14 @@ entities: parent: 12 - type: DeviceList devices: - - 14471 - - 14472 - - 14474 - - 14475 - - 14476 + - 24083 + - 24082 - 23943 + - 14476 + - 14475 + - 26899 + - 14472 + - 14471 - uid: 24244 components: - type: Transform @@ -95931,7 +97982,8 @@ entities: - uid: 9213 components: - type: Transform - pos: 45.473827,-36.46947 + rot: -6.283185307179586 rad + pos: 44.6147,-36.414783 parent: 12 - proto: FireAxeCabinetFilled entities: @@ -96007,6 +98059,11 @@ entities: - type: DeviceNetwork deviceLists: - 28354 + - uid: 28829 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 12 - uid: 30697 components: - type: Transform @@ -96317,11 +98374,57 @@ entities: - type: DeviceNetwork deviceLists: - 28343 + - uid: 616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,62.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 328 + - 28328 + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-40.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 + - uid: 704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-48.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 + - uid: 708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,64.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 28328 - uid: 927 components: - type: Transform pos: -3.5,-6.5 parent: 12 + - uid: 1348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1375 - uid: 1553 components: - type: Transform @@ -96529,6 +98632,7 @@ entities: deviceLists: - 23937 - 2852 + - 706 - uid: 2909 components: - type: Transform @@ -96742,6 +98846,7 @@ entities: deviceLists: - 23937 - 2852 + - 706 - uid: 4266 components: - type: Transform @@ -96840,6 +98945,13 @@ entities: deviceLists: - 23937 - 2852 + - 1169 + - uid: 6101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-31.5 + parent: 12 - uid: 6175 components: - type: Transform @@ -96849,6 +98961,7 @@ entities: deviceLists: - 23937 - 2852 + - 1169 - uid: 6181 components: - type: Transform @@ -96873,6 +98986,15 @@ entities: deviceLists: - 23937 - 2852 + - uid: 6708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-42.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 - uid: 6735 components: - type: Transform @@ -97048,6 +99170,14 @@ entities: - 23929 - 28367 - 8914 + - uid: 7529 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 22005 - uid: 7560 components: - type: Transform @@ -97058,12 +99188,6 @@ entities: deviceLists: - 70 - 29275 - - uid: 7609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-42.5 - parent: 12 - uid: 7615 components: - type: Transform @@ -97091,6 +99215,7 @@ entities: - type: DeviceNetwork deviceLists: - 6833 + - 752 - uid: 7618 components: - type: Transform @@ -97100,6 +99225,7 @@ entities: - type: DeviceNetwork deviceLists: - 6833 + - 752 - uid: 7775 components: - type: Transform @@ -97138,6 +99264,22 @@ entities: deviceLists: - 30445 - 9101 + - uid: 8351 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 706 + - uid: 8416 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 706 - uid: 8460 components: - type: Transform @@ -97320,7 +99462,7 @@ entities: - type: DeviceNetwork deviceLists: - 28376 - - 4887 + - 22005 - uid: 9322 components: - type: Transform @@ -97401,9 +99543,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,62.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 29782 - uid: 9606 components: - type: Transform @@ -97489,25 +99628,11 @@ entities: deviceLists: - 23796 - 70 - - uid: 11603 - components: - - type: Transform - pos: -49.5,65.5 - parent: 12 - uid: 11858 components: - type: Transform pos: -48.5,48.5 parent: 12 - - uid: 12055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,63.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28328 - uid: 12336 components: - type: Transform @@ -97746,6 +99871,7 @@ entities: - type: DeviceNetwork deviceLists: - 23942 + - 28271 - uid: 14473 components: - type: Transform @@ -97754,16 +99880,6 @@ entities: - type: DeviceNetwork deviceLists: - 30452 - - uid: 14474 - components: - - type: Transform - pos: 50.5,60.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 23942 - - 28271 - - 28328 - uid: 14475 components: - type: Transform @@ -97783,6 +99899,7 @@ entities: deviceLists: - 23942 - 24187 + - 28271 - uid: 14477 components: - type: Transform @@ -98762,12 +100879,6 @@ entities: - 23905 - 2857 - 28337 - - uid: 19849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,65.5 - parent: 12 - uid: 20333 components: - type: Transform @@ -98967,12 +101078,6 @@ entities: deviceLists: - 23917 - 9702 - - uid: 22043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-18.5 - parent: 12 - uid: 22142 components: - type: Transform @@ -99325,6 +101430,7 @@ entities: deviceLists: - 23942 - 24187 + - 28271 - uid: 24082 components: - type: Transform @@ -99335,6 +101441,7 @@ entities: - 24244 - 23643 - 28271 + - 23942 - uid: 24083 components: - type: Transform @@ -99345,6 +101452,7 @@ entities: - 24244 - 23643 - 28271 + - 23942 - uid: 24427 components: - type: Transform @@ -99392,6 +101500,22 @@ entities: deviceLists: - 30445 - 31755 + - uid: 25984 + components: + - type: Transform + pos: 11.5,-52.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1169 + - uid: 26030 + components: + - type: Transform + pos: 12.5,-54.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1169 - uid: 26113 components: - type: Transform @@ -99433,16 +101557,33 @@ entities: - type: DeviceNetwork deviceLists: - 29272 - - uid: 26593 + - uid: 26671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,3.5 + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 12 + - uid: 26739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-29.5 + parent: 12 + - uid: 26749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-29.5 + parent: 12 + - uid: 26899 + components: + - type: Transform + pos: 48.5,57.5 parent: 12 - type: DeviceNetwork deviceLists: - - 4906 - - 2682 + - 28271 + - 23942 - uid: 26923 components: - type: Transform @@ -99462,6 +101603,20 @@ entities: - type: DeviceNetwork deviceLists: - 27312 + - uid: 27072 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 8914 + - 6833 + - uid: 27106 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 12 - uid: 27108 components: - type: Transform @@ -99480,12 +101635,21 @@ entities: - type: DeviceNetwork deviceLists: - 27296 - - uid: 27449 + - uid: 27309 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-12.5 + pos: -58.5,-19.5 parent: 12 + - uid: 27433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-49.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 - uid: 27450 components: - type: Transform @@ -99542,7 +101706,7 @@ entities: - type: DeviceNetwork deviceLists: - 10019 - - 4887 + - 22005 - uid: 28904 components: - type: Transform @@ -99601,15 +101765,6 @@ entities: - 23927 - 4418 - 7342 - - uid: 29820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,67.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 29783 - uid: 29867 components: - type: Transform @@ -99619,11 +101774,6 @@ entities: - type: DeviceNetwork deviceLists: - 9972 - - uid: 29872 - components: - - type: Transform - pos: 15.5,13.5 - parent: 12 - uid: 29981 components: - type: Transform @@ -99642,6 +101792,12 @@ entities: - type: DeviceNetwork deviceLists: - 28376 + - uid: 29996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,66.5 + parent: 12 - uid: 30199 components: - type: Transform @@ -99759,6 +101915,11 @@ entities: - 32066 - proto: Fireplace entities: + - uid: 28307 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 12 - uid: 30393 components: - type: Transform @@ -99884,13 +102045,43 @@ entities: - uid: 26655 components: - type: Transform - pos: 29.65808,-22.442064 + rot: -43.98229715025713 rad + pos: 33.316917,-19.378597 parent: 12 + - type: HandheldLight + toggleActionEntity: 5528 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 5528 + - type: ActionsContainer - uid: 26694 components: - type: Transform - pos: 29.33193,-22.287144 + rot: -43.98229715025713 rad + pos: 33.599323,-19.174892 parent: 12 + - type: HandheldLight + toggleActionEntity: 5542 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 5542 + - type: ActionsContainer - proto: FlippoLighter entities: - uid: 13633 @@ -100314,6 +102505,29 @@ entities: rot: -1.5707963267948966 rad pos: -0.061189175,24.355316 parent: 12 +- proto: FoamBlade + entities: + - uid: 28325 + components: + - type: Transform + pos: -35.487053,-17.574665 + parent: 12 +- proto: FoamCrossbow + entities: + - uid: 6286 + components: + - type: Transform + parent: 28254 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoamCutlass + entities: + - uid: 28832 + components: + - type: Transform + pos: 36.47221,-52.50638 + parent: 12 - proto: FolderSpawner entities: - uid: 2925 @@ -100338,6 +102552,13 @@ entities: - type: Transform pos: 57.376583,58.4156 parent: 12 +- proto: FoodBakedCannabisBrownie + entities: + - uid: 30036 + components: + - type: Transform + pos: -53.30888,54.409172 + parent: 12 - proto: FoodBanana entities: - uid: 4201 @@ -100532,6 +102753,13 @@ entities: - type: Transform pos: 10.45153,-49.457336 parent: 12 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 15371 + components: + - type: Transform + pos: -0.5,19.5 + parent: 12 - proto: FoodCartCold entities: - uid: 13311 @@ -100548,14 +102776,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,55.5 parent: 12 -- proto: FoodCheeseSlice - entities: - - uid: 9224 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: -24.51083,53.52161 - parent: 12 - proto: FoodCondimentBottleEnzyme entities: - uid: 11791 @@ -100620,14 +102840,7 @@ entities: - uid: 32189 components: - type: Transform - pos: -62.21474,-54.675816 - parent: 12 -- proto: FoodDonutSpaceman - entities: - - uid: 1314 - components: - - type: Transform - pos: -55.35382,-37.589436 + pos: -60.632877,-54.815796 parent: 12 - proto: FoodFrozenSnowcone entities: @@ -100688,6 +102901,13 @@ entities: - type: Transform pos: 56.52447,50.519176 parent: 12 +- proto: FoodMealFries + entities: + - uid: 6337 + components: + - type: Transform + pos: -52.485752,-14.355 + parent: 12 - proto: FoodMeat entities: - uid: 31346 @@ -100884,27 +103104,24 @@ entities: - uid: 32191 components: - type: Transform - pos: -62.222897,-54.586063 + pos: -61.584267,-54.808846 parent: 12 - proto: FoodPotato entities: - uid: 31464 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.2709417,-62.27473 + pos: 5.7125697,-59.47866 parent: 12 - uid: 31465 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.40983,-62.46236 + pos: 6.643125,-62.02904 parent: 12 - uid: 31466 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.576497,-62.253883 + pos: 5.8445144,-61.33158 parent: 12 - proto: FoodRiceBoiled entities: @@ -100932,6 +103149,30 @@ entities: - type: Transform pos: 49.52798,18.523731 parent: 12 +- proto: FoodSnackMREBrownie + entities: + - uid: 29154 + components: + - type: Transform + pos: -54.505745,61.642376 + parent: 12 +- proto: FoodSnackRaisins + entities: + - uid: 27824 + components: + - type: Transform + pos: -38.5,-60.5 + parent: 12 + - uid: 27844 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 12 + - uid: 29485 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 12 - proto: FoodSoupMiso entities: - uid: 2685 @@ -100947,6 +103188,13 @@ entities: - type: Transform pos: -33.50554,-59.27054 parent: 12 +- proto: FoodTinMRE + entities: + - uid: 7483 + components: + - type: Transform + pos: -59.558186,-24.334799 + parent: 12 - proto: FoodTinMRETrash entities: - uid: 31147 @@ -100956,11 +103204,6 @@ entities: parent: 12 - proto: FoodTinPeachesMaint entities: - - uid: 19822 - components: - - type: Transform - pos: 50.425446,1.6118504 - parent: 12 - uid: 21597 components: - type: Transform @@ -100973,6 +103216,11 @@ entities: parent: 12 - proto: FoodTinPeachesMaintTrash entities: + - uid: 29645 + components: + - type: Transform + pos: -27.343327,78.76142 + parent: 12 - uid: 31133 components: - type: Transform @@ -100981,7 +103229,7 @@ entities: - uid: 32192 components: - type: Transform - pos: -61.211834,-54.267845 + pos: -61.132877,-54.03053 parent: 12 - proto: Football entities: @@ -101042,15 +103290,11 @@ entities: parent: 12 - proto: GasAnalyzer entities: - - uid: 5918 - components: - - type: Transform - pos: 33.823044,-20.694681 - parent: 12 - uid: 5919 components: - type: Transform - pos: 33.83867,-19.804056 + rot: -43.98229715025713 rad + pos: 33.728954,-18.568962 parent: 12 - proto: GasFilter entities: @@ -101209,11 +103453,6 @@ entities: - type: Transform pos: 16.5,21.5 parent: 12 - - uid: 19263 - components: - - type: Transform - pos: -24.5,54.5 - parent: 12 - proto: GasPassiveVent entities: - uid: 1705 @@ -101250,12 +103489,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,1.5 parent: 12 - - uid: 4763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,54.5 - parent: 12 - uid: 4962 components: - type: Transform @@ -101288,6 +103521,17 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-0.5 parent: 12 + - uid: 8038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-17.5 + parent: 12 + - uid: 8039 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 12 - uid: 15414 components: - type: Transform @@ -101312,11 +103556,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,31.5 parent: 12 - - uid: 22005 - components: - - type: Transform - pos: -25.5,56.5 - parent: 12 - uid: 30469 components: - type: Transform @@ -101553,6 +103792,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2377 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2631 components: - type: Transform @@ -101575,14 +103821,14 @@ entities: pos: 6.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2733 components: - type: Transform pos: 12.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2734 components: - type: Transform @@ -101590,7 +103836,7 @@ entities: pos: 12.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2758 components: - type: Transform @@ -101668,22 +103914,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,61.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3502 components: - type: Transform @@ -101934,12 +104164,6 @@ entities: - type: Transform pos: 25.5,-9.5 parent: 12 - - uid: 4694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,53.5 - parent: 12 - uid: 4759 components: - type: Transform @@ -102092,7 +104316,7 @@ entities: pos: 3.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5427 components: - type: Transform @@ -102101,13 +104325,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5487 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5504 components: - type: Transform @@ -102155,7 +104372,7 @@ entities: pos: 6.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 6220 components: - type: Transform @@ -102163,11 +104380,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 6243 + - uid: 6287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 + rot: 3.141592653589793 rad + pos: 14.5,-16.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -102186,13 +104403,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7034 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7062 components: - type: Transform @@ -102237,6 +104447,14 @@ entities: - type: Transform pos: 25.5,-3.5 parent: 12 + - uid: 7228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7303 components: - type: Transform @@ -102257,6 +104475,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,63.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7426 + components: + - type: Transform + pos: 50.5,63.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7471 components: - type: Transform @@ -102301,6 +104534,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 8446 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8531 components: - type: Transform @@ -102620,14 +104860,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11011 components: - type: Transform @@ -102941,14 +105173,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15413 components: - type: Transform @@ -103382,6 +105606,14 @@ entities: rot: 3.141592653589793 rad pos: -4.5,10.5 parent: 12 + - uid: 21673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21841 components: - type: Transform @@ -103398,18 +105630,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21906 - components: - - type: Transform - pos: -22.5,53.5 - parent: 12 - - uid: 22072 - components: - - type: Transform - pos: 53.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22105 components: - type: Transform @@ -103906,6 +106126,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23637 components: - type: Transform @@ -104037,6 +106265,48 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 26573 + components: + - type: Transform + pos: 10.5,24.5 + parent: 12 + - uid: 26576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 12 + - uid: 26594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,27.5 + parent: 12 + - uid: 26595 + components: + - type: Transform + pos: 13.5,27.5 + parent: 12 + - uid: 26596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,24.5 + parent: 12 + - uid: 26602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 + parent: 12 + - uid: 26906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,62.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26985 components: - type: Transform @@ -104052,6 +106322,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27216 + components: + - type: Transform + pos: -57.5,-35.5 + parent: 12 - uid: 27273 components: - type: Transform @@ -104572,6 +106847,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 564 + components: + - type: Transform + pos: 16.5,11.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 566 + components: + - type: Transform + pos: 16.5,12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 631 components: - type: Transform @@ -105928,6 +108217,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2072 components: - type: Transform @@ -106016,7 +108313,7 @@ entities: pos: 11.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2448 components: - type: Transform @@ -106055,7 +108352,7 @@ entities: pos: 4.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2677 components: - type: Transform @@ -106071,7 +108368,7 @@ entities: pos: 5.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2692 components: - type: Transform @@ -106145,14 +108442,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2859 components: - type: Transform @@ -106225,13 +108514,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2964 - components: - - type: Transform - pos: 15.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3009 components: - type: Transform @@ -106240,13 +108522,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3011 - components: - - type: Transform - pos: 15.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3016 components: - type: Transform @@ -106261,14 +108536,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,19.5 parent: 12 - - uid: 3079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3096 components: - type: Transform @@ -106297,7 +108564,7 @@ entities: pos: 10.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 3464 components: - type: Transform @@ -107771,13 +110038,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3940 - components: - - type: Transform - pos: 15.5,13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3955 components: - type: Transform @@ -107887,7 +110147,7 @@ entities: pos: 12.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 4390 components: - type: Transform @@ -107911,13 +110171,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4412 - components: - - type: Transform - pos: 49.5,62.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4453 components: - type: Transform @@ -108253,14 +110506,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-5.5 parent: 12 - - uid: 4791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4802 components: - type: Transform @@ -108269,14 +110514,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4804 components: - type: Transform @@ -108750,14 +110987,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-9.5 parent: 12 - - uid: 5053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5079 components: - type: Transform @@ -108864,14 +111093,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5264 components: - type: Transform @@ -109056,14 +111277,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5306 components: - type: Transform @@ -109318,7 +111531,7 @@ entities: pos: 12.5,4.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5387 components: - type: Transform @@ -109342,7 +111555,7 @@ entities: pos: 9.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5399 components: - type: Transform @@ -109374,7 +111587,7 @@ entities: pos: 7.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5408 components: - type: Transform @@ -109398,7 +111611,7 @@ entities: pos: 6.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5418 components: - type: Transform @@ -109406,7 +111619,7 @@ entities: pos: 8.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5422 components: - type: Transform @@ -109451,14 +111664,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5486 components: - type: Transform @@ -109530,7 +111735,7 @@ entities: pos: 12.5,1.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5634 components: - type: Transform @@ -109587,6 +111792,21 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-7.5 parent: 12 + - uid: 5909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5913 + components: + - type: Transform + pos: 53.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5937 components: - type: Transform @@ -109684,6 +111904,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5957 + components: + - type: Transform + pos: 16.5,13.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5958 components: - type: Transform @@ -109820,6 +112047,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,62.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6715 components: - type: Transform @@ -109828,6 +112063,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6769 components: - type: Transform @@ -109893,7 +112136,7 @@ entities: pos: 3.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 6854 components: - type: Transform @@ -110413,14 +112656,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-38.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7060 components: - type: Transform @@ -110700,6 +112935,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7115 components: - type: Transform @@ -110707,7 +112950,7 @@ entities: pos: 3.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7117 components: - type: Transform @@ -110715,7 +112958,15 @@ entities: pos: 3.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' + - uid: 7118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7119 components: - type: Transform @@ -110731,7 +112982,7 @@ entities: pos: 3.5,11.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7137 components: - type: Transform @@ -110787,7 +113038,7 @@ entities: pos: 3.5,12.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7147 components: - type: Transform @@ -110806,6 +113057,22 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,19.5 parent: 12 + - uid: 7152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7169 components: - type: Transform @@ -110970,6 +113237,14 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,3.5 parent: 12 + - uid: 7223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7239 components: - type: Transform @@ -111020,6 +113295,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7310 + components: + - type: Transform + pos: 39.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7314 components: - type: Transform @@ -111073,6 +113355,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7457 components: - type: Transform @@ -111129,6 +113427,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7508 components: - type: Transform @@ -111221,6 +113535,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7838 + components: + - type: Transform + pos: -46.5,44.5 + parent: 12 - uid: 7846 components: - type: Transform @@ -111251,6 +113570,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8457 + components: + - type: Transform + pos: 50.5,61.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8492 components: - type: Transform @@ -112377,14 +114703,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8899 components: - type: Transform @@ -112420,7 +114738,7 @@ entities: pos: 12.5,0.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 8981 components: - type: Transform @@ -112444,6 +114762,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 9144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9168 components: - type: Transform @@ -113593,14 +115919,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11008 components: - type: Transform @@ -114019,15 +116337,7 @@ entities: pos: 13.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' - - uid: 11323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 11344 components: - type: Transform @@ -114113,7 +116423,7 @@ entities: pos: 12.5,3.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 11592 components: - type: Transform @@ -115512,14 +117822,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 13836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 13917 components: - type: Transform @@ -119032,6 +121334,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19540 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19541 components: - type: Transform @@ -119064,6 +121373,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,62.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19889 components: - type: Transform @@ -120391,6 +122708,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 20543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,62.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 20907 components: - type: Transform @@ -121155,14 +123480,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,55.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 21033 components: - type: Transform @@ -124328,13 +126645,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23884 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23949 components: - type: Transform @@ -124671,14 +126981,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#947507FF' - - uid: 24496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,63.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24566 components: - type: Transform @@ -124748,14 +127050,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 25195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25389 components: - type: Transform @@ -124985,6 +127279,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 26138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-16.5 + parent: 12 - uid: 26315 components: - type: Transform @@ -125260,6 +127560,100 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 12 + - uid: 26561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 12 + - uid: 26562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 12 + - uid: 26563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 12 + - uid: 26572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,23.5 + parent: 12 + - uid: 26578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,23.5 + parent: 12 + - uid: 26581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,22.5 + parent: 12 + - uid: 26582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 12 + - uid: 26585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,20.5 + parent: 12 + - uid: 26587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,19.5 + parent: 12 + - uid: 26603 + components: + - type: Transform + pos: 9.5,25.5 + parent: 12 + - uid: 26604 + components: + - type: Transform + pos: 9.5,26.5 + parent: 12 + - uid: 26605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 12 + - uid: 26608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,27.5 + parent: 12 + - uid: 26612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 12 + - uid: 26613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 12 - uid: 26629 components: - type: Transform @@ -125346,6 +127740,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 26890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,56.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,57.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,58.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26925 components: - type: Transform @@ -125781,6 +128199,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28972 + components: + - type: Transform + pos: 37.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 29050 components: - type: Transform @@ -125813,14 +128238,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 29162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29262 components: - type: Transform @@ -127422,6 +129839,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2753 components: - type: Transform @@ -127739,22 +130164,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4811 components: - type: Transform @@ -127816,14 +130225,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5144 components: - type: Transform @@ -127863,14 +130264,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5308 components: - type: Transform @@ -127948,14 +130341,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5530 components: - type: Transform @@ -127994,6 +130379,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,55.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6751 components: - type: Transform @@ -128002,6 +130403,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6794 components: - type: Transform @@ -128099,6 +130508,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7116 + components: + - type: Transform + pos: 15.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7138 components: - type: Transform @@ -128115,6 +130531,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,57.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7184 components: - type: Transform @@ -128163,6 +130587,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,62.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7299 components: - type: Transform @@ -128233,19 +130665,18 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7838 + - uid: 7839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,61.5 + rot: 1.5707963267948966 rad + pos: 51.5,61.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7839 + color: '#0055CCFF' + - uid: 8070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,61.5 + pos: 35.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -128257,6 +130688,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 8427 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8505 components: - type: Transform @@ -128678,14 +131116,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10903 components: - type: Transform @@ -129644,22 +132074,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,57.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19853 components: - type: Transform @@ -130242,6 +132656,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26086 + components: + - type: Transform + pos: -58.5,-35.5 + parent: 12 - uid: 26614 components: - type: Transform @@ -130287,14 +132706,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 27985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 27992 components: - type: Transform @@ -130522,17 +132933,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 12 - - uid: 4938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,52.5 - parent: 12 - - uid: 9059 - components: - - type: Transform - pos: 26.5,-14.5 - parent: 12 - uid: 9813 components: - type: Transform @@ -130678,6 +133078,18 @@ entities: - type: Transform pos: 1.5,-18.5 parent: 12 + - uid: 26903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-36.5 + parent: 12 + - uid: 27018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-36.5 + parent: 12 - uid: 28755 components: - type: Transform @@ -130778,12 +133190,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-3.5 parent: 12 - - uid: 4696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,53.5 - parent: 12 - uid: 4743 components: - type: Transform @@ -130867,13 +133273,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26418 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasThermoMachineFreezer entities: - uid: 2356 @@ -130948,15 +133347,14 @@ entities: parent: 12 - type: GasThermoMachine targetTemperature: 330 -- proto: GasValve - entities: - - uid: 4780 + - uid: 27077 components: - type: Transform - pos: -25.5,55.5 + rot: 1.5707963267948966 rad + pos: -59.5,-35.5 parent: 12 - - type: GasValve - open: False +- proto: GasValve + entities: - uid: 13519 components: - type: Transform @@ -130971,11 +133369,6 @@ entities: parent: 12 - type: GasValve open: False - - uid: 18267 - components: - - type: Transform - pos: -46.5,44.5 - parent: 12 - uid: 28754 components: - type: Transform @@ -131247,16 +133640,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5305 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4887 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5309 components: - type: Transform @@ -131327,6 +133710,16 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6197 + components: + - type: Transform + pos: 37.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1375 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6709 components: - type: Transform @@ -131344,6 +133737,9 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-47.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 706 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6977 @@ -131352,6 +133748,9 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-47.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 1169 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6978 @@ -131375,6 +133774,17 @@ entities: - 32066 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 22005 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7327 components: - type: Transform @@ -131431,6 +133841,9 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-40.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8543 @@ -132767,14 +135180,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26415 + - uid: 26897 components: - type: Transform - pos: 35.5,0.5 + pos: 48.5,59.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 2682 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26994 @@ -132827,14 +135237,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29258 components: - type: Transform @@ -132867,9 +135269,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,62.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 29782 - type: AtmosPipeColor color: '#0055CCFF' - uid: 29400 @@ -132885,9 +135284,6 @@ entities: - type: Transform pos: -43.5,68.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 29783 - type: AtmosPipeColor color: '#0055CCFF' - uid: 29837 @@ -133146,6 +135542,26 @@ entities: - 25448 - type: AtmosPipeColor color: '#990000FF' + - uid: 1537 + components: + - type: Transform + pos: 16.5,14.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 12273 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2501 + components: + - type: Transform + pos: 53.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2673 components: - type: Transform @@ -133157,14 +135573,14 @@ entities: - 30453 - type: AtmosPipeColor color: '#990000FF' - - uid: 2684 + - uid: 2680 components: - type: Transform - pos: 36.5,0.5 + pos: 39.5,2.5 parent: 12 - type: DeviceNetwork deviceLists: - - 2682 + - 1375 - type: AtmosPipeColor color: '#990000FF' - uid: 2755 @@ -133247,6 +135663,17 @@ entities: - 27296 - type: AtmosPipeColor color: '#990000FF' + - uid: 4523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,57.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 28271 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4723 components: - type: Transform @@ -133258,26 +135685,25 @@ entities: - 27296 - type: AtmosPipeColor color: '#990000FF' - - uid: 5254 + - uid: 4938 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-22.5 + pos: 11.5,-14.5 parent: 12 - type: DeviceNetwork deviceLists: - - 28376 + - 22005 - type: AtmosPipeColor color: '#990000FF' - - uid: 5255 + - uid: 5254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 + rot: 3.141592653589793 rad + pos: 11.5,-22.5 parent: 12 - type: DeviceNetwork deviceLists: - - 4887 + - 28376 - type: AtmosPipeColor color: '#990000FF' - uid: 5280 @@ -133331,6 +135757,17 @@ entities: - 28366 - type: AtmosPipeColor color: '#990000FF' + - uid: 5873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,63.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 28328 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5887 components: - type: Transform @@ -133383,6 +135820,9 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 706 - type: AtmosPipeColor color: '#990000FF' - uid: 6981 @@ -133391,6 +135831,9 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-47.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 1169 - type: AtmosPipeColor color: '#990000FF' - uid: 6983 @@ -133454,6 +135897,9 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-40.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 752 - type: AtmosPipeColor color: '#990000FF' - uid: 8544 @@ -133529,16 +135975,6 @@ entities: - 448 - type: AtmosPipeColor color: '#990000FF' - - uid: 9488 - components: - - type: Transform - pos: 15.5,14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 12273 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10006 components: - type: Transform @@ -134317,16 +136753,6 @@ entities: - 23632 - type: AtmosPipeColor color: '#990000FF' - - uid: 23092 - components: - - type: Transform - pos: 50.5,62.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28328 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23192 components: - type: Transform @@ -134391,17 +136817,6 @@ entities: - 28360 - type: AtmosPipeColor color: '#990000FF' - - uid: 23940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,57.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28271 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23996 components: - type: Transform @@ -134527,16 +136942,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26949 - components: - - type: Transform - pos: 52.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27249 components: - type: Transform @@ -134737,7 +137142,28 @@ entities: pos: 3.5,13.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' + - uid: 26045 + components: + - type: MetaData + name: volumetric gas pump to TEG + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 26556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 12 + - uid: 26592 + components: + - type: Transform + pos: 12.5,18.5 + parent: 12 - proto: Gauze entities: - uid: 13825 @@ -134759,10 +137185,33 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-4.5 parent: 12 - - uid: 7155 + - uid: 2387 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 12 + - uid: 2406 components: - type: Transform - pos: 46.5,0.5 + rot: 3.141592653589793 rad + pos: -59.5,-28.5 + parent: 12 + - uid: 2407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-20.5 + parent: 12 + - uid: 6029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-33.5 + parent: 12 + - uid: 6277 + components: + - type: Transform + pos: -34.5,-16.5 parent: 12 - uid: 10918 components: @@ -134831,40 +137280,38 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-2.5 parent: 12 - - uid: 27148 + - uid: 26755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-18.5 + pos: 46.5,-4.5 parent: 12 - - uid: 27839 + - uid: 28445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-31.5 + rot: 1.5707963267948966 rad + pos: -4.5,15.5 parent: 12 - - uid: 28191 + - uid: 28923 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-15.5 + pos: 48.5,9.5 parent: 12 - - uid: 28198 + - uid: 29035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-17.5 + rot: 1.5707963267948966 rad + pos: -51.5,53.5 parent: 12 - - uid: 28445 + - uid: 29396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,15.5 + pos: 4.5,-61.5 parent: 12 - - uid: 28923 + - uid: 29986 components: - type: Transform - pos: 48.5,9.5 + rot: 1.5707963267948966 rad + pos: -36.5,74.5 parent: 12 - uid: 30737 components: @@ -134931,7 +137378,8 @@ entities: - uid: 29613 components: - type: Transform - pos: -43.34914,69.38818 + rot: 2.220446049250313E-16 rad + pos: -47.544113,68.56509 parent: 12 - uid: 30217 components: @@ -134945,11 +137393,6 @@ entities: parent: 12 - proto: GlowstickBlue entities: - - uid: 29614 - components: - - type: Transform - pos: -43.64537,71.96256 - parent: 12 - uid: 30220 components: - type: Transform @@ -134966,21 +137409,24 @@ entities: - uid: 29612 components: - type: Transform - pos: -43.226837,69.27803 + rot: -6.283185307179586 rad + pos: -52.46078,75.45116 parent: 12 - proto: GlowstickRed entities: - uid: 29611 components: - type: Transform - pos: -43.50814,70.391785 + rot: -6.283185307179586 rad + pos: -46.405224,74.242805 parent: 12 - proto: GlowstickYellow entities: - uid: 29600 components: - type: Transform - pos: -43.361374,70.35507 + rot: -6.283185307179586 rad + pos: -53.55106,69.57985 parent: 12 - proto: GrassBattlemap entities: @@ -135455,17 +137901,7 @@ entities: - uid: 614 components: - type: Transform - pos: -39.5,-18.5 - parent: 12 - - uid: 615 - components: - - type: Transform - pos: -38.5,-18.5 - parent: 12 - - uid: 616 - components: - - type: Transform - pos: -37.5,-18.5 + pos: 37.5,-47.5 parent: 12 - uid: 620 components: @@ -135587,24 +138023,6 @@ entities: - type: Transform pos: -50.5,-21.5 parent: 12 - - uid: 752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-13.5 - parent: 12 - - uid: 756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 12 - - uid: 757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-13.5 - parent: 12 - uid: 767 components: - type: Transform @@ -135818,17 +138236,10 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-45.5 parent: 12 - - uid: 1065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,56.5 - parent: 12 - - uid: 1285 + - uid: 1276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-42.5 + pos: -51.5,-17.5 parent: 12 - uid: 1352 components: @@ -135847,12 +138258,6 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 - - uid: 1523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,75.5 - parent: 12 - uid: 1538 components: - type: Transform @@ -136413,15 +138818,25 @@ entities: - type: Transform pos: 61.5,-22.5 parent: 12 + - uid: 3109 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 + - uid: 3111 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 12 - uid: 3126 components: - type: Transform pos: -50.5,47.5 parent: 12 - - uid: 3198 + - uid: 3200 components: - type: Transform - pos: 35.5,-0.5 + pos: -58.5,56.5 parent: 12 - uid: 3480 components: @@ -136445,26 +138860,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-47.5 parent: 12 - - uid: 4106 - components: - - type: Transform - pos: 9.5,-53.5 - parent: 12 - - uid: 4107 - components: - - type: Transform - pos: 8.5,-53.5 - parent: 12 - - uid: 4108 - components: - - type: Transform - pos: 9.5,-52.5 - parent: 12 - - uid: 4109 - components: - - type: Transform - pos: 9.5,-51.5 - parent: 12 - uid: 4230 components: - type: Transform @@ -136499,12 +138894,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-24.5 parent: 12 - - uid: 4423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 12 - uid: 4424 components: - type: Transform @@ -136559,39 +138948,16 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 12 - - uid: 4464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 12 - uid: 4465 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-18.5 parent: 12 - - uid: 4466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 12 - - uid: 4467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 12 - - uid: 4476 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 12 - uid: 4524 components: - type: Transform - pos: 7.5,-16.5 + pos: 49.5,57.5 parent: 12 - uid: 4598 components: @@ -136614,6 +138980,11 @@ entities: - type: Transform pos: 21.5,3.5 parent: 12 + - uid: 4695 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 12 - uid: 4758 components: - type: Transform @@ -136655,6 +139026,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-57.5 parent: 12 + - uid: 4875 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 12 - uid: 4912 components: - type: Transform @@ -136710,30 +139086,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,3.5 parent: 12 - - uid: 5314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-54.5 - parent: 12 - - uid: 5371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-53.5 - parent: 12 - - uid: 5372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-52.5 - parent: 12 - - uid: 5430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-51.5 - parent: 12 - uid: 5437 components: - type: Transform @@ -136770,6 +139122,12 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 12 + - uid: 5513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,60.5 + parent: 12 - uid: 5715 components: - type: Transform @@ -136816,24 +139174,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 12 - - uid: 5829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,64.5 - parent: 12 - uid: 5832 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-5.5 parent: 12 - - uid: 5834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,65.5 - parent: 12 - uid: 5878 components: - type: Transform @@ -137080,11 +139426,6 @@ entities: - type: Transform pos: 14.5,-52.5 parent: 12 - - uid: 6155 - components: - - type: Transform - pos: 13.5,-54.5 - parent: 12 - uid: 6167 components: - type: Transform @@ -137150,113 +139491,22 @@ entities: - type: Transform pos: 29.5,-52.5 parent: 12 - - uid: 6185 - components: - - type: Transform - pos: 30.5,-54.5 - parent: 12 - - uid: 6187 - components: - - type: Transform - pos: 32.5,-54.5 - parent: 12 - - uid: 6188 - components: - - type: Transform - pos: 32.5,-53.5 - parent: 12 - - uid: 6189 - components: - - type: Transform - pos: 32.5,-52.5 - parent: 12 - - uid: 6190 - components: - - type: Transform - pos: 32.5,-51.5 - parent: 12 - - uid: 6191 - components: - - type: Transform - pos: 32.5,-50.5 - parent: 12 - - uid: 6192 - components: - - type: Transform - pos: 32.5,-49.5 - parent: 12 - - uid: 6193 - components: - - type: Transform - pos: 32.5,-48.5 - parent: 12 - - uid: 6194 - components: - - type: Transform - pos: 32.5,-47.5 - parent: 12 - - uid: 6195 - components: - - type: Transform - pos: 32.5,-46.5 - parent: 12 - - uid: 6196 - components: - - type: Transform - pos: 32.5,-45.5 - parent: 12 - uid: 6208 components: - type: Transform pos: 7.5,75.5 parent: 12 - - uid: 6211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,75.5 - parent: 12 - uid: 6246 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-44.5 parent: 12 - - uid: 6284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-43.5 - parent: 12 - - uid: 6285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-44.5 - parent: 12 - - uid: 6286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-44.5 - parent: 12 - - uid: 6301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-40.5 - parent: 12 - uid: 6302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-40.5 - parent: 12 - - uid: 6303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-40.5 + rot: 1.5707963267948966 rad + pos: -38.5,-70.5 parent: 12 - uid: 6309 components: @@ -137269,18 +139519,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-44.5 parent: 12 - - uid: 6337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-44.5 - parent: 12 - - uid: 6338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-45.5 - parent: 12 - uid: 6339 components: - type: Transform @@ -137405,11 +139643,6 @@ entities: - type: Transform pos: 28.5,-1.5 parent: 12 - - uid: 7300 - components: - - type: Transform - pos: 29.5,-54.5 - parent: 12 - uid: 7356 components: - type: Transform @@ -137494,18 +139727,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,-30.5 parent: 12 - - uid: 7481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-44.5 - parent: 12 - - uid: 7482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-45.5 - parent: 12 - uid: 7486 components: - type: Transform @@ -137524,12 +139745,6 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-46.5 parent: 12 - - uid: 7492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-50.5 - parent: 12 - uid: 7495 components: - type: Transform @@ -137548,12 +139763,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-42.5 parent: 12 - - uid: 7500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-50.5 - parent: 12 - uid: 7504 components: - type: Transform @@ -137823,12 +140032,6 @@ entities: - type: Transform pos: -63.5,-23.5 parent: 12 - - uid: 8446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 12 - uid: 8479 components: - type: Transform @@ -137849,11 +140052,10 @@ entities: - type: Transform pos: -47.5,0.5 parent: 12 - - uid: 8984 + - uid: 8713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-50.5 + pos: 49.5,59.5 parent: 12 - uid: 9057 components: @@ -137865,6 +140067,22 @@ entities: - type: Transform pos: -58.5,36.5 parent: 12 + - uid: 9200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-44.5 + parent: 12 + - uid: 9212 + components: + - type: Transform + pos: -58.5,-37.5 + parent: 12 + - uid: 9244 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 12 - uid: 9402 components: - type: Transform @@ -137923,6 +140141,11 @@ entities: - type: Transform pos: 63.5,6.5 parent: 12 + - uid: 9756 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 12 - uid: 9871 components: - type: Transform @@ -137944,12 +140167,6 @@ entities: - type: Transform pos: -47.5,3.5 parent: 12 - - uid: 9997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-50.5 - parent: 12 - uid: 10060 components: - type: Transform @@ -138336,8 +140553,7 @@ entities: - uid: 10317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-26.5 + pos: 41.5,3.5 parent: 12 - uid: 10327 components: @@ -138351,11 +140567,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-7.5 parent: 12 - - uid: 10341 - components: - - type: Transform - pos: 14.5,-54.5 - parent: 12 - uid: 10347 components: - type: Transform @@ -138366,6 +140577,11 @@ entities: - type: Transform pos: 63.5,5.5 parent: 12 + - uid: 10557 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 12 - uid: 10569 components: - type: Transform @@ -138485,6 +140701,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 + - uid: 10840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-31.5 + parent: 12 - uid: 10877 components: - type: Transform @@ -138640,18 +140862,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,26.5 parent: 12 - - uid: 11250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 12 - - uid: 11301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,75.5 - parent: 12 - uid: 11311 components: - type: Transform @@ -138674,6 +140884,11 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 12 + - uid: 11366 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 12 - uid: 11420 components: - type: Transform @@ -138721,6 +140936,11 @@ entities: - type: Transform pos: 44.5,15.5 parent: 12 + - uid: 11520 + components: + - type: Transform + pos: 37.5,-46.5 + parent: 12 - uid: 11527 components: - type: Transform @@ -138782,6 +141002,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 12 + - uid: 11603 + components: + - type: Transform + pos: -45.5,76.5 + parent: 12 - uid: 11616 components: - type: Transform @@ -138857,11 +141082,6 @@ entities: - type: Transform pos: 29.5,34.5 parent: 12 - - uid: 11722 - components: - - type: Transform - pos: 25.5,29.5 - parent: 12 - uid: 11723 components: - type: Transform @@ -138992,6 +141212,11 @@ entities: - type: Transform pos: 17.5,30.5 parent: 12 + - uid: 11769 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 12 - uid: 11794 components: - type: Transform @@ -139103,6 +141328,16 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 12 + - uid: 12033 + components: + - type: Transform + pos: -45.5,75.5 + parent: 12 + - uid: 12055 + components: + - type: Transform + pos: -59.5,-37.5 + parent: 12 - uid: 12311 components: - type: Transform @@ -139485,6 +141720,11 @@ entities: - type: Transform pos: 49.5,42.5 parent: 12 + - uid: 12645 + components: + - type: Transform + pos: -53.5,76.5 + parent: 12 - uid: 12676 components: - type: Transform @@ -139495,12 +141735,6 @@ entities: - type: Transform pos: 17.5,14.5 parent: 12 - - uid: 12697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-3.5 - parent: 12 - uid: 12699 components: - type: Transform @@ -139519,6 +141753,11 @@ entities: rot: 3.141592653589793 rad pos: -34.5,61.5 parent: 12 + - uid: 13210 + components: + - type: Transform + pos: -54.5,75.5 + parent: 12 - uid: 13991 components: - type: Transform @@ -139622,28 +141861,10 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,44.5 parent: 12 - - uid: 14175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,60.5 - parent: 12 - uid: 14176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,60.5 - parent: 12 - - uid: 14184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-50.5 - parent: 12 - - uid: 14196 - components: - - type: Transform - pos: 37.5,-46.5 + pos: 49.5,58.5 parent: 12 - uid: 14204 components: @@ -139751,12 +141972,6 @@ entities: - type: Transform pos: 20.5,59.5 parent: 12 - - uid: 14527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-44.5 - parent: 12 - uid: 14537 components: - type: Transform @@ -140592,11 +142807,6 @@ entities: - type: Transform pos: 5.5,25.5 parent: 12 - - uid: 16373 - components: - - type: Transform - pos: -53.5,-15.5 - parent: 12 - uid: 16413 components: - type: Transform @@ -140634,10 +142844,10 @@ entities: - type: Transform pos: -13.5,76.5 parent: 12 - - uid: 16525 + - uid: 16526 components: - type: Transform - pos: -12.5,77.5 + pos: -32.5,-15.5 parent: 12 - uid: 16531 components: @@ -140645,6 +142855,11 @@ entities: rot: 3.141592653589793 rad pos: -11.5,79.5 parent: 12 + - uid: 16546 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 12 - uid: 16662 components: - type: Transform @@ -140768,11 +142983,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,19.5 parent: 12 - - uid: 17303 - components: - - type: Transform - pos: -54.5,-15.5 - parent: 12 - uid: 17337 components: - type: Transform @@ -140864,6 +143074,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,46.5 parent: 12 + - uid: 17532 + components: + - type: Transform + pos: 36.5,-51.5 + parent: 12 - uid: 17544 components: - type: Transform @@ -140874,6 +143089,11 @@ entities: - type: Transform pos: -59.5,35.5 parent: 12 + - uid: 17811 + components: + - type: Transform + pos: -54.5,76.5 + parent: 12 - uid: 17832 components: - type: Transform @@ -140886,36 +143106,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,47.5 parent: 12 - - uid: 17842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,73.5 - parent: 12 - - uid: 17858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,75.5 - parent: 12 - - uid: 17917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,75.5 - parent: 12 - - uid: 17921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,75.5 - parent: 12 - - uid: 17922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,75.5 - parent: 12 - uid: 17936 components: - type: Transform @@ -140933,11 +143123,21 @@ entities: - type: Transform pos: -61.5,-57.5 parent: 12 + - uid: 18561 + components: + - type: Transform + pos: -2.5,73.5 + parent: 12 - uid: 18577 components: - type: Transform pos: 53.5,61.5 parent: 12 + - uid: 18628 + components: + - type: Transform + pos: -60.5,-36.5 + parent: 12 - uid: 18647 components: - type: Transform @@ -141054,12 +143254,6 @@ entities: - type: Transform pos: -42.5,54.5 parent: 12 - - uid: 19182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,56.5 - parent: 12 - uid: 19191 components: - type: Transform @@ -141126,6 +143320,11 @@ entities: rot: 3.141592653589793 rad pos: -42.5,60.5 parent: 12 + - uid: 19263 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 12 - uid: 19324 components: - type: Transform @@ -141186,12 +143385,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,46.5 parent: 12 - - uid: 19455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 12 - uid: 19458 components: - type: Transform @@ -141244,12 +143437,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,79.5 parent: 12 - - uid: 19653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,73.5 - parent: 12 - uid: 19655 components: - type: Transform @@ -141268,12 +143455,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,78.5 parent: 12 - - uid: 19680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,77.5 - parent: 12 - uid: 19721 components: - type: Transform @@ -141289,12 +143470,6 @@ entities: - type: Transform pos: -5.5,60.5 parent: 12 - - uid: 19783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,79.5 - parent: 12 - uid: 19807 components: - type: Transform @@ -141311,18 +143486,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,58.5 parent: 12 - - uid: 20049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,75.5 - parent: 12 - - uid: 20527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,75.5 - parent: 12 - uid: 20958 components: - type: Transform @@ -141337,17 +143500,7 @@ entities: - uid: 21315 components: - type: Transform - pos: 37.5,-48.5 - parent: 12 - - uid: 21695 - components: - - type: Transform - pos: 36.5,-44.5 - parent: 12 - - uid: 21696 - components: - - type: Transform - pos: 42.5,-40.5 + pos: 34.5,-0.5 parent: 12 - uid: 21706 components: @@ -141374,11 +143527,6 @@ entities: - type: Transform pos: -4.5,-7.5 parent: 12 - - uid: 21968 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 12 - uid: 21987 components: - type: Transform @@ -141433,30 +143581,6 @@ entities: - type: Transform pos: -3.5,-5.5 parent: 12 - - uid: 22026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,67.5 - parent: 12 - - uid: 22029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,75.5 - parent: 12 - - uid: 22031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,75.5 - parent: 12 - - uid: 22033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,73.5 - parent: 12 - uid: 22051 components: - type: Transform @@ -141470,14 +143594,7 @@ entities: - uid: 22193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,75.5 - parent: 12 - - uid: 22194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,75.5 + pos: -38.5,80.5 parent: 12 - uid: 22276 components: @@ -141499,23 +143616,10 @@ entities: - type: Transform pos: 46.5,15.5 parent: 12 - - uid: 22323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,61.5 - parent: 12 - - uid: 22325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,58.5 - parent: 12 - - uid: 22337 + - uid: 22320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,75.5 + pos: -40.5,78.5 parent: 12 - uid: 22686 components: @@ -141545,24 +143649,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-11.5 parent: 12 - - uid: 22855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-15.5 - parent: 12 - - uid: 22860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,75.5 - parent: 12 - - uid: 22952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,75.5 - parent: 12 - uid: 22963 components: - type: Transform @@ -141591,11 +143677,10 @@ entities: - type: Transform pos: 57.5,-7.5 parent: 12 - - uid: 23759 + - uid: 23716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,61.5 + pos: -56.5,56.5 parent: 12 - uid: 23924 components: @@ -141614,12 +143699,6 @@ entities: - type: Transform pos: -19.5,-62.5 parent: 12 - - uid: 24664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,73.5 - parent: 12 - uid: 25089 components: - type: Transform @@ -141641,12 +143720,6 @@ entities: - type: Transform pos: 33.5,-3.5 parent: 12 - - uid: 25399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,66.5 - parent: 12 - uid: 25447 components: - type: Transform @@ -141662,8 +143735,7 @@ entities: - uid: 25450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,75.5 + pos: -26.5,74.5 parent: 12 - uid: 25452 components: @@ -141671,12 +143743,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,62.5 parent: 12 - - uid: 25454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,73.5 - parent: 12 - uid: 25489 components: - type: Transform @@ -141813,31 +143879,11 @@ entities: - type: Transform pos: -32.5,5.5 parent: 12 - - uid: 25678 - components: - - type: Transform - pos: 7.5,-55.5 - parent: 12 - - uid: 25679 - components: - - type: Transform - pos: 8.5,-55.5 - parent: 12 - - uid: 25680 - components: - - type: Transform - pos: 9.5,-55.5 - parent: 12 - uid: 25977 components: - type: Transform pos: -49.5,-19.5 parent: 12 - - uid: 25984 - components: - - type: Transform - pos: -56.5,-15.5 - parent: 12 - uid: 26068 components: - type: Transform @@ -141877,6 +143923,24 @@ entities: - type: Transform pos: -40.5,57.5 parent: 12 + - uid: 26156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 12 + - uid: 26157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 12 + - uid: 26158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 12 - uid: 26171 components: - type: Transform @@ -141990,6 +144054,12 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-54.5 parent: 12 + - uid: 26201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 12 - uid: 26229 components: - type: Transform @@ -142098,6 +144168,11 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,68.5 parent: 12 + - uid: 26396 + components: + - type: Transform + pos: 41.5,2.5 + parent: 12 - uid: 26409 components: - type: Transform @@ -142171,6 +144246,11 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-21.5 parent: 12 + - uid: 26600 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 12 - uid: 26610 components: - type: Transform @@ -142195,15 +144275,10 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,10.5 parent: 12 - - uid: 26632 + - uid: 26675 components: - type: Transform - pos: 4.5,-21.5 - parent: 12 - - uid: 26633 - components: - - type: Transform - pos: 3.5,-21.5 + pos: 14.5,11.5 parent: 12 - uid: 26676 components: @@ -142223,11 +144298,22 @@ entities: rot: 3.141592653589793 rad pos: 28.5,6.5 parent: 12 + - uid: 26717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 12 - uid: 26747 components: - type: Transform pos: 63.5,3.5 parent: 12 + - uid: 26756 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 12 - uid: 26758 components: - type: Transform @@ -142240,11 +144326,20 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,64.5 parent: 12 - - uid: 27083 + - uid: 26945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-25.5 + pos: 35.5,-0.5 + parent: 12 + - uid: 27008 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 12 + - uid: 27075 + components: + - type: Transform + pos: -60.5,-35.5 parent: 12 - uid: 27094 components: @@ -142274,40 +144369,27 @@ entities: - uid: 27111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-23.5 - parent: 12 - - uid: 27116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-22.5 - parent: 12 - - uid: 27161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,75.5 + pos: -57.5,-11.5 parent: 12 - uid: 27169 components: - type: Transform pos: 29.5,84.5 parent: 12 - - uid: 27244 + - uid: 27237 components: - type: Transform - pos: 41.5,2.5 + pos: 6.5,76.5 parent: 12 - - uid: 27248 + - uid: 27240 components: - type: Transform - pos: 29.5,76.5 + pos: 61.5,67.5 parent: 12 - - uid: 27250 + - uid: 27248 components: - type: Transform - pos: 41.5,3.5 + pos: 29.5,76.5 parent: 12 - uid: 27262 components: @@ -142345,6 +144427,11 @@ entities: - type: Transform pos: 29.5,70.5 parent: 12 + - uid: 27308 + components: + - type: Transform + pos: 30.5,76.5 + parent: 12 - uid: 27321 components: - type: Transform @@ -142378,51 +144465,44 @@ entities: - type: Transform pos: 14.5,-18.5 parent: 12 - - uid: 27391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-13.5 - parent: 12 - - uid: 27392 + - uid: 27406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-13.5 + rot: -1.5707963267948966 rad + pos: -54.5,-11.5 parent: 12 - - uid: 27393 + - uid: 27408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-13.5 + pos: -49.5,-18.5 parent: 12 - - uid: 27394 + - uid: 27448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-13.5 + pos: -59.5,-36.5 parent: 12 - - uid: 27395 + - uid: 27603 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-13.5 + pos: -39.5,-70.5 parent: 12 - - uid: 27406 + - uid: 27629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-11.5 + pos: -32.5,-60.5 parent: 12 - - uid: 27408 + - uid: 27703 components: - type: Transform - pos: -49.5,-18.5 + rot: 1.5707963267948966 rad + pos: -40.5,-70.5 parent: 12 - - uid: 27629 + - uid: 27720 components: - type: Transform - pos: -32.5,-60.5 + rot: 1.5707963267948966 rad + pos: -40.5,-60.5 parent: 12 - uid: 27724 components: @@ -142445,6 +144525,12 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-44.5 parent: 12 + - uid: 27860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-70.5 + parent: 12 - uid: 27910 components: - type: Transform @@ -142481,6 +144567,12 @@ entities: - type: Transform pos: 30.5,81.5 parent: 12 + - uid: 27924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-70.5 + parent: 12 - uid: 27926 components: - type: Transform @@ -142602,6 +144694,12 @@ entities: rot: 3.141592653589793 rad pos: 66.5,60.5 parent: 12 + - uid: 27949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-70.5 + parent: 12 - uid: 27950 components: - type: Transform @@ -142614,11 +144712,47 @@ entities: rot: 3.141592653589793 rad pos: 62.5,61.5 parent: 12 + - uid: 27972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-70.5 + parent: 12 + - uid: 27976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-70.5 + parent: 12 + - uid: 27980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-70.5 + parent: 12 + - uid: 27984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-70.5 + parent: 12 - uid: 27996 components: - type: Transform pos: 30.5,82.5 parent: 12 + - uid: 28044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-70.5 + parent: 12 + - uid: 28046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-70.5 + parent: 12 - uid: 28157 components: - type: Transform @@ -142643,11 +144777,30 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-11.5 parent: 12 - - uid: 28200 + - uid: 28194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-17.5 + pos: -20.5,-69.5 + parent: 12 + - uid: 28244 + components: + - type: Transform + pos: -27.5,-71.5 + parent: 12 + - uid: 28249 + components: + - type: Transform + pos: -26.5,-71.5 + parent: 12 + - uid: 28250 + components: + - type: Transform + pos: -25.5,-71.5 + parent: 12 + - uid: 28251 + components: + - type: Transform + pos: -24.5,-71.5 parent: 12 - uid: 28314 components: @@ -142735,11 +144888,6 @@ entities: - type: Transform pos: 6.5,78.5 parent: 12 - - uid: 28386 - components: - - type: Transform - pos: 5.5,-57.5 - parent: 12 - uid: 28421 components: - type: Transform @@ -142750,27 +144898,67 @@ entities: - type: Transform pos: 6.5,82.5 parent: 12 - - uid: 28435 + - uid: 28786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-21.5 + pos: -49.5,77.5 parent: 12 - - uid: 28436 + - uid: 28787 components: - type: Transform - pos: 1.5,-21.5 + pos: -54.5,67.5 parent: 12 - - uid: 28437 + - uid: 28788 components: - type: Transform - pos: 2.5,-21.5 + pos: -53.5,67.5 parent: 12 - - uid: 29089 + - uid: 29061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 + pos: -50.5,77.5 + parent: 12 + - uid: 29062 + components: + - type: Transform + pos: -55.5,72.5 + parent: 12 + - uid: 29063 + components: + - type: Transform + pos: -46.5,76.5 + parent: 12 + - uid: 29069 + components: + - type: Transform + pos: -36.5,80.5 + parent: 12 + - uid: 29072 + components: + - type: Transform + pos: -57.5,56.5 + parent: 12 + - uid: 29098 + components: + - type: Transform + pos: -55.5,71.5 + parent: 12 + - uid: 29147 + components: + - type: Transform + pos: -57.5,60.5 + parent: 12 + - uid: 29150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,74.5 + parent: 12 + - uid: 29151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,74.5 parent: 12 - uid: 29210 components: @@ -142804,185 +144992,100 @@ entities: - type: Transform pos: -54.5,-48.5 parent: 12 - - uid: 29421 + - uid: 29346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,67.5 + pos: -57.5,61.5 parent: 12 - uid: 29422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,68.5 - parent: 12 - - uid: 29423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,69.5 - parent: 12 - - uid: 29424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,70.5 - parent: 12 - - uid: 29425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,71.5 - parent: 12 - - uid: 29426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,71.5 - parent: 12 - - uid: 29427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,72.5 - parent: 12 - - uid: 29428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,72.5 - parent: 12 - - uid: 29429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,73.5 - parent: 12 - - uid: 29430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,73.5 + pos: -54.5,68.5 parent: 12 - - uid: 29431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,73.5 - parent: 12 - - uid: 29432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,73.5 - parent: 12 - - uid: 29433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,73.5 - parent: 12 - - uid: 29434 + - uid: 29457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,73.5 + pos: -41.5,-70.5 parent: 12 - - uid: 29435 + - uid: 29459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,73.5 + pos: -42.5,-68.5 parent: 12 - - uid: 29451 + - uid: 29460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,69.5 + pos: -42.5,-70.5 parent: 12 - - uid: 29452 + - uid: 29461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,70.5 + pos: -42.5,-67.5 parent: 12 - - uid: 29453 + - uid: 29462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,71.5 + pos: -42.5,-66.5 parent: 12 - - uid: 29454 + - uid: 29463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,72.5 + pos: -42.5,-63.5 parent: 12 - - uid: 29455 + - uid: 29464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,73.5 + pos: -42.5,-62.5 parent: 12 - - uid: 29456 + - uid: 29465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,73.5 + pos: -42.5,-61.5 parent: 12 - - uid: 29457 + - uid: 29467 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,74.5 + pos: -42.5,-60.5 parent: 12 - - uid: 29458 + - uid: 29468 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,75.5 + pos: -41.5,-60.5 parent: 12 - - uid: 29459 + - uid: 29509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,75.5 + pos: -34.5,78.5 parent: 12 - - uid: 29460 + - uid: 29601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,75.5 + pos: -29.5,80.5 parent: 12 - - uid: 29461 + - uid: 29602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,75.5 + pos: -28.5,80.5 parent: 12 - - uid: 29462 + - uid: 29604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,75.5 + pos: -27.5,80.5 parent: 12 - - uid: 29463 + - uid: 29605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,75.5 + pos: -25.5,77.5 parent: 12 - - uid: 29464 + - uid: 29606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,75.5 + pos: -25.5,78.5 parent: 12 - - uid: 29465 + - uid: 29822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,74.5 + pos: -43.5,70.5 parent: 12 - uid: 29861 components: @@ -143020,11 +145123,6 @@ entities: - type: Transform pos: 60.5,74.5 parent: 12 - - uid: 30037 - components: - - type: Transform - pos: 37.5,-53.5 - parent: 12 - uid: 30038 components: - type: Transform @@ -143330,6 +145428,11 @@ entities: - type: Transform pos: -69.5,51.5 parent: 12 + - uid: 30117 + components: + - type: Transform + pos: -35.5,74.5 + parent: 12 - uid: 30118 components: - type: Transform @@ -143340,11 +145443,6 @@ entities: - type: Transform pos: -69.5,54.5 parent: 12 - - uid: 30121 - components: - - type: Transform - pos: -58.5,56.5 - parent: 12 - uid: 30122 components: - type: Transform @@ -143592,12 +145690,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,79.5 parent: 12 - - uid: 30271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,79.5 - parent: 12 - uid: 30276 components: - type: Transform @@ -143609,12 +145701,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,72.5 parent: 12 - - uid: 30298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,74.5 - parent: 12 - uid: 30299 components: - type: Transform @@ -143708,16 +145794,6 @@ entities: - type: Transform pos: -29.5,-60.5 parent: 12 - - uid: 30965 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 12 - - uid: 30966 - components: - - type: Transform - pos: 5.5,-55.5 - parent: 12 - uid: 30971 components: - type: Transform @@ -143895,18 +145971,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-64.5 parent: 12 - - uid: 31165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-64.5 - parent: 12 - - uid: 31166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-64.5 - parent: 12 - uid: 31186 components: - type: Transform @@ -144000,21 +146064,6 @@ entities: - type: Transform pos: -62.5,-30.5 parent: 12 - - uid: 31620 - components: - - type: Transform - pos: -61.5,-31.5 - parent: 12 - - uid: 31621 - components: - - type: Transform - pos: -62.5,-17.5 - parent: 12 - - uid: 31622 - components: - - type: Transform - pos: -62.5,-18.5 - parent: 12 - uid: 31623 components: - type: Transform @@ -144025,21 +146074,6 @@ entities: - type: Transform pos: -62.5,-31.5 parent: 12 - - uid: 31625 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 12 - - uid: 31626 - components: - - type: Transform - pos: -61.5,-17.5 - parent: 12 - - uid: 31627 - components: - - type: Transform - pos: -60.5,-31.5 - parent: 12 - uid: 32033 components: - type: Transform @@ -144082,16 +146116,6 @@ entities: - type: Transform pos: 48.5,-2.5 parent: 12 - - uid: 19561 - components: - - type: Transform - pos: 48.5,0.5 - parent: 12 - - uid: 25388 - components: - - type: Transform - pos: 34.5,-32.5 - parent: 12 - uid: 28921 components: - type: Transform @@ -144170,23 +146194,12 @@ entities: parent: 12 - proto: GrilleDiagonal entities: - - uid: 16526 - components: - - type: Transform - pos: -13.5,77.5 - parent: 12 - uid: 19616 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,79.5 parent: 12 - - uid: 19631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,77.5 - parent: 12 - uid: 30273 components: - type: Transform @@ -144214,31 +146227,6 @@ entities: - type: Transform pos: 61.5,64.5 parent: 12 - - uid: 20855 - components: - - type: Transform - pos: 37.5,-47.5 - parent: 12 - - uid: 21065 - components: - - type: Transform - pos: 37.5,-52.5 - parent: 12 - - uid: 21083 - components: - - type: Transform - pos: 37.5,-51.5 - parent: 12 - - uid: 21313 - components: - - type: Transform - pos: 37.5,-50.5 - parent: 12 - - uid: 21332 - components: - - type: Transform - pos: 37.5,-49.5 - parent: 12 - uid: 21369 components: - type: Transform @@ -144419,6 +146407,51 @@ entities: - type: Transform pos: 61.5,68.5 parent: 12 + - uid: 27706 + components: + - type: Transform + pos: -30.5,-70.5 + parent: 12 + - uid: 27709 + components: + - type: Transform + pos: -31.5,-70.5 + parent: 12 + - uid: 27914 + components: + - type: Transform + pos: -29.5,-70.5 + parent: 12 + - uid: 27975 + components: + - type: Transform + pos: -36.5,-70.5 + parent: 12 + - uid: 28047 + components: + - type: Transform + pos: -21.5,-70.5 + parent: 12 + - uid: 28243 + components: + - type: Transform + pos: -23.5,-71.5 + parent: 12 + - uid: 29000 + components: + - type: Transform + pos: -42.5,-69.5 + parent: 12 + - uid: 29456 + components: + - type: Transform + pos: -42.5,-64.5 + parent: 12 + - uid: 29458 + components: + - type: Transform + pos: -42.5,-65.5 + parent: 12 - proto: GroundCannabis entities: - uid: 12239 @@ -144431,6 +146464,12 @@ entities: - type: Transform pos: 62.002953,47.83639 parent: 12 + - uid: 30035 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.61752,54.792152 + parent: 12 - proto: GunSafeDisabler entities: - uid: 20857 @@ -144522,14 +146561,14 @@ entities: - uid: 11709 components: - type: Transform - rot: -43.98229715025713 rad - pos: -4.5419416,-32.28253 + rot: -12.566370614359172 rad + pos: -4.6762905,-32.320335 parent: 12 - uid: 12709 components: - type: Transform rot: -12.566370614359172 rad - pos: -5.5166283,-38.43235 + pos: -5.6384325,-38.454876 parent: 12 - uid: 13831 components: @@ -144638,6 +146677,12 @@ entities: - type: Transform pos: -45.5,-19.5 parent: 12 + - uid: 26617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,27.5 + parent: 12 - uid: 28293 components: - type: Transform @@ -144652,6 +146697,11 @@ entities: parent: 12 - proto: Hemostat entities: + - uid: 5104 + components: + - type: Transform + pos: -22.46475,53.106586 + parent: 12 - uid: 13872 components: - type: Transform @@ -144723,6 +146773,12 @@ entities: - type: Transform pos: -1.5,-37.5 parent: 12 + - uid: 26883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-28.5 + parent: 12 - uid: 27283 components: - type: Transform @@ -144771,31 +146827,22 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,57.5 parent: 12 - - uid: 31374 + - uid: 29071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-60.5 - parent: 12 - - uid: 31379 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 6.5,-59.5 parent: 12 - - uid: 31381 + - uid: 29477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-61.5 + pos: 5.5,-62.5 parent: 12 - proto: HydroponicsToolClippers entities: - uid: 4211 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.5417747,-62.782024 + pos: 6.46257,-60.240547 parent: 12 - uid: 21230 components: @@ -144819,8 +146866,7 @@ entities: - uid: 503 components: - type: Transform - rot: -18.84955592153876 rad - pos: 6.6667747,-62.64999 + pos: 4.365348,-59.534256 parent: 12 - uid: 21358 components: @@ -144987,21 +147033,6 @@ entities: - type: Transform pos: 35.56522,-39.427387 parent: 12 -- proto: InflatableDoor - entities: - - uid: 28196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-15.5 - parent: 12 -- proto: InflatableWall - entities: - - uid: 10617 - components: - - type: Transform - pos: 49.5,0.5 - parent: 12 - proto: IngotGold entities: - uid: 17438 @@ -145071,6 +147102,14 @@ entities: rot: -12.566370614359172 rad pos: -2.5072865,-0.47896957 parent: 12 +- proto: IntercomAssembly + entities: + - uid: 4791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,18.5 + parent: 12 - proto: IntercomCommon entities: - uid: 8792 @@ -145079,6 +147118,18 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-29.5 parent: 12 + - uid: 9666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-29.5 + parent: 12 + - uid: 11722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-41.5 + parent: 12 - uid: 12063 components: - type: Transform @@ -145102,12 +147153,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,66.5 parent: 12 - - uid: 25613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-29.5 - parent: 12 - uid: 27832 components: - type: Transform @@ -145128,21 +147173,21 @@ entities: parent: 12 - proto: IntercomEngineering entities: - - uid: 2894 + - uid: 1484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,0.5 + pos: 40.5,0.5 parent: 12 - uid: 5594 components: - type: Transform pos: 21.5,-19.5 parent: 12 - - uid: 7156 + - uid: 8833 components: - type: Transform - pos: 46.5,1.5 + rot: 3.141592653589793 rad + pos: 45.5,-2.5 parent: 12 - uid: 9247 components: @@ -145234,6 +147279,12 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-37.5 parent: 12 + - uid: 19202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,59.5 + parent: 12 - uid: 25523 components: - type: Transform @@ -145295,6 +147346,12 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,38.5 parent: 12 + - uid: 28907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-34.5 + parent: 12 - proto: IntercomService entities: - uid: 4750 @@ -145309,6 +147366,12 @@ entities: rot: 3.141592653589793 rad pos: -40.5,21.5 parent: 12 + - uid: 20552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-53.5 + parent: 12 - uid: 23566 components: - type: Transform @@ -145369,12 +147432,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-25.5 parent: 12 - - uid: 12060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-41.5 - parent: 12 - uid: 23807 components: - type: Transform @@ -145422,15 +147479,15 @@ entities: parent: 12 - proto: Jukebox entities: - - uid: 13725 + - uid: 509 components: - type: Transform - pos: 21.5,26.5 + pos: -51.5,76.5 parent: 12 - - uid: 29654 + - uid: 13725 components: - type: Transform - pos: -43.5,68.5 + pos: 21.5,26.5 parent: 12 - uid: 29655 components: @@ -145483,12 +147540,6 @@ entities: rot: -31.415926535897945 rad pos: -37.056793,-58.403534 parent: 12 - - uid: 31363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.457253,-17.519176 - parent: 12 - uid: 31590 components: - type: Transform @@ -145564,6 +147615,11 @@ entities: parent: 12 - proto: KitchenReagentGrinder entities: + - uid: 215 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 12 - uid: 1949 components: - type: Transform @@ -145733,6 +147789,11 @@ entities: rot: 3.141592653589793 rad pos: -32.44526,29.851074 parent: 12 + - uid: 29186 + components: + - type: Transform + pos: -55.46656,61.910522 + parent: 12 - uid: 30347 components: - type: Transform @@ -145923,6 +147984,11 @@ entities: - type: Transform pos: 29.5,51.5 parent: 12 + - uid: 26502 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 12 - proto: LockerBotanistFilled entities: - uid: 24010 @@ -146019,15 +148085,10 @@ entities: parent: 12 - proto: LockerElectricalSuppliesFilled entities: - - uid: 2369 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 12 - - uid: 4523 + - uid: 4803 components: - type: Transform - pos: 16.5,-19.5 + pos: 17.5,-17.5 parent: 12 - uid: 5949 components: @@ -146054,11 +148115,31 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 12 + - uid: 19653 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 12 - uid: 20258 components: - type: Transform pos: 48.5,63.5 parent: 12 + - uid: 26159 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 12 + - uid: 28202 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 12 + - uid: 28868 + components: + - type: Transform + pos: 36.5,-50.5 + parent: 12 - uid: 32071 components: - type: Transform @@ -146081,22 +148162,20 @@ entities: - type: Transform pos: 32.5,-21.5 parent: 12 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 2501 + - uid: 17599 components: - type: Transform - pos: 13.5,-14.5 + pos: 29.5,-23.5 parent: 12 - - uid: 2515 + - uid: 17773 components: - type: Transform - pos: 12.5,-14.5 + pos: 29.5,-21.5 parent: 12 - - uid: 3238 + - uid: 18267 components: - type: Transform - pos: 14.5,-14.5 + pos: 29.5,-22.5 parent: 12 - proto: LockerEvidence entities: @@ -146120,11 +148199,6 @@ entities: - type: Transform pos: -46.5,59.5 parent: 12 - - uid: 8724 - components: - - type: Transform - pos: 52.5,-34.5 - parent: 12 - uid: 12241 components: - type: Transform @@ -146294,13 +148368,30 @@ entities: - type: Transform pos: -42.5,-30.5 parent: 12 -- proto: LockerSecurityFilled +- proto: LockerScientist entities: - - uid: 8719 + - uid: 9298 components: - type: Transform - pos: 53.5,-32.5 + pos: 47.5,58.5 parent: 12 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9548 + - 9541 + - 9503 + - 9488 + - 9567 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurityFilled + entities: - uid: 20845 components: - type: Transform @@ -146326,6 +148417,11 @@ entities: - type: Transform pos: 23.5,58.5 parent: 12 + - uid: 27394 + components: + - type: Transform + pos: 53.5,-33.5 + parent: 12 - proto: LockerSteel entities: - uid: 3794 @@ -146538,8 +148634,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -146556,10 +148652,13 @@ entities: showEnts: False occludes: True ents: - - 28255 - - 28256 - - 28257 + - 6284 - 6295 + - 28257 + - 28256 + - 28255 + - 6285 + - 6286 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -146588,26 +148687,47 @@ entities: parent: 12 - proto: LockerWeldingSuppliesFilled entities: + - uid: 2389 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 12 - uid: 4195 components: - type: Transform pos: 47.5,53.5 parent: 12 - - uid: 27154 + - uid: 8968 components: - type: Transform - pos: -54.5,-17.5 + pos: 16.5,-17.5 parent: 12 - - uid: 28050 + - uid: 26203 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 12 + - uid: 26712 components: - type: Transform - pos: 3.5,-23.5 + pos: -2.5,-18.5 + parent: 12 + - uid: 26783 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 12 + - uid: 28869 + components: + - type: Transform + pos: 44.5,-41.5 parent: 12 - proto: LogicGateOr entities: - uid: 25547 components: - type: Transform + anchored: True rot: 3.141592653589793 rad pos: 62.5,-2.5 parent: 12 @@ -146623,9 +148743,13 @@ entities: - Output: DoorBolt 12692: - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static - uid: 25549 components: - type: Transform + anchored: True pos: 60.5,-2.5 parent: 12 - type: DeviceLinkSink @@ -146634,9 +148758,13 @@ entities: linkedPorts: 25560: - Output: InputB + - type: Physics + canCollide: False + bodyType: Static - uid: 25550 components: - type: Transform + anchored: True rot: -1.5707963267948966 rad pos: 60.5,-1.5 parent: 12 @@ -146646,9 +148774,13 @@ entities: linkedPorts: 25560: - Output: InputA + - type: Physics + canCollide: False + bodyType: Static - uid: 25560 components: - type: Transform + anchored: True pos: 61.5,-2.5 parent: 12 - type: DeviceLinkSink @@ -146659,6 +148791,44 @@ entities: - Output: DoorBolt 9169: - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 26946 + components: + - type: Transform + anchored: True + rot: 3.141592653589793 rad + pos: 60.5,-34.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8034: + - Output: DoorBolt + 8035: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 27073 + components: + - type: Transform + anchored: True + pos: 59.5,-35.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 8037: + - Output: DoorBolt + 8036: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static - proto: LootSpawnerCableCoil entities: - uid: 9665 @@ -146861,6 +149031,17 @@ entities: - type: Transform pos: -43.5,-35.5 parent: 12 + - uid: 15115 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: 48.5,60.5 + parent: 12 + - type: ApcPowerReceiver + powerLoad: 1 + - type: Physics + bodyType: Dynamic - proto: MachineArtifactAnalyzer entities: - uid: 1696 @@ -146951,20 +149132,15 @@ entities: ents: [] - proto: MachineFrameDestroyed entities: - - uid: 2575 - components: - - type: Transform - pos: 35.5,-30.5 - parent: 12 - uid: 13522 components: - type: Transform pos: 53.5,25.5 parent: 12 - - uid: 32144 + - uid: 29064 components: - type: Transform - pos: -61.5,-52.5 + pos: -62.5,-54.5 parent: 12 - proto: MagazinePistolSubMachineGunTopMounted entities: @@ -147086,11 +149262,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,68.5 parent: 12 - - uid: 5957 - components: - - type: Transform - pos: 50.5,1.5 - parent: 12 - uid: 11490 components: - type: Transform @@ -147156,6 +149327,36 @@ entities: - type: Transform pos: -40.5,-51.5 parent: 12 + - uid: 28813 + components: + - type: Transform + pos: 35.5,-46.5 + parent: 12 + - uid: 28888 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 12 + - uid: 29622 + components: + - type: Transform + pos: -27.5,77.5 + parent: 12 + - uid: 29623 + components: + - type: Transform + pos: -29.5,75.5 + parent: 12 + - uid: 29784 + components: + - type: Transform + pos: -43.5,73.5 + parent: 12 + - uid: 29872 + components: + - type: Transform + pos: -52.5,49.5 + parent: 12 - uid: 31676 components: - type: Transform @@ -147168,31 +149369,41 @@ entities: parent: 12 - proto: MaintenancePlantSpawner entities: - - uid: 771 + - uid: 1078 components: - type: Transform - pos: -56.5,-17.5 + pos: -46.5,-16.5 parent: 12 - - uid: 1078 + - uid: 2400 components: - type: Transform - pos: -46.5,-16.5 + pos: -60.5,-30.5 parent: 12 - uid: 3195 components: - type: Transform pos: 44.5,63.5 parent: 12 - - uid: 10605 + - uid: 10923 components: - type: Transform - pos: 49.5,-3.5 + pos: 51.5,-4.5 parent: 12 - uid: 11240 components: - type: Transform pos: -3.5,17.5 parent: 12 + - uid: 17850 + components: + - type: Transform + pos: -33.5,74.5 + parent: 12 + - uid: 18562 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 12 - uid: 24498 components: - type: Transform @@ -147223,15 +149434,35 @@ entities: - type: Transform pos: -7.5,23.5 parent: 12 + - uid: 26677 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 12 + - uid: 27384 + components: + - type: Transform + pos: -56.5,-19.5 + parent: 12 - uid: 27827 components: - type: Transform pos: -47.5,-50.5 parent: 12 - - uid: 28049 + - uid: 28826 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 12 + - uid: 29827 components: - type: Transform - pos: 2.5,-23.5 + pos: -30.5,73.5 + parent: 12 + - uid: 29869 + components: + - type: Transform + pos: -51.5,60.5 parent: 12 - uid: 30520 components: @@ -147265,10 +149496,10 @@ entities: - type: Transform pos: 33.5,67.5 parent: 12 - - uid: 9298 + - uid: 9711 components: - type: Transform - pos: 48.5,-3.5 + pos: 48.5,1.5 parent: 12 - uid: 13004 components: @@ -147365,40 +149596,70 @@ entities: - type: Transform pos: 28.5,14.5 parent: 12 + - uid: 26891 + components: + - type: Transform + pos: 48.5,62.5 + parent: 12 + - uid: 26913 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 12 - uid: 28274 components: - type: Transform pos: -28.5,-16.5 parent: 12 - - uid: 28418 + - uid: 28886 components: - type: Transform - pos: 49.5,61.5 + pos: 42.5,-42.5 parent: 12 - - uid: 28419 + - uid: 29620 components: - type: Transform - pos: 48.5,61.5 + pos: -28.5,79.5 parent: 12 - - uid: 31567 + - uid: 29621 components: - type: Transform - pos: -13.5,-0.5 + pos: -29.5,79.5 parent: 12 - - uid: 31570 + - uid: 29624 components: - type: Transform - pos: -13.5,0.5 + pos: -29.5,77.5 parent: 12 - - uid: 31677 + - uid: 29636 components: - type: Transform - pos: -60.5,-28.5 + pos: -46.5,66.5 + parent: 12 + - uid: 29646 + components: + - type: Transform + pos: -26.5,79.5 parent: 12 - - uid: 31678 + - uid: 29870 components: - type: Transform - pos: -62.5,-23.5 + pos: -51.5,56.5 + parent: 12 + - uid: 30120 + components: + - type: Transform + pos: -34.5,74.5 + parent: 12 + - uid: 31567 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 12 + - uid: 31570 + components: + - type: Transform + pos: -13.5,0.5 parent: 12 - proto: MaintenanceWeaponSpawner entities: @@ -147407,6 +149668,16 @@ entities: - type: Transform pos: 55.5,20.5 parent: 12 + - uid: 28817 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 12 + - uid: 29619 + components: + - type: Transform + pos: -27.5,76.5 + parent: 12 - uid: 30508 components: - type: Transform @@ -147417,8 +149688,17 @@ entities: - uid: 4565 components: - type: Transform - pos: 47.514965,1.5594273 + rot: -37.69911184307754 rad + pos: 49.4561,-3.4684215 parent: 12 + - type: Blocking + blockingToggleActionEntity: 11047 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 11047 - proto: Matchbox entities: - uid: 6885 @@ -147463,6 +149743,18 @@ entities: rot: -6.283185307179586 rad pos: -13.621389,-0.07474756 parent: 12 +- proto: Mattress + entities: + - uid: 29008 + components: + - type: Transform + pos: -61.5,-52.5 + parent: 12 + - uid: 29146 + components: + - type: Transform + pos: -53.5,57.5 + parent: 12 - proto: MechEquipmentGrabberSmall entities: - uid: 30401 @@ -147574,8 +149866,7 @@ entities: - uid: 9266 components: - type: Transform - rot: -37.69911184307754 rad - pos: 55.502457,-33.19831 + pos: 55.495014,-33.44814 parent: 12 - uid: 9267 components: @@ -147655,11 +149946,6 @@ entities: - type: Transform pos: 3.3725653,-32.354176 parent: 12 - - uid: 6777 - components: - - type: Transform - pos: 28.47894,-15.335911 - parent: 12 - proto: MedkitToxinFilled entities: - uid: 8893 @@ -147705,6 +149991,14 @@ entities: - type: Transform pos: 34.209034,45.799026 parent: 12 +- proto: MinimoogInstrument + entities: + - uid: 2078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,76.5 + parent: 12 - proto: MiningDrill entities: - uid: 32188 @@ -147734,20 +150028,8 @@ entities: - type: Transform pos: -12.5,52.5 parent: 12 -- proto: ModularReceiver - entities: - - uid: 19823 - components: - - type: Transform - pos: 51.5,-3.5 - parent: 12 - proto: MonkeyCubeWrapped entities: - - uid: 19619 - components: - - type: Transform - pos: -22.51786,53.46946 - parent: 12 - uid: 21391 components: - type: Transform @@ -147760,11 +150042,6 @@ entities: parent: 12 - proto: MopBucket entities: - - uid: 25384 - components: - - type: Transform - pos: 36.5,-32.5 - parent: 12 - uid: 28404 components: - type: Transform @@ -147779,12 +150056,6 @@ entities: parent: 12 - proto: MopItem entities: - - uid: 8427 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 37.37422,-32.282562 - parent: 12 - uid: 12262 components: - type: Transform @@ -147943,11 +150214,6 @@ entities: - type: Transform pos: -32.59243,-21.422949 parent: 12 - - uid: 5914 - components: - - type: Transform - pos: 33.771404,-18.223875 - parent: 12 - uid: 5915 components: - type: Transform @@ -147958,11 +150224,6 @@ entities: - type: Transform pos: 43.0754,-32.38356 parent: 12 - - uid: 9244 - components: - - type: Transform - pos: 43.055523,-37.383503 - parent: 12 - uid: 17609 components: - type: Transform @@ -148029,20 +150290,20 @@ entities: - type: Transform pos: 55.5,9.5 parent: 12 - - uid: 704 + - uid: 2684 components: - type: Transform - pos: -54.5,-32.5 + pos: -53.5,-29.5 parent: 12 - - uid: 5639 + - uid: 2865 components: - type: Transform - pos: 26.5,11.5 + pos: -30.5,-14.5 parent: 12 - - uid: 6197 + - uid: 5639 components: - type: Transform - pos: 33.5,-42.5 + pos: 26.5,11.5 parent: 12 - uid: 8862 components: @@ -148054,6 +150315,11 @@ entities: - type: Transform pos: 25.5,12.5 parent: 12 + - uid: 10342 + components: + - type: Transform + pos: -59.5,-33.5 + parent: 12 - uid: 12122 components: - type: Transform @@ -148087,11 +150353,6 @@ entities: - type: Transform pos: 25.5,11.5 parent: 12 - - uid: 22708 - components: - - type: Transform - pos: -55.5,-35.5 - parent: 12 - uid: 23132 components: - type: Transform @@ -148127,33 +150388,33 @@ entities: - type: Transform pos: 4.5,-20.5 parent: 12 + - uid: 28709 + components: + - type: Transform + pos: 34.5,-52.5 + parent: 12 - uid: 29291 components: - type: Transform pos: -27.5,60.5 parent: 12 - - uid: 30706 + - uid: 29429 components: - type: Transform - pos: -15.5,-60.5 + pos: 4.5,-52.5 parent: 12 - - uid: 31445 + - uid: 29990 components: - type: Transform - pos: 4.5,-55.5 + pos: -48.5,52.5 parent: 12 - - uid: 31694 + - uid: 30706 components: - type: Transform - pos: -60.5,-30.5 + pos: -15.5,-60.5 parent: 12 - proto: NitrogenTankFilled entities: - - uid: 19265 - components: - - type: Transform - pos: 55.662266,-34.59952 - parent: 12 - uid: 23718 components: - type: Transform @@ -148253,6 +150514,13 @@ entities: - 31737 - proto: NodeScanner entities: + - uid: 9567 + components: + - type: Transform + parent: 9298 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 32092 components: - type: Transform @@ -148309,10 +150577,10 @@ entities: parent: 12 - proto: NuclearBombKeg entities: - - uid: 30426 + - uid: 29046 components: - type: Transform - pos: -48.5,69.5 + pos: -54.5,70.5 parent: 12 - proto: NutimovCircuitBoard entities: @@ -148334,6 +150602,11 @@ entities: - type: Transform pos: -10.5,-62.5 parent: 12 + - uid: 5263 + components: + - type: Transform + pos: -24.5,54.5 + parent: 12 - uid: 9439 components: - type: Transform @@ -148375,6 +150648,11 @@ entities: - type: Transform pos: 38.5,6.5 parent: 12 + - uid: 149 + components: + - type: Transform + pos: 14.5,12.5 + parent: 12 - uid: 755 components: - type: Transform @@ -148385,10 +150663,10 @@ entities: - type: Transform pos: 27.5,11.5 parent: 12 - - uid: 6679 + - uid: 5404 components: - type: Transform - pos: 33.5,-43.5 + pos: -30.5,-13.5 parent: 12 - uid: 7125 components: @@ -148410,11 +150688,6 @@ entities: - type: Transform pos: 81.5,-32.5 parent: 12 - - uid: 10631 - components: - - type: Transform - pos: 13.5,12.5 - parent: 12 - uid: 16456 components: - type: Transform @@ -148475,38 +150748,38 @@ entities: - type: Transform pos: 27.5,12.5 parent: 12 - - uid: 27448 + - uid: 26960 components: - type: Transform - pos: -56.5,-35.5 + pos: 34.5,-53.5 + parent: 12 + - uid: 27022 + components: + - type: Transform + pos: -59.5,-32.5 parent: 12 - uid: 29290 components: - type: Transform pos: -27.5,61.5 parent: 12 - - uid: 30707 + - uid: 29427 components: - type: Transform - pos: -15.5,-61.5 + pos: 4.5,-51.5 parent: 12 - - uid: 31446 + - uid: 29991 components: - type: Transform - pos: 4.5,-54.5 + pos: -51.5,59.5 parent: 12 - - uid: 31696 + - uid: 30707 components: - type: Transform - pos: -60.5,-18.5 + pos: -15.5,-61.5 parent: 12 - proto: OxygenTankFilled entities: - - uid: 6245 - components: - - type: Transform - pos: 55.258656,-34.617867 - parent: 12 - uid: 23717 components: - type: Transform @@ -148543,10 +150816,9 @@ entities: parent: 12 - proto: PaintingAmogusTriptych entities: - - uid: 31360 + - uid: 6210 components: - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,-16.5 parent: 12 - proto: PaintingCafeTerraceAtNight @@ -148586,10 +150858,11 @@ entities: parent: 12 - proto: PaintingTheSonOfMan entities: - - uid: 5160 + - uid: 26944 components: - type: Transform - pos: -57.5,-12.5 + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 parent: 12 - proto: Paper entities: @@ -148631,6 +150904,48 @@ entities: - type: Transform pos: 54.333927,24.618994 parent: 12 + - uid: 26645 + components: + - type: Transform + pos: 58.5,6.5 + parent: 12 + - type: Paper + content: >- + Notes to self: + + + - [bold]BUILD METEOR DEFENCE FOR TESLA!!![/bold] + + - Don't put tesla coils or grounding rods near the emitters + + - Tesla coils need to be hooked up to HV to generate power, emitters need to be hooked up to MV to work + + - Make sure [bold]ALL[/bold] the emitters and containment field generators are turned on and locked before starting the tesla + + - Turn off the PA after the tesla starts + + - Remember to repair tesla coils and grounding rods using welding fuel + + - Don't put the emitters too close to the tesla, don't put the tesla coils too far from the tesla + + - Make sure the emitters are not shooting at the tesla coils or grounding rods + + - [bold]WEAR INSULATED GLOVES WHEN WORKING ON THE TESLA!!![/bold] + - uid: 29006 + components: + - type: Transform + pos: -45.5,61.5 + parent: 12 + - uid: 29070 + components: + - type: Transform + pos: -42.5,61.5 + parent: 12 + - uid: 29486 + components: + - type: Transform + pos: -48.5,61.5 + parent: 12 - uid: 29970 components: - type: Transform @@ -149077,19 +151392,31 @@ entities: - uid: 8435 components: - type: Transform - rot: -6.283185307179586 rad - pos: 53.5426,-3.492909 + rot: -43.98229715025713 rad + pos: 61.374832,-3.3119311 parent: 12 - uid: 8436 components: - type: Transform - pos: 61.5,-3.5 + rot: -43.98229715025713 rad + pos: 61.708168,-3.4995613 parent: 12 - uid: 16482 components: - type: Transform pos: -8.548462,5.6872296 parent: 12 + - uid: 24321 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 + - uid: 25200 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 59.62378,12.4487915 + parent: 12 - proto: Pen entities: - uid: 1841 @@ -149481,6 +151808,17 @@ entities: - type: Transform pos: -23.507654,-58.359375 parent: 12 + - uid: 30032 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -53.225544,54.748913 + parent: 12 + - uid: 30033 + components: + - type: Transform + pos: -53.67503,54.401253 + parent: 12 - proto: PillTricordrazine entities: - uid: 3197 @@ -149544,6 +151882,11 @@ entities: - type: Transform pos: 24.5,-6.5 parent: 12 + - uid: 12047 + components: + - type: Transform + pos: 13.5,12.5 + parent: 12 - uid: 25479 components: - type: Transform @@ -149630,6 +151973,16 @@ entities: - type: Transform pos: 35.5,16.5 parent: 12 + - uid: 29629 + components: + - type: Transform + pos: -29.5,76.5 + parent: 12 + - uid: 29630 + components: + - type: Transform + pos: -27.5,76.5 + parent: 12 - proto: PlayerStationAi entities: - uid: 9471 @@ -149701,6 +152054,14 @@ entities: - type: Transform pos: 56.5,61.5 parent: 12 +- proto: PlushieLamp + entities: + - uid: 24494 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 36.280617,-46.363327 + parent: 12 - proto: PlushieLizard entities: - uid: 14195 @@ -149748,6 +152109,13 @@ entities: rot: -6.283185307179586 rad pos: -2.5359287,58.81089 parent: 12 +- proto: PlushieSpaceLizard + entities: + - uid: 26670 + components: + - type: Transform + pos: -3.4178286,7.476963 + parent: 12 - proto: PlushieVox entities: - uid: 21518 @@ -149775,11 +152143,6 @@ entities: parent: 12 - proto: PortableGeneratorJrPacman entities: - - uid: 149 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 12 - uid: 2978 components: - type: Transform @@ -149790,10 +152153,10 @@ entities: - type: Transform pos: 37.5,-18.5 parent: 12 - - uid: 5250 + - uid: 6970 components: - type: Transform - pos: 42.5,-39.5 + pos: -55.5,-37.5 parent: 12 - uid: 11324 components: @@ -149805,6 +152168,11 @@ entities: - type: Transform pos: 40.5,10.5 parent: 12 + - uid: 12332 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 12 - uid: 17963 components: - type: Transform @@ -149825,11 +152193,6 @@ entities: - type: Transform pos: -35.5,-10.5 parent: 12 - - uid: 27837 - components: - - type: Transform - pos: -57.5,-35.5 - parent: 12 - uid: 28278 components: - type: Transform @@ -149838,10 +152201,10 @@ entities: parent: 12 - type: Physics bodyType: Static - - uid: 31448 + - uid: 29345 components: - type: Transform - pos: 4.5,-52.5 + pos: 3.5,-47.5 parent: 12 - uid: 32132 components: @@ -149868,21 +152231,33 @@ entities: parent: 12 - type: Physics bodyType: Static - - uid: 8799 + - uid: 2419 components: - type: Transform anchored: True - pos: 40.5,4.5 + pos: 40.5,1.5 parent: 12 - type: Physics bodyType: Static + - uid: 25388 + components: + - type: Transform + pos: 62.5,9.5 + parent: 12 + - type: PowerSupplier + voltage: Medium + - type: PowerSwitchable + activeIndex: 1 - proto: PortableGeneratorSuperPacman entities: - uid: 2465 components: - type: Transform + anchored: True pos: 8.5,-13.5 parent: 12 + - type: Physics + bodyType: Static - proto: PortableScrubber entities: - uid: 1760 @@ -149920,11 +152295,6 @@ entities: - type: Transform pos: -11.5,24.5 parent: 12 - - uid: 16586 - components: - - type: Transform - pos: 26.5,-14.5 - parent: 12 - uid: 18161 components: - type: Transform @@ -150014,6 +152384,13 @@ entities: - type: Transform pos: 25.5,4.5 parent: 12 +- proto: PosterContrabandBorgFancyv2 + entities: + - uid: 5313 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 12 - proto: PosterContrabandC20r entities: - uid: 28267 @@ -150057,6 +152434,13 @@ entities: - type: Transform pos: -51.5,-14.5 parent: 12 +- proto: PosterContrabandGreyTide + entities: + - uid: 29627 + components: + - type: Transform + pos: -37.5,80.5 + parent: 12 - proto: PosterContrabandHackingGuide entities: - uid: 28717 @@ -150064,6 +152448,11 @@ entities: - type: Transform pos: 59.5,0.5 parent: 12 + - uid: 29139 + components: + - type: Transform + pos: -35.5,79.5 + parent: 12 - proto: PosterContrabandHighEffectEngineering entities: - uid: 16356 @@ -150093,6 +152482,16 @@ entities: - type: Transform pos: -26.5,-14.5 parent: 12 + - uid: 29066 + components: + - type: Transform + pos: -52.5,59.5 + parent: 12 + - uid: 29140 + components: + - type: Transform + pos: -38.5,75.5 + parent: 12 - proto: PosterContrabandMissingSpacepen entities: - uid: 393 @@ -150122,6 +152521,13 @@ entities: - type: Transform pos: -0.5,-64.5 parent: 12 +- proto: PosterContrabandRise + entities: + - uid: 27714 + components: + - type: Transform + pos: -39.5,79.5 + parent: 12 - proto: PosterContrabandSpaceUp entities: - uid: 30228 @@ -150129,6 +152535,13 @@ entities: - type: Transform pos: -17.5,59.5 parent: 12 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 29036 + components: + - type: Transform + pos: -28.5,76.5 + parent: 12 - proto: PosterContrabandTools entities: - uid: 8873 @@ -150143,6 +152556,11 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,46.5 parent: 12 + - uid: 29310 + components: + - type: Transform + pos: -36.5,75.5 + parent: 12 - proto: PosterContrabandWehWatches entities: - uid: 11523 @@ -150160,11 +152578,23 @@ entities: parent: 12 - proto: PosterLegitCohibaRobustoAd entities: + - uid: 19645 + components: + - type: Transform + pos: -58.5,-16.5 + parent: 12 - uid: 30238 components: - type: Transform pos: -14.5,57.5 parent: 12 +- proto: PosterLegitDickGumshue + entities: + - uid: 25412 + components: + - type: Transform + pos: -56.5,63.5 + parent: 12 - proto: PosterLegitFoamForceAd entities: - uid: 30231 @@ -150187,6 +152617,13 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,65.5 parent: 12 +- proto: PosterLegitHighClassMartini + entities: + - uid: 28794 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 12 - proto: PosterLegitIan entities: - uid: 30229 @@ -150259,10 +152696,11 @@ entities: - type: Transform pos: -25.5,-10.5 parent: 12 - - uid: 9144 + - uid: 11304 components: - type: Transform - pos: 29.5,-15.5 + rot: 1.5707963267948966 rad + pos: 28.5,-14.5 parent: 12 - uid: 22542 components: @@ -150297,6 +152735,11 @@ entities: - type: Transform pos: -41.5,-40.5 parent: 12 + - uid: 19182 + components: + - type: Transform + pos: 47.5,61.5 + parent: 12 - proto: PosterLegitSecWatch entities: - uid: 10271 @@ -150316,17 +152759,18 @@ entities: - uid: 31468 components: - type: Transform - pos: 6.5,-61.5 + pos: 6.5320144,-61.325264 parent: 12 - uid: 31469 components: - type: Transform - pos: 6.5,-60.5 + pos: 5.5015607,-62.495205 parent: 12 - uid: 31470 components: - type: Transform - pos: 6.5,-59.5 + rot: 4.440892098500626E-16 rad + pos: 6.508507,-59.615746 parent: 12 - proto: PottedPlant1 entities: @@ -150599,11 +153043,6 @@ entities: - type: Transform pos: 52.5,59.5 parent: 12 - - uid: 24085 - components: - - type: Transform - pos: 48.5,59.5 - parent: 12 - uid: 24114 components: - type: Transform @@ -150797,11 +153236,6 @@ entities: - type: Transform pos: 44.5,-32.5 parent: 12 - - uid: 9233 - components: - - type: Transform - pos: 43.5,-39.5 - parent: 12 - uid: 9814 components: - type: Transform @@ -150925,16 +153359,6 @@ entities: rot: -56.54866776461632 rad pos: -9.513435,-49.592167 parent: 12 - - uid: 4481 - components: - - type: Transform - pos: 10.430595,-16.35749 - parent: 12 - - uid: 4525 - components: - - type: Transform - pos: 10.601824,-16.4962 - parent: 12 - uid: 31574 components: - type: Transform @@ -151096,12 +153520,6 @@ entities: - type: Transform pos: -26.5,-41.5 parent: 12 - - uid: 2459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 12 - uid: 2460 components: - type: Transform @@ -151319,12 +153737,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-15.5 parent: 12 - - uid: 5186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-16.5 - parent: 12 - uid: 5216 components: - type: Transform @@ -151428,12 +153840,24 @@ entities: rot: 3.141592653589793 rad pos: -42.5,32.5 parent: 12 + - uid: 6348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 12 - uid: 6668 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-53.5 parent: 12 + - uid: 6687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-45.5 + parent: 12 - uid: 6698 components: - type: Transform @@ -151561,6 +153985,11 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-52.5 parent: 12 + - uid: 6789 + components: + - type: Transform + pos: 37.5,4.5 + parent: 12 - uid: 6808 components: - type: Transform @@ -151879,12 +154308,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-5.5 parent: 12 - - uid: 10393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-2.5 - parent: 12 - uid: 10541 components: - type: Transform @@ -151926,17 +154349,18 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,33.5 parent: 12 - - uid: 10908 - components: - - type: Transform - pos: 35.5,4.5 - parent: 12 - uid: 11125 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-33.5 parent: 12 + - uid: 11128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,74.5 + parent: 12 - uid: 11223 components: - type: Transform @@ -152606,18 +155030,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,53.5 parent: 12 - - uid: 16869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,57.5 - parent: 12 - - uid: 16870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,55.5 - parent: 12 - uid: 16871 components: - type: Transform @@ -152711,12 +155123,6 @@ entities: - type: Transform pos: 46.5,41.5 parent: 12 - - uid: 17532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,64.5 - parent: 12 - uid: 17751 components: - type: Transform @@ -153064,12 +155470,42 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-11.5 parent: 12 + - uid: 26669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 12 - uid: 26746 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-5.5 parent: 12 + - uid: 26787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,55.5 + parent: 12 + - uid: 26850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 12 + - uid: 26918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,74.5 + parent: 12 + - uid: 26943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-43.5 + parent: 12 - uid: 26976 components: - type: Transform @@ -153120,12 +155556,6 @@ entities: - type: Transform pos: -33.5,-41.5 parent: 12 - - uid: 30279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,73.5 - parent: 12 - uid: 30290 components: - type: Transform @@ -153209,11 +155639,10 @@ entities: parent: 12 - proto: PoweredlightCyan entities: - - uid: 29615 + - uid: 28985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,67.5 + pos: -47.5,75.5 parent: 12 - proto: PoweredlightEmpty entities: @@ -153231,19 +155660,19 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,62.5 parent: 12 - - uid: 29610 + - uid: 20049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,70.5 + rot: 3.141592653589793 rad + pos: -52.5,68.5 parent: 12 - proto: PoweredlightPink entities: - - uid: 29602 + - uid: 19378 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,69.5 + pos: -53.5,74.5 parent: 12 - proto: PoweredLightPostSmall entities: @@ -153263,12 +155692,18 @@ entities: - type: Transform pos: 26.5,90.5 parent: 12 + - uid: 30029 + components: + - type: Transform + pos: -20.5,76.5 + parent: 12 - proto: PoweredlightRed entities: - - uid: 29616 + - uid: 9555 components: - type: Transform - pos: -46.5,72.5 + rot: -1.5707963267948966 rad + pos: -46.5,69.5 parent: 12 - uid: 31339 components: @@ -153308,6 +155743,12 @@ entities: rot: 3.141592653589793 rad pos: -55.5,21.5 parent: 12 + - uid: 1505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,28.5 + parent: 12 - uid: 2033 components: - type: Transform @@ -153337,11 +155778,11 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,11.5 parent: 12 - - uid: 2739 + - uid: 2424 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-31.5 + pos: -57.5,-15.5 parent: 12 - uid: 2855 components: @@ -153439,6 +155880,12 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-4.5 parent: 12 + - uid: 5521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 12 - uid: 5833 components: - type: Transform @@ -153457,11 +155904,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-28.5 parent: 12 - - uid: 6758 - components: - - type: Transform - pos: 34.5,-41.5 - parent: 12 - uid: 6759 components: - type: Transform @@ -153479,11 +155921,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-16.5 parent: 12 - - uid: 7270 - components: - - type: Transform - pos: -55.5,-34.5 - parent: 12 - uid: 7279 components: - type: Transform @@ -153531,12 +155968,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-18.5 parent: 12 - - uid: 8836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-38.5 - parent: 12 - uid: 8838 components: - type: Transform @@ -153571,12 +156002,6 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-37.5 parent: 12 - - uid: 8847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-45.5 - parent: 12 - uid: 8850 components: - type: Transform @@ -153627,29 +156052,11 @@ entities: - type: Transform pos: -3.5,65.5 parent: 12 - - uid: 9239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,58.5 - parent: 12 - - uid: 9240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,66.5 - parent: 12 - uid: 9242 components: - type: Transform pos: -15.5,65.5 parent: 12 - - uid: 9245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,66.5 - parent: 12 - uid: 9437 components: - type: Transform @@ -153679,11 +156086,6 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-0.5 parent: 12 - - uid: 9548 - components: - - type: Transform - pos: 16.5,12.5 - parent: 12 - uid: 9853 components: - type: Transform @@ -153695,24 +156097,12 @@ entities: - type: Transform pos: -50.5,-42.5 parent: 12 - - uid: 10345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-19.5 - parent: 12 - uid: 10403 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-10.5 parent: 12 - - uid: 10803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 12 - uid: 10886 components: - type: Transform @@ -153737,12 +156127,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,11.5 parent: 12 - - uid: 11520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,58.5 - parent: 12 - uid: 12005 components: - type: Transform @@ -153794,12 +156178,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,27.5 parent: 12 - - uid: 12933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,28.5 - parent: 12 - uid: 12944 components: - type: Transform @@ -153836,11 +156214,22 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,53.5 parent: 12 + - uid: 15687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,58.5 + parent: 12 - uid: 16209 components: - type: Transform pos: 57.5,-13.5 parent: 12 + - uid: 16369 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 12 - uid: 16554 components: - type: Transform @@ -153870,17 +156259,11 @@ entities: rot: 3.141592653589793 rad pos: 51.5,29.5 parent: 12 - - uid: 17850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,42.5 - parent: 12 - uid: 17923 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,46.5 + pos: -46.5,37.5 parent: 12 - uid: 17971 components: @@ -153922,6 +156305,12 @@ entities: - type: Transform pos: -26.5,51.5 parent: 12 + - uid: 19514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,79.5 + parent: 12 - uid: 19660 components: - type: Transform @@ -153963,6 +156352,12 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,32.5 parent: 12 + - uid: 21083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-14.5 + parent: 12 - uid: 21274 components: - type: Transform @@ -154009,12 +156404,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,54.5 parent: 12 - - uid: 22160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-1.5 - parent: 12 - uid: 22163 components: - type: Transform @@ -154027,6 +156416,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,11.5 parent: 12 + - uid: 22336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-32.5 + parent: 12 - uid: 22709 components: - type: Transform @@ -154079,6 +156474,11 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-41.5 parent: 12 + - uid: 25201 + components: + - type: Transform + pos: 49.5,1.5 + parent: 12 - uid: 25368 components: - type: Transform @@ -154113,6 +156513,11 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-49.5 parent: 12 + - uid: 26520 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 12 - uid: 26560 components: - type: Transform @@ -154124,10 +156529,17 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-3.5 parent: 12 - - uid: 26853 + - uid: 27019 components: - type: Transform - pos: 16.5,10.5 + rot: -1.5707963267948966 rad + pos: -57.5,-35.5 + parent: 12 + - uid: 27059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-53.5 parent: 12 - uid: 27067 components: @@ -154141,6 +156553,12 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-14.5 parent: 12 + - uid: 27227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-38.5 + parent: 12 - uid: 27259 components: - type: Transform @@ -154176,6 +156594,12 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-13.5 parent: 12 + - uid: 28298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-67.5 + parent: 12 - uid: 28458 components: - type: Transform @@ -154208,17 +156632,23 @@ entities: - type: Transform pos: 16.5,5.5 parent: 12 - - uid: 28920 + - uid: 29285 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,1.5 + pos: -22.5,64.5 parent: 12 - - uid: 29285 + - uid: 29626 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,64.5 + pos: -53.5,61.5 + parent: 12 + - uid: 29643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,65.5 parent: 12 - uid: 29656 components: @@ -154243,6 +156673,11 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-39.5 parent: 12 + - uid: 30133 + components: + - type: Transform + pos: -28.5,75.5 + parent: 12 - uid: 30269 components: - type: Transform @@ -154276,12 +156711,6 @@ entities: - type: Transform pos: 5.5,-59.5 parent: 12 - - uid: 31394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-67.5 - parent: 12 - uid: 31508 components: - type: Transform @@ -154308,6 +156737,12 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-23.5 parent: 12 + - uid: 28973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,57.5 + parent: 12 - uid: 31337 components: - type: Transform @@ -154396,15 +156831,15 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-23.5 parent: 12 - - uid: 2919 + - uid: 2683 components: - type: Transform - pos: -8.5,-45.5 + pos: 40.5,2.5 parent: 12 - - uid: 3064 + - uid: 2919 components: - type: Transform - pos: 6.5,-62.5 + pos: -8.5,-45.5 parent: 12 - uid: 3619 components: @@ -154427,20 +156862,15 @@ entities: - type: Transform pos: -11.5,-21.5 parent: 12 - - uid: 4551 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 12 - - uid: 4552 + - uid: 4608 components: - type: Transform - pos: 11.5,-16.5 + pos: 11.5,-2.5 parent: 12 - - uid: 4608 + - uid: 4613 components: - type: Transform - pos: 11.5,-2.5 + pos: -25.5,56.5 parent: 12 - uid: 4943 components: @@ -154453,20 +156883,10 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-13.5 parent: 12 - - uid: 5873 - components: - - type: Transform - pos: 29.5,-23.5 - parent: 12 - - uid: 5874 - components: - - type: Transform - pos: 29.5,-21.5 - parent: 12 - - uid: 5875 + - uid: 5817 components: - type: Transform - pos: 29.5,-22.5 + pos: -45.5,73.5 parent: 12 - uid: 5890 components: @@ -154483,15 +156903,15 @@ entities: - type: Transform pos: 60.5,-18.5 parent: 12 - - uid: 7332 + - uid: 6257 components: - type: Transform - pos: 39.5,-19.5 + pos: -52.5,-19.5 parent: 12 - - uid: 7524 + - uid: 7332 components: - type: Transform - pos: 54.5,-5.5 + pos: 39.5,-19.5 parent: 12 - uid: 8040 components: @@ -154499,11 +156919,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-49.5 parent: 12 - - uid: 8713 - components: - - type: Transform - pos: 50.5,1.5 - parent: 12 - uid: 8868 components: - type: Transform @@ -154520,11 +156935,6 @@ entities: - type: Transform pos: 52.5,1.5 parent: 12 - - uid: 9214 - components: - - type: Transform - pos: 45.5,-36.5 - parent: 12 - uid: 9219 components: - type: Transform @@ -154553,6 +156963,12 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-21.5 parent: 12 + - uid: 9590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-30.5 + parent: 12 - uid: 9599 components: - type: Transform @@ -154590,6 +157006,12 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-4.5 parent: 12 + - uid: 10907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-24.5 + parent: 12 - uid: 10943 components: - type: Transform @@ -154634,10 +157056,10 @@ entities: - type: Transform pos: 35.5,-9.5 parent: 12 - - uid: 16369 + - uid: 16373 components: - type: Transform - pos: 34.5,-30.5 + pos: -59.5,-16.5 parent: 12 - uid: 16451 components: @@ -154685,11 +157107,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,38.5 parent: 12 - - uid: 17841 - components: - - type: Transform - pos: -43.5,69.5 - parent: 12 - uid: 18159 components: - type: Transform @@ -154762,12 +157179,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 12 - - uid: 22102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,4.5 - parent: 12 - uid: 22406 components: - type: Transform @@ -154811,6 +157222,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-32.5 parent: 12 + - uid: 24666 + components: + - type: Transform + pos: -46.5,66.5 + parent: 12 + - uid: 24673 + components: + - type: Transform + pos: 59.5,12.5 + parent: 12 - uid: 25008 components: - type: Transform @@ -154828,6 +157249,11 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-32.5 parent: 12 + - uid: 25531 + components: + - type: Transform + pos: 62.5,10.5 + parent: 12 - uid: 25684 components: - type: Transform @@ -154927,18 +157353,6 @@ entities: - type: Transform pos: 42.5,56.5 parent: 12 - - uid: 25935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,61.5 - parent: 12 - - uid: 25936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,61.5 - parent: 12 - uid: 25962 components: - type: Transform @@ -154981,6 +157395,11 @@ entities: - type: Transform pos: -34.5,-34.5 parent: 12 + - uid: 26007 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 12 - uid: 26301 components: - type: Transform @@ -155016,11 +157435,32 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,64.5 parent: 12 + - uid: 26889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,62.5 + parent: 12 + - uid: 27012 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 12 + - uid: 27235 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 12 - uid: 27397 components: - type: Transform pos: -43.5,-16.5 parent: 12 + - uid: 27708 + components: + - type: Transform + pos: -51.5,56.5 + parent: 12 - uid: 27853 components: - type: Transform @@ -155039,6 +157479,11 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-16.5 parent: 12 + - uid: 28640 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 12 - uid: 28759 components: - type: Transform @@ -155049,20 +157494,45 @@ entities: - type: Transform pos: 53.5,-2.5 parent: 12 - - uid: 29596 + - uid: 28871 components: - type: Transform - pos: -43.5,70.5 + pos: 42.5,-42.5 parent: 12 - - uid: 30529 + - uid: 28890 components: - type: Transform - pos: -28.5,-56.5 + pos: 35.5,-44.5 parent: 12 - - uid: 30538 + - uid: 29607 components: - type: Transform - pos: -17.5,-67.5 + pos: -29.5,79.5 + parent: 12 + - uid: 29608 + components: + - type: Transform + pos: -28.5,79.5 + parent: 12 + - uid: 29783 + components: + - type: Transform + pos: -43.5,73.5 + parent: 12 + - uid: 29972 + components: + - type: Transform + pos: -52.5,49.5 + parent: 12 + - uid: 29987 + components: + - type: Transform + pos: -34.5,74.5 + parent: 12 + - uid: 30529 + components: + - type: Transform + pos: -28.5,-56.5 parent: 12 - uid: 30708 components: @@ -155187,6 +157657,12 @@ entities: - type: Transform pos: -25.836569,50.923958 parent: 12 + - uid: 26793 + components: + - type: Transform + rot: -100.53096491487331 rad + pos: 38.712696,-30.803366 + parent: 12 - proto: Railing entities: - uid: 365 @@ -155209,11 +157685,17 @@ entities: - type: Transform pos: -10.5,-15.5 parent: 12 - - uid: 9257 + - uid: 6185 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-29.5 + pos: -52.5,73.5 + parent: 12 + - uid: 6188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,74.5 parent: 12 - uid: 10301 components: @@ -155257,6 +157739,12 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-14.5 parent: 12 + - uid: 22102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-43.5 + parent: 12 - uid: 22287 components: - type: Transform @@ -155390,22 +157878,32 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,68.5 parent: 12 - - uid: 27600 + - uid: 28140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-32.5 + rot: 3.141592653589793 rad + pos: -48.5,74.5 parent: 12 - - uid: 28069 + - uid: 28146 components: - type: Transform - pos: -56.5,-33.5 + rot: 3.141592653589793 rad + pos: -50.5,74.5 parent: 12 - - uid: 28145 + - uid: 28163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-30.5 + pos: -48.5,69.5 + parent: 12 + - uid: 28166 + components: + - type: Transform + pos: -51.5,69.5 + parent: 12 + - uid: 28191 + components: + - type: Transform + pos: -49.5,69.5 parent: 12 - uid: 28614 components: @@ -155456,58 +157954,46 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-2.5 parent: 12 - - uid: 29605 + - uid: 28872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,71.5 + rot: 3.141592653589793 rad + pos: 36.5,-43.5 parent: 12 - - uid: 29606 + - uid: 29010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,70.5 + rot: -1.5707963267948966 rad + pos: -52.5,70.5 parent: 12 - - uid: 29607 + - uid: 29044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,69.5 + rot: 3.141592653589793 rad + pos: -49.5,74.5 parent: 12 - - uid: 29608 + - uid: 29045 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,68.5 + pos: -47.5,73.5 parent: 12 - - uid: 29609 + - uid: 29052 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,67.5 - parent: 12 - - uid: 30544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,23.5 + pos: -47.5,70.5 parent: 12 - - uid: 31449 + - uid: 29058 components: - type: Transform - pos: 4.5,-51.5 - parent: 12 - - uid: 31450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-56.5 + pos: -50.5,69.5 parent: 12 - - uid: 31473 + - uid: 30544 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-60.5 + pos: -20.5,23.5 parent: 12 - uid: 31487 components: @@ -155567,11 +158053,28 @@ entities: parent: 12 - proto: RailingCorner entities: - - uid: 9138 + - uid: 6211 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-33.5 + pos: -52.5,69.5 + parent: 12 + - uid: 9514 + components: + - type: Transform + pos: -47.5,69.5 + parent: 12 + - uid: 9534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,74.5 + parent: 12 + - uid: 9537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,74.5 parent: 12 - uid: 22603 components: @@ -155645,23 +158148,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,52.5 parent: 12 - - uid: 24493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,66.5 - parent: 12 - - uid: 24494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,67.5 - parent: 12 - - uid: 31380 - components: - - type: Transform - pos: 5.5,-61.5 - parent: 12 - uid: 31488 components: - type: Transform @@ -155703,14 +158189,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,24.5 parent: 12 -- proto: RailingRound - entities: - - uid: 25531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-32.5 - parent: 12 - proto: RandomArcade entities: - uid: 16926 @@ -155740,15 +158218,15 @@ entities: parent: 12 - proto: RandomArtifactSpawner entities: - - uid: 2009 + - uid: 9760 components: - type: Transform - pos: -48.5,-31.5 + pos: -53.5,-23.5 parent: 12 - - uid: 9760 + - uid: 20855 components: - type: Transform - pos: -53.5,-23.5 + pos: -51.5,-25.5 parent: 12 - proto: RandomDrinkGlass entities: @@ -155767,6 +158245,11 @@ entities: - type: Transform pos: 21.5,51.5 parent: 12 + - uid: 20539 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 12 - uid: 25714 components: - type: Transform @@ -155782,10 +158265,10 @@ entities: - type: Transform pos: -55.5,-14.5 parent: 12 - - uid: 29353 + - uid: 29107 components: - type: Transform - pos: 29.5,-8.5 + pos: -45.5,71.5 parent: 12 - proto: RandomFoodMeal entities: @@ -155821,6 +158304,11 @@ entities: - type: Transform pos: 21.5,50.5 parent: 12 + - uid: 29020 + components: + - type: Transform + pos: -54.5,72.5 + parent: 12 - proto: RandomPainting entities: - uid: 6984 @@ -155932,6 +158420,11 @@ entities: parent: 12 - proto: RandomPosterContraband entities: + - uid: 1350 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 12 - uid: 5245 components: - type: Transform @@ -155957,6 +158450,11 @@ entities: - type: Transform pos: 41.5,-3.5 parent: 12 + - uid: 18582 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 12 - uid: 21401 components: - type: Transform @@ -155967,17 +158465,10 @@ entities: - type: Transform pos: -3.5,36.5 parent: 12 - - uid: 24321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-33.5 - parent: 12 - - uid: 24322 + - uid: 22860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-33.5 + pos: -17.5,69.5 parent: 12 - uid: 24323 components: @@ -156039,17 +158530,67 @@ entities: rot: 3.141592653589793 rad pos: 29.5,15.5 parent: 12 + - uid: 27310 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 12 - uid: 28036 components: - type: Transform pos: 37.5,-20.5 parent: 12 + - uid: 28998 + components: + - type: Transform + pos: -52.5,56.5 + parent: 12 + - uid: 29021 + components: + - type: Transform + pos: -44.5,66.5 + parent: 12 + - uid: 29108 + components: + - type: Transform + pos: -32.5,75.5 + parent: 12 - uid: 29354 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-6.5 parent: 12 + - uid: 29634 + components: + - type: Transform + pos: -40.5,73.5 + parent: 12 + - uid: 29637 + components: + - type: Transform + pos: -51.5,52.5 + parent: 12 + - uid: 29642 + components: + - type: Transform + pos: -40.5,65.5 + parent: 12 + - uid: 29988 + components: + - type: Transform + pos: -53.5,53.5 + parent: 12 + - uid: 30121 + components: + - type: Transform + pos: -30.5,79.5 + parent: 12 + - uid: 30127 + components: + - type: Transform + pos: -26.5,73.5 + parent: 12 - uid: 31717 components: - type: Transform @@ -156085,16 +158626,6 @@ entities: - type: Transform pos: -51.5,-48.5 parent: 12 - - uid: 31724 - components: - - type: Transform - pos: -54.5,-36.5 - parent: 12 - - uid: 31725 - components: - - type: Transform - pos: -60.5,-27.5 - parent: 12 - uid: 31726 components: - type: Transform @@ -156472,10 +159003,10 @@ entities: parent: 12 - proto: RandomSpawner entities: - - uid: 97 + - uid: 757 components: - type: Transform - pos: 4.5,-23.5 + pos: 57.5,-40.5 parent: 12 - uid: 5858 components: @@ -156507,6 +159038,11 @@ entities: - type: Transform pos: -1.5,15.5 parent: 12 + - uid: 9622 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 12 - uid: 12045 components: - type: Transform @@ -156538,16 +159074,6 @@ entities: - type: Transform pos: -44.5,58.5 parent: 12 - - uid: 23721 - components: - - type: Transform - pos: -56.5,62.5 - parent: 12 - - uid: 23722 - components: - - type: Transform - pos: -52.5,60.5 - parent: 12 - uid: 24221 components: - type: Transform @@ -156858,11 +159384,6 @@ entities: - type: Transform pos: 50.5,-43.5 parent: 12 - - uid: 24413 - components: - - type: Transform - pos: 55.5,-40.5 - parent: 12 - uid: 24414 components: - type: Transform @@ -156943,11 +159464,6 @@ entities: - type: Transform pos: 16.5,-22.5 parent: 12 - - uid: 24434 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 12 - uid: 24435 components: - type: Transform @@ -157058,11 +159574,6 @@ entities: - type: Transform pos: 6.5,-48.5 parent: 12 - - uid: 24471 - components: - - type: Transform - pos: 7.5,-52.5 - parent: 12 - uid: 24473 components: - type: Transform @@ -157113,6 +159624,51 @@ entities: - type: Transform pos: -38.5,30.5 parent: 12 + - uid: 28905 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 12 + - uid: 28920 + components: + - type: Transform + pos: 12.5,-56.5 + parent: 12 + - uid: 28925 + components: + - type: Transform + pos: 35.5,-50.5 + parent: 12 + - uid: 28926 + components: + - type: Transform + pos: 30.5,-48.5 + parent: 12 + - uid: 28934 + components: + - type: Transform + pos: 36.5,-43.5 + parent: 12 + - uid: 28944 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 12 + - uid: 28947 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 12 + - uid: 28970 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 12 + - uid: 28971 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 12 - uid: 31146 components: - type: Transform @@ -157405,7 +159961,8 @@ entities: - uid: 26775 components: - type: Transform - pos: 29.510424,-21.430777 + rot: -43.98229715025713 rad + pos: 33.26136,-18.774406 parent: 12 - proto: ReagentContainerFlour entities: @@ -157582,23 +160139,11 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-6.5 parent: 12 - - uid: 7228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 12 - uid: 7269 components: - type: Transform pos: 13.5,19.5 parent: 12 - - uid: 7310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 12 - uid: 11365 components: - type: Transform @@ -157609,38 +160154,44 @@ entities: - type: Transform pos: 9.5,19.5 parent: 12 - - uid: 26639 + - uid: 26622 components: - type: Transform - pos: 9.5,0.5 + rot: 1.5707963267948966 rad + pos: 12.5,20.5 parent: 12 - - uid: 26640 + - uid: 26637 components: - type: Transform - pos: 10.5,0.5 + rot: 1.5707963267948966 rad + pos: 10.5,20.5 parent: 12 - - uid: 26672 + - uid: 26638 components: - type: Transform - pos: 11.5,0.5 + rot: 1.5707963267948966 rad + pos: 10.5,22.5 parent: 12 - - uid: 29002 + - uid: 26639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-0.5 + pos: 9.5,0.5 parent: 12 - - uid: 29003 + - uid: 26640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 + pos: 10.5,0.5 parent: 12 - - uid: 29149 + - uid: 26642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-0.5 + pos: 12.5,22.5 + parent: 12 + - uid: 26672 + components: + - type: Transform + pos: 11.5,0.5 parent: 12 - proto: ReinforcedWindow entities: @@ -157659,6 +160210,11 @@ entities: - type: Transform pos: -1.5,1.5 parent: 12 + - uid: 68 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 - uid: 69 components: - type: Transform @@ -157698,6 +160254,11 @@ entities: - type: Transform pos: -6.5,-7.5 parent: 12 + - uid: 273 + components: + - type: Transform + pos: 14.5,11.5 + parent: 12 - uid: 275 components: - type: Transform @@ -157788,12 +160349,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-16.5 parent: 12 - - uid: 369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-44.5 - parent: 12 - uid: 455 components: - type: Transform @@ -157818,12 +160373,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,0.5 parent: 12 - - uid: 510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,56.5 - parent: 12 - uid: 519 components: - type: Transform @@ -157874,21 +160423,6 @@ entities: - type: Transform pos: -34.5,-20.5 parent: 12 - - uid: 617 - components: - - type: Transform - pos: -39.5,-18.5 - parent: 12 - - uid: 618 - components: - - type: Transform - pos: -38.5,-18.5 - parent: 12 - - uid: 619 - components: - - type: Transform - pos: -37.5,-18.5 - parent: 12 - uid: 623 components: - type: Transform @@ -158066,12 +160600,6 @@ entities: - type: Transform pos: -29.5,-3.5 parent: 12 - - uid: 929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 12 - uid: 953 components: - type: Transform @@ -158198,18 +160726,6 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,6.5 parent: 12 - - uid: 1172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-54.5 - parent: 12 - - uid: 1284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-42.5 - parent: 12 - uid: 1962 components: - type: Transform @@ -158414,26 +160930,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 12 - - uid: 4110 - components: - - type: Transform - pos: 8.5,-53.5 - parent: 12 - - uid: 4111 - components: - - type: Transform - pos: 9.5,-53.5 - parent: 12 - - uid: 4112 - components: - - type: Transform - pos: 9.5,-52.5 - parent: 12 - - uid: 4113 - components: - - type: Transform - pos: 9.5,-51.5 - parent: 12 - uid: 4151 components: - type: Transform @@ -158497,12 +160993,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-24.5 parent: 12 - - uid: 4434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 12 - uid: 4449 components: - type: Transform @@ -158521,31 +161011,16 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-22.5 parent: 12 - - uid: 4459 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 12 - uid: 4468 components: - type: Transform pos: 8.5,-17.5 parent: 12 - - uid: 4470 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 12 - uid: 4471 components: - type: Transform pos: 13.5,-18.5 parent: 12 - - uid: 4477 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 12 - uid: 4581 components: - type: Transform @@ -158768,6 +161243,11 @@ entities: - type: Transform pos: 13.5,-0.5 parent: 12 + - uid: 5874 + components: + - type: Transform + pos: 49.5,59.5 + parent: 12 - uid: 5880 components: - type: Transform @@ -158779,6 +161259,11 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 12 + - uid: 5983 + components: + - type: Transform + pos: 49.5,58.5 + parent: 12 - uid: 5992 components: - type: Transform @@ -158958,11 +161443,6 @@ entities: - type: Transform pos: 26.5,-39.5 parent: 12 - - uid: 6210 - components: - - type: Transform - pos: 13.5,-54.5 - parent: 12 - uid: 6213 components: - type: Transform @@ -159093,97 +161573,6 @@ entities: - type: Transform pos: 29.5,-52.5 parent: 12 - - uid: 6247 - components: - - type: Transform - pos: 30.5,-54.5 - parent: 12 - - uid: 6249 - components: - - type: Transform - pos: 32.5,-54.5 - parent: 12 - - uid: 6250 - components: - - type: Transform - pos: 32.5,-53.5 - parent: 12 - - uid: 6251 - components: - - type: Transform - pos: 32.5,-52.5 - parent: 12 - - uid: 6252 - components: - - type: Transform - pos: 32.5,-51.5 - parent: 12 - - uid: 6253 - components: - - type: Transform - pos: 32.5,-50.5 - parent: 12 - - uid: 6254 - components: - - type: Transform - pos: 32.5,-49.5 - parent: 12 - - uid: 6255 - components: - - type: Transform - pos: 32.5,-48.5 - parent: 12 - - uid: 6256 - components: - - type: Transform - pos: 32.5,-47.5 - parent: 12 - - uid: 6257 - components: - - type: Transform - pos: 32.5,-46.5 - parent: 12 - - uid: 6258 - components: - - type: Transform - pos: 32.5,-45.5 - parent: 12 - - uid: 6288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-44.5 - parent: 12 - - uid: 6289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-44.5 - parent: 12 - - uid: 6290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-43.5 - parent: 12 - - uid: 6305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-40.5 - parent: 12 - - uid: 6306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-40.5 - parent: 12 - - uid: 6307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-40.5 - parent: 12 - uid: 6343 components: - type: Transform @@ -159214,24 +161603,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-45.5 parent: 12 - - uid: 6348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-45.5 - parent: 12 - - uid: 6349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-44.5 - parent: 12 - - uid: 6743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-52.5 - parent: 12 - uid: 6803 components: - type: Transform @@ -159298,18 +161669,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,-30.5 parent: 12 - - uid: 7483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-45.5 - parent: 12 - - uid: 7484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-44.5 - parent: 12 - uid: 7498 components: - type: Transform @@ -159527,23 +161886,11 @@ entities: - type: Transform pos: 62.5,-28.5 parent: 12 - - uid: 8070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-53.5 - parent: 12 - uid: 8239 components: - type: Transform pos: 35.5,-21.5 parent: 12 - - uid: 8248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-51.5 - parent: 12 - uid: 8295 components: - type: Transform @@ -159580,12 +161927,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-9.5 parent: 12 - - uid: 8457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-21.5 - parent: 12 - uid: 8480 components: - type: Transform @@ -159626,15 +161967,15 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,4.5 parent: 12 - - uid: 9172 + - uid: 9134 components: - type: Transform - pos: 0.5,3.5 + pos: -53.5,76.5 parent: 12 - - uid: 9227 + - uid: 9172 components: - type: Transform - pos: 42.5,-40.5 + pos: 0.5,3.5 parent: 12 - uid: 9256 components: @@ -159642,6 +161983,11 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-49.5 parent: 12 + - uid: 9257 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 12 - uid: 9263 components: - type: Transform @@ -159683,6 +162029,16 @@ entities: rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 12 + - uid: 9545 + components: + - type: Transform + pos: -50.5,77.5 + parent: 12 + - uid: 9546 + components: + - type: Transform + pos: -46.5,76.5 + parent: 12 - uid: 9571 components: - type: Transform @@ -159711,11 +162067,10 @@ entities: - type: Transform pos: 17.5,15.5 parent: 12 - - uid: 9756 + - uid: 9773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-13.5 + pos: 29.5,-29.5 parent: 12 - uid: 9868 components: @@ -160147,27 +162502,30 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-44.5 parent: 12 + - uid: 10313 + components: + - type: Transform + pos: 41.5,2.5 + parent: 12 - uid: 10324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-13.5 + pos: -60.5,-35.5 parent: 12 - uid: 10325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-22.5 + pos: -59.5,-36.5 parent: 12 - uid: 10340 components: - type: Transform - pos: 14.5,-54.5 + pos: -32.5,-15.5 parent: 12 - - uid: 10342 + - uid: 10341 components: - type: Transform - pos: 29.5,-54.5 + pos: -58.5,-37.5 parent: 12 - uid: 10572 components: @@ -160187,6 +162545,11 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,10.5 parent: 12 + - uid: 10631 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 12 - uid: 10682 components: - type: Transform @@ -160280,11 +162643,22 @@ entities: - type: Transform pos: -32.5,-45.5 parent: 12 + - uid: 10996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-31.5 + parent: 12 - uid: 10999 components: - type: Transform pos: 0.5,1.5 parent: 12 + - uid: 11019 + components: + - type: Transform + pos: 49.5,57.5 + parent: 12 - uid: 11029 components: - type: Transform @@ -160410,12 +162784,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,26.5 parent: 12 - - uid: 11259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 12 - uid: 11290 components: - type: Transform @@ -160506,6 +162874,11 @@ entities: - type: Transform pos: 55.5,24.5 parent: 12 + - uid: 11591 + components: + - type: Transform + pos: 37.5,-47.5 + parent: 12 - uid: 11624 components: - type: Transform @@ -160687,11 +163060,6 @@ entities: - type: Transform pos: 25.5,30.5 parent: 12 - - uid: 11769 - components: - - type: Transform - pos: 25.5,29.5 - parent: 12 - uid: 11770 components: - type: Transform @@ -160757,6 +163125,11 @@ entities: - type: Transform pos: 59.5,38.5 parent: 12 + - uid: 11941 + components: + - type: Transform + pos: -54.5,67.5 + parent: 12 - uid: 11946 components: - type: Transform @@ -161148,11 +163521,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,65.5 parent: 12 - - uid: 14231 - components: - - type: Transform - pos: 36.5,-44.5 - parent: 12 - uid: 14242 components: - type: Transform @@ -161961,6 +164329,26 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,47.5 parent: 12 + - uid: 17842 + components: + - type: Transform + pos: -55.5,72.5 + parent: 12 + - uid: 17858 + components: + - type: Transform + pos: -55.5,71.5 + parent: 12 + - uid: 17917 + components: + - type: Transform + pos: -53.5,67.5 + parent: 12 + - uid: 18642 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 12 - uid: 18650 components: - type: Transform @@ -162122,18 +164510,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,60.5 parent: 12 - - uid: 19270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 12 - - uid: 19278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,56.5 - parent: 12 - uid: 19281 components: - type: Transform @@ -162181,24 +164557,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-49.5 parent: 12 - - uid: 19635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,79.5 - parent: 12 - - uid: 19645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,77.5 - parent: 12 - - uid: 19649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,79.5 - parent: 12 - uid: 19650 components: - type: Transform @@ -162273,11 +164631,6 @@ entities: - type: Transform pos: -50.5,47.5 parent: 12 - - uid: 20543 - components: - - type: Transform - pos: 41.5,3.5 - parent: 12 - uid: 20778 components: - type: Transform @@ -162288,6 +164641,21 @@ entities: - type: Transform pos: -54.5,38.5 parent: 12 + - uid: 21332 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 12 + - uid: 21513 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 12 + - uid: 21674 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 12 - uid: 21868 components: - type: Transform @@ -162378,11 +164746,15 @@ entities: - type: Transform pos: 43.5,15.5 parent: 12 + - uid: 22324 + components: + - type: Transform + pos: -38.5,80.5 + parent: 12 - uid: 22326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,58.5 + pos: -36.5,80.5 parent: 12 - uid: 22400 components: @@ -162428,18 +164800,6 @@ entities: - type: Transform pos: 57.5,-7.5 parent: 12 - - uid: 23710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,61.5 - parent: 12 - - uid: 23896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,61.5 - parent: 12 - uid: 24192 components: - type: Transform @@ -162495,26 +164855,26 @@ entities: - type: Transform pos: -1.5,-29.5 parent: 12 - - uid: 24565 + - uid: 24340 components: - type: Transform - pos: 3.5,-21.5 + pos: -54.5,75.5 parent: 12 - uid: 24655 components: - type: Transform pos: 22.5,8.5 parent: 12 - - uid: 25585 + - uid: 25871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-26.5 + pos: 0.5,-29.5 parent: 12 - - uid: 25871 + - uid: 25888 components: - type: Transform - pos: 0.5,-29.5 + rot: -1.5707963267948966 rad + pos: 54.5,-44.5 parent: 12 - uid: 26257 components: @@ -162558,35 +164918,10 @@ entities: rot: 1.5707963267948966 rad pos: 59.5,-47.5 parent: 12 - - uid: 26392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-50.5 - parent: 12 - - uid: 26393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-50.5 - parent: 12 - - uid: 26394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-50.5 - parent: 12 - uid: 26395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-50.5 - parent: 12 - - uid: 26396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-50.5 + pos: -2.5,73.5 parent: 12 - uid: 26397 components: @@ -162617,33 +164952,58 @@ entities: - type: Transform pos: 33.5,-3.5 parent: 12 - - uid: 26619 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 12 - uid: 26641 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 + - uid: 26690 + components: + - type: Transform + pos: 41.5,3.5 + parent: 12 - uid: 26809 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,11.5 parent: 12 - - uid: 27039 + - uid: 26833 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,67.5 + pos: -60.5,-36.5 parent: 12 - - uid: 27243 + - uid: 26900 components: - type: Transform - pos: 41.5,2.5 + pos: -59.5,-37.5 + parent: 12 + - uid: 26921 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 12 + - uid: 26958 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 12 + - uid: 26982 + components: + - type: Transform + pos: -57.5,-11.5 + parent: 12 + - uid: 27009 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 12 + - uid: 27039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,67.5 parent: 12 - uid: 27289 components: @@ -162666,60 +165026,30 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-11.5 parent: 12 - - uid: 27398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-13.5 - parent: 12 - uid: 27399 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-11.5 parent: 12 - - uid: 27401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-13.5 - parent: 12 - uid: 27402 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-11.5 parent: 12 - - uid: 27404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-13.5 - parent: 12 - uid: 27405 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-11.5 parent: 12 - - uid: 27407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-13.5 - parent: 12 - uid: 27409 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-11.5 parent: 12 - - uid: 27410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 12 - uid: 27597 components: - type: Transform @@ -162732,17 +165062,10 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-27.5 parent: 12 - - uid: 27601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-23.5 - parent: 12 - - uid: 27603 + - uid: 27713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-25.5 + pos: -26.5,74.5 parent: 12 - uid: 27854 components: @@ -162804,6 +165127,11 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-11.5 parent: 12 + - uid: 28195 + components: + - type: Transform + pos: -20.5,-69.5 + parent: 12 - uid: 28269 components: - type: Transform @@ -162819,169 +165147,132 @@ entities: - type: Transform pos: -49.5,-18.5 parent: 12 - - uid: 28438 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 12 - - uid: 28439 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 12 - uid: 28559 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 12 - - uid: 29219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,68.5 - parent: 12 - - uid: 29231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,34.5 - parent: 12 - - uid: 29249 + - uid: 28638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,34.5 + pos: 37.5,-46.5 parent: 12 - - uid: 29250 + - uid: 28981 components: - type: Transform - pos: -27.5,62.5 + pos: -49.5,77.5 parent: 12 - - uid: 29251 + - uid: 28983 components: - type: Transform - pos: -25.5,62.5 + pos: -45.5,76.5 parent: 12 - - uid: 29256 + - uid: 28984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,66.5 + pos: -45.5,75.5 parent: 12 - - uid: 29303 + - uid: 29004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,73.5 + pos: -57.5,60.5 parent: 12 - - uid: 29319 + - uid: 29013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,73.5 + pos: -54.5,76.5 parent: 12 - - uid: 29320 + - uid: 29030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,73.5 + pos: -57.5,61.5 parent: 12 - - uid: 29321 + - uid: 29068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,73.5 + pos: -54.5,68.5 parent: 12 - - uid: 29436 + - uid: 29137 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,67.5 + pos: -41.5,74.5 parent: 12 - - uid: 29437 + - uid: 29153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,68.5 + pos: -40.5,78.5 parent: 12 - - uid: 29438 + - uid: 29219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,69.5 + rot: 1.5707963267948966 rad + pos: -25.5,68.5 parent: 12 - - uid: 29439 + - uid: 29231 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,70.5 + pos: 12.5,34.5 parent: 12 - - uid: 29440 + - uid: 29249 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,71.5 + pos: 13.5,34.5 parent: 12 - - uid: 29441 + - uid: 29250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,71.5 + pos: -27.5,62.5 parent: 12 - - uid: 29442 + - uid: 29251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,72.5 + pos: -25.5,62.5 parent: 12 - - uid: 29443 + - uid: 29256 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,72.5 + pos: -22.5,66.5 parent: 12 - - uid: 29444 + - uid: 29313 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,73.5 + pos: -42.5,74.5 parent: 12 - - uid: 29445 + - uid: 29510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,73.5 + pos: -34.5,78.5 parent: 12 - - uid: 29446 + - uid: 29610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,73.5 + pos: -25.5,77.5 parent: 12 - - uid: 29447 + - uid: 29614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,73.5 + pos: -25.5,78.5 parent: 12 - - uid: 29448 + - uid: 29615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,73.5 + pos: -27.5,80.5 parent: 12 - - uid: 29449 + - uid: 29616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,73.5 + pos: -28.5,80.5 parent: 12 - - uid: 29450 + - uid: 29617 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,73.5 + pos: -29.5,80.5 parent: 12 - uid: 29722 components: @@ -163022,11 +165313,6 @@ entities: - type: Transform pos: -21.5,-10.5 parent: 12 - - uid: 30272 - components: - - type: Transform - pos: -12.5,77.5 - parent: 12 - uid: 30274 components: - type: Transform @@ -163049,18 +165335,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,75.5 parent: 12 - - uid: 30305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,74.5 - parent: 12 - - uid: 30306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,73.5 - parent: 12 - uid: 30307 components: - type: Transform @@ -163164,16 +165438,6 @@ entities: - type: Transform pos: -31.5,-60.5 parent: 12 - - uid: 30968 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 12 - - uid: 30969 - components: - - type: Transform - pos: 5.5,-55.5 - parent: 12 - uid: 30970 components: - type: Transform @@ -163231,18 +165495,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-64.5 parent: 12 - - uid: 31169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-64.5 - parent: 12 - - uid: 31170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-64.5 - parent: 12 - uid: 31176 components: - type: Transform @@ -163288,11 +165540,6 @@ entities: - type: Transform pos: -2.5,-70.5 parent: 12 - - uid: 31383 - components: - - type: Transform - pos: 5.5,-57.5 - parent: 12 - uid: 31457 components: - type: Transform @@ -163332,38 +165579,6 @@ entities: - type: Transform pos: -63.5,-23.5 parent: 12 - - uid: 31686 - components: - - type: Transform - pos: -62.5,-18.5 - parent: 12 - - uid: 31687 - components: - - type: Transform - pos: -62.5,-17.5 - parent: 12 - - uid: 31688 - components: - - type: Transform - pos: -61.5,-17.5 - parent: 12 - - uid: 31689 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 12 - - uid: 31690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-31.5 - parent: 12 - - uid: 31691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-31.5 - parent: 12 - uid: 31692 components: - type: Transform @@ -163409,17 +165624,6 @@ entities: - type: Transform pos: -12.5,79.5 parent: 12 - - uid: 21513 - components: - - type: Transform - pos: -13.5,77.5 - parent: 12 - - uid: 30301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,77.5 - parent: 12 - uid: 30302 components: - type: Transform @@ -163596,14 +165800,19 @@ entities: - uid: 9964 components: - type: Transform - rot: -43.98229715025713 rad - pos: -4.5002747,-32.689064 + rot: -12.566370614359172 rad + pos: -4.4072175,-32.679348 parent: 12 - uid: 26050 components: - type: Transform pos: -42.5,-45.5 parent: 12 + - uid: 26810 + components: + - type: Transform + pos: -23.417446,52.500484 + parent: 12 - proto: SawElectric entities: - uid: 11312 @@ -163668,6 +165877,11 @@ entities: parent: 12 - proto: ScalpelShiv entities: + - uid: 3079 + components: + - type: Transform + pos: -22.51911,53.492798 + parent: 12 - uid: 11945 components: - type: Transform @@ -163906,11 +166120,6 @@ entities: parent: 12 - proto: Screwdriver entities: - - uid: 9237 - components: - - type: Transform - pos: 43.53388,-37.312786 - parent: 12 - uid: 13323 components: - type: Transform @@ -163940,11 +166149,6 @@ entities: - type: Transform pos: 71.5,50.5 parent: 12 - - uid: 31471 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 12 - proto: ShardGlass entities: - uid: 3520 @@ -163952,6 +166156,11 @@ entities: - type: Transform pos: -0.5,20.5 parent: 12 + - uid: 4763 + components: + - type: Transform + pos: -22.533438,55.35212 + parent: 12 - uid: 7009 components: - type: Transform @@ -164012,6 +166221,13 @@ entities: - type: Transform pos: 49.57303,47.439972 parent: 12 +- proto: SheetPlasma + entities: + - uid: 2420 + components: + - type: Transform + pos: 40.47119,2.4496126 + parent: 12 - proto: SheetPlasma1 entities: - uid: 22020 @@ -164023,19 +166239,16 @@ entities: count: 5 - proto: SheetPlasma10 entities: - - uid: 28215 + - uid: 24434 components: - type: Transform - pos: -35.41417,-37.542362 + pos: 62.5,10.5 parent: 12 - - uid: 29092 + - uid: 28215 components: - type: Transform - rot: -12.566370614359172 rad - pos: 39.49274,4.534418 + pos: -35.41417,-37.542362 parent: 12 - - type: Stack - count: 20 - proto: SheetPlasteel entities: - uid: 7311 @@ -164051,8 +166264,14 @@ entities: - uid: 23173 components: - type: Transform - rot: -6.283185307179586 rad - pos: 57.489006,-5.2227006 + rot: -43.98229715025713 rad + pos: 53.468582,-3.3849072 + parent: 12 + - uid: 26101 + components: + - type: Transform + rot: -43.98229715025713 rad + pos: 57.301918,-5.261206 parent: 12 - proto: SheetPlastic entities: @@ -164117,7 +166336,8 @@ entities: - uid: 8439 components: - type: Transform - pos: 61.5,-3.5 + rot: -43.98229715025713 rad + pos: 57.63525,-5.083999 parent: 12 - uid: 8898 components: @@ -164152,6 +166372,12 @@ entities: rot: -18.84955592153876 rad pos: 29.572147,2.9947028 parent: 12 + - uid: 25384 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 59.433964,12.527496 + parent: 12 - uid: 26547 components: - type: Transform @@ -164165,14 +166391,14 @@ entities: parent: 12 - proto: SheetUranium1 entities: - - uid: 11371 + - uid: 26534 components: - type: Transform - rot: -18.84955592153876 rad - pos: 9.582282,-13.607407 + rot: -56.54866776461632 rad + pos: 9.501114,-13.461607 parent: 12 - type: Stack - count: 10 + count: 15 - proto: ShelfBar entities: - uid: 22816 @@ -164197,11 +166423,6 @@ entities: parent: 12 - proto: Shiv entities: - - uid: 25201 - components: - - type: Transform - pos: 36.293972,-30.4844 - parent: 12 - uid: 30493 components: - type: Transform @@ -164219,13 +166440,7 @@ entities: - uid: 504 components: - type: Transform - rot: -18.84955592153876 rad - pos: 5.6112194,-61.82998 - parent: 12 - - uid: 4168 - components: - - type: Transform - pos: 59.56368,-40.504784 + pos: 5.886181,-62.15094 parent: 12 - uid: 12121 components: @@ -164335,10 +166550,10 @@ entities: parent: 12 - proto: ShuttersNormalOpen entities: - - uid: 7529 + - uid: 2721 components: - type: Transform - pos: 51.5,-4.5 + pos: 13.5,-13.5 parent: 12 - uid: 8470 components: @@ -164350,6 +166565,16 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 12 + - uid: 9613 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 12 + - uid: 9645 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 12 - uid: 10382 components: - type: Transform @@ -164415,6 +166640,11 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,8.5 parent: 12 + - uid: 16869 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 12 - uid: 18665 components: - type: Transform @@ -164515,6 +166745,21 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,25.5 parent: 12 + - uid: 19823 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 + - uid: 19852 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 12 + - uid: 19861 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 12 - uid: 21916 components: - type: Transform @@ -164577,6 +166822,11 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-23.5 parent: 12 + - uid: 27184 + components: + - type: Transform + pos: -54.5,58.5 + parent: 12 - proto: ShuttersWindowOpen entities: - uid: 18849 @@ -164991,6 +167241,36 @@ entities: - Pressed: Toggle 18857: - Pressed: Toggle + - uid: 22059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 16869: + - Pressed: Toggle + 19861: + - Pressed: Toggle + 9645: + - Pressed: Toggle + 19852: + - Pressed: Toggle + - uid: 22062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 19823: + - Pressed: Toggle + 2721: + - Pressed: Toggle + 9613: + - Pressed: Toggle - uid: 23446 components: - type: Transform @@ -165090,6 +167370,16 @@ entities: - Pressed: Open 2548: - Pressed: Open + - uid: 29314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,58.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 27184: + - Pressed: Toggle - uid: 29834 components: - type: Transform @@ -165524,6 +167814,12 @@ entities: parent: 12 - proto: SignDirectionalSolar entities: + - uid: 28224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-61.5 + parent: 12 - uid: 31019 components: - type: Transform @@ -165557,12 +167853,6 @@ entities: parent: 12 - proto: SignElectricalMed entities: - - uid: 2261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,75.5 - parent: 12 - uid: 7522 components: - type: Transform @@ -165589,29 +167879,11 @@ entities: - type: Transform pos: -55.5,13.5 parent: 12 - - uid: 20523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,68.5 - parent: 12 - uid: 22153 components: - type: Transform pos: 63.5,1.5 parent: 12 - - uid: 25392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,55.5 - parent: 12 - - uid: 25490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,75.5 - parent: 12 - uid: 27155 components: - type: Transform @@ -165653,16 +167925,10 @@ entities: parent: 12 - proto: SignEscapePods entities: - - uid: 6282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-42.5 - parent: 12 - - uid: 31266 + - uid: 29003 components: - type: Transform - pos: -17.5,-66.5 + pos: -17.5,-65.5 parent: 12 - proto: SignEVA entities: @@ -166054,6 +168320,11 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-20.5 parent: 12 + - uid: 30002 + components: + - type: Transform + pos: -37.5,73.5 + parent: 12 - proto: SignSmoking entities: - uid: 2047 @@ -166141,6 +168412,12 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,50.5 parent: 12 + - uid: 26738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-32.5 + parent: 12 - uid: 32027 components: - type: Transform @@ -166161,19 +168438,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-29.5 parent: 12 - - uid: 8428 - components: - - type: Transform - pos: 37.5,-30.5 - parent: 12 - proto: SinkWide entities: - - uid: 288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-60.5 - parent: 12 - uid: 936 components: - type: Transform @@ -166249,6 +168515,12 @@ entities: - type: Transform pos: 30.5,60.5 parent: 12 + - uid: 26064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 12 - uid: 28212 components: - type: Transform @@ -166262,32 +168534,6 @@ entities: - type: Transform pos: 54.49004,14.54105 parent: 12 -- proto: SmallLight - entities: - - uid: 13210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,57.5 - parent: 12 - - uid: 24254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,61.5 - parent: 12 - - uid: 25412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,65.5 - parent: 12 - - uid: 27184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,72.5 - parent: 12 - proto: SmartFridge entities: - uid: 8300 @@ -166347,6 +168593,26 @@ entities: - type: Transform pos: 38.5,-6.5 parent: 12 + - uid: 26871 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 12 + - uid: 26872 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 12 + - uid: 26873 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 12 + - uid: 27222 + components: + - type: Transform + pos: -19.5,-66.5 + parent: 12 - uid: 32042 components: - type: Transform @@ -166361,6 +168627,12 @@ entities: parent: 12 - proto: SmokingPipe entities: + - uid: 5235 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: -39.62392,-16.257439 + parent: 12 - uid: 17417 components: - type: Transform @@ -166392,14 +168664,13 @@ entities: - type: Transform pos: 43.38873,16.572454 parent: 12 -- proto: SodaDispenser - entities: - - uid: 8983 + - uid: 26524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-14.5 + pos: 33.465336,-10.465965 parent: 12 +- proto: SodaDispenser + entities: - uid: 15086 components: - type: Transform @@ -166411,6 +168682,18 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 12 + - uid: 16339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-32.5 + parent: 12 + - uid: 27007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-15.5 + parent: 12 - proto: SodaDispenserEmpty entities: - uid: 23451 @@ -166435,6 +168718,12 @@ entities: parent: 12 - proto: SolarPanel entities: + - uid: 948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-66.5 + parent: 12 - uid: 6353 components: - type: Transform @@ -167047,12 +169336,24 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-59.5 parent: 12 + - uid: 10816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-68.5 + parent: 12 - uid: 10823 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-58.5 parent: 12 + - uid: 10953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-68.5 + parent: 12 - uid: 13967 components: - type: Transform @@ -167633,6 +169934,192 @@ entities: - type: Transform pos: -67.5,54.5 parent: 12 + - uid: 18629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-66.5 + parent: 12 + - uid: 24456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-68.5 + parent: 12 + - uid: 24642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-62.5 + parent: 12 + - uid: 27495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-64.5 + parent: 12 + - uid: 27496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-68.5 + parent: 12 + - uid: 27497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-64.5 + parent: 12 + - uid: 27500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-64.5 + parent: 12 + - uid: 27503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-66.5 + parent: 12 + - uid: 27705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-64.5 + parent: 12 + - uid: 27710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-68.5 + parent: 12 + - uid: 27717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-66.5 + parent: 12 + - uid: 27719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-68.5 + parent: 12 + - uid: 27722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-66.5 + parent: 12 + - uid: 27723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-64.5 + parent: 12 + - uid: 27725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-64.5 + parent: 12 + - uid: 27726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-64.5 + parent: 12 + - uid: 27811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-64.5 + parent: 12 + - uid: 27812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-66.5 + parent: 12 + - uid: 27813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-62.5 + parent: 12 + - uid: 27814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-62.5 + parent: 12 + - uid: 27815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-62.5 + parent: 12 + - uid: 27821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-62.5 + parent: 12 + - uid: 27822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-62.5 + parent: 12 + - uid: 27823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-66.5 + parent: 12 + - uid: 27826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-62.5 + parent: 12 + - uid: 27837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-62.5 + parent: 12 + - uid: 27839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-62.5 + parent: 12 + - uid: 28245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-66.5 + parent: 12 + - uid: 28246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-66.5 + parent: 12 + - uid: 28306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-68.5 + parent: 12 + - uid: 29001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-62.5 + parent: 12 - uid: 31009 components: - type: Transform @@ -167692,6 +170179,36 @@ entities: parent: 12 - proto: SolarPanelBroken entities: + - uid: 2401 + components: + - type: Transform + pos: -38.5,-66.5 + parent: 12 + - uid: 24256 + components: + - type: Transform + pos: -40.5,-64.5 + parent: 12 + - uid: 27704 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 12 + - uid: 27825 + components: + - type: Transform + pos: -36.5,-68.5 + parent: 12 + - uid: 28247 + components: + - type: Transform + pos: -29.5,-68.5 + parent: 12 + - uid: 28248 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 12 - uid: 30875 components: - type: Transform @@ -167780,6 +170297,11 @@ entities: - type: Transform pos: -71.5,48.5 parent: 12 + - uid: 28242 + components: + - type: Transform + pos: -25.5,-69.5 + parent: 12 - uid: 31017 components: - type: Transform @@ -167787,6 +170309,11 @@ entities: parent: 12 - proto: SolidSecretDoor entities: + - uid: 3147 + components: + - type: Transform + pos: -53.5,55.5 + parent: 12 - uid: 28266 components: - type: Transform @@ -168758,16 +171285,6 @@ entities: parent: 12 - proto: SpawnPointStationEngineer entities: - - uid: 3469 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 12 - - uid: 4629 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - uid: 5501 components: - type: Transform @@ -168788,10 +171305,10 @@ entities: - type: Transform pos: 31.5,-19.5 parent: 12 - - uid: 9174 + - uid: 19270 components: - type: Transform - pos: 12.5,-15.5 + pos: 13.5,-23.5 parent: 12 - proto: SpawnPointTechnicalAssistant entities: @@ -168847,8 +171364,7 @@ entities: - uid: 32143 components: - type: Transform - rot: -131.94689145077115 rad - pos: -62.016247,-54.02513 + pos: -62.424545,-53.537132 parent: 12 - proto: Spoon entities: @@ -169131,18 +171647,6 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-0.5 parent: 12 - - uid: 29347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,1.5 - parent: 12 - - uid: 29348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,1.5 - parent: 12 - proto: Stairs entities: - uid: 1785 @@ -169450,6 +171954,11 @@ entities: - type: Transform pos: 44.5,2.5 parent: 12 + - uid: 19783 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 12 - uid: 26078 components: - type: Transform @@ -169505,18 +172014,6 @@ entities: - type: Transform pos: -3.517066,-12.428263 parent: 12 - - uid: 8896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.383762,-40.24519 - parent: 12 - - uid: 8897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.555637,-36.37019 - parent: 12 - uid: 9097 components: - type: Transform @@ -169849,6 +172346,36 @@ entities: rot: 3.141592653589793 rad pos: 8.585284,67.665504 parent: 12 + - uid: 25391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,76.5 + parent: 12 + - uid: 25392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,77.5 + parent: 12 + - uid: 25393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,77.5 + parent: 12 + - uid: 25399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,76.5 + parent: 12 + - uid: 25403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,76.5 + parent: 12 - uid: 26069 components: - type: Transform @@ -169872,6 +172399,23 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,35.5 parent: 12 + - uid: 29014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,76.5 + parent: 12 + - uid: 29034 + components: + - type: Transform + pos: -54.5,62.5 + parent: 12 + - uid: 29319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,76.5 + parent: 12 - uid: 31117 components: - type: Transform @@ -169892,6 +172436,12 @@ entities: parent: 12 - proto: StoolBar entities: + - uid: 6190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-15.5 + parent: 12 - uid: 14997 components: - type: Transform @@ -169952,6 +172502,17 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,48.5 parent: 12 + - uid: 24196 + components: + - type: Transform + pos: -54.5,73.5 + parent: 12 + - uid: 26503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 12 - uid: 28188 components: - type: Transform @@ -169964,47 +172525,64 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-13.5 parent: 12 + - uid: 29007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,71.5 + parent: 12 + - uid: 29503 + components: + - type: Transform + pos: -45.5,72.5 + parent: 12 + - uid: 29504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,70.5 + parent: 12 - proto: StorageCanister entities: - - uid: 397 + - uid: 240 components: - type: Transform - pos: 24.5,-0.5 + pos: 13.5,-12.5 parent: 12 - - uid: 690 + - uid: 271 components: - type: Transform - pos: -50.5,-29.5 + pos: 12.5,-12.5 parent: 12 - - uid: 706 + - uid: 397 components: - type: Transform - pos: -49.5,-29.5 + pos: 24.5,-0.5 parent: 12 - uid: 4854 components: - type: Transform pos: 24.5,1.5 parent: 12 - - uid: 20776 + - uid: 17303 components: - type: Transform - pos: 10.5,-11.5 + pos: -52.5,-32.5 parent: 12 - - uid: 20782 + - uid: 26601 components: - type: Transform - pos: 11.5,-11.5 + pos: 3.5,-18.5 parent: 12 - - uid: 20876 + - uid: 26874 components: - type: Transform - pos: 12.5,-11.5 + pos: 14.5,-12.5 parent: 12 - - uid: 26601 + - uid: 27218 components: - type: Transform - pos: 3.5,-18.5 + pos: -51.5,-32.5 parent: 12 - uid: 31052 components: @@ -170036,11 +172614,6 @@ entities: parent: 12 - proto: SubstationBasic entities: - - uid: 19 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 12 - uid: 2121 components: - type: Transform @@ -170051,11 +172624,6 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 12 - - uid: 3143 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 12 - uid: 3225 components: - type: Transform @@ -170076,6 +172644,11 @@ entities: - type: Transform pos: -11.5,-19.5 parent: 12 + - uid: 4761 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 12 - uid: 4890 components: - type: Transform @@ -170151,6 +172724,11 @@ entities: - type: Transform pos: -47.5,-43.5 parent: 12 + - uid: 29430 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 12 - uid: 30495 components: - type: Transform @@ -170170,11 +172748,21 @@ entities: parent: 12 - proto: SuitStorageEngi entities: + - uid: 214 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 12 - uid: 2287 components: - type: Transform pos: 62.5,-3.5 parent: 12 + - uid: 4525 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 12 - uid: 4553 components: - type: Transform @@ -170190,11 +172778,21 @@ entities: - type: Transform pos: 29.5,-13.5 parent: 12 + - uid: 4708 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 12 - uid: 9173 components: - type: Transform pos: 60.5,-3.5 parent: 12 + - uid: 26851 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 12 - proto: SuitStorageEVA entities: - uid: 22129 @@ -170227,13 +172825,6 @@ entities: - type: Transform pos: -9.5,4.5 parent: 12 -- proto: SuitStorageEVAEmergency - entities: - - uid: 30536 - components: - - type: Transform - pos: -17.5,-68.5 - parent: 12 - proto: SuitStorageEVAPrisoner entities: - uid: 19835 @@ -170329,17 +172920,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: HOP front desk - - uid: 3974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-22.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: RD's room - uid: 4765 components: - type: Transform @@ -170371,6 +172951,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: Bridge east + - uid: 6301 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Tech vault - uid: 9660 components: - type: Transform @@ -170512,27 +173102,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI core - - uid: 28804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-19.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Server room - - uid: 28865 + - uid: 26204 components: - type: Transform - pos: -0.5,-15.5 + pos: 4.5,7.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: AI upload 2 + id: AI exterior - uid: 31748 components: - type: Transform @@ -170571,146 +173150,188 @@ entities: id: AI core power room - proto: SurveillanceCameraEngineering entities: - - uid: 4167 + - uid: 4667 components: - type: Transform - pos: 36.5,-39.5 + rot: -1.5707963267948966 rad + pos: 29.5,-1.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Secure techvault - - uid: 4667 + id: Atmos lockers/engi hallway + - uid: 7157 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-1.5 + pos: 1.5,17.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Atmos lockers/engi hallway - - uid: 4715 + id: TEG West + - uid: 9821 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineer locker room + - uid: 9823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering front + - uid: 19166 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,1.5 + pos: 57.5,10.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engi hallway AME - - uid: 4761 + id: Tesla Storage + - uid: 19311 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,16.5 + pos: 62.5,7.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: TEG East - - uid: 6774 + id: PA + - uid: 21894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,8.5 + pos: 32.5,-15.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Tesla containment - - uid: 7157 + id: Engi hallway southeast + - uid: 24215 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,17.5 + pos: 20.5,-21.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: TEG West - - uid: 8416 + id: Engineering entrance + - uid: 26102 + components: + - type: Transform + pos: 52.5,4.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break room + - uid: 26133 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-37.5 + pos: 48.5,1.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Southeast tech vault - - uid: 9821 + id: Containment entrance + - uid: 26139 components: - type: Transform - pos: 33.5,-23.5 + rot: -1.5707963267948966 rad + pos: 64.5,8.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineer locker room - - uid: 9823 + id: Tesla North + - uid: 26533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-19.5 + rot: -1.5707963267948966 rad + pos: 45.5,4.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering front - - uid: 19166 + id: Station anchor + - uid: 26535 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,10.5 + pos: 64.5,0.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Tesla Storage - - uid: 19311 + id: Tesla South + - uid: 26549 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,7.5 + pos: 58.5,-3.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: PA - - uid: 21894 + id: Containment control room + - uid: 26551 components: - type: Transform - pos: 32.5,-15.5 + pos: 61.5,-3.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engi hallway southeast - - uid: 24215 + id: Containment airlock + - uid: 26553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 + rot: 1.5707963267948966 rad + pos: 16.5,16.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering entrance + id: TEG East + - uid: 26646 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME hallway - uid: 27001 components: - type: Transform @@ -170896,16 +173517,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway north A - - uid: 3031 - components: - - type: Transform - pos: -47.5,67.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Roller rink - uid: 3061 components: - type: Transform @@ -170960,17 +173571,28 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway Northeast - - uid: 9632 + - uid: 7059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-37.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 2 + - uid: 7270 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-46.5 + pos: 31.5,-51.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Evac east + id: South evac A - uid: 9836 components: - type: Transform @@ -171099,17 +173721,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Toolshed - - uid: 24193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,58.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway NE 1 - uid: 24200 components: - type: Transform @@ -171143,6 +173754,16 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Disposals + - uid: 26895 + components: + - type: Transform + pos: 49.5,62.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Northeast evac pod - uid: 28427 components: - type: Transform @@ -171165,39 +173786,39 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Tri-department hallway - - uid: 28813 + - uid: 28815 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-37.5 + pos: 15.5,-30.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Northeast evac - - uid: 28815 + id: Cat zoo + - uid: 28821 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-30.5 + pos: -7.5,51.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Cat zoo - - uid: 28821 + id: Cryosleep + - uid: 28927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,51.5 + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Cryosleep + id: South Evac B - uid: 31500 components: - type: Transform @@ -171219,16 +173840,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Crossroad - - uid: 31746 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Ship construction bay - uid: 31749 components: - type: Transform @@ -171251,28 +173862,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Gorilla and penguin enclosures - - uid: 31751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,61.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Northwest maint dock - - uid: 31762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-24.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Southwest maint dock - uid: 32105 components: - type: Transform @@ -171286,17 +173875,6 @@ entities: id: Project room - proto: SurveillanceCameraMedical entities: - - uid: 2983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-51.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Gene lab - uid: 3961 components: - type: Transform @@ -171469,7 +174047,7 @@ entities: parent: 12 - proto: SurveillanceCameraRouterScience entities: - - uid: 21917 + - uid: 3077 components: - type: Transform pos: -39.5,-21.5 @@ -171538,17 +174116,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Science front desk - - uid: 3977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-21.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Artifact room north - uid: 4129 components: - type: Transform @@ -171570,6 +174137,17 @@ entities: - SurveillanceCameraScience nameSet: True id: Robotics + - uid: 26799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,59.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science checkpoint - uid: 28803 components: - type: Transform @@ -171735,27 +174313,28 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Detective's office - - uid: 29287 + - uid: 28790 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,66.5 + pos: -48.5,58.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Shooting range - - uid: 29288 + id: Brig 2 + - uid: 29287 components: - type: Transform - pos: -26.5,58.5 + rot: -1.5707963267948966 rad + pos: -29.5,66.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Prisoner EVA storage + id: Shooting range - uid: 29289 components: - type: Transform @@ -171767,37 +174346,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Security evac pod and airlock - - uid: 31752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,72.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory exterior maints - - uid: 31753 - components: - - type: Transform - pos: -41.5,74.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory exterior space - - uid: 31754 - components: - - type: Transform - pos: -30.5,74.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory exterior space two - proto: SurveillanceCameraService entities: - uid: 10 @@ -171831,16 +174379,6 @@ entities: - SurveillanceCameraService nameSet: True id: Botany north - - uid: 5235 - components: - - type: Transform - pos: 7.5,-52.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor's room south - uid: 12287 components: - type: Transform @@ -172042,17 +174580,6 @@ entities: - SurveillanceCameraService nameSet: True id: Zookeeper's room - - uid: 28817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Penguin zoo - uid: 28818 components: - type: Transform @@ -172108,17 +174635,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Salvaging platform - - uid: 9828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-43.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage station dock - uid: 9829 components: - type: Transform @@ -172173,17 +174689,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo break room - - uid: 28824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-36.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage airlock - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 21981 @@ -172254,7 +174759,8 @@ entities: - uid: 29598 components: - type: Transform - pos: -43.46191,71.58315 + rot: -6.283185307179586 rad + pos: -50.39034,76.4461 parent: 12 - proto: Syringe entities: @@ -172295,6 +174801,12 @@ entities: parent: 12 - proto: Table entities: + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-29.5 + parent: 12 - uid: 508 components: - type: Transform @@ -172401,11 +174913,6 @@ entities: - type: Transform pos: -42.5,-41.5 parent: 12 - - uid: 2112 - components: - - type: Transform - pos: -43.5,72.5 - parent: 12 - uid: 2118 components: - type: Transform @@ -172446,6 +174953,17 @@ entities: rot: 3.141592653589793 rad pos: 31.5,22.5 parent: 12 + - uid: 2399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-24.5 + parent: 12 + - uid: 2418 + components: + - type: Transform + pos: 40.5,3.5 + parent: 12 - uid: 2472 components: - type: Transform @@ -172594,6 +175112,12 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-24.5 parent: 12 + - uid: 4540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 12 - uid: 4556 components: - type: Transform @@ -172630,11 +175154,6 @@ entities: - type: Transform pos: 8.5,-11.5 parent: 12 - - uid: 4851 - components: - - type: Transform - pos: 29.5,-8.5 - parent: 12 - uid: 4913 components: - type: Transform @@ -172690,11 +175209,6 @@ entities: - type: Transform pos: 12.5,-19.5 parent: 12 - - uid: 5513 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 12 - uid: 5515 components: - type: Transform @@ -172715,6 +175229,12 @@ entities: - type: Transform pos: 21.5,-23.5 parent: 12 + - uid: 5865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,52.5 + parent: 12 - uid: 5897 components: - type: Transform @@ -172750,6 +175270,12 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 12 + - uid: 6247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-24.5 + parent: 12 - uid: 6279 components: - type: Transform @@ -172771,6 +175297,12 @@ entities: - type: Transform pos: -0.5,-15.5 parent: 12 + - uid: 7717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,53.5 + parent: 12 - uid: 8224 components: - type: Transform @@ -172787,11 +175319,6 @@ entities: - type: Transform pos: 58.5,-29.5 parent: 12 - - uid: 8500 - components: - - type: Transform - pos: 55.5,-32.5 - parent: 12 - uid: 8501 components: - type: Transform @@ -172817,10 +175344,10 @@ entities: - type: Transform pos: 2.5,11.5 parent: 12 - - uid: 9077 + - uid: 9079 components: - type: Transform - pos: 38.5,-31.5 + pos: 41.5,-38.5 parent: 12 - uid: 9405 components: @@ -173101,11 +175628,6 @@ entities: - type: Transform pos: 2.5,-66.5 parent: 12 - - uid: 14954 - components: - - type: Transform - pos: 43.5,-39.5 - parent: 12 - uid: 15090 components: - type: Transform @@ -173293,6 +175815,12 @@ entities: rot: 3.141592653589793 rad pos: -48.5,36.5 parent: 12 + - uid: 18643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-29.5 + parent: 12 - uid: 18868 components: - type: Transform @@ -173460,6 +175988,12 @@ entities: - type: Transform pos: -42.5,56.5 parent: 12 + - uid: 20876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-30.5 + parent: 12 - uid: 20879 components: - type: Transform @@ -173509,16 +176043,6 @@ entities: - type: Transform pos: -29.5,21.5 parent: 12 - - uid: 21673 - components: - - type: Transform - pos: 43.5,-37.5 - parent: 12 - - uid: 21674 - components: - - type: Transform - pos: 42.5,-37.5 - parent: 12 - uid: 21675 components: - type: Transform @@ -173703,6 +176227,11 @@ entities: - type: Transform pos: 3.5,57.5 parent: 12 + - uid: 23092 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 12 - uid: 23421 components: - type: Transform @@ -174049,6 +176578,24 @@ entities: - type: Transform pos: -22.5,-9.5 parent: 12 + - uid: 26732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-32.5 + parent: 12 + - uid: 26748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-31.5 + parent: 12 + - uid: 26831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,52.5 + parent: 12 - uid: 27252 components: - type: Transform @@ -174097,15 +176644,40 @@ entities: - type: Transform pos: -2.5,-0.5 parent: 12 + - uid: 29015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,72.5 + parent: 12 + - uid: 29023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,67.5 + parent: 12 - uid: 29180 components: - type: Transform pos: 54.5,60.5 parent: 12 - - uid: 29597 + - uid: 29425 components: - type: Transform - pos: -43.5,71.5 + rot: 3.141592653589793 rad + pos: -50.5,67.5 + parent: 12 + - uid: 29505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,71.5 + parent: 12 + - uid: 29506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,76.5 parent: 12 - uid: 29967 components: @@ -174195,11 +176767,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-0.5 parent: 12 - - uid: 31674 - components: - - type: Transform - pos: -62.5,-24.5 - parent: 12 - uid: 31813 components: - type: Transform @@ -174208,6 +176775,11 @@ entities: parent: 12 - proto: TableCarpet entities: + - uid: 19680 + components: + - type: Transform + pos: 36.5,-46.5 + parent: 12 - uid: 22653 components: - type: Transform @@ -174374,10 +176946,10 @@ entities: parent: 12 - proto: TableFrame entities: - - uid: 17599 + - uid: 27003 components: - type: Transform - pos: 38.5,-32.5 + pos: -55.5,-13.5 parent: 12 - uid: 30485 components: @@ -174645,11 +177217,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-38.5 parent: 12 - - uid: 8930 - components: - - type: Transform - pos: 49.5,-30.5 - parent: 12 - uid: 8938 components: - type: Transform @@ -175119,6 +177686,12 @@ entities: parent: 12 - proto: TableWood entities: + - uid: 1880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,59.5 + parent: 12 - uid: 1995 components: - type: Transform @@ -175147,6 +177720,11 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-60.5 parent: 12 + - uid: 3064 + components: + - type: Transform + pos: -53.5,61.5 + parent: 12 - uid: 3792 components: - type: Transform @@ -175168,15 +177746,17 @@ entities: - type: Transform pos: 17.5,49.5 parent: 12 - - uid: 6789 + - uid: 6189 components: - type: Transform - pos: -38.5,-23.5 + rot: 1.5707963267948966 rad + pos: -57.5,-15.5 parent: 12 - - uid: 6790 + - uid: 6191 components: - type: Transform - pos: -38.5,-24.5 + rot: -1.5707963267948966 rad + pos: -57.5,-16.5 parent: 12 - uid: 6800 components: @@ -175188,6 +177768,11 @@ entities: - type: Transform pos: 11.5,-35.5 parent: 12 + - uid: 7484 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 12 - uid: 7840 components: - type: Transform @@ -175693,35 +178278,38 @@ entities: - type: Transform pos: -23.5,-60.5 parent: 12 + - uid: 27000 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 12 - uid: 27063 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-11.5 parent: 12 - - uid: 27412 + - uid: 27115 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-12.5 + pos: -52.5,-14.5 parent: 12 - - uid: 28194 + - uid: 27407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-13.5 + pos: -55.5,-12.5 parent: 12 - - uid: 28195 + - uid: 27412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-13.5 + rot: 1.5707963267948966 rad + pos: -52.5,-12.5 parent: 12 - - uid: 28202 + - uid: 27502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-14.5 + pos: -54.5,61.5 parent: 12 - uid: 28203 components: @@ -175729,6 +178317,21 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,-14.5 parent: 12 + - uid: 29178 + components: + - type: Transform + pos: -55.5,61.5 + parent: 12 + - uid: 29179 + components: + - type: Transform + pos: -53.5,63.5 + parent: 12 + - uid: 30034 + components: + - type: Transform + pos: -53.5,54.5 + parent: 12 - uid: 30285 components: - type: Transform @@ -175845,26 +178448,26 @@ entities: parent: 12 - proto: TegCenter entities: - - uid: 12047 + - uid: 4969 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 11.5,15.5 parent: 12 - proto: TegCirculator entities: - - uid: 3132 + - uid: 23175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,15.5 + pos: 12.5,15.5 parent: 12 - type: PointLight color: '#FF3300FF' - - uid: 11944 + - uid: 26652 components: - type: Transform - pos: 12.5,15.5 + rot: 3.141592653589793 rad + pos: 10.5,15.5 parent: 12 - type: PointLight color: '#FF3300FF' @@ -175878,7 +178481,7 @@ entities: - uid: 30021 components: - type: Transform - pos: 42.55103,-37.305542 + pos: 41.658985,-38.227173 parent: 12 - proto: TelecomServerFilledCargo entities: @@ -175936,103 +178539,87 @@ entities: - type: Transform pos: 36.5,-7.5 parent: 12 -- proto: TeslaCoil +- proto: TeslaCoilFlatpack entities: - - uid: 6741 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 62.5,10.5 - parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 7152 + - uid: 24193 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 62.5,12.5 - parent: 12 + parent: 24085 - type: Physics - bodyType: Dynamic - - uid: 10923 + canCollide: False + - type: InsideEntityStorage + - uid: 24218 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 61.5,11.5 - parent: 12 + parent: 24085 - type: Physics - bodyType: Dynamic - - uid: 11019 + canCollide: False + - type: InsideEntityStorage + - uid: 24223 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 62.5,11.5 - parent: 12 + parent: 24085 - type: Physics - bodyType: Dynamic - - uid: 11039 + canCollide: False + - type: InsideEntityStorage + - uid: 24224 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 61.5,10.5 - parent: 12 + parent: 24085 - type: Physics - bodyType: Dynamic - - uid: 11435 + canCollide: False + - type: InsideEntityStorage + - uid: 24225 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 61.5,12.5 - parent: 12 + parent: 24085 - type: Physics - bodyType: Dynamic + canCollide: False + - type: InsideEntityStorage - proto: TeslaGenerator entities: - - uid: 4988 + - uid: 24322 components: - type: Transform - pos: 60.5,10.5 + pos: 60.5,12.5 parent: 12 -- proto: TeslaGroundingRod +- proto: TeslaGroundingRodFlatpack entities: - - uid: 5528 + - uid: 25027 components: - type: Transform - anchored: False - pos: 59.5,12.5 - parent: 12 + parent: 24702 - type: Physics - bodyType: Dynamic - - uid: 11304 + canCollide: False + - type: InsideEntityStorage + - uid: 25038 components: - type: Transform - anchored: False - pos: 59.5,11.5 - parent: 12 + parent: 24702 - type: Physics - bodyType: Dynamic - - uid: 15687 + canCollide: False + - type: InsideEntityStorage + - uid: 25101 components: - type: Transform - anchored: False - pos: 60.5,12.5 - parent: 12 + parent: 24702 - type: Physics - bodyType: Dynamic - - uid: 16349 + canCollide: False + - type: InsideEntityStorage + - uid: 25104 components: - type: Transform - anchored: False - pos: 60.5,11.5 - parent: 12 + parent: 24702 - type: Physics - bodyType: Dynamic + canCollide: False + - type: InsideEntityStorage + - uid: 25195 + components: + - type: Transform + parent: 24702 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ThermomachineFreezerMachineCircuitBoard entities: - uid: 11244 @@ -176112,12 +178699,6 @@ entities: parent: 12 - proto: ToiletDirtyWater entities: - - uid: 2845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-30.5 - parent: 12 - uid: 4218 components: - type: Transform @@ -176171,6 +178752,11 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,54.5 parent: 12 + - uid: 26160 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 12 - proto: ToiletEmpty entities: - uid: 4220 @@ -176234,11 +178820,6 @@ entities: - type: Transform pos: 33.354294,-17.272806 parent: 12 - - uid: 5911 - components: - - type: Transform - pos: 33.33867,-18.366556 - parent: 12 - uid: 8880 components: - type: Transform @@ -176320,6 +178901,16 @@ entities: - type: Transform pos: 9.344754,68.50202 parent: 12 + - uid: 26804 + components: + - type: Transform + pos: -25.567787,56.37359 + parent: 12 + - uid: 29501 + components: + - type: Transform + pos: -39.568047,77.519104 + parent: 12 - proto: ToolboxGoldFilled entities: - uid: 15844 @@ -176354,12 +178945,8 @@ entities: - uid: 5912 components: - type: Transform - pos: 33.30742,-20.257181 - parent: 12 - - uid: 5913 - components: - - type: Transform - pos: 33.24492,-19.304056 + rot: -43.98229715025713 rad + pos: 33.372475,-18.152294 parent: 12 - uid: 8875 components: @@ -176427,19 +179014,10 @@ entities: parent: 12 - proto: ToyAmongPequeno entities: - - uid: 31361 - components: - - type: MetaData - name: among pequeña impostora - - type: Transform - rot: -12.566370614359172 rad - pos: -35.380093,-17.238117 - parent: 12 - - uid: 31362 + - uid: 21968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.80602,-17.76935 + pos: -35.497643,-17.508585 parent: 12 - proto: ToyFigurineAtmosTech entities: @@ -176701,6 +179279,11 @@ entities: parent: 12 - proto: ToyRubberDuck entities: + - uid: 5249 + components: + - type: Transform + pos: -39.435356,-15.409752 + parent: 12 - uid: 22045 components: - type: Transform @@ -176751,6 +179334,11 @@ entities: parent: 12 - proto: TrashBakedBananaPeel entities: + - uid: 26132 + components: + - type: Transform + pos: -1.5,21.5 + parent: 12 - uid: 31148 components: - type: Transform @@ -176769,8 +179357,7 @@ entities: desc: You have no idea what masochist would make such a thing. name: modern art - type: Transform - rot: 1.5113994777937734E-10 rad - pos: 46.501263,-40.49688 + pos: 46.452984,-40.49026 parent: 12 - uid: 9991 components: @@ -177316,6 +179903,45 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 29625 + components: + - type: Transform + pos: -26.5,77.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 27716: + - Left: Forward + - Right: Reverse + - Middle: Off + 23177: + - Left: Forward + - Right: Reverse + - Middle: Off + 27498: + - Left: Forward + - Right: Reverse + - Middle: Off + 27040: + - Left: Forward + - Right: Reverse + - Middle: Off + 23122: + - Left: Forward + - Right: Reverse + - Middle: Off + 23700: + - Left: Forward + - Right: Reverse + - Middle: Off + 22952: + - Left: Forward + - Right: Reverse + - Middle: Off + 27329: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 2699 @@ -177451,6 +180077,11 @@ entities: - type: Transform pos: 27.5,46.5 parent: 12 + - uid: 27219 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 12 - proto: VendingMachineCargoDrobe entities: - uid: 10660 @@ -177726,10 +180357,10 @@ entities: parent: 12 - proto: VendingMachineEngivend entities: - - uid: 5521 + - uid: 10144 components: - type: Transform - pos: 8.5,-16.5 + pos: 16.5,-19.5 parent: 12 - uid: 27006 components: @@ -177851,6 +180482,13 @@ entities: - type: Transform pos: -11.468703,-21.51239 parent: 12 +- proto: VendingMachineRestockHappyHonk + entities: + - uid: 4897 + components: + - type: Transform + pos: -41.49812,-15.516537 + parent: 12 - proto: VendingMachineRestockRobustSoftdrinks entities: - uid: 12279 @@ -177924,6 +180562,11 @@ entities: - type: Transform pos: -28.5,50.5 parent: 12 + - uid: 29019 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 12 - proto: VendingMachineSnack entities: - uid: 14990 @@ -177979,6 +180622,11 @@ entities: parent: 12 - proto: VendingMachineSovietSoda entities: + - uid: 4481 + components: + - type: Transform + pos: 47.5,1.5 + parent: 12 - uid: 14953 components: - type: Transform @@ -178005,10 +180653,10 @@ entities: parent: 12 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 27384 + - uid: 26870 components: - type: Transform - pos: 58.5,-4.5 + pos: 10.5,-13.5 parent: 12 - proto: VendingMachineTankDispenserEVA entities: @@ -178032,6 +180680,11 @@ entities: - type: Transform pos: -44.5,50.5 parent: 12 + - uid: 25933 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 12 - uid: 27024 components: - type: Transform @@ -178066,11 +180719,6 @@ entities: - type: Transform pos: 46.5,-31.5 parent: 12 - - uid: 9223 - components: - - type: Transform - pos: 43.5,-38.5 - parent: 12 - uid: 12630 components: - type: Transform @@ -178167,6 +180815,11 @@ entities: - type: Transform pos: -4.5,0.5 parent: 12 + - uid: 21 + components: + - type: Transform + pos: -20.5,-65.5 + parent: 12 - uid: 27 components: - type: Transform @@ -178304,11 +180957,6 @@ entities: - type: Transform pos: -31.5,12.5 parent: 12 - - uid: 80 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 12 - uid: 95 components: - type: Transform @@ -178601,12 +181249,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-16.5 parent: 12 - - uid: 185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-16.5 - parent: 12 - uid: 186 components: - type: Transform @@ -178667,12 +181309,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-16.5 parent: 12 - - uid: 203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 12 - uid: 204 components: - type: Transform @@ -178690,54 +181326,6 @@ entities: - type: Transform pos: 7.5,27.5 parent: 12 - - uid: 211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 12 - - uid: 212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-20.5 - parent: 12 - - uid: 213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 12 - - uid: 214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 12 - - uid: 215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 12 - - uid: 216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 12 - - uid: 217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 12 - - uid: 219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 12 - uid: 227 components: - type: Transform @@ -178748,11 +181336,6 @@ entities: - type: Transform pos: -55.5,13.5 parent: 12 - - uid: 240 - components: - - type: Transform - pos: -7.5,-19.5 - parent: 12 - uid: 249 components: - type: Transform @@ -178769,6 +181352,11 @@ entities: - type: Transform pos: 39.5,-9.5 parent: 12 + - uid: 369 + components: + - type: Transform + pos: -20.5,-66.5 + parent: 12 - uid: 376 components: - type: Transform @@ -178936,18 +181524,6 @@ entities: - type: Transform pos: -13.5,-25.5 parent: 12 - - uid: 564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-17.5 - parent: 12 - - uid: 566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-14.5 - parent: 12 - uid: 569 components: - type: Transform @@ -179076,6 +181652,12 @@ entities: - type: Transform pos: -40.5,-18.5 parent: 12 + - uid: 615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-33.5 + parent: 12 - uid: 630 components: - type: Transform @@ -179119,11 +181701,6 @@ entities: - type: Transform pos: -31.5,-33.5 parent: 12 - - uid: 683 - components: - - type: Transform - pos: 32.5,-11.5 - parent: 12 - uid: 685 components: - type: Transform @@ -179229,23 +181806,11 @@ entities: - type: Transform pos: -56.5,22.5 parent: 12 - - uid: 745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 12 - - uid: 746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 12 - - uid: 750 + - uid: 747 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-13.5 + pos: -60.5,-31.5 parent: 12 - uid: 751 components: @@ -179253,12 +181818,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-20.5 parent: 12 - - uid: 773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 12 - uid: 775 components: - type: Transform @@ -179355,12 +181914,6 @@ entities: - type: Transform pos: -46.5,-54.5 parent: 12 - - uid: 948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-35.5 - parent: 12 - uid: 949 components: - type: Transform @@ -179461,12 +182014,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,50.5 parent: 12 - - uid: 1165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-17.5 - parent: 12 - uid: 1166 components: - type: Transform @@ -179479,40 +182026,16 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-17.5 parent: 12 - - uid: 1169 - components: - - type: Transform - pos: -54.5,-37.5 - parent: 12 - - uid: 1316 + - uid: 1285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-36.5 + pos: 52.5,-38.5 parent: 12 - uid: 1356 components: - type: Transform pos: 25.5,-11.5 parent: 12 - - uid: 1357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-36.5 - parent: 12 - - uid: 1375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-36.5 - parent: 12 - - uid: 1484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-31.5 - parent: 12 - uid: 1501 components: - type: Transform @@ -179523,6 +182046,11 @@ entities: - type: Transform pos: 26.5,-6.5 parent: 12 + - uid: 1552 + components: + - type: Transform + pos: 15.5,12.5 + parent: 12 - uid: 1556 components: - type: Transform @@ -179539,12 +182067,6 @@ entities: - type: Transform pos: -38.5,61.5 parent: 12 - - uid: 1755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-32.5 - parent: 12 - uid: 1840 components: - type: Transform @@ -179553,14 +182075,18 @@ entities: - uid: 1877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,73.5 + pos: -57.5,62.5 parent: 12 - uid: 1966 components: - type: Transform pos: 26.5,-11.5 parent: 12 + - uid: 1968 + components: + - type: Transform + pos: 51.5,-38.5 + parent: 12 - uid: 1991 components: - type: Transform @@ -179572,12 +182098,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,2.5 parent: 12 - - uid: 2032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,73.5 - parent: 12 - uid: 2051 components: - type: Transform @@ -179589,18 +182109,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,11.5 parent: 12 - - uid: 2078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,73.5 - parent: 12 - - uid: 2148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,73.5 - parent: 12 - uid: 2151 components: - type: Transform @@ -179646,6 +182154,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 12 + - uid: 2261 + components: + - type: Transform + pos: -54.5,64.5 + parent: 12 - uid: 2267 components: - type: Transform @@ -179681,12 +182194,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 12 - - uid: 2325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,73.5 - parent: 12 - uid: 2328 components: - type: Transform @@ -179698,6 +182205,18 @@ entities: - type: Transform pos: 39.5,-11.5 parent: 12 + - uid: 2397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 12 + - uid: 2412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 12 - uid: 2451 components: - type: Transform @@ -179789,11 +182308,6 @@ entities: - type: Transform pos: 26.5,0.5 parent: 12 - - uid: 2865 - components: - - type: Transform - pos: 5.5,-53.5 - parent: 12 - uid: 2875 components: - type: Transform @@ -179811,6 +182325,11 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,11.5 parent: 12 + - uid: 2891 + components: + - type: Transform + pos: -55.5,64.5 + parent: 12 - uid: 2935 components: - type: Transform @@ -179883,11 +182402,33 @@ entities: - type: Transform pos: -49.5,-52.5 parent: 12 + - uid: 3122 + components: + - type: Transform + pos: -57.5,58.5 + parent: 12 + - uid: 3148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,56.5 + parent: 12 - uid: 3158 components: - type: Transform pos: -10.5,3.5 parent: 12 + - uid: 3199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,57.5 + parent: 12 + - uid: 3469 + components: + - type: Transform + pos: 15.5,13.5 + parent: 12 - uid: 3516 components: - type: Transform @@ -179922,21 +182463,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 12 - - uid: 4013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,11.5 - parent: 12 - - uid: 4103 - components: - - type: Transform - pos: 9.5,-50.5 - parent: 12 - - uid: 4105 + - uid: 4109 components: - type: Transform - pos: 7.5,-53.5 + rot: 1.5707963267948966 rad + pos: -37.5,-18.5 parent: 12 - uid: 4386 components: @@ -179981,10 +182512,15 @@ entities: - type: Transform pos: -41.5,-54.5 parent: 12 + - uid: 4423 + components: + - type: Transform + pos: -49.5,56.5 + parent: 12 - uid: 4478 components: - type: Transform - pos: 14.5,-13.5 + pos: 7.5,-16.5 parent: 12 - uid: 4526 components: @@ -179997,12 +182533,6 @@ entities: - type: Transform pos: -47.5,-54.5 parent: 12 - - uid: 4531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-15.5 - parent: 12 - uid: 4533 components: - type: Transform @@ -180097,27 +182627,12 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-3.5 parent: 12 - - uid: 4681 - components: - - type: Transform - pos: 10.5,22.5 - parent: 12 - uid: 4682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 12 - - uid: 4683 - components: - - type: Transform - pos: 12.5,20.5 - parent: 12 - - uid: 4684 - components: - - type: Transform - pos: 10.5,20.5 - parent: 12 - uid: 4685 components: - type: Transform @@ -180193,6 +182708,11 @@ entities: rot: 3.141592653589793 rad pos: 23.5,8.5 parent: 12 + - uid: 4959 + components: + - type: Transform + pos: -55.5,70.5 + parent: 12 - uid: 4960 components: - type: Transform @@ -180304,12 +182824,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 12 - - uid: 5078 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,1.5 - parent: 12 - uid: 5099 components: - type: Transform @@ -180358,41 +182872,18 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-10.5 parent: 12 - - uid: 5170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 12 - uid: 5172 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-12.5 parent: 12 - - uid: 5175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 12 - - uid: 5176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 12 - uid: 5189 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-5.5 parent: 12 - - uid: 5190 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 12 - uid: 5220 components: - type: Transform @@ -180451,23 +182942,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-16.5 parent: 12 - - uid: 5273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 12 - - uid: 5313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-50.5 - parent: 12 - - uid: 5365 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 12 - uid: 5391 components: - type: Transform @@ -180603,18 +183077,6 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 12 - - uid: 5618 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-17.5 - parent: 12 - - uid: 5620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-15.5 - parent: 12 - uid: 5628 components: - type: Transform @@ -180649,11 +183111,6 @@ entities: - type: Transform pos: 13.5,6.5 parent: 12 - - uid: 5820 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 12 - uid: 5830 components: - type: Transform @@ -180688,6 +183145,23 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-47.5 parent: 12 + - uid: 5911 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 12 + - uid: 5916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 12 + - uid: 5927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-32.5 + parent: 12 - uid: 5950 components: - type: Transform @@ -180743,11 +183217,6 @@ entities: - type: Transform pos: 8.5,-4.5 parent: 12 - - uid: 6080 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 12 - uid: 6081 components: - type: Transform @@ -180768,39 +183237,22 @@ entities: - type: Transform pos: 26.5,2.5 parent: 12 - - uid: 6273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-40.5 - parent: 12 - - uid: 6277 - components: - - type: Transform - pos: 36.5,-40.5 - parent: 12 - - uid: 6278 - components: - - type: Transform - pos: 36.5,-41.5 - parent: 12 - - uid: 6298 + - uid: 6252 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-41.5 + pos: 29.5,-55.5 parent: 12 - - uid: 6299 + - uid: 6273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-40.5 + rot: 1.5707963267948966 rad + pos: -61.5,-16.5 parent: 12 - - uid: 6317 + - uid: 6288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-40.5 + pos: -17.5,-67.5 parent: 12 - uid: 6327 components: @@ -180808,12 +183260,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 12 - - uid: 6328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 12 - uid: 6329 components: - type: Transform @@ -180844,10 +183290,11 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-41.5 parent: 12 - - uid: 6678 + - uid: 6338 components: - type: Transform - pos: 32.5,-44.5 + rot: 1.5707963267948966 rad + pos: 54.5,-43.5 parent: 12 - uid: 6762 components: @@ -181022,30 +183469,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-38.5 parent: 12 - - uid: 7423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-39.5 - parent: 12 - - uid: 7424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-39.5 - parent: 12 - - uid: 7425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-39.5 - parent: 12 - - uid: 7426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-39.5 - parent: 12 - uid: 7427 components: - type: Transform @@ -181088,12 +183511,6 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-33.5 parent: 12 - - uid: 7435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-32.5 - parent: 12 - uid: 7436 components: - type: Transform @@ -181124,12 +183541,6 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-41.5 parent: 12 - - uid: 7480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-43.5 - parent: 12 - uid: 7487 components: - type: Transform @@ -181522,6 +183933,18 @@ entities: - type: Transform pos: 39.5,-12.5 parent: 12 + - uid: 8248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-57.5 + parent: 12 + - uid: 8336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-43.5 + parent: 12 - uid: 8438 components: - type: Transform @@ -181533,11 +183956,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 12 - - uid: 8447 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 12 - uid: 8450 components: - type: Transform @@ -181594,16 +184012,39 @@ entities: - type: Transform pos: 44.5,-8.5 parent: 12 + - uid: 8847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-54.5 + parent: 12 - uid: 8852 components: - type: Transform pos: 25.5,4.5 parent: 12 + - uid: 8896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-54.5 + parent: 12 + - uid: 8897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-54.5 + parent: 12 - uid: 8918 components: - type: Transform pos: 26.5,4.5 parent: 12 + - uid: 8930 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 12 - uid: 8958 components: - type: Transform @@ -181615,6 +184056,18 @@ entities: - type: Transform pos: 31.5,1.5 parent: 12 + - uid: 8979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-56.5 + parent: 12 + - uid: 8983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-57.5 + parent: 12 - uid: 9013 components: - type: Transform @@ -181661,6 +184114,23 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-17.5 parent: 12 + - uid: 9077 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 12 + - uid: 9083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-45.5 + parent: 12 + - uid: 9084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-44.5 + parent: 12 - uid: 9120 components: - type: Transform @@ -181678,17 +184148,53 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-3.5 parent: 12 + - uid: 9167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-45.5 + parent: 12 - uid: 9175 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,6.5 parent: 12 + - uid: 9211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-50.5 + parent: 12 + - uid: 9214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-50.5 + parent: 12 - uid: 9230 components: - type: Transform pos: 37.5,-40.5 parent: 12 + - uid: 9237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,29.5 + parent: 12 + - uid: 9239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-50.5 + parent: 12 + - uid: 9245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,77.5 + parent: 12 - uid: 9297 components: - type: Transform @@ -181700,6 +184206,12 @@ entities: - type: Transform pos: 12.5,19.5 parent: 12 + - uid: 9378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,79.5 + parent: 12 - uid: 9379 components: - type: Transform @@ -181727,6 +184239,12 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 12 + - uid: 9433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-53.5 + parent: 12 - uid: 9443 components: - type: Transform @@ -181750,35 +184268,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,19.5 parent: 12 - - uid: 9514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,63.5 - parent: 12 - - uid: 9525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,56.5 - parent: 12 - uid: 9533 components: - type: Transform pos: 62.5,8.5 parent: 12 - - uid: 9534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,60.5 - parent: 12 - - uid: 9545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,50.5 - parent: 12 - uid: 9552 components: - type: Transform @@ -181789,36 +184283,6 @@ entities: - type: Transform pos: 56.5,10.5 parent: 12 - - uid: 9589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,54.5 - parent: 12 - - uid: 9590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,12.5 - parent: 12 - - uid: 9613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,13.5 - parent: 12 - - uid: 9622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 12 - - uid: 9624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,58.5 - parent: 12 - uid: 9638 components: - type: Transform @@ -181837,18 +184301,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,12.5 parent: 12 - - uid: 9645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,11.5 - parent: 12 - - uid: 9652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,65.5 - parent: 12 - uid: 9669 components: - type: Transform @@ -181901,11 +184353,26 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,3.5 parent: 12 + - uid: 9820 + components: + - type: Transform + pos: 14.5,-56.5 + parent: 12 - uid: 9825 components: - type: Transform pos: -0.5,-16.5 parent: 12 + - uid: 9828 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 12 + - uid: 9840 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 12 - uid: 10040 components: - type: Transform @@ -182024,11 +184491,6 @@ entities: - type: Transform pos: -47.5,-44.5 parent: 12 - - uid: 10313 - components: - - type: Transform - pos: -54.5,-36.5 - parent: 12 - uid: 10316 components: - type: Transform @@ -182193,6 +184655,12 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,14.5 parent: 12 + - uid: 10602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-51.5 + parent: 12 - uid: 10608 components: - type: Transform @@ -182211,6 +184679,12 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 12 + - uid: 10626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,77.5 + parent: 12 - uid: 10632 components: - type: Transform @@ -182306,11 +184780,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,15.5 parent: 12 - - uid: 10655 - components: - - type: Transform - pos: 12.5,22.5 - parent: 12 - uid: 10669 components: - type: Transform @@ -182465,6 +184934,27 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,33.5 parent: 12 + - uid: 10812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,74.5 + parent: 12 + - uid: 10814 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 12 + - uid: 10815 + components: + - type: Transform + pos: 11.5,-56.5 + parent: 12 + - uid: 10817 + components: + - type: Transform + pos: -20.5,-64.5 + parent: 12 - uid: 10841 components: - type: Transform @@ -182489,6 +184979,12 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-6.5 parent: 12 + - uid: 10908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-18.5 + parent: 12 - uid: 10909 components: - type: Transform @@ -182502,7 +184998,8 @@ entities: - uid: 10911 components: - type: Transform - pos: 38.5,4.5 + rot: 1.5707963267948966 rad + pos: -61.5,-14.5 parent: 12 - uid: 10939 components: @@ -182516,24 +185013,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,4.5 parent: 12 - - uid: 10953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,66.5 - parent: 12 - - uid: 10954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,59.5 - parent: 12 - - uid: 10955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,73.5 - parent: 12 - uid: 10980 components: - type: Transform @@ -182574,11 +185053,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-4.5 parent: 12 - - uid: 11128 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 12 - uid: 11132 components: - type: Transform @@ -182813,6 +185287,18 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,27.5 parent: 12 + - uid: 11250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,77.5 + parent: 12 + - uid: 11259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-49.5 + parent: 12 - uid: 11260 components: - type: Transform @@ -182909,12 +185395,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,21.5 parent: 12 - - uid: 11389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,73.5 - parent: 12 - uid: 11404 components: - type: Transform @@ -183385,6 +185865,11 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-40.5 parent: 12 + - uid: 12640 + components: + - type: Transform + pos: -48.5,77.5 + parent: 12 - uid: 12641 components: - type: Transform @@ -183502,6 +185987,18 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,65.5 parent: 12 + - uid: 14210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-34.5 + parent: 12 + - uid: 14231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-37.5 + parent: 12 - uid: 14232 components: - type: Transform @@ -183636,6 +186133,11 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,69.5 parent: 12 + - uid: 14555 + components: + - type: Transform + pos: -54.5,74.5 + parent: 12 - uid: 14639 components: - type: Transform @@ -184220,6 +186722,12 @@ entities: - type: Transform pos: -30.5,12.5 parent: 12 + - uid: 16797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-11.5 + parent: 12 - uid: 16799 components: - type: Transform @@ -184232,6 +186740,12 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,46.5 parent: 12 + - uid: 17199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-43.5 + parent: 12 - uid: 17270 components: - type: Transform @@ -184545,12 +187059,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,48.5 parent: 12 - - uid: 17811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,48.5 - parent: 12 - uid: 17812 components: - type: Transform @@ -184653,23 +187161,16 @@ entities: rot: 3.141592653589793 rad pos: -43.5,47.5 parent: 12 - - uid: 17835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,73.5 - parent: 12 - uid: 17836 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,71.5 parent: 12 - - uid: 17920 + - uid: 17841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,68.5 + pos: -52.5,76.5 parent: 12 - uid: 17972 components: @@ -184677,6 +187178,12 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,6.5 parent: 12 + - uid: 18558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-43.5 + parent: 12 - uid: 18569 components: - type: Transform @@ -184996,12 +187503,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,9.5 parent: 12 - - uid: 19179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,53.5 - parent: 12 - uid: 19180 components: - type: Transform @@ -185049,21 +187550,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 12 - - uid: 19202 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 12 - - uid: 19203 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 12 - - uid: 19204 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 12 - uid: 19206 components: - type: Transform @@ -185214,16 +187700,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,54.5 parent: 12 - - uid: 19267 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 12 - - uid: 19268 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 12 - uid: 19272 components: - type: Transform @@ -185554,6 +188030,12 @@ entities: - type: Transform pos: -20.5,69.5 parent: 12 + - uid: 19635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-12.5 + parent: 12 - uid: 19646 components: - type: Transform @@ -185621,6 +188103,12 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,65.5 parent: 12 + - uid: 19847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-12.5 + parent: 12 - uid: 19862 components: - type: Transform @@ -185633,24 +188121,12 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-0.5 parent: 12 - - uid: 20097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,75.5 - parent: 12 - uid: 20268 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,66.5 parent: 12 - - uid: 20521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,75.5 - parent: 12 - uid: 20541 components: - type: Transform @@ -185673,6 +188149,12 @@ entities: - type: Transform pos: 38.5,-8.5 parent: 12 + - uid: 21695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-56.5 + parent: 12 - uid: 21876 components: - type: Transform @@ -185746,6 +188228,11 @@ entities: - type: Transform pos: -30.5,69.5 parent: 12 + - uid: 22033 + components: + - type: Transform + pos: -45.5,74.5 + parent: 12 - uid: 22035 components: - type: Transform @@ -185811,6 +188298,12 @@ entities: - type: Transform pos: 60.5,13.5 parent: 12 + - uid: 22110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-54.5 + parent: 12 - uid: 22164 components: - type: Transform @@ -185857,6 +188350,11 @@ entities: - type: Transform pos: -30.5,63.5 parent: 12 + - uid: 22194 + components: + - type: Transform + pos: -40.5,76.5 + parent: 12 - uid: 22216 components: - type: Transform @@ -185898,17 +188396,27 @@ entities: - type: Transform pos: 42.5,13.5 parent: 12 - - uid: 22324 + - uid: 22321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,59.5 + pos: -37.5,80.5 + parent: 12 + - uid: 22323 + components: + - type: Transform + pos: -34.5,76.5 parent: 12 - uid: 22327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,55.5 + rot: 3.141592653589793 rad + pos: -32.5,76.5 + parent: 12 + - uid: 22338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,75.5 parent: 12 - uid: 22532 components: @@ -185920,6 +188428,12 @@ entities: - type: Transform pos: 35.5,-40.5 parent: 12 + - uid: 22708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-57.5 + parent: 12 - uid: 22851 components: - type: Transform @@ -185979,52 +188493,21 @@ entities: rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 12 - - uid: 23177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,63.5 - parent: 12 - uid: 23598 components: - type: Transform pos: 46.5,-6.5 parent: 12 - - uid: 23700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,59.5 - parent: 12 - uid: 23701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,59.5 - parent: 12 - - uid: 23703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,63.5 - parent: 12 - - uid: 23704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,59.5 - parent: 12 - - uid: 23709 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,59.5 + pos: -32.5,79.5 parent: 12 - - uid: 23719 + - uid: 23709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,63.5 + pos: -52.5,77.5 parent: 12 - uid: 23895 components: @@ -186073,6 +188556,11 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,1.5 parent: 12 + - uid: 24300 + components: + - type: Transform + pos: -47.5,77.5 + parent: 12 - uid: 24302 components: - type: Transform @@ -186083,12 +188571,6 @@ entities: - type: Transform pos: 35.5,-36.5 parent: 12 - - uid: 24325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,2.5 - parent: 12 - uid: 24451 components: - type: Transform @@ -186100,15 +188582,11 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,71.5 parent: 12 - - uid: 24663 - components: - - type: Transform - pos: -54.5,63.5 - parent: 12 - - uid: 24666 + - uid: 24493 components: - type: Transform - pos: -52.5,63.5 + rot: -1.5707963267948966 rad + pos: 14.5,-57.5 parent: 12 - uid: 25037 components: @@ -186143,11 +188621,6 @@ entities: - type: Transform pos: 63.5,8.5 parent: 12 - - uid: 25136 - components: - - type: Transform - pos: 45.5,-40.5 - parent: 12 - uid: 25275 components: - type: Transform @@ -186171,17 +188644,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,56.5 parent: 12 - - uid: 25391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,55.5 - parent: 12 - - uid: 25393 - components: - - type: Transform - pos: -53.5,63.5 - parent: 12 - uid: 25418 components: - type: Transform @@ -186295,6 +188757,12 @@ entities: - type: Transform pos: -50.5,45.5 parent: 12 + - uid: 25454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,75.5 + parent: 12 - uid: 25526 components: - type: Transform @@ -186327,6 +188795,12 @@ entities: - type: Transform pos: 33.5,64.5 parent: 12 + - uid: 25557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-56.5 + parent: 12 - uid: 25564 components: - type: Transform @@ -186337,16 +188811,16 @@ entities: - type: Transform pos: -56.5,-40.5 parent: 12 - - uid: 25577 + - uid: 25572 components: - type: Transform - pos: -55.5,-40.5 + rot: -1.5707963267948966 rad + pos: 11.5,-57.5 parent: 12 - - uid: 25582 + - uid: 25577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-34.5 + pos: -55.5,-40.5 parent: 12 - uid: 25597 components: @@ -186369,6 +188843,16 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,66.5 parent: 12 + - uid: 25870 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 12 + - uid: 25889 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 12 - uid: 25902 components: - type: Transform @@ -186395,11 +188879,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,-27.5 parent: 12 - - uid: 26131 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 12 - uid: 26167 components: - type: Transform @@ -186433,6 +188912,18 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-1.5 parent: 12 + - uid: 26392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,27.5 + parent: 12 + - uid: 26394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,79.5 + parent: 12 - uid: 26416 components: - type: Transform @@ -186451,21 +188942,17 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,11.5 parent: 12 - - uid: 26448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,6.5 - parent: 12 - - uid: 26472 + - uid: 26447 components: - type: Transform - pos: 3.5,-17.5 + rot: 1.5707963267948966 rad + pos: 55.5,-50.5 parent: 12 - - uid: 26473 + - uid: 26448 components: - type: Transform - pos: 5.5,-18.5 + rot: -1.5707963267948966 rad + pos: 16.5,6.5 parent: 12 - uid: 26475 components: @@ -186521,11 +189008,11 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,6.5 parent: 12 - - uid: 26634 + - uid: 26653 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-17.5 + pos: 58.5,-50.5 parent: 12 - uid: 26822 components: @@ -186539,16 +189026,75 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,13.5 parent: 12 - - uid: 26850 + - uid: 26854 components: - type: Transform - pos: 5.5,-21.5 + rot: 1.5707963267948966 rad + pos: 38.5,-16.5 parent: 12 - - uid: 26854 + - uid: 26908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-57.5 + parent: 12 + - uid: 26909 + components: + - type: Transform + pos: -17.5,-68.5 + parent: 12 + - uid: 26910 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 12 + - uid: 26912 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-16.5 + pos: -62.5,-17.5 + parent: 12 + - uid: 26919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,77.5 + parent: 12 + - uid: 26949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 12 + - uid: 26956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-56.5 + parent: 12 + - uid: 26983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-43.5 + parent: 12 + - uid: 26995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-43.5 + parent: 12 + - uid: 26998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-18.5 + parent: 12 + - uid: 27043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-13.5 parent: 12 - uid: 27050 components: @@ -186556,6 +189102,18 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-13.5 parent: 12 + - uid: 27116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-11.5 + parent: 12 + - uid: 27117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 12 - uid: 27147 components: - type: Transform @@ -186580,29 +189138,35 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,61.5 parent: 12 - - uid: 27334 + - uid: 27318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-17.5 + pos: 51.5,64.5 parent: 12 - - uid: 27335 + - uid: 27331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-17.5 + rot: 3.141592653589793 rad + pos: 41.5,1.5 parent: 12 - - uid: 27336 + - uid: 27334 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-35.5 + pos: -49.5,-17.5 parent: 12 - - uid: 27403 + - uid: 27335 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-13.5 + pos: -48.5,-17.5 + parent: 12 + - uid: 27410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-43.5 parent: 12 - uid: 27411 components: @@ -186637,12 +189201,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-26.5 parent: 12 - - uid: 27844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,73.5 - parent: 12 - uid: 27863 components: - type: Transform @@ -186659,10 +189217,10 @@ entities: - type: Transform pos: 5.5,-9.5 parent: 12 - - uid: 27980 + - uid: 27978 components: - type: Transform - pos: 5.5,-13.5 + pos: -22.5,-68.5 parent: 12 - uid: 27981 components: @@ -186679,21 +189237,20 @@ entities: - type: Transform pos: 5.5,-10.5 parent: 12 - - uid: 27991 + - uid: 27985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-15.5 + pos: -20.5,-68.5 parent: 12 - - uid: 28046 + - uid: 28049 components: - type: Transform - pos: -4.5,-19.5 + pos: -19.5,-70.5 parent: 12 - - uid: 28047 + - uid: 28050 components: - type: Transform - pos: -3.5,-19.5 + pos: -20.5,-70.5 parent: 12 - uid: 28088 components: @@ -186721,11 +189278,6 @@ entities: - type: Transform pos: 30.5,34.5 parent: 12 - - uid: 28146 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 12 - uid: 28158 components: - type: Transform @@ -186738,41 +189290,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,-11.5 parent: 12 - - uid: 28160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-11.5 - parent: 12 - - uid: 28161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-12.5 - parent: 12 - - uid: 28162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 12 - - uid: 28163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 - parent: 12 - - uid: 28165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 12 - - uid: 28166 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 12 - uid: 28169 components: - type: Transform @@ -186790,54 +189307,18 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,60.5 parent: 12 - - uid: 28252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-14.5 - parent: 12 - uid: 28286 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-17.5 parent: 12 - - uid: 28287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-17.5 - parent: 12 - uid: 28288 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-17.5 parent: 12 - - uid: 28289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-16.5 - parent: 12 - - uid: 28290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-15.5 - parent: 12 - - uid: 28291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-14.5 - parent: 12 - - uid: 28327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-14.5 - parent: 12 - uid: 28422 components: - type: Transform @@ -186848,16 +189329,22 @@ entities: - type: Transform pos: -4.5,7.5 parent: 12 - - uid: 28522 + - uid: 28527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 + pos: 6.5,-4.5 parent: 12 - - uid: 28527 + - uid: 28635 components: - type: Transform - pos: 6.5,-4.5 + rot: -1.5707963267948966 rad + pos: 35.5,-53.5 + parent: 12 + - uid: 28636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-52.5 parent: 12 - uid: 28741 components: @@ -186905,6 +189392,43 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 12 + - uid: 28974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,75.5 + parent: 12 + - uid: 29009 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 12 + - uid: 29012 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 12 + - uid: 29060 + components: + - type: Transform + pos: -55.5,73.5 + parent: 12 + - uid: 29073 + components: + - type: Transform + pos: -57.5,59.5 + parent: 12 + - uid: 29103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,75.5 + parent: 12 + - uid: 29144 + components: + - type: Transform + pos: -35.5,80.5 + parent: 12 - uid: 29163 components: - type: Transform @@ -186917,6 +189441,11 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,60.5 parent: 12 + - uid: 29165 + components: + - type: Transform + pos: -32.5,77.5 + parent: 12 - uid: 29209 components: - type: Transform @@ -186940,6 +189469,62 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,64.5 parent: 12 + - uid: 29316 + components: + - type: Transform + pos: -39.5,80.5 + parent: 12 + - uid: 29317 + components: + - type: Transform + pos: -40.5,79.5 + parent: 12 + - uid: 29322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,74.5 + parent: 12 + - uid: 29347 + components: + - type: Transform + pos: -54.5,69.5 + parent: 12 + - uid: 29371 + components: + - type: Transform + pos: -52.5,66.5 + parent: 12 + - uid: 29423 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 12 + - uid: 29488 + components: + - type: Transform + pos: -53.5,49.5 + parent: 12 + - uid: 29491 + components: + - type: Transform + pos: -54.5,51.5 + parent: 12 + - uid: 29492 + components: + - type: Transform + pos: -54.5,52.5 + parent: 12 + - uid: 29494 + components: + - type: Transform + pos: -54.5,54.5 + parent: 12 + - uid: 29597 + components: + - type: Transform + pos: -25.5,80.5 + parent: 12 - uid: 29657 components: - type: Transform @@ -186974,11 +189559,6 @@ entities: - type: Transform pos: -27.5,-60.5 parent: 12 - - uid: 30533 - components: - - type: Transform - pos: -18.5,-65.5 - parent: 12 - uid: 30540 components: - type: Transform @@ -186989,21 +189569,6 @@ entities: - type: Transform pos: -15.5,-66.5 parent: 12 - - uid: 30546 - components: - - type: Transform - pos: -18.5,-69.5 - parent: 12 - - uid: 30547 - components: - - type: Transform - pos: -18.5,-68.5 - parent: 12 - - uid: 30549 - components: - - type: Transform - pos: -18.5,-66.5 - parent: 12 - uid: 30554 components: - type: Transform @@ -187103,21 +189668,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-68.5 parent: 12 - - uid: 31353 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 12 - - uid: 31354 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 12 - - uid: 31355 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 12 - uid: 31376 components: - type: Transform @@ -187191,10 +189741,20 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-6.5 parent: 12 - - uid: 1880 + - uid: 1061 components: - type: Transform - pos: -34.5,73.5 + pos: -56.5,63.5 + parent: 12 + - uid: 1065 + components: + - type: Transform + pos: -56.5,64.5 + parent: 12 + - uid: 1172 + components: + - type: Transform + pos: -17.5,-70.5 parent: 12 - uid: 2498 components: @@ -187202,6 +189762,12 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,30.5 parent: 12 + - uid: 3031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,55.5 + parent: 12 - uid: 3624 components: - type: Transform @@ -187231,7 +189797,7 @@ entities: - uid: 4956 components: - type: Transform - pos: -51.5,49.5 + pos: -55.5,69.5 parent: 12 - uid: 5048 components: @@ -187245,11 +189811,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,1.5 parent: 12 - - uid: 5095 - components: - - type: Transform - pos: -37.5,73.5 - parent: 12 - uid: 5247 components: - type: Transform @@ -187260,41 +189821,58 @@ entities: - type: Transform pos: 41.5,-3.5 parent: 12 + - uid: 6254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-17.5 + parent: 12 + - uid: 6258 + components: + - type: Transform + pos: -17.5,-65.5 + parent: 12 - uid: 7802 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-9.5 parent: 12 - - uid: 9378 + - uid: 8044 components: - type: Transform - pos: 44.5,-39.5 + rot: -1.5707963267948966 rad + pos: 34.5,-55.5 parent: 12 - - uid: 9531 + - uid: 8131 components: - type: Transform - pos: -51.5,57.5 + rot: -1.5707963267948966 rad + pos: 31.5,-57.5 parent: 12 - - uid: 9537 + - uid: 8724 components: - type: Transform - pos: -51.5,61.5 + rot: -1.5707963267948966 rad + pos: 11.5,-55.5 parent: 12 - - uid: 9546 + - uid: 8890 components: - type: Transform - pos: -51.5,51.5 + rot: -1.5707963267948966 rad + pos: 29.5,-54.5 parent: 12 - - uid: 9555 + - uid: 9240 components: - type: Transform - pos: -51.5,52.5 + rot: -1.5707963267948966 rad + pos: 36.5,-53.5 parent: 12 - - uid: 9568 + - uid: 9243 components: - type: Transform - pos: -51.5,53.5 + rot: -1.5707963267948966 rad + pos: 32.5,-55.5 parent: 12 - uid: 9579 components: @@ -187308,10 +189886,11 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,21.5 parent: 12 - - uid: 9644 + - uid: 9632 components: - type: Transform - pos: -51.5,55.5 + rot: -1.5707963267948966 rad + pos: 35.5,-54.5 parent: 12 - uid: 9672 components: @@ -187325,12 +189904,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,7.5 parent: 12 - - uid: 10166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-50.5 - parent: 12 - uid: 10279 components: - type: Transform @@ -187343,12 +189916,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-32.5 parent: 12 - - uid: 10626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-53.5 - parent: 12 - uid: 10636 components: - type: Transform @@ -187383,11 +189950,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,-49.5 parent: 12 - - uid: 11030 - components: - - type: Transform - pos: -41.5,73.5 - parent: 12 - uid: 11131 components: - type: Transform @@ -187412,17 +189974,24 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-3.5 parent: 12 - - uid: 11278 - components: - - type: Transform - pos: -42.5,73.5 - parent: 12 - uid: 11361 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-7.5 parent: 12 + - uid: 11377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-44.5 + parent: 12 + - uid: 11378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-45.5 + parent: 12 - uid: 11381 components: - type: Transform @@ -187566,11 +190135,10 @@ entities: - type: Transform pos: -50.5,-28.5 parent: 12 - - uid: 11941 + - uid: 12113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,69.5 + pos: -44.5,74.5 parent: 12 - uid: 12308 components: @@ -187595,12 +190163,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,71.5 parent: 12 - - uid: 14555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-47.5 - parent: 12 - uid: 14625 components: - type: Transform @@ -187612,11 +190174,10 @@ entities: - type: Transform pos: -52.5,-24.5 parent: 12 - - uid: 18709 + - uid: 17835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-49.5 + pos: -47.5,76.5 parent: 12 - uid: 19295 components: @@ -187624,6 +190185,11 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-51.5 parent: 12 + - uid: 19455 + components: + - type: Transform + pos: -19.5,-65.5 + parent: 12 - uid: 19694 components: - type: Transform @@ -187635,15 +190201,34 @@ entities: - type: Transform pos: -25.5,73.5 parent: 12 + - uid: 22043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-43.5 + parent: 12 - uid: 22044 components: - type: Transform pos: -50.5,-20.5 parent: 12 - - uid: 22876 + - uid: 22277 components: - type: Transform - pos: -59.5,-33.5 + rot: 3.141592653589793 rad + pos: -40.5,77.5 + parent: 12 + - uid: 22322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,77.5 + parent: 12 + - uid: 22325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,79.5 parent: 12 - uid: 22878 components: @@ -187661,20 +190246,35 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-6.5 parent: 12 + - uid: 23703 + components: + - type: Transform + pos: -32.5,75.5 + parent: 12 + - uid: 23710 + components: + - type: Transform + pos: -51.5,77.5 + parent: 12 + - uid: 23719 + components: + - type: Transform + pos: -55.5,58.5 + parent: 12 - uid: 23898 components: - type: Transform pos: -57.5,-24.5 parent: 12 - - uid: 25332 + - uid: 24254 components: - type: Transform - pos: 5.5,-54.5 + pos: -52.5,64.5 parent: 12 - - uid: 25403 + - uid: 25490 components: - type: Transform - pos: -51.5,64.5 + pos: -26.5,73.5 parent: 12 - uid: 25596 components: @@ -187698,15 +190298,10 @@ entities: - type: Transform pos: -51.5,-35.5 parent: 12 - - uid: 26086 - components: - - type: Transform - pos: -58.5,-36.5 - parent: 12 - - uid: 26138 + - uid: 25935 components: - type: Transform - pos: -59.5,-35.5 + pos: -2.5,-17.5 parent: 12 - uid: 26241 components: @@ -187725,6 +190320,87 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,70.5 parent: 12 + - uid: 26480 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 12 + - uid: 26530 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 12 + - uid: 26593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-37.5 + parent: 12 + - uid: 26599 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 12 + - uid: 26619 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 12 + - uid: 26632 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 12 + - uid: 26684 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 12 + - uid: 26693 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 12 + - uid: 26700 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 12 + - uid: 26707 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 12 + - uid: 26907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-57.5 + parent: 12 + - uid: 26911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-57.5 + parent: 12 + - uid: 26948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-17.5 + parent: 12 + - uid: 26978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-55.5 + parent: 12 + - uid: 27010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-43.5 + parent: 12 - uid: 27035 components: - type: Transform @@ -187737,22 +190413,76 @@ entities: rot: 3.141592653589793 rad pos: 63.5,9.5 parent: 12 + - uid: 27056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-40.5 + parent: 12 + - uid: 27058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-40.5 + parent: 12 + - uid: 27060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-42.5 + parent: 12 + - uid: 27119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-17.5 + parent: 12 - uid: 27157 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,7.5 parent: 12 + - uid: 27221 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 12 + - uid: 27225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,5.5 + parent: 12 + - uid: 27243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 12 + - uid: 27314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 12 - uid: 27322 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,2.5 parent: 12 - - uid: 27433 + - uid: 27325 components: - type: Transform - pos: -58.5,-16.5 + rot: 3.141592653589793 rad + pos: 41.5,4.5 + parent: 12 + - uid: 27336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,5.5 parent: 12 - uid: 27436 components: @@ -187765,6 +190495,11 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 12 + - uid: 27973 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 12 - uid: 27974 components: - type: Transform @@ -187783,6 +190518,11 @@ entities: rot: 3.141592653589793 rad pos: 63.5,-4.5 parent: 12 + - uid: 28052 + components: + - type: Transform + pos: -18.5,-70.5 + parent: 12 - uid: 28053 components: - type: Transform @@ -187819,6 +190559,11 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,5.5 parent: 12 + - uid: 28069 + components: + - type: Transform + pos: -15.5,-70.5 + parent: 12 - uid: 28070 components: - type: Transform @@ -187841,6 +190586,16 @@ entities: - type: Transform pos: 33.5,33.5 parent: 12 + - uid: 28200 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 12 + - uid: 28252 + components: + - type: Transform + pos: -22.5,-66.5 + parent: 12 - uid: 28283 components: - type: Transform @@ -187863,6 +190618,22 @@ entities: - type: Transform pos: 42.5,65.5 parent: 12 + - uid: 28637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-50.5 + parent: 12 + - uid: 28789 + components: + - type: Transform + pos: -55.5,74.5 + parent: 12 + - uid: 28793 + components: + - type: Transform + pos: 37.5,-48.5 + parent: 12 - uid: 28811 components: - type: Transform @@ -187883,12 +190654,142 @@ entities: - type: Transform pos: 32.5,6.5 parent: 12 + - uid: 28999 + components: + - type: Transform + pos: -53.5,64.5 + parent: 12 + - uid: 29011 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 12 + - uid: 29028 + components: + - type: Transform + pos: -56.5,58.5 + parent: 12 + - uid: 29031 + components: + - type: Transform + pos: -52.5,65.5 + parent: 12 + - uid: 29032 + components: + - type: Transform + pos: -57.5,63.5 + parent: 12 + - uid: 29065 + components: + - type: Transform + pos: -26.5,76.5 + parent: 12 + - uid: 29074 + components: + - type: Transform + pos: -25.5,76.5 + parent: 12 - uid: 29123 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,6.5 parent: 12 + - uid: 29148 + components: + - type: Transform + pos: -52.5,67.5 + parent: 12 + - uid: 29152 + components: + - type: Transform + pos: -52.5,48.5 + parent: 12 + - uid: 29159 + components: + - type: Transform + pos: -49.5,53.5 + parent: 12 + - uid: 29312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,79.5 + parent: 12 + - uid: 29321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,74.5 + parent: 12 + - uid: 29375 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 12 + - uid: 29395 + components: + - type: Transform + pos: -17.5,-66.5 + parent: 12 + - uid: 29487 + components: + - type: Transform + pos: -54.5,55.5 + parent: 12 + - uid: 29489 + components: + - type: Transform + pos: -53.5,50.5 + parent: 12 + - uid: 29490 + components: + - type: Transform + pos: -54.5,50.5 + parent: 12 + - uid: 29493 + components: + - type: Transform + pos: -54.5,53.5 + parent: 12 + - uid: 29495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,79.5 + parent: 12 + - uid: 29496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,79.5 + parent: 12 + - uid: 29507 + components: + - type: Transform + pos: -30.5,79.5 + parent: 12 + - uid: 29508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,78.5 + parent: 12 + - uid: 29511 + components: + - type: Transform + pos: -30.5,80.5 + parent: 12 + - uid: 29595 + components: + - type: Transform + pos: -26.5,80.5 + parent: 12 + - uid: 29596 + components: + - type: Transform + pos: -25.5,79.5 + parent: 12 - uid: 30020 components: - type: Transform @@ -187925,16 +190826,6 @@ entities: - type: Transform pos: -39.5,-57.5 parent: 12 - - uid: 30572 - components: - - type: Transform - pos: -18.5,-67.5 - parent: 12 - - uid: 30582 - components: - - type: Transform - pos: -17.5,-69.5 - parent: 12 - uid: 30700 components: - type: Transform @@ -187945,11 +190836,6 @@ entities: - type: Transform pos: 6.5,-58.5 parent: 12 - - uid: 30967 - components: - - type: Transform - pos: -18.5,-64.5 - parent: 12 - uid: 31173 components: - type: Transform @@ -188039,11 +190925,16 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 12 - - uid: 218 + - uid: 216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-21.5 + rot: -1.5707963267948966 rad + pos: 34.5,-33.5 + parent: 12 + - uid: 217 + components: + - type: Transform + pos: 34.5,-32.5 parent: 12 - uid: 287 components: @@ -188356,6 +191247,18 @@ entities: - type: Transform pos: -29.5,-22.5 parent: 12 + - uid: 681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-9.5 + parent: 12 + - uid: 683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 12 - uid: 686 components: - type: Transform @@ -188366,12 +191269,6 @@ entities: - type: Transform pos: 42.5,49.5 parent: 12 - - uid: 747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-18.5 - parent: 12 - uid: 760 components: - type: Transform @@ -188392,12 +191289,6 @@ entities: - type: Transform pos: -39.5,-32.5 parent: 12 - - uid: 772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-19.5 - parent: 12 - uid: 815 components: - type: Transform @@ -188785,16 +191676,34 @@ entities: - type: Transform pos: -52.5,-40.5 parent: 12 + - uid: 1314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 12 + - uid: 2031 + components: + - type: Transform + pos: 49.5,60.5 + parent: 12 + - uid: 2032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,71.5 + parent: 12 - uid: 2040 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-15.5 parent: 12 - - uid: 2044 + - uid: 2112 components: - type: Transform - pos: -49.5,66.5 + rot: 3.141592653589793 rad + pos: -44.5,69.5 parent: 12 - uid: 2293 components: @@ -188808,12 +191717,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 12 - - uid: 2337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,5.5 - parent: 12 - uid: 2363 components: - type: Transform @@ -188844,6 +191747,17 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-57.5 parent: 12 + - uid: 2376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,63.5 + parent: 12 + - uid: 2383 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 12 - uid: 2433 components: - type: Transform @@ -188916,11 +191830,10 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,49.5 parent: 12 - - uid: 2467 + - uid: 2459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-48.5 + pos: 48.5,61.5 parent: 12 - uid: 2468 components: @@ -188934,6 +191847,12 @@ entities: rot: 3.141592653589793 rad pos: 42.5,10.5 parent: 12 + - uid: 2515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 12 - uid: 2596 components: - type: Transform @@ -189039,6 +191958,12 @@ entities: - type: Transform pos: -7.5,-58.5 parent: 12 + - uid: 2704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 12 - uid: 2710 components: - type: Transform @@ -189127,6 +192052,11 @@ entities: - type: Transform pos: 5.5,-37.5 parent: 12 + - uid: 2964 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 12 - uid: 2965 components: - type: Transform @@ -189321,12 +192251,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-22.5 parent: 12 - - uid: 3122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 12 - uid: 3194 components: - type: Transform @@ -189420,12 +192344,6 @@ entities: - type: Transform pos: 10.5,-35.5 parent: 12 - - uid: 4188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-15.5 - parent: 12 - uid: 4206 components: - type: Transform @@ -189555,10 +192473,20 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-35.5 parent: 12 - - uid: 4959 + - uid: 4694 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 12 + - uid: 4696 + components: + - type: Transform + pos: 46.5,59.5 + parent: 12 + - uid: 4732 components: - type: Transform - pos: -42.5,69.5 + pos: 46.5,60.5 parent: 12 - uid: 4981 components: @@ -189604,6 +192532,12 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-32.5 parent: 12 + - uid: 5305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-29.5 + parent: 12 - uid: 5385 components: - type: Transform @@ -189625,7 +192559,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-18.5 + pos: 38.5,-29.5 parent: 12 - uid: 5447 components: @@ -189748,6 +192682,11 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-13.5 parent: 12 + - uid: 6194 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 12 - uid: 6248 components: - type: Transform @@ -189813,24 +192752,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-36.5 parent: 12 - - uid: 6313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-36.5 - parent: 12 - - uid: 6314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-36.5 - parent: 12 - - uid: 6315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-37.5 - parent: 12 - uid: 6316 components: - type: Transform @@ -189861,12 +192782,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-38.5 parent: 12 - - uid: 6323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-37.5 - parent: 12 - uid: 6324 components: - type: Transform @@ -189891,11 +192806,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-41.5 parent: 12 - - uid: 6687 - components: - - type: Transform - pos: 6.5,76.5 - parent: 12 - uid: 6742 components: - type: Transform @@ -189924,11 +192834,10 @@ entities: - type: Transform pos: -17.5,69.5 parent: 12 - - uid: 7101 + - uid: 6790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-33.5 + pos: -42.5,-14.5 parent: 12 - uid: 7105 components: @@ -189954,36 +192863,12 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-25.5 parent: 12 - - uid: 7111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-31.5 - parent: 12 - uid: 7113 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-29.5 parent: 12 - - uid: 7114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-29.5 - parent: 12 - - uid: 7116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-29.5 - parent: 12 - - uid: 7118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-29.5 - parent: 12 - uid: 7122 components: - type: Transform @@ -190297,8 +193182,7 @@ entities: - uid: 8333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,62.5 + pos: 9.5,-49.5 parent: 12 - uid: 8462 components: @@ -190323,6 +193207,24 @@ entities: - type: Transform pos: -9.5,2.5 parent: 12 + - uid: 8719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-49.5 + parent: 12 + - uid: 8723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-48.5 + parent: 12 + - uid: 8799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-50.5 + parent: 12 - uid: 8819 components: - type: Transform @@ -190344,21 +193246,37 @@ entities: - type: Transform pos: 35.5,10.5 parent: 12 - - uid: 9133 + - uid: 8984 components: - type: Transform - pos: -44.5,66.5 + rot: -1.5707963267948966 rad + pos: 35.5,-49.5 parent: 12 - - uid: 9134 + - uid: 9059 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 12 + - uid: 9069 components: - type: Transform - pos: -42.5,71.5 + pos: 41.5,-40.5 + parent: 12 + - uid: 9133 + components: + - type: Transform + pos: -44.5,66.5 parent: 12 - uid: 9180 components: - type: Transform pos: 54.5,-7.5 parent: 12 + - uid: 9224 + components: + - type: Transform + pos: 49.5,61.5 + parent: 12 - uid: 9366 components: - type: Transform @@ -190391,17 +193309,11 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,24.5 parent: 12 - - uid: 9664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-29.5 - parent: 12 - - uid: 9666 + - uid: 9663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-29.5 + rot: 1.5707963267948966 rad + pos: 4.5,-21.5 parent: 12 - uid: 9736 components: @@ -190689,6 +193601,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-17.5 parent: 12 + - uid: 11010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-15.5 + parent: 12 - uid: 11025 components: - type: Transform @@ -190751,21 +193669,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,32.5 parent: 12 - - uid: 11277 - components: - - type: Transform - pos: -50.5,66.5 - parent: 12 - - uid: 11299 - components: - - type: Transform - pos: -46.5,66.5 - parent: 12 - - uid: 11300 - components: - - type: Transform - pos: -47.5,66.5 - parent: 12 - uid: 11308 components: - type: Transform @@ -190806,6 +193709,12 @@ entities: - type: Transform pos: -35.5,-56.5 parent: 12 + - uid: 11400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,66.5 + parent: 12 - uid: 11405 components: - type: Transform @@ -191734,6 +194643,12 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-10.5 parent: 12 + - uid: 12999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-52.5 + parent: 12 - uid: 13487 components: - type: Transform @@ -192185,6 +195100,11 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,44.5 parent: 12 + - uid: 14184 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 12 - uid: 14197 components: - type: Transform @@ -192214,18 +195134,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,61.5 parent: 12 - - uid: 14210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,59.5 - parent: 12 - - uid: 14211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,58.5 - parent: 12 - uid: 14212 components: - type: Transform @@ -193626,6 +196534,11 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,42.5 parent: 12 + - uid: 19268 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 12 - uid: 19269 components: - type: Transform @@ -193658,12 +196571,6 @@ entities: - type: Transform pos: -4.5,-59.5 parent: 12 - - uid: 19560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,0.5 - parent: 12 - uid: 19567 components: - type: Transform @@ -193824,6 +196731,12 @@ entities: - type: Transform pos: -6.5,70.5 parent: 12 + - uid: 19649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-30.5 + parent: 12 - uid: 19658 components: - type: Transform @@ -194496,6 +197409,12 @@ entities: - type: Transform pos: -1.5,-60.5 parent: 12 + - uid: 22337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,76.5 + parent: 12 - uid: 22391 components: - type: Transform @@ -194539,6 +197458,11 @@ entities: - type: Transform pos: 0.5,-59.5 parent: 12 + - uid: 22876 + components: + - type: Transform + pos: 9.5,-51.5 + parent: 12 - uid: 23087 components: - type: Transform @@ -194571,11 +197495,6 @@ entities: - type: Transform pos: -10.5,-20.5 parent: 12 - - uid: 23175 - components: - - type: Transform - pos: 48.5,-4.5 - parent: 12 - uid: 23363 components: - type: Transform @@ -194601,12 +197520,6 @@ entities: - type: Transform pos: 19.5,-29.5 parent: 12 - - uid: 23515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,60.5 - parent: 12 - uid: 23531 components: - type: Transform @@ -194651,6 +197564,12 @@ entities: - type: Transform pos: 2.5,-24.5 parent: 12 + - uid: 23712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,66.5 + parent: 12 - uid: 23779 components: - type: Transform @@ -194681,6 +197600,12 @@ entities: - type: Transform pos: 10.5,-30.5 parent: 12 + - uid: 23896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,70.5 + parent: 12 - uid: 23897 components: - type: Transform @@ -194768,6 +197693,12 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,59.5 parent: 12 + - uid: 24255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,75.5 + parent: 12 - uid: 24371 components: - type: Transform @@ -194785,6 +197716,12 @@ entities: - type: Transform pos: -51.5,-41.5 parent: 12 + - uid: 24413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-47.5 + parent: 12 - uid: 24428 components: - type: Transform @@ -194796,6 +197733,12 @@ entities: - type: Transform pos: 27.5,-29.5 parent: 12 + - uid: 24471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-45.5 + parent: 12 - uid: 24495 components: - type: Transform @@ -194853,6 +197796,12 @@ entities: - type: Transform pos: -17.5,-59.5 parent: 12 + - uid: 24664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,75.5 + parent: 12 - uid: 24698 components: - type: Transform @@ -194899,11 +197848,6 @@ entities: - type: Transform pos: -15.5,-59.5 parent: 12 - - uid: 25200 - components: - - type: Transform - pos: 46.5,-4.5 - parent: 12 - uid: 25243 components: - type: Transform @@ -194920,6 +197864,12 @@ entities: rot: 3.141592653589793 rad pos: -7.5,0.5 parent: 12 + - uid: 25332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-51.5 + parent: 12 - uid: 25350 components: - type: Transform @@ -194928,7 +197878,14 @@ entities: - uid: 25402 components: - type: Transform - pos: -45.5,66.5 + rot: 1.5707963267948966 rad + pos: -52.5,50.5 + parent: 12 + - uid: 25465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-53.5 parent: 12 - uid: 25467 components: @@ -194946,11 +197903,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,63.5 parent: 12 - - uid: 25557 - components: - - type: Transform - pos: 61.5,67.5 - parent: 12 - uid: 25566 components: - type: Transform @@ -194977,6 +197929,12 @@ entities: - type: Transform pos: 24.5,-29.5 parent: 12 + - uid: 25582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-44.5 + parent: 12 - uid: 25583 components: - type: Transform @@ -194985,7 +197943,8 @@ entities: - uid: 25593 components: - type: Transform - pos: -59.5,-29.5 + rot: -1.5707963267948966 rad + pos: 35.5,-45.5 parent: 12 - uid: 25594 components: @@ -195038,12 +197997,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-41.5 parent: 12 - - uid: 25662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,5.5 - parent: 12 - uid: 25664 components: - type: Transform @@ -195056,6 +198009,11 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,15.5 parent: 12 + - uid: 25679 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 12 - uid: 25683 components: - type: Transform @@ -195093,11 +198051,22 @@ entities: - type: Transform pos: -2.5,70.5 parent: 12 + - uid: 25936 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 12 - uid: 25937 components: - type: Transform pos: -26.5,-11.5 parent: 12 + - uid: 26077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-46.5 + parent: 12 - uid: 26098 components: - type: Transform @@ -195138,6 +198107,23 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 12 + - uid: 26131 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 12 + - uid: 26155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-12.5 + parent: 12 + - uid: 26162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-11.5 + parent: 12 - uid: 26184 components: - type: Transform @@ -195161,6 +198147,11 @@ entities: rot: 3.141592653589793 rad pos: -43.5,62.5 parent: 12 + - uid: 26205 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 12 - uid: 26238 components: - type: Transform @@ -195178,15 +198169,28 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,16.5 parent: 12 + - uid: 26393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-43.5 + parent: 12 + - uid: 26418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 12 - uid: 26449 components: - type: Transform pos: 11.5,90.5 parent: 12 - - uid: 26480 + - uid: 26472 components: - type: Transform - pos: 29.5,-29.5 + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 parent: 12 - uid: 26618 components: @@ -195194,12 +198198,48 @@ entities: rot: 3.141592653589793 rad pos: 32.5,9.5 parent: 12 + - uid: 26691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 12 - uid: 26698 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,9.5 parent: 12 + - uid: 26718 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 12 + - uid: 26759 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 12 + - uid: 26782 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 12 + - uid: 26785 + components: + - type: Transform + pos: 46.5,58.5 + parent: 12 + - uid: 26794 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 12 + - uid: 26798 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 12 - uid: 26830 components: - type: Transform @@ -195217,6 +198257,26 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-16.5 parent: 12 + - uid: 26953 + components: + - type: Transform + pos: 39.5,-40.5 + parent: 12 + - uid: 26954 + components: + - type: Transform + pos: 40.5,-40.5 + parent: 12 + - uid: 27011 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 12 + - uid: 27015 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 12 - uid: 27025 components: - type: Transform @@ -195243,6 +198303,11 @@ entities: - type: Transform pos: 31.5,-30.5 parent: 12 + - uid: 27042 + components: + - type: Transform + pos: 9.5,-53.5 + parent: 12 - uid: 27049 components: - type: Transform @@ -195255,6 +198320,41 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-4.5 parent: 12 + - uid: 27061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-39.5 + parent: 12 + - uid: 27068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-49.5 + parent: 12 + - uid: 27069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-40.5 + parent: 12 + - uid: 27070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-44.5 + parent: 12 + - uid: 27074 + components: + - type: Transform + pos: 53.5,-39.5 + parent: 12 + - uid: 27097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-41.5 + parent: 12 - uid: 27098 components: - type: Transform @@ -195266,10 +198366,41 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-5.5 parent: 12 - - uid: 27152 + - uid: 27120 components: - type: Transform - pos: -57.5,-18.5 + pos: -37.5,-13.5 + parent: 12 + - uid: 27121 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 12 + - uid: 27122 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 12 + - uid: 27127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 12 + - uid: 27128 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 12 + - uid: 27148 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 12 + - uid: 27156 + components: + - type: Transform + pos: 5.5,-52.5 parent: 12 - uid: 27189 components: @@ -195277,27 +198408,43 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-5.5 parent: 12 + - uid: 27210 + components: + - type: Transform + pos: 5.5,-53.5 + parent: 12 - uid: 27258 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-7.5 parent: 12 + - uid: 27313 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 12 - uid: 27320 components: - type: Transform pos: -57.5,-19.5 parent: 12 - - uid: 27329 + - uid: 27326 components: - type: Transform - pos: -51.5,-17.5 + rot: 1.5707963267948966 rad + pos: -51.5,58.5 parent: 12 - - uid: 27331 + - uid: 27353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-18.5 + rot: 1.5707963267948966 rad + pos: -52.5,53.5 + parent: 12 + - uid: 27398 + components: + - type: Transform + pos: 45.5,-36.5 parent: 12 - uid: 27432 components: @@ -195347,11 +198494,6 @@ entities: - type: Transform pos: -18.5,18.5 parent: 12 - - uid: 27914 - components: - - type: Transform - pos: 30.5,76.5 - parent: 12 - uid: 27925 components: - type: Transform @@ -195474,12 +198616,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-13.5 parent: 12 - - uid: 28297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-17.5 - parent: 12 - uid: 28309 components: - type: Transform @@ -195506,17 +198642,33 @@ entities: - type: Transform pos: 6.5,83.5 parent: 12 - - uid: 28464 + - uid: 28437 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-27.5 + pos: -42.5,-15.5 parent: 12 - uid: 28549 components: - type: Transform pos: -24.5,-1.5 parent: 12 + - uid: 28633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-51.5 + parent: 12 + - uid: 28897 + components: + - type: Transform + pos: 46.5,-35.5 + parent: 12 + - uid: 28903 + components: + - type: Transform + pos: 47.5,-35.5 + parent: 12 - uid: 28924 components: - type: Transform @@ -195528,22 +198680,73 @@ entities: rot: 3.141592653589793 rad pos: 53.5,11.5 parent: 12 + - uid: 29022 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 12 + - uid: 29025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,66.5 + parent: 12 + - uid: 29037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,52.5 + parent: 12 - uid: 29117 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-15.5 parent: 12 + - uid: 29149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,60.5 + parent: 12 - uid: 29208 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,48.5 parent: 12 - - uid: 29594 + - uid: 29303 components: - type: Transform - pos: -42.5,70.5 + pos: -52.5,63.5 + parent: 12 + - uid: 29308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,58.5 + parent: 12 + - uid: 29320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,56.5 + parent: 12 + - uid: 29351 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 12 + - uid: 29355 + components: + - type: Transform + pos: -51.5,66.5 + parent: 12 + - uid: 29376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,67.5 parent: 12 - uid: 30000 components: @@ -195568,11 +198771,6 @@ entities: - type: Transform pos: -26.5,-59.5 parent: 12 - - uid: 30537 - components: - - type: Transform - pos: -17.5,-66.5 - parent: 12 - uid: 30567 components: - type: Transform @@ -195634,21 +198832,11 @@ entities: - type: Transform pos: -5.5,-65.5 parent: 12 - - uid: 31356 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 12 - uid: 31357 components: - type: Transform pos: -34.5,-13.5 parent: 12 - - uid: 31385 - components: - - type: Transform - pos: 4.5,-61.5 - parent: 12 - uid: 31387 components: - type: Transform @@ -195681,19 +198869,8 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-2.5 parent: 12 - - uid: 31889 - components: - - type: Transform - pos: 41.5,1.5 - parent: 12 - proto: WallSolidDiagonal entities: - - uid: 24234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,64.5 - parent: 12 - uid: 27255 components: - type: Transform @@ -195719,10 +198896,15 @@ entities: parent: 12 - proto: WallSolidRust entities: - - uid: 1878 + - uid: 750 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 12 + - uid: 1359 components: - type: Transform - pos: -42.5,68.5 + pos: 42.5,-40.5 parent: 12 - uid: 1965 components: @@ -195740,11 +198922,32 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,13.5 parent: 12 + - uid: 2337 + components: + - type: Transform + pos: 42.5,-38.5 + parent: 12 - uid: 2361 components: - type: Transform pos: 41.5,-24.5 parent: 12 + - uid: 2382 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 12 + - uid: 2398 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 12 + - uid: 2408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-20.5 + parent: 12 - uid: 2572 components: - type: Transform @@ -195756,41 +198959,60 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,18.5 parent: 12 + - uid: 2739 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 12 + - uid: 2858 + components: + - type: Transform + pos: -56.5,-36.5 + parent: 12 + - uid: 2862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-49.5 + parent: 12 - uid: 3465 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-32.5 parent: 12 - - uid: 5123 + - uid: 4167 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,4.5 + pos: -33.5,-13.5 parent: 12 - - uid: 6101 + - uid: 4701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-21.5 + pos: -6.5,-16.5 parent: 12 - - uid: 6775 + - uid: 5095 + components: + - type: Transform + pos: -44.5,73.5 + parent: 12 + - uid: 5829 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-2.5 + pos: -47.5,67.5 parent: 12 - - uid: 7322 + - uid: 6256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,18.5 + pos: 47.5,-36.5 parent: 12 - - uid: 7717 + - uid: 7322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-4.5 + rot: 1.5707963267948966 rad + pos: -0.5,18.5 parent: 12 - uid: 7794 components: @@ -195804,16 +199026,54 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,69.5 parent: 12 + - uid: 8297 + components: + - type: Transform + pos: 8.5,-53.5 + parent: 12 + - uid: 8725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-46.5 + parent: 12 - uid: 8832 components: - type: Transform pos: 47.5,-40.5 parent: 12 + - uid: 9174 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 12 + - uid: 9178 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 12 + - uid: 9255 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 12 + - uid: 9568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,69.5 + parent: 12 - uid: 9631 components: - type: Transform pos: -60.5,-51.5 parent: 12 + - uid: 9671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-47.5 + parent: 12 - uid: 10717 components: - type: Transform @@ -195829,11 +199089,6 @@ entities: - type: Transform pos: -59.5,-56.5 parent: 12 - - uid: 11297 - components: - - type: Transform - pos: -48.5,66.5 - parent: 12 - uid: 11332 components: - type: Transform @@ -195857,11 +199112,10 @@ entities: rot: 3.141592653589793 rad pos: 42.5,11.5 parent: 12 - - uid: 12994 + - uid: 12060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-21.5 + pos: -56.5,-17.5 parent: 12 - uid: 13794 components: @@ -196048,6 +199302,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,23.5 parent: 12 + - uid: 18627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-45.5 + parent: 12 - uid: 18674 components: - type: Transform @@ -196066,6 +199326,11 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,27.5 parent: 12 + - uid: 19265 + components: + - type: Transform + pos: 45.5,-35.5 + parent: 12 - uid: 19543 components: - type: Transform @@ -196118,6 +199383,12 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,61.5 parent: 12 + - uid: 19631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-29.5 + parent: 12 - uid: 19632 components: - type: Transform @@ -196160,16 +199431,16 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,63.5 parent: 12 - - uid: 21608 + - uid: 20776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,64.5 + pos: 34.5,-31.5 parent: 12 - - uid: 22141 + - uid: 21608 components: - type: Transform - pos: 47.5,0.5 + rot: -1.5707963267948966 rad + pos: 10.5,64.5 parent: 12 - uid: 22145 components: @@ -196186,6 +199457,17 @@ entities: - type: Transform pos: 36.5,16.5 parent: 12 + - uid: 22328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,76.5 + parent: 12 + - uid: 22855 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 12 - uid: 23536 components: - type: Transform @@ -196198,6 +199480,11 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-9.5 parent: 12 + - uid: 23713 + components: + - type: Transform + pos: -49.5,66.5 + parent: 12 - uid: 24333 components: - type: Transform @@ -196229,29 +199516,23 @@ entities: - type: Transform pos: 31.5,19.5 parent: 12 - - uid: 24701 + - uid: 24663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-33.5 + rot: 3.141592653589793 rad + pos: -38.5,75.5 parent: 12 - - uid: 24702 + - uid: 24701 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-33.5 + pos: 39.5,-33.5 parent: 12 - uid: 24982 components: - type: Transform pos: -21.5,51.5 parent: 12 - - uid: 25027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-33.5 - parent: 12 - uid: 25035 components: - type: Transform @@ -196263,18 +199544,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-33.5 parent: 12 - - uid: 25101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 12 - - uid: 25104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-30.5 - parent: 12 - uid: 25142 components: - type: Transform @@ -196300,11 +199569,11 @@ entities: - type: Transform pos: 2.5,-56.5 parent: 12 - - uid: 25572 + - uid: 25585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,0.5 + rot: -1.5707963267948966 rad + pos: 36.5,-45.5 parent: 12 - uid: 25591 components: @@ -196317,11 +199586,10 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,34.5 parent: 12 - - uid: 25663 + - uid: 25662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,5.5 + pos: 42.5,-39.5 parent: 12 - uid: 25670 components: @@ -196383,31 +199651,31 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,65.5 parent: 12 + - uid: 25934 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 12 - uid: 26071 components: - type: Transform pos: 48.5,15.5 parent: 12 - - uid: 26244 + - uid: 26153 components: - type: Transform - pos: -25.5,-8.5 + pos: -1.5,-19.5 parent: 12 - - uid: 26246 + - uid: 26244 components: - type: Transform - pos: 5.5,-52.5 + pos: -25.5,-8.5 parent: 12 - uid: 26247 components: - type: Transform pos: -25.5,-7.5 parent: 12 - - uid: 26250 - components: - - type: Transform - pos: -59.5,-30.5 - parent: 12 - uid: 26313 components: - type: Transform @@ -196423,6 +199691,16 @@ entities: - type: Transform pos: -51.5,-47.5 parent: 12 + - uid: 26425 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 12 + - uid: 26434 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 12 - uid: 26567 components: - type: Transform @@ -196433,11 +199711,47 @@ entities: - type: Transform pos: -24.5,-13.5 parent: 12 + - uid: 26678 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 12 + - uid: 26697 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 12 + - uid: 26706 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 12 + - uid: 26716 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 12 - uid: 26725 components: - type: Transform pos: -25.5,-12.5 parent: 12 + - uid: 26753 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 12 + - uid: 26781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 12 + - uid: 26788 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 12 - uid: 26816 components: - type: Transform @@ -196454,6 +199768,17 @@ entities: - type: Transform pos: -26.5,-14.5 parent: 12 + - uid: 26902 + components: + - type: Transform + pos: -55.5,-35.5 + parent: 12 + - uid: 26920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-51.5 + parent: 12 - uid: 26964 components: - type: Transform @@ -196465,34 +199790,112 @@ entities: - type: Transform pos: -20.5,54.5 parent: 12 + - uid: 26996 + components: + - type: Transform + pos: 42.5,-37.5 + parent: 12 + - uid: 27013 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 12 + - uid: 27014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-16.5 + parent: 12 + - uid: 27017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-17.5 + parent: 12 - uid: 27023 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-2.5 parent: 12 + - uid: 27041 + components: + - type: Transform + pos: 9.5,-50.5 + parent: 12 + - uid: 27047 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 12 + - uid: 27083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-16.5 + parent: 12 + - uid: 27103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-31.5 + parent: 12 + - uid: 27113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-13.5 + parent: 12 + - uid: 27118 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 12 + - uid: 27152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-40.5 + parent: 12 + - uid: 27154 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 12 + - uid: 27161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,75.5 + parent: 12 - uid: 27172 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,17.5 parent: 12 + - uid: 27203 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 12 - uid: 27217 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-2.5 parent: 12 - - uid: 27226 + - uid: 27224 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,15.5 + pos: -53.5,-19.5 parent: 12 - - uid: 27239 + - uid: 27226 components: - type: Transform - pos: -53.5,-17.5 + rot: 1.5707963267948966 rad + pos: 36.5,15.5 parent: 12 - uid: 27297 components: @@ -196606,11 +200009,6 @@ entities: - type: Transform pos: 53.5,9.5 parent: 12 - - uid: 28199 - components: - - type: Transform - pos: -54.5,-18.5 - parent: 12 - uid: 28204 components: - type: Transform @@ -196628,12 +200026,33 @@ entities: rot: 3.141592653589793 rad pos: 35.5,13.5 parent: 12 + - uid: 28308 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 12 + - uid: 28317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 12 - uid: 28391 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,22.5 parent: 12 + - uid: 28419 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 12 + - uid: 28648 + components: + - type: Transform + pos: 40.5,-42.5 + parent: 12 - uid: 28701 components: - type: Transform @@ -196657,27 +200076,131 @@ entities: - type: Transform pos: 49.5,9.5 parent: 12 - - uid: 29115 + - uid: 29029 + components: + - type: Transform + pos: -52.5,55.5 + parent: 12 + - uid: 29092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,72.5 + parent: 12 + - uid: 29141 + components: + - type: Transform + pos: -51.5,63.5 + parent: 12 + - uid: 29142 + components: + - type: Transform + pos: -53.5,58.5 + parent: 12 + - uid: 29143 + components: + - type: Transform + pos: -51.5,61.5 + parent: 12 + - uid: 29162 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,-27.5 + pos: -53.5,53.5 parent: 12 - - uid: 29595 + - uid: 29177 + components: + - type: Transform + pos: -52.5,57.5 + parent: 12 + - uid: 29190 + components: + - type: Transform + pos: -52.5,61.5 + parent: 12 + - uid: 29315 + components: + - type: Transform + pos: -52.5,59.5 + parent: 12 + - uid: 29344 + components: + - type: Transform + pos: -16.5,69.5 + parent: 12 + - uid: 29348 components: - type: Transform - pos: -42.5,72.5 + pos: 2.5,-48.5 + parent: 12 + - uid: 29352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,67.5 + parent: 12 + - uid: 29353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,67.5 + parent: 12 + - uid: 29374 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 12 + - uid: 29512 + components: + - type: Transform + pos: -32.5,74.5 parent: 12 - uid: 29603 components: - type: Transform pos: -42.5,66.5 parent: 12 + - uid: 29628 + components: + - type: Transform + pos: -30.5,77.5 + parent: 12 + - uid: 29631 + components: + - type: Transform + pos: -32.5,73.5 + parent: 12 + - uid: 29632 + components: + - type: Transform + pos: -34.5,73.5 + parent: 12 + - uid: 29633 + components: + - type: Transform + pos: -37.5,73.5 + parent: 12 - uid: 29720 components: - type: Transform pos: -49.5,48.5 parent: 12 + - uid: 29820 + components: + - type: Transform + pos: -42.5,70.5 + parent: 12 + - uid: 29826 + components: + - type: Transform + pos: -40.5,73.5 + parent: 12 + - uid: 29980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,54.5 + parent: 12 - uid: 30200 components: - type: Transform @@ -196694,12 +200217,6 @@ entities: - type: Transform pos: -32.5,-55.5 parent: 12 - - uid: 30834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-24.5 - parent: 12 - uid: 30890 components: - type: Transform @@ -196994,11 +200511,6 @@ entities: parent: 12 - proto: WardrobePrisonFilled entities: - - uid: 8723 - components: - - type: Transform - pos: 53.5,-33.5 - parent: 12 - uid: 19371 components: - type: Transform @@ -197039,13 +200551,6 @@ entities: - type: Transform pos: 52.5,-36.5 parent: 12 -- proto: WardrobeSalvageFilled - entities: - - uid: 9969 - components: - - type: Transform - pos: 57.5,-39.5 - parent: 12 - proto: WardrobeScienceFilled entities: - uid: 2005 @@ -197245,10 +200750,10 @@ entities: - type: Transform pos: 55.5,11.5 parent: 12 - - uid: 9211 + - uid: 9652 components: - type: Transform - pos: 46.5,-36.5 + pos: -51.5,50.5 parent: 12 - uid: 10397 components: @@ -197265,15 +200770,15 @@ entities: - type: Transform pos: -7.5,19.5 parent: 12 - - uid: 23655 + - uid: 22107 components: - type: Transform - pos: 48.5,49.5 + pos: -2.5,-19.5 parent: 12 - - uid: 24225 + - uid: 23655 components: - type: Transform - pos: 46.5,59.5 + pos: 48.5,49.5 parent: 12 - uid: 25047 components: @@ -197295,21 +200800,31 @@ entities: - type: Transform pos: 58.5,52.5 parent: 12 - - uid: 27328 + - uid: 26795 components: - type: Transform - pos: -50.5,-19.5 + pos: 45.5,59.5 parent: 12 - - uid: 28652 + - uid: 27234 components: - type: Transform - pos: -3.5,-23.5 + pos: 44.5,-37.5 + parent: 12 + - uid: 27328 + components: + - type: Transform + pos: -50.5,-19.5 parent: 12 - uid: 28842 components: - type: Transform pos: 29.5,12.5 parent: 12 + - uid: 29644 + components: + - type: Transform + pos: -36.5,73.5 + parent: 12 - uid: 31370 components: - type: Transform @@ -197574,6 +201089,13 @@ entities: - type: Transform pos: 8.550257,-23.095434 parent: 12 +- proto: WelderMini + entities: + - uid: 5875 + components: + - type: Transform + pos: -22.4267,53.76478 + parent: 12 - proto: WeldingFuelTankFull entities: - uid: 1765 @@ -197581,6 +201103,11 @@ entities: - type: Transform pos: -50.5,-32.5 parent: 12 + - uid: 2845 + components: + - type: Transform + pos: 45.5,58.5 + parent: 12 - uid: 4243 components: - type: Transform @@ -197606,6 +201133,11 @@ entities: - type: Transform pos: 81.5,-36.5 parent: 12 + - uid: 9997 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 12 - uid: 10391 components: - type: Transform @@ -197651,11 +201183,6 @@ entities: - type: Transform pos: 46.5,-3.5 parent: 12 - - uid: 24224 - components: - - type: Transform - pos: 46.5,58.5 - parent: 12 - uid: 25044 components: - type: Transform @@ -197686,15 +201213,15 @@ entities: - type: Transform pos: 52.5,2.5 parent: 12 - - uid: 27846 + - uid: 26681 components: - type: Transform - pos: -15.5,69.5 + pos: -2.5,-20.5 parent: 12 - - uid: 28651 + - uid: 27846 components: - type: Transform - pos: -4.5,-23.5 + pos: -15.5,69.5 parent: 12 - uid: 28750 components: @@ -197706,6 +201233,16 @@ entities: - type: Transform pos: 29.5,11.5 parent: 12 + - uid: 29974 + components: + - type: Transform + pos: -51.5,54.5 + parent: 12 + - uid: 29997 + components: + - type: Transform + pos: -35.5,73.5 + parent: 12 - uid: 30402 components: - type: Transform @@ -197723,11 +201260,6 @@ entities: parent: 12 - proto: WetFloorSign entities: - - uid: 2721 - components: - - type: Transform - pos: 36.92181,-30.370167 - parent: 12 - uid: 12247 components: - type: Transform @@ -197738,15 +201270,15 @@ entities: - type: Transform pos: 48.600037,20.622837 parent: 12 - - uid: 22158 + - uid: 25014 components: - type: Transform - pos: 36.62012,-30.786295 + pos: 8.533746,65.62123 parent: 12 - - uid: 25014 + - uid: 26917 components: - type: Transform - pos: 8.533746,65.62123 + pos: -61.558186,-27.004528 parent: 12 - proto: WheatSeeds entities: @@ -197805,16 +201337,6 @@ entities: - type: Transform pos: -38.5,-21.5 parent: 12 - - uid: 8833 - components: - - type: Transform - pos: 49.5,-29.5 - parent: 12 - - uid: 8928 - components: - - type: Transform - pos: 48.5,-29.5 - parent: 12 - uid: 12577 components: - type: Transform @@ -197884,12 +201406,6 @@ entities: - type: Transform pos: -5.5,55.5 parent: 12 - - uid: 29642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,72.5 - parent: 12 - uid: 30332 components: - type: Transform @@ -198252,6 +201768,12 @@ entities: parent: 12 - proto: Window entities: + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,60.5 + parent: 12 - uid: 291 components: - type: Transform @@ -198416,24 +201938,18 @@ entities: rot: 3.141592653589793 rad pos: -1.5,19.5 parent: 12 - - uid: 4472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 12 - - uid: 4473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 12 - uid: 4702 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-37.5 parent: 12 + - uid: 5302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 12 - uid: 7088 components: - type: Transform @@ -198500,6 +202016,11 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-35.5 parent: 12 + - uid: 9969 + components: + - type: Transform + pos: -51.5,-17.5 + parent: 12 - uid: 10578 components: - type: Transform @@ -198512,6 +202033,11 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,14.5 parent: 12 + - uid: 10617 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 12 - uid: 10653 components: - type: Transform @@ -198552,12 +202078,6 @@ entities: - type: Transform pos: 48.5,17.5 parent: 12 - - uid: 11795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,60.5 - parent: 12 - uid: 11824 components: - type: Transform @@ -198639,12 +202159,6 @@ entities: - type: Transform pos: -24.5,-61.5 parent: 12 - - uid: 12332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,60.5 - parent: 12 - uid: 12524 components: - type: Transform @@ -199027,12 +202541,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-12.5 parent: 12 - - uid: 16797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-15.5 - parent: 12 - uid: 17108 components: - type: Transform @@ -199129,6 +202637,11 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-12.5 parent: 12 + - uid: 20782 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 12 - uid: 22292 components: - type: Transform @@ -199171,26 +202684,21 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-22.5 parent: 12 - - uid: 26242 - components: - - type: Transform - pos: -54.5,-15.5 - parent: 12 - uid: 27276 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-40.5 parent: 12 - - uid: 27415 + - uid: 27401 components: - type: Transform - pos: -45.5,-16.5 + pos: -53.5,-17.5 parent: 12 - - uid: 28181 + - uid: 27415 components: - type: Transform - pos: -53.5,-15.5 + pos: -45.5,-16.5 parent: 12 - uid: 29075 components: @@ -199338,11 +202846,28 @@ entities: rot: 3.141592653589793 rad pos: 53.5,54.5 parent: 12 - - uid: 28193 + - uid: 29115 + components: + - type: Transform + pos: -37.5,79.5 + parent: 12 + - uid: 29497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,78.5 + parent: 12 + - uid: 29498 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,-13.5 + pos: -37.5,77.5 + parent: 12 + - uid: 29499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,78.5 parent: 12 - uid: 30322 components: @@ -199366,30 +202891,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-49.5 parent: 12 - - uid: 30340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,54.5 - parent: 12 - - uid: 30341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,54.5 - parent: 12 - - uid: 30342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,54.5 - parent: 12 - - uid: 30343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,53.5 - parent: 12 - uid: 30346 components: - type: Transform @@ -200216,11 +203717,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,37.5 parent: 12 - - uid: 21935 - components: - - type: Transform - pos: -25.5,56.5 - parent: 12 - uid: 21965 components: - type: Transform @@ -200408,11 +203904,6 @@ entities: - type: Transform pos: 52.592125,-23.373646 parent: 12 - - uid: 9243 - components: - - type: Transform - pos: 43.56649,-37.601086 - parent: 12 - uid: 17621 components: - type: Transform @@ -200420,6 +203911,16 @@ entities: parent: 12 - proto: WoodDoor entities: + - uid: 6080 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 12 + - uid: 12071 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 12 - uid: 13312 components: - type: Transform @@ -200469,17 +203970,11 @@ entities: - 31202 - proto: Wrench entities: - - uid: 5916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.541794,-20.507181 - parent: 12 - uid: 5917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.52617,-19.538431 + rot: -43.98229715025713 rad + pos: 33.474327,-18.568962 parent: 12 - uid: 7197 components: @@ -200493,6 +203988,13 @@ entities: rot: -50.265482457436725 rad pos: 46.516457,-16.390417 parent: 12 + - uid: 9541 + components: + - type: Transform + parent: 9298 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 12655 components: - type: Transform @@ -200519,11 +204021,10 @@ entities: - type: Transform pos: -23.775642,-15.327034 parent: 12 - - uid: 29302 + - uid: 30137 components: - type: Transform - rot: -12.566370614359172 rad - pos: 9.636911,-13.368637 + pos: -42.562584,42.448437 parent: 12 - proto: Zipties entities: diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 6968f69c4dba5c..1c5b67b5005dc1 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -899,6 +899,8 @@ entities: 7347: 63,-36 7354: 62,-37 7410: 23,-53 + 7417: -55,-46 + 7418: -41,-46 - node: cleanable: True color: '#FFFFFFFF' @@ -1503,6 +1505,8 @@ entities: 6990: -33,-5 6991: -31,-5 7406: 8,-49 + 7419: -4,-12 + 7420: -5,-12 - node: cleanable: True color: '#FFFFFFFF' @@ -10325,7 +10329,8 @@ entities: 1,5: 1: 47359 1,6: - 1: 15291 + 1: 15289 + 7: 2 1,7: 1: 65307 1,8: @@ -10359,7 +10364,8 @@ entities: -3,7: 1: 55807 -3,8: - 1: 3549 + 1: 3533 + 8: 16 -2,5: 1: 30719 -2,6: @@ -11612,6 +11618,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824873 + - 82.1031 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -11890,6 +11926,22 @@ entities: - 493 - 492 - 491 + - uid: 1973 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 8585 + - 8586 + - 8581 + - 8582 + - 8583 + - 8584 + - 18743 + - 18741 + - 18742 - uid: 2086 components: - type: Transform @@ -13265,22 +13317,6 @@ entities: - 18684 - 18683 - 18682 - - uid: 8462 - components: - - type: Transform - pos: 1.5,49.5 - parent: 2 - - type: DeviceList - devices: - - 8585 - - 8586 - - 8581 - - 8582 - - 8583 - - 8584 - - 18743 - - 18741 - - 18742 - uid: 8463 components: - type: Transform @@ -15227,21 +15263,21 @@ entities: rot: 1.5707963267948966 rad pos: 73.5,-2.5 parent: 2 - - uid: 15229 + - uid: 15230 components: - type: MetaData name: Evacuation pod docking airlock - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,1.5 + pos: 73.5,5.5 parent: 2 - - uid: 15230 + - uid: 17539 components: - type: MetaData name: Evacuation pod docking airlock - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,5.5 + pos: 73.5,1.5 parent: 2 - uid: 21378 components: @@ -17040,16 +17076,22 @@ entities: parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 5544 + - uid: 8230 components: - type: MetaData name: Salvage airlock - type: Transform - rot: -1.5707963267948966 rad pos: 32.5,18.5 parent: 2 - proto: AirlockScienceGlassLocked entities: + - uid: 1988 + components: + - type: MetaData + name: Artifact chamber airlock + - type: Transform + pos: 78.5,-13.5 + parent: 2 - uid: 7106 components: - type: MetaData @@ -17078,13 +17120,10 @@ entities: - type: Transform pos: 65.5,-21.5 parent: 2 - - uid: 7353 - components: - - type: Transform - pos: 78.5,-13.5 - parent: 2 - uid: 7354 components: + - type: MetaData + name: Artifact chamber airlock - type: Transform pos: 78.5,-17.5 parent: 2 @@ -17593,6 +17632,9 @@ entities: - type: Transform pos: -1.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 18756 components: - type: Transform @@ -18318,12 +18360,12 @@ entities: - type: Transform pos: 16.69675,-24.555443 parent: 2 -- proto: AnomalyLocatorUnpowered +- proto: AnomalyLocatorEmpty entities: - - uid: 7240 + - uid: 6028 components: - type: Transform - pos: 67.51584,-14.324951 + pos: 67.48892,-14.349368 parent: 2 - proto: AnomalyScanner entities: @@ -20404,16 +20446,6 @@ entities: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 22465 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - - uid: 22466 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 2 - proto: Autolathe entities: - uid: 127 @@ -21209,13 +21241,6 @@ entities: - type: Transform pos: -50.5,-20.5 parent: 2 -- proto: Bible - entities: - - uid: 6028 - components: - - type: Transform - pos: -30.352081,-37.38564 - parent: 2 - proto: BikeHorn entities: - uid: 1228 @@ -21230,6 +21255,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Biogenerator + entities: + - uid: 2019 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 - proto: BlastDoor entities: - uid: 157 @@ -21329,10 +21366,8 @@ entities: - type: Transform pos: 82.5,-18.5 parent: 2 - - uid: 7934 + - uid: 16684 components: - - type: MetaData - name: Disposals blast door - type: Transform pos: -9.5,-41.5 parent: 2 @@ -21952,10 +21987,10 @@ entities: - type: Transform pos: -4.63874,48.68385 parent: 2 - - uid: 14241 + - uid: 8009 components: - type: Transform - pos: -30.688831,14.685245 + pos: -31.929813,14.762749 parent: 2 - uid: 16333 components: @@ -63891,15 +63926,15 @@ entities: parent: 2 - proto: DiseaseSwab entities: - - uid: 5270 + - uid: 1972 components: - type: Transform - pos: 3.6125865,51.851067 + pos: 3.3475041,52.103363 parent: 2 - - uid: 21883 + - uid: 2013 components: - type: Transform - pos: 3.422883,51.88294 + pos: 3.2537541,52.134613 parent: 2 - proto: DisposalBend entities: @@ -69810,6 +69845,18 @@ entities: - type: Transform pos: 51.5,-38.5 parent: 2 + - uid: 1955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,45.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,50.5 + parent: 2 - uid: 2295 components: - type: Transform @@ -69846,6 +69893,12 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-6.5 parent: 2 + - uid: 5469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,51.5 + parent: 2 - uid: 5991 components: - type: Transform @@ -70351,12 +70404,6 @@ entities: - type: Transform pos: -8.5,29.5 parent: 2 - - uid: 17450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,51.5 - parent: 2 - uid: 17451 components: - type: Transform @@ -70504,12 +70551,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-4.5 parent: 2 - - uid: 21911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,45.5 - parent: 2 - uid: 22321 components: - type: Transform @@ -72957,12 +72998,18 @@ entities: rot: 3.141592653589793 rad pos: -2.5,44.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8582 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,44.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8593 components: - type: Transform @@ -73872,11 +73919,17 @@ entities: - type: Transform pos: -5.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8584 components: - type: Transform pos: 2.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8620 components: - type: Transform @@ -74944,11 +74997,17 @@ entities: - type: Transform pos: -2.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8586 components: - type: Transform pos: -1.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8595 components: - type: Transform @@ -94809,6 +94868,9 @@ entities: - type: Transform pos: -2.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18744 @@ -96024,6 +96086,9 @@ entities: - type: Transform pos: -0.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18755 @@ -99920,6 +99985,11 @@ entities: - type: Transform pos: 62.5,28.5 parent: 2 + - uid: 16176 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 2 - uid: 16294 components: - type: Transform @@ -101582,11 +101652,6 @@ entities: - type: Transform pos: 19.5,-71.5 parent: 2 - - uid: 22046 - components: - - type: Transform - pos: 25.5,-63.5 - parent: 2 - uid: 22047 components: - type: Transform @@ -101908,6 +101973,11 @@ entities: - type: Transform pos: 23.5,26.5 parent: 2 + - uid: 5550 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 - uid: 7876 components: - type: Transform @@ -101973,11 +102043,6 @@ entities: - type: Transform pos: 3.5,-42.5 parent: 2 - - uid: 15608 - components: - - type: Transform - pos: 31.5,26.5 - parent: 2 - uid: 15609 components: - type: Transform @@ -102567,6 +102632,13 @@ entities: - type: Transform pos: -31.5,34.5 parent: 2 +- proto: Handcuffs + entities: + - uid: 7240 + components: + - type: Transform + pos: 48.17024,-38.59788 + parent: 2 - proto: HandheldGPSBasic entities: - uid: 14948 @@ -102814,10 +102886,10 @@ entities: parent: 2 - proto: HydroponicsToolClippers entities: - - uid: 5267 + - uid: 1965 components: - type: Transform - pos: 3.4828591,51.077652 + pos: 3.5818791,51.900238 parent: 2 - uid: 21332 components: @@ -102826,10 +102898,10 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 5266 + - uid: 1975 components: - type: Transform - pos: 3.4094758,50.54562 + pos: 3.5662541,51.509613 parent: 2 - uid: 16334 components: @@ -102838,10 +102910,10 @@ entities: parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 5269 + - uid: 1976 components: - type: Transform - pos: 3.5378966,50.582314 + pos: 3.6443791,51.618988 parent: 2 - uid: 16335 components: @@ -103009,6 +103081,11 @@ entities: parent: 2 - proto: InflatableWall entities: + - uid: 1991 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 - uid: 9229 components: - type: Transform @@ -103553,12 +103630,6 @@ entities: - type: Transform pos: 35.535755,-32.141846 parent: 2 - - uid: 5946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.28428,-38.068363 - parent: 2 - uid: 5947 components: - type: Transform @@ -103575,6 +103646,12 @@ entities: - type: Transform pos: 54.507133,11.775886 parent: 2 + - uid: 8836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.404613,-37.97288 + parent: 2 - uid: 9178 components: - type: Transform @@ -104067,8 +104144,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8978093 - - 7.139378 + - 1.8978151 + - 7.1394 - 0 - 0 - 0 @@ -104601,8 +104678,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -104619,9 +104696,9 @@ entities: showEnts: False occludes: True ents: - - 5718 - - 20230 - 20229 + - 20230 + - 5718 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -105260,10 +105337,15 @@ entities: parent: 2 - proto: MicrowaveMachineCircuitboard entities: - - uid: 17481 + - uid: 1977 + components: + - type: Transform + pos: -31.664188,14.512749 + parent: 2 + - uid: 3582 components: - type: Transform - pos: -31.524014,14.605584 + pos: -31.195438,15.497125 parent: 2 - proto: MiniGravityGeneratorCircuitboard entities: @@ -106385,13 +106467,6 @@ entities: - type: Transform pos: 21.69673,-35.586906 parent: 2 - - uid: 21452 - components: - - type: Transform - pos: -1.3248596,-17.594215 - parent: 2 - - type: Stack - count: 15 - proto: Pen entities: - uid: 1543 @@ -106566,204 +106641,6 @@ entities: parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 1972 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 2 - - uid: 1973 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 2 - - uid: 1974 - components: - - type: Transform - pos: 16.5,-30.5 - parent: 2 - - uid: 1975 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 2 - - uid: 1976 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 2 - - uid: 1977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,2.5 - parent: 2 - - uid: 1978 - components: - - type: Transform - pos: -12.5,0.5 - parent: 2 - - uid: 1979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 2 - - uid: 1980 - components: - - type: Transform - pos: -10.5,0.5 - parent: 2 - - uid: 1981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,2.5 - parent: 2 - - uid: 1982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 2 - - uid: 1983 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 2 - - uid: 1984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 2 - - uid: 1985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 2 - - uid: 1986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 2 - - uid: 1987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 1988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 1989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 2 - - uid: 1990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 2 - - uid: 1991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-13.5 - parent: 2 - - uid: 1992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 2 - - uid: 1993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-16.5 - parent: 2 - - uid: 1994 - components: - - type: Transform - pos: 78.5,-18.5 - parent: 2 - - uid: 1995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-16.5 - parent: 2 - - uid: 1996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-18.5 - parent: 2 - - uid: 1997 - components: - - type: Transform - pos: 78.5,-12.5 - parent: 2 - - uid: 1998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 2 - - uid: 1999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-12.5 - parent: 2 - - uid: 2000 - components: - - type: Transform - pos: 78.5,-16.5 - parent: 2 - - uid: 2001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-16.5 - parent: 2 - - uid: 2003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 2 - - uid: 2004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,21.5 - parent: 2 - - uid: 2005 - components: - - type: Transform - pos: -43.5,21.5 - parent: 2 - - uid: 2006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 2007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - uid: 5901 components: - type: Transform @@ -106817,444 +106694,6 @@ entities: - type: Transform pos: -43.5,22.5 parent: 2 - - uid: 22904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 22905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 22906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 22907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 2 - - uid: 22908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 2 - - uid: 22909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-13.5 - parent: 2 - - uid: 22931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-18.5 - parent: 2 - - uid: 22932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-18.5 - parent: 2 - - uid: 22933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-16.5 - parent: 2 - - uid: 22934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-17.5 - parent: 2 - - uid: 22935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-18.5 - parent: 2 - - uid: 22936 - components: - - type: Transform - pos: 84.5,-18.5 - parent: 2 - - uid: 22937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-18.5 - parent: 2 - - uid: 22938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-17.5 - parent: 2 - - uid: 22939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-16.5 - parent: 2 - - uid: 22940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-16.5 - parent: 2 - - uid: 22941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 22942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 22943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-13.5 - parent: 2 - - uid: 22944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-14.5 - parent: 2 - - uid: 22945 - components: - - type: Transform - pos: 84.5,-14.5 - parent: 2 - - uid: 22946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-14.5 - parent: 2 - - uid: 22947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-13.5 - parent: 2 - - uid: 22948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 23034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 2 - - uid: 23035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 23036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 23037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 2 - - uid: 23038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 2 - - uid: 23039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 2 - - uid: 23040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 2 - - uid: 23041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 2 - - uid: 23042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 2 - - uid: 23043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 23044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 23045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 2 - - uid: 23046 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 2 - - uid: 23047 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 2 - - uid: 23048 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 2 - - uid: 23049 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 2 - - uid: 23050 - components: - - type: Transform - pos: 18.5,-5.5 - parent: 2 - - uid: 23051 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 2 - - uid: 23084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-30.5 - parent: 2 - - uid: 23085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 2 - - uid: 23086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-30.5 - parent: 2 - - uid: 23087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-30.5 - parent: 2 - - uid: 23088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-30.5 - parent: 2 - - uid: 23089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 2 - - uid: 23090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-30.5 - parent: 2 - - uid: 23216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,23.5 - parent: 2 - - uid: 23217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,23.5 - parent: 2 - - uid: 23218 - components: - - type: Transform - pos: -41.5,23.5 - parent: 2 - - uid: 23219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,23.5 - parent: 2 - - uid: 23220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,25.5 - parent: 2 - - uid: 23221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,25.5 - parent: 2 - - uid: 23222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,25.5 - parent: 2 - - uid: 23223 - components: - - type: Transform - pos: -43.5,25.5 - parent: 2 - - uid: 23224 - components: - - type: Transform - pos: -45.5,23.5 - parent: 2 - - uid: 23225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,23.5 - parent: 2 - - uid: 23226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,23.5 - parent: 2 - - uid: 23227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,23.5 - parent: 2 - - uid: 23228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 2 - - uid: 23229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,2.5 - parent: 2 - - uid: 23230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 2 - - uid: 23231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 2 - - uid: 23232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,0.5 - parent: 2 - - uid: 23233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 2 - - uid: 23234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 2 - - uid: 23235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,2.5 - parent: 2 - - uid: 23236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,1.5 - parent: 2 - - uid: 23237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 2 - - uid: 23291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-14.5 - parent: 2 - - uid: 23292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-14.5 - parent: 2 - - uid: 23293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-14.5 - parent: 2 - - uid: 23294 - components: - - type: Transform - pos: 78.5,-14.5 - parent: 2 - proto: PlasmaWindoorSecureArmoryLocked entities: - uid: 21596 @@ -108523,15 +107962,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - uid: 1634 - components: - - type: Transform - pos: -32.5,17.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1635 components: - type: Transform @@ -108861,13 +108291,9 @@ entities: - uid: 1678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,11.5 + rot: -1.5707963267948966 rad + pos: -28.5,15.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1679 components: - type: Transform @@ -109112,6 +108538,17 @@ entities: - type: Transform pos: -29.5,7.5 parent: 2 + - uid: 1974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,50.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 - uid: 2683 components: - type: Transform @@ -109838,25 +109275,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - uid: 6040 - components: - - type: Transform - pos: 1.5,48.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,50.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6045 components: - type: Transform @@ -110230,6 +109648,12 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 + - uid: 7839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,15.5 + parent: 2 - uid: 7988 components: - type: Transform @@ -113730,6 +113154,11 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-26.5 parent: 2 + - uid: 5946 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 - uid: 7040 components: - type: Transform @@ -113963,12 +113392,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,26.5 parent: 2 - - uid: 8836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,49.5 - parent: 2 - uid: 8837 components: - type: Transform @@ -115043,38254 +114466,33753 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-0.5 parent: 21128 -- proto: ReinforcedWindow +- proto: ReinforcedPlasmaWindow entities: - - uid: 5115 + - uid: 1978 components: - type: Transform - pos: -39.5,18.5 + pos: 13.5,-30.5 parent: 2 - - uid: 6870 + - uid: 1979 components: - type: Transform - pos: 60.5,20.5 + pos: 15.5,-30.5 parent: 2 - - uid: 6892 + - uid: 1980 components: - type: Transform - pos: 59.5,20.5 + pos: 16.5,-30.5 parent: 2 - - uid: 6896 + - uid: 1981 components: - type: Transform - pos: 58.5,20.5 + pos: 12.5,-30.5 parent: 2 - - uid: 6929 + - uid: 1982 components: - type: Transform - pos: 60.5,22.5 + pos: 14.5,-30.5 parent: 2 - - uid: 6930 + - uid: 1983 components: - type: Transform - pos: 59.5,22.5 + pos: -10.5,1.5 parent: 2 - - uid: 6931 + - uid: 1984 components: - type: Transform - pos: 58.5,22.5 + pos: -12.5,2.5 parent: 2 - - uid: 15873 + - uid: 1986 components: - type: Transform - pos: -40.5,18.5 + pos: -10.5,0.5 parent: 2 - - uid: 17254 + - uid: 1987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-52.5 + pos: 78.5,-16.5 parent: 2 -- proto: RemoteSignaller - entities: - - uid: 3270 + - uid: 1989 components: - - type: MetaData - desc: Bolts all doors and windoors in the HoP's room. - name: Lockdown remote - type: Transform - pos: 40.97135,-23.35855 + pos: 78.5,-12.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 3516: - - Pressed: DoorBolt - - Pressed: Close - - Pressed: AutoClose - 49: - - Pressed: DoorBolt - - Pressed: AutoClose - - Pressed: Close - 3489: - - Pressed: Close - - Pressed: AutoClose - - Pressed: DoorBolt - - uid: 20229 - components: - - type: MetaData - desc: Just incase you need a double layer of security to the armory! - name: perma blast door remote - - type: Transform - parent: 4586 - - type: DeviceLinkSource - linkedPorts: - 20613: - - Pressed: Toggle - 20612: - - Pressed: Toggle - 20611: - - Pressed: Toggle - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20230 + - uid: 1990 components: - - type: MetaData - desc: Helpful for troublesome prisoners trying to break out in perma! - name: armory blast door remote - type: Transform - parent: 4586 - - type: DeviceLinkSource - linkedPorts: - 4719: - - Pressed: Toggle - 4895: - - Pressed: Toggle - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ResearchAndDevelopmentServer - entities: - - uid: 7429 + pos: 78.5,-14.5 + parent: 2 + - uid: 1992 components: - type: Transform - pos: 71.5,-29.5 + pos: 84.5,-16.5 parent: 2 -- proto: RevolverCapGun - entities: - - uid: 16113 + - uid: 1993 components: - type: Transform - pos: 58.457176,26.640175 + pos: 84.5,-17.5 parent: 2 -- proto: RobustHarvestChemistryBottle - entities: - - uid: 16065 + - uid: 1994 components: - type: Transform - pos: -30.329456,14.528995 + pos: 84.5,-18.5 parent: 2 -- proto: RubberStampApproved - entities: - - uid: 16307 + - uid: 1995 components: - type: Transform - pos: 28.655685,10.5061245 + pos: 84.5,-12.5 parent: 2 - - uid: 16905 + - uid: 1996 components: - type: Transform - pos: 44.978428,-23.253704 + pos: 84.5,-13.5 parent: 2 -- proto: RubberStampDenied - entities: - - uid: 16306 + - uid: 1997 components: - type: Transform - pos: 28.325459,10.518355 + pos: 84.5,-14.5 parent: 2 - - uid: 16917 + - uid: 1998 components: - type: Transform - pos: 44.978428,-23.482008 + pos: -43.5,25.5 parent: 2 -- proto: SalvageMagnet - entities: - - uid: 6058 + - uid: 1999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 + pos: -43.5,21.5 parent: 2 -- proto: Screen - entities: - - uid: 3271 + - uid: 2000 components: - type: Transform - pos: 15.5,38.5 + pos: -41.5,23.5 parent: 2 - - uid: 7573 + - uid: 2001 components: - type: Transform - pos: -2.5,18.5 + pos: -45.5,23.5 parent: 2 - - uid: 10319 + - uid: 2006 components: - type: Transform - pos: 18.5,10.5 + pos: -10.5,2.5 parent: 2 - - uid: 10320 + - uid: 2007 components: - type: Transform - pos: 40.5,6.5 + pos: -12.5,0.5 parent: 2 - - uid: 12087 + - uid: 2008 components: - type: Transform - pos: 71.5,-19.5 + pos: -12.5,1.5 parent: 2 - - uid: 14883 + - uid: 2009 components: - type: Transform - pos: -45.5,-5.5 + pos: 78.5,-18.5 parent: 2 - - uid: 16012 + - uid: 2039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-34.5 + pos: 22.5,-5.5 parent: 2 - - uid: 16057 + - uid: 2040 components: - type: Transform - pos: 55.5,-22.5 + pos: 24.5,-5.5 parent: 2 - - uid: 16166 + - uid: 2042 components: - type: Transform - pos: 65.5,-27.5 + pos: 20.5,-5.5 parent: 2 - - uid: 16445 + - uid: 2045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-34.5 + pos: 26.5,-5.5 parent: 2 - - uid: 16617 + - uid: 15235 components: - type: Transform - pos: 11.5,-34.5 + pos: 32.5,-13.5 parent: 2 - - uid: 16618 + - uid: 16089 components: - type: Transform - pos: 6.5,-25.5 + pos: 18.5,-5.5 parent: 2 - - uid: 16804 + - uid: 16119 components: - type: Transform - pos: -57.5,-26.5 + pos: 16.5,-5.5 parent: 2 - - uid: 16940 + - uid: 16125 components: - type: Transform - pos: 40.5,-31.5 + pos: 32.5,-10.5 parent: 2 - - uid: 17205 + - uid: 16126 components: - type: Transform - pos: 25.5,-34.5 + pos: 32.5,-11.5 parent: 2 - - uid: 17223 + - uid: 16155 components: - type: Transform - rot: 4.71238898038469 rad - pos: 30.5,-24.5 + pos: 32.5,-12.5 parent: 2 - - uid: 20293 +- proto: ReinforcedWindow + entities: + - uid: 1634 components: - type: Transform - pos: -31.5,-5.5 + pos: 19.5,22.5 parent: 2 - - uid: 20311 + - uid: 1944 components: - type: Transform - pos: -6.5,-32.5 + pos: -34.5,-3.5 parent: 2 - - uid: 20312 + - uid: 1952 components: - type: Transform - pos: -22.5,-20.5 + pos: -34.5,-2.5 parent: 2 - - uid: 20313 + - uid: 1985 components: - type: Transform - pos: -17.5,-5.5 + pos: 0.5,7.5 parent: 2 - - uid: 20796 + - uid: 2003 components: - type: Transform - pos: -21.5,22.5 + pos: -50.5,-49.5 parent: 2 - - uid: 20797 + - uid: 2004 components: - type: Transform - pos: -9.5,30.5 + pos: 7.5,0.5 parent: 2 - - uid: 20798 + - uid: 2005 components: - type: Transform - pos: -3.5,49.5 + pos: 0.5,-6.5 parent: 2 - - uid: 20799 + - uid: 2028 components: - type: Transform - pos: 35.5,10.5 + pos: -44.5,-5.5 parent: 2 - - uid: 20800 + - uid: 2029 components: - type: Transform - pos: 23.5,24.5 + pos: -19.5,-46.5 parent: 2 - - uid: 20801 + - uid: 2030 components: - type: Transform - pos: 48.5,15.5 + pos: -17.5,-46.5 parent: 2 - - uid: 20802 + - uid: 2031 components: - type: Transform - pos: 44.5,-9.5 + pos: 0.5,-10.5 parent: 2 - - uid: 20803 + - uid: 2032 components: - type: Transform - pos: 22.5,-19.5 + pos: -1.5,-10.5 parent: 2 - - uid: 20806 + - uid: 2033 components: - type: Transform - pos: 26.5,-40.5 + pos: -8.5,-20.5 parent: 2 - - uid: 20808 + - uid: 2034 components: - type: Transform - pos: -1.5,-38.5 + pos: -9.5,-20.5 parent: 2 - - uid: 20809 + - uid: 2036 components: - type: Transform - pos: -44.5,-32.5 + pos: -0.5,-24.5 parent: 2 - - uid: 20810 + - uid: 2038 components: - type: Transform - pos: -50.5,-32.5 + pos: 0.5,-28.5 parent: 2 - - uid: 20811 + - uid: 2044 components: - type: Transform - pos: -55.5,2.5 + pos: 30.5,-10.5 parent: 2 - - uid: 20812 + - uid: 2046 components: - type: Transform - pos: -55.5,0.5 + pos: 30.5,-11.5 parent: 2 - - uid: 20813 + - uid: 2047 components: - type: Transform - pos: -42.5,9.5 + pos: 30.5,-12.5 parent: 2 - - uid: 20814 + - uid: 2048 components: - type: Transform - pos: -49.5,-5.5 + pos: 30.5,-13.5 parent: 2 - - uid: 20816 + - uid: 2695 components: - type: Transform - pos: -38.5,-11.5 + pos: 30.5,-16.5 parent: 2 - - uid: 21033 + - uid: 2957 components: - type: Transform - pos: 31.5,24.5 + pos: 26.5,-16.5 parent: 2 - - uid: 21034 + - uid: 2982 components: - type: Transform - pos: -33.5,8.5 + pos: -22.5,-12.5 parent: 2 - - uid: 22184 + - uid: 2983 components: - type: Transform - pos: 21.5,-51.5 + pos: -22.5,-15.5 parent: 2 - - uid: 22188 + - uid: 2984 components: - type: Transform - pos: 19.5,-74.5 + pos: 25.5,-27.5 parent: 2 - - uid: 22189 + - uid: 3053 components: - type: Transform - pos: 21.5,-66.5 + pos: 28.5,-27.5 parent: 2 - - uid: 22190 + - uid: 3159 components: - type: Transform - pos: 17.5,-66.5 + pos: 24.5,-27.5 parent: 2 -- proto: Screwdriver - entities: - - uid: 2052 + - uid: 3161 components: - type: Transform - pos: -4.4728403,-17.587566 + pos: -27.5,12.5 parent: 2 - - uid: 7717 + - uid: 3182 components: - type: Transform - pos: 27.200108,-41.24766 + pos: -41.5,-31.5 parent: 2 -- proto: SecurityTechFab - entities: - - uid: 5043 + - uid: 3186 components: - type: Transform - pos: 7.5,30.5 + pos: -41.5,-30.5 parent: 2 -- proto: SeedExtractor - entities: - - uid: 5236 + - uid: 3187 components: - type: Transform - pos: -3.5,51.5 + pos: -57.5,3.5 parent: 2 - - uid: 16260 + - uid: 3188 components: - type: Transform - pos: -31.5,17.5 + pos: -56.5,3.5 parent: 2 -- proto: ShardGlass - entities: - - uid: 6994 + - uid: 3190 components: - type: Transform - pos: 37.799515,9.717336 + pos: -57.5,-2.5 parent: 2 - - uid: 15987 + - uid: 3191 components: - type: Transform - pos: 37.220566,10.453447 + pos: -55.5,1.5 parent: 2 - - uid: 17064 + - uid: 3192 components: - type: Transform - pos: 38.60945,9.960392 + pos: -45.5,-39.5 parent: 2 -- proto: SheetGlass - entities: - - uid: 2054 + - uid: 3193 components: - type: Transform - pos: -5.303391,-23.421415 + pos: -43.5,-42.5 parent: 2 - - uid: 4395 + - uid: 3301 components: - type: Transform - pos: 30.404766,-0.06552839 + pos: -6.5,25.5 parent: 2 - - uid: 7254 + - uid: 3304 components: - type: Transform - pos: 58.962917,-11.384084 + pos: -10.5,25.5 parent: 2 - - uid: 8196 + - uid: 3375 components: - type: Transform - pos: 10.711848,-40.45789 + pos: -14.5,25.5 parent: 2 - - uid: 15156 + - uid: 3376 components: - type: Transform - pos: -33.249187,38.611046 + pos: -46.5,8.5 parent: 2 - - uid: 20556 + - uid: 3529 components: - type: Transform - pos: 5.544655,27.559452 + pos: -49.5,8.5 parent: 2 - - type: Stack - count: 15 - - uid: 20886 + - uid: 3530 components: - type: Transform - pos: 23.487421,19.497616 + pos: -48.5,8.5 parent: 2 -- proto: SheetPlasma - entities: - - uid: 7262 + - uid: 3568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.45334,-7.4422317 + pos: -50.5,8.5 parent: 2 - - uid: 21253 + - uid: 3569 components: - type: Transform - pos: 7.572357,0.5568676 - parent: 21128 - - type: Stack - count: 15 - - uid: 21570 + pos: -45.5,-5.5 + parent: 2 + - uid: 3571 components: - type: Transform - pos: 34.50172,-1.4871633 + pos: -50.5,-5.5 parent: 2 - - type: Stack - count: 15 - - uid: 21882 + - uid: 3574 components: - type: Transform - pos: 6.5330257,-14.510506 + rot: 1.5707963267948966 rad + pos: -45.5,14.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetPlasma1 - entities: - - uid: 17337 + - uid: 3583 components: - type: Transform - pos: 23.631372,-65.50266 + rot: 1.5707963267948966 rad + pos: -49.5,14.5 parent: 2 - - type: Stack - count: 15 - - uid: 21880 + - uid: 3584 components: - type: Transform - pos: 15.5072975,-22.504484 + rot: 1.5707963267948966 rad + pos: -48.5,14.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetPlasteel - entities: - - uid: 7622 + - uid: 3585 components: - type: Transform - pos: 21.439888,-35.48906 + pos: -49.5,-5.5 parent: 2 -- proto: SheetPlastic - entities: - - uid: 1942 + - uid: 3586 components: - type: Transform - pos: 5.388405,27.434452 + pos: -50.5,-18.5 parent: 2 - - type: Stack - count: 15 - - uid: 2056 + - uid: 3649 components: - type: Transform - pos: -5.037766,-23.452665 + pos: -47.5,-18.5 parent: 2 - - uid: 7159 + - uid: 3672 components: - type: Transform - pos: 58.244167,-11.384084 + pos: -51.5,-17.5 parent: 2 - - uid: 15157 + - uid: 3673 components: - type: Transform - pos: -32.858562,38.579796 + pos: -48.5,-30.5 parent: 2 - - uid: 23343 + - uid: 3674 components: - type: Transform - pos: 23.378046,19.38824 + pos: -44.5,-18.5 parent: 2 -- proto: SheetRPGlass - entities: - - uid: 5108 + - uid: 3675 components: - type: Transform - pos: -1.5633564,-17.410757 + pos: 35.5,-39.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetSteel - entities: - - uid: 1960 + - uid: 3676 components: - type: Transform - pos: 23.549921,19.57574 + pos: 37.5,-39.5 parent: 2 - - uid: 2058 + - uid: 3682 components: - type: Transform - pos: -5.490891,-23.421415 + pos: 32.5,-39.5 parent: 2 - - uid: 2059 + - uid: 3695 components: - type: Transform - pos: 13.431305,-15.361163 + pos: 39.5,-39.5 parent: 2 - - uid: 2060 + - uid: 3753 components: - type: Transform - pos: 13.559727,-15.471238 + pos: 41.5,-39.5 parent: 2 - - uid: 4393 + - uid: 3773 components: - type: Transform - pos: 30.423111,0.55823207 + pos: 43.5,-39.5 parent: 2 - - uid: 7253 + - uid: 3774 components: - type: Transform - pos: 58.494167,-11.36325 + pos: 46.5,-39.5 parent: 2 - - uid: 8195 + - uid: 3779 components: - type: Transform - pos: 10.393852,-40.433426 + pos: 48.5,-39.5 parent: 2 - - uid: 15155 + - uid: 3807 components: - type: Transform - pos: -33.561687,38.65792 + pos: 33.5,1.5 parent: 2 - - uid: 16653 + - uid: 3822 components: - type: Transform - pos: 13.535873,34.51549 + pos: 34.5,1.5 parent: 2 - - uid: 21944 + - uid: 3823 components: - type: Transform - pos: 5.65403,27.653202 + pos: 40.5,-2.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetSteel10 - entities: - - uid: 20573 + - uid: 3824 components: - type: Transform - pos: -38.542088,26.524464 + pos: 0.5,25.5 parent: 2 -- proto: SheetUranium - entities: - - uid: 20347 + - uid: 3825 components: - type: Transform - pos: 6.5942326,-13.459567 + pos: -5.5,22.5 parent: 2 - - type: Stack - count: 15 -- proto: ShelfChemistryChemistrySecure - entities: - - uid: 1813 + - uid: 3828 components: - type: Transform - pos: 42.5,14.5 + pos: 2.5,54.5 parent: 2 -- proto: ShotGunCabinetFilled - entities: - - uid: 8186 + - uid: 3835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,33.5 + pos: 0.5,54.5 parent: 2 -- proto: ShuttersNormal - entities: - - uid: 2061 + - uid: 3851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-26.5 + pos: -1.5,54.5 parent: 2 - - uid: 2062 + - uid: 3905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-25.5 + pos: 1.5,44.5 parent: 2 - - uid: 2063 + - uid: 3918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-27.5 + pos: -29.5,32.5 parent: 2 - - uid: 6546 + - uid: 3922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-7.5 + pos: -13.5,37.5 parent: 2 - - uid: 6547 + - uid: 3952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 + pos: 24.5,15.5 parent: 2 - - uid: 6548 + - uid: 3963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-0.5 + pos: 36.5,23.5 parent: 2 - - uid: 6549 + - uid: 3974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-1.5 + pos: 35.5,23.5 parent: 2 - - uid: 6550 + - uid: 3975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 34.5,23.5 parent: 2 - - uid: 6551 + - uid: 3976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 + pos: 33.5,23.5 parent: 2 - - uid: 16146 + - uid: 3977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,28.5 + pos: -65.5,-29.5 parent: 2 - - uid: 16147 + - uid: 3978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,28.5 + pos: -68.5,-31.5 parent: 2 -- proto: ShuttersNormalOpen - entities: - - uid: 2064 + - uid: 3979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 + pos: -65.5,-33.5 parent: 2 - - uid: 2065 + - uid: 3980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,0.5 + pos: 45.5,10.5 parent: 2 - - uid: 2066 + - uid: 3981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,1.5 + pos: -42.5,-42.5 parent: 2 - - uid: 2067 + - uid: 3982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,2.5 + pos: -44.5,-42.5 parent: 2 - - uid: 2068 + - uid: 3983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,3.5 + pos: 44.5,-1.5 parent: 2 - - uid: 2693 + - uid: 3984 components: - type: Transform - pos: 43.5,10.5 + pos: 44.5,-0.5 parent: 2 - - uid: 2694 + - uid: 3985 components: - type: Transform - pos: 42.5,10.5 + pos: -49.5,-49.5 parent: 2 - - uid: 2908 + - uid: 3986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-52.5 + pos: -48.5,-49.5 parent: 2 - - uid: 4423 + - uid: 3987 components: - type: Transform - pos: -45.5,-18.5 + pos: -47.5,-49.5 parent: 2 - - uid: 4424 + - uid: 3988 components: - type: Transform - pos: -44.5,-18.5 + pos: -46.5,-49.5 parent: 2 - - uid: 4425 + - uid: 3989 components: - type: Transform - pos: -43.5,-18.5 + pos: -45.5,-49.5 parent: 2 - - uid: 4540 + - uid: 3990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-27.5 + pos: -44.5,-49.5 parent: 2 - - uid: 4542 + - uid: 4218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-27.5 + pos: -52.5,-63.5 parent: 2 - - uid: 4543 + - uid: 4219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-27.5 + pos: -52.5,-60.5 parent: 2 - - uid: 4544 + - uid: 4221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-27.5 + pos: -52.5,-61.5 parent: 2 - - uid: 4545 + - uid: 4228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-27.5 + pos: -52.5,-62.5 parent: 2 - - uid: 4546 + - uid: 4230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-27.5 + pos: -17.5,-44.5 parent: 2 - - uid: 4547 + - uid: 4231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-27.5 + pos: 52.5,10.5 parent: 2 - - uid: 5655 + - uid: 4232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,21.5 + pos: -45.5,-40.5 parent: 2 - - uid: 5661 + - uid: 4246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,20.5 + pos: -49.5,-40.5 parent: 2 - - uid: 7033 + - uid: 4249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,14.5 + pos: 62.5,-13.5 parent: 2 - - uid: 7377 + - uid: 4251 components: - type: Transform - pos: -20.5,10.5 + pos: 66.5,-13.5 parent: 2 - - uid: 8280 + - uid: 4252 components: - type: Transform - pos: 33.5,-39.5 + pos: 72.5,-12.5 parent: 2 - - uid: 8281 + - uid: 4294 components: - type: Transform - pos: 32.5,-39.5 + pos: -54.5,-33.5 parent: 2 - - uid: 8437 + - uid: 4310 components: - type: Transform - pos: 34.5,-39.5 + pos: 64.5,16.5 parent: 2 - - uid: 8587 + - uid: 4311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,54.5 + pos: 27.5,-47.5 parent: 2 - - uid: 8588 + - uid: 4312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,54.5 + pos: 26.5,-47.5 parent: 2 - - uid: 8589 + - uid: 4313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,54.5 + pos: 28.5,-49.5 parent: 2 - - uid: 8590 + - uid: 4344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,54.5 + pos: 28.5,-47.5 parent: 2 - - uid: 8591 + - uid: 4682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,54.5 + pos: 17.5,-48.5 parent: 2 - - uid: 8592 + - uid: 4704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,54.5 + pos: 17.5,-47.5 parent: 2 - - uid: 8687 + - uid: 4706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-22.5 + pos: 13.5,-63.5 parent: 2 - - uid: 8688 + - uid: 4752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-22.5 + pos: -10.5,-41.5 parent: 2 - - uid: 8689 + - uid: 4761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-22.5 + pos: -6.5,0.5 parent: 2 - - uid: 8691 + - uid: 4778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-22.5 + pos: 2.5,-40.5 parent: 2 - - uid: 8744 + - uid: 4783 components: - type: Transform - pos: 48.5,-39.5 + pos: 2.5,-39.5 parent: 2 - - uid: 8747 + - uid: 4805 components: - type: Transform - pos: 45.5,10.5 + pos: -4.5,-42.5 parent: 2 - - uid: 8748 + - uid: 4807 components: - type: Transform - pos: 46.5,10.5 + pos: 13.5,-65.5 parent: 2 - - uid: 8768 + - uid: 4931 components: - type: Transform - pos: 47.5,-39.5 + pos: 13.5,-64.5 parent: 2 - - uid: 9248 + - uid: 4932 components: - type: Transform - pos: 46.5,-39.5 + pos: -29.5,31.5 parent: 2 - - uid: 12915 + - uid: 4991 components: - type: Transform - pos: 42.5,-39.5 + pos: -23.5,12.5 parent: 2 - - uid: 14724 + - uid: 4992 components: - type: Transform - pos: 38.5,-39.5 + pos: -19.5,-47.5 parent: 2 - - uid: 15408 + - uid: 4994 components: - type: Transform - pos: -22.5,10.5 + pos: -34.5,36.5 parent: 2 - - uid: 15409 + - uid: 5104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 + pos: -34.5,37.5 parent: 2 - - uid: 15410 + - uid: 5105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 + pos: 73.5,4.5 parent: 2 - - uid: 15411 + - uid: 5115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 + pos: -39.5,18.5 parent: 2 - - uid: 16627 + - uid: 5121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,33.5 + pos: 72.5,-1.5 parent: 2 - - uid: 17478 + - uid: 5122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,12.5 + pos: 73.5,2.5 parent: 2 - - uid: 17479 + - uid: 5197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,13.5 + pos: 72.5,4.5 parent: 2 - - uid: 17480 + - uid: 5198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,14.5 + pos: 72.5,6.5 parent: 2 - - uid: 17492 + - uid: 5199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 + pos: 72.5,0.5 parent: 2 - - uid: 17493 + - uid: 5200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 + pos: 72.5,2.5 parent: 2 - - uid: 17494 + - uid: 5201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 + pos: 73.5,0.5 parent: 2 - - uid: 17495 + - uid: 5202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -13.5,42.5 parent: 2 - - uid: 17496 + - uid: 5203 components: - type: Transform - pos: -16.5,-28.5 + pos: -12.5,42.5 parent: 2 - - uid: 17497 + - uid: 5204 components: - type: Transform - pos: -15.5,-28.5 + pos: 84.5,-29.5 parent: 2 - - uid: 17498 + - uid: 5205 components: - type: Transform - pos: -17.5,-28.5 + pos: 84.5,-28.5 parent: 2 - - uid: 17502 + - uid: 5206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,24.5 + pos: 84.5,-27.5 parent: 2 - - uid: 17503 + - uid: 5208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,23.5 + pos: 84.5,-26.5 parent: 2 - - uid: 17512 + - uid: 5230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,14.5 + pos: 84.5,-25.5 parent: 2 - - uid: 17514 + - uid: 5266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 + rot: 1.5707963267948966 rad + pos: 49.5,23.5 parent: 2 - - uid: 17515 + - uid: 5267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,12.5 + pos: -67.5,-27.5 parent: 2 - - uid: 17521 + - uid: 5269 components: - type: Transform - pos: 57.5,-15.5 + pos: 66.5,-36.5 parent: 2 - - uid: 17522 + - uid: 5270 components: - type: Transform - pos: 58.5,-15.5 + pos: 66.5,-34.5 parent: 2 - - uid: 17523 + - uid: 5426 components: - type: Transform - pos: 59.5,-15.5 + pos: -23.5,-46.5 parent: 2 - - uid: 17524 + - uid: 5454 components: - type: Transform - pos: 60.5,-15.5 + pos: 10.5,41.5 parent: 2 - - uid: 19928 + - uid: 5462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,15.5 + pos: -23.5,-47.5 parent: 2 - - uid: 20807 + - uid: 5480 components: - type: Transform - pos: -0.5,-28.5 + pos: -17.5,-43.5 parent: 2 - - uid: 20827 + - uid: 5481 components: - type: Transform - pos: 0.5,-28.5 + pos: -17.5,-47.5 parent: 2 - - uid: 21746 + - uid: 5482 components: - type: Transform - pos: -21.5,10.5 + pos: -66.5,-29.5 parent: 2 - - uid: 22199 + - uid: 5487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-71.5 + pos: -65.5,-27.5 parent: 2 - - uid: 22860 + - uid: 5544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,15.5 + pos: -67.5,-29.5 parent: 2 - - uid: 22861 + - uid: 5546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,19.5 + pos: 24.5,25.5 parent: 2 - - uid: 22862 + - uid: 5547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,25.5 + pos: 27.5,26.5 parent: 2 -- proto: ShuttersRadiationOpen - entities: - - uid: 2069 + - uid: 5636 components: - type: Transform - pos: 2.5,-10.5 + pos: 27.5,25.5 parent: 2 - - uid: 2070 + - uid: 5643 components: - type: Transform - pos: 1.5,-10.5 + pos: -22.5,10.5 parent: 2 - - uid: 2071 + - uid: 5658 components: - type: Transform - pos: 0.5,-10.5 + pos: -13.5,22.5 parent: 2 - - uid: 2072 + - uid: 5662 components: - type: Transform - pos: -0.5,-10.5 - parent: 2 - - uid: 2073 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - uid: 20350 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 20351 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 2 - - uid: 20352 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 -- proto: ShuttersWindowOpen - entities: - - uid: 4616 - components: - - type: Transform - pos: 35.5,-39.5 - parent: 2 - - uid: 4617 - components: - - type: Transform - pos: 36.5,-39.5 - parent: 2 - - uid: 4618 - components: - - type: Transform - pos: 37.5,-39.5 - parent: 2 - - uid: 4620 - components: - - type: Transform - pos: 39.5,-39.5 - parent: 2 - - uid: 4621 - components: - - type: Transform - pos: 40.5,-39.5 - parent: 2 - - uid: 4622 - components: - - type: Transform - pos: 41.5,-39.5 - parent: 2 - - uid: 4624 - components: - - type: Transform - pos: 43.5,-39.5 - parent: 2 - - uid: 4625 - components: - - type: Transform - pos: 44.5,-39.5 - parent: 2 - - uid: 4626 - components: - - type: Transform - pos: 45.5,-39.5 - parent: 2 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 21318 - components: - - type: Transform - pos: 7.516014,2.0782585 - parent: 21128 -- proto: ShuttleWindow - entities: - - uid: 21176 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 21128 - - uid: 21177 - components: - - type: Transform - pos: 0.5,0.5 - parent: 21128 - - uid: 21178 - components: - - type: Transform - pos: 1.5,0.5 - parent: 21128 - - uid: 21179 - components: - - type: Transform - pos: 3.5,0.5 - parent: 21128 - - uid: 21180 - components: - - type: Transform - pos: 7.5,3.5 - parent: 21128 - - uid: 21181 - components: - - type: Transform - pos: 7.5,4.5 - parent: 21128 - - uid: 21182 - components: - - type: Transform - pos: 9.5,3.5 - parent: 21128 - - uid: 21183 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 21128 - - uid: 21193 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 21128 - - uid: 21194 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 21128 -- proto: SignAi - entities: - - uid: 21407 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - - uid: 22196 - components: - - type: Transform - pos: 18.5,-61.5 - parent: 2 -- proto: SignAiUpload - entities: - - uid: 21887 - components: - - type: Transform - pos: 20.5,-41.5 - parent: 2 - - uid: 22186 - components: - - type: Transform - pos: 21.5,-53.5 - parent: 2 -- proto: SignalButton - entities: - - uid: 2074 - components: - - type: MetaData - name: Radiation shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2069: - - Pressed: Toggle - 2070: - - Pressed: Toggle - 2071: - - Pressed: Toggle - 2072: - - Pressed: Toggle - 2073: - - Pressed: Toggle - - uid: 2075 - components: - - type: MetaData - name: secure supply button - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 160: - - Pressed: Toggle - 159: - - Pressed: Toggle - - uid: 2076 - components: - - type: MetaData - name: Blast chamber doors button - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-14.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 158: - - Pressed: Toggle - 157: - - Pressed: Toggle - 16939: - - Pressed: Toggle - - uid: 2077 - components: - - type: MetaData - name: Door bolt button - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6: - - Pressed: DoorBolt - - uid: 2079 - components: - - type: MetaData - name: Door bolt button - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7: - - Pressed: DoorBolt - - uid: 15610 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-25.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12667: - - Pressed: Toggle - - uid: 20353 - components: - - type: MetaData - name: Radiation shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20352: - - Pressed: Toggle - 20351: - - Pressed: Toggle - 20350: - - Pressed: Toggle - - uid: 21867 - components: - - type: MetaData - name: Medical exit button - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6514: - - Pressed: Open - 6515: - - Pressed: Open - 6516: - - Pressed: Open -- proto: SignalButtonDirectional - entities: - - uid: 2100 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8747: - - Pressed: Toggle - 8748: - - Pressed: Toggle - 2693: - - Pressed: Toggle - 2694: - - Pressed: Toggle - - uid: 4520 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4425: - - Pressed: Toggle - 4424: - - Pressed: Toggle - 4423: - - Pressed: Toggle - - uid: 4548 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-31.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4547: - - Pressed: Toggle - 4546: - - Pressed: Toggle - 4545: - - Pressed: Toggle - 4544: - - Pressed: Toggle - 4543: - - Pressed: Toggle - 4542: - - Pressed: Toggle - 4540: - - Pressed: Toggle - - uid: 5653 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5655: - - Pressed: Toggle - 5661: - - Pressed: Toggle - 22861: - - Pressed: Toggle - - uid: 5757 - components: - - type: MetaData - name: Secure storage doors button - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5465: - - Pressed: Toggle - 5466: - - Pressed: Toggle - 5464: - - Pressed: Toggle - - uid: 6961 - components: - - type: MetaData - name: containment button - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6960: - - Pressed: Toggle - 6905: - - Pressed: DoorBolt - - uid: 7032 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14224: - - Pressed: Toggle - - uid: 7039 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16058: - - Pressed: Toggle - - uid: 7054 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-31.5 - parent: 2 - - uid: 8185 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8691: - - Pressed: Toggle - 8689: - - Pressed: Toggle - 8688: - - Pressed: Toggle - 8687: - - Pressed: Toggle - - uid: 8530 - components: - - type: MetaData - name: Door bolt button - - type: Transform - pos: 17.5,26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8242: - - Pressed: DoorBolt - - uid: 8532 - components: - - type: MetaData - name: Door bolt button - - type: Transform - pos: 17.5,24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8243: - - Pressed: DoorBolt - - uid: 12911 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2064: - - Pressed: Toggle - 2065: - - Pressed: Toggle - 2066: - - Pressed: Toggle - 2067: - - Pressed: Toggle - 2068: - - Pressed: Toggle - - uid: 12913 - components: - - type: MetaData - name: Blast doors button - - type: Transform - pos: 27.5,24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5517: - - Pressed: Toggle - 5516: - - Pressed: Toggle - - uid: 12914 - components: - - type: MetaData - name: Blast doors button - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7332: - - Pressed: Toggle - 7333: - - Pressed: Toggle - 7334: - - Pressed: Toggle - - uid: 12916 - components: - - type: MetaData - name: Blast doors button - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7335: - - Pressed: Toggle - 7336: - - Pressed: Toggle - 7337: - - Pressed: Toggle - - uid: 14403 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - pos: 2.9529366,23.045258 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20777: - - Pressed: Toggle - - uid: 14879 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1686: - - Pressed: Toggle - - uid: 14901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7934: - - Pressed: Toggle - - uid: 15913 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15410: - - Pressed: Toggle - 15409: - - Pressed: Toggle - 15411: - - Pressed: Toggle - 15408: - - Pressed: Toggle - 21746: - - Pressed: Toggle - 7377: - - Pressed: Toggle - - uid: 16121 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1688: - - Pressed: Toggle - - uid: 16148 - components: - - type: Transform - pos: 57.5,28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16147: - - Pressed: Toggle - - uid: 16149 - components: - - type: Transform - pos: 61.5,28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16146: - - Pressed: Toggle - - uid: 16628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,31.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16627: - - Pressed: Toggle - - uid: 16704 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12915: - - Pressed: Toggle - 14724: - - Pressed: Toggle - 8437: - - Pressed: Toggle - 4626: - - Pressed: Toggle - 4625: - - Pressed: Toggle - 4624: - - Pressed: Toggle - 8281: - - Pressed: Toggle - 4622: - - Pressed: Toggle - 4621: - - Pressed: Toggle - 4620: - - Pressed: Toggle - 8280: - - Pressed: Toggle - 4618: - - Pressed: Toggle - 4617: - - Pressed: Toggle - 4616: - - Pressed: Toggle - 8744: - - Pressed: Toggle - 8768: - - Pressed: Toggle - 9248: - - Pressed: Toggle - - uid: 17461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20807: - - Pressed: Toggle - 20827: - - Pressed: Toggle - - uid: 17491 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17492: - - Pressed: Toggle - 17493: - - Pressed: Toggle - 17494: - - Pressed: Toggle - 17495: - - Pressed: Toggle - - uid: 17499 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17498: - - Pressed: Toggle - 17496: - - Pressed: Toggle - 17497: - - Pressed: Toggle - - uid: 17505 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17503: - - Pressed: Toggle - 17502: - - Pressed: Toggle - 22862: - - Pressed: Toggle - - uid: 17507 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,53.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8587: - - Pressed: Toggle - 8588: - - Pressed: Toggle - 8589: - - Pressed: Toggle - 8590: - - Pressed: Toggle - 8591: - - Pressed: Toggle - 8592: - - Pressed: Toggle - - uid: 17516 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17515: - - Pressed: Toggle - 17514: - - Pressed: Toggle - 17512: - - Pressed: Toggle - 22860: - - Pressed: Toggle - - uid: 17517 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 46.5,-5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6547: - - Pressed: Toggle - 6546: - - Pressed: Toggle - - uid: 17518 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 46.5,-2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6550: - - Pressed: Toggle - 6551: - - Pressed: Toggle - - uid: 17519 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 46.5,0.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6548: - - Pressed: Toggle - 6549: - - Pressed: Toggle - - uid: 17520 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 61.5,-10.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17524: - - Pressed: Toggle - 17523: - - Pressed: Toggle - 17522: - - Pressed: Toggle - 17521: - - Pressed: Toggle - - uid: 17526 - components: - - type: MetaData - name: Lockdown button - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-51.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17259: - - Pressed: DoorBolt - 2908: - - Pressed: Toggle - - uid: 18465 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 35.5,16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7033: - - Pressed: Toggle - 19928: - - Pressed: Toggle - - uid: 20319 - components: - - type: MetaData - name: Blast doors button - - type: Transform - pos: 61.5,-21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7121: - - Pressed: Toggle - 7123: - - Pressed: Toggle - - uid: 20781 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - pos: -5.5,-24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20783: - - Pressed: Toggle - - uid: 20784 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20778: - - Pressed: Toggle - - uid: 20785 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20779: - - Pressed: Toggle - - uid: 20786 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20780: - - Pressed: Toggle - - uid: 21235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 21128 - - type: DeviceLinkSource - linkedPorts: - 21191: - - Pressed: Toggle - 21192: - - Pressed: Toggle - - uid: 21451 - components: - - type: MetaData - name: lockdown button - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.47196,16.864159 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6727: - - Pressed: DoorBolt - - Pressed: Close - - Pressed: AutoClose - - uid: 21844 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,10.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17478: - - Pressed: Toggle - 17480: - - Pressed: Toggle - 17479: - - Pressed: Toggle - - uid: 21873 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21874: - - Pressed: Toggle - - uid: 21875 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,32.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14851: - - Pressed: Toggle - - uid: 21876 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21877: - - Pressed: Toggle -- proto: SignAnomaly - entities: - - uid: 8366 - components: - - type: Transform - pos: 72.5,-15.5 - parent: 2 -- proto: SignAnomaly2 - entities: - - uid: 7214 - components: - - type: Transform - pos: 66.5,-11.5 - parent: 2 -- proto: SignArcade - entities: - - uid: 2145 - components: - - type: Transform - pos: -44.5,8.5 - parent: 2 - - uid: 3123 - components: - - type: Transform - pos: -50.5,8.5 - parent: 2 -- proto: SignArmory - entities: - - uid: 4749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,29.5 - parent: 2 -- proto: SignAtmos - entities: - - uid: 2080 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 2 - - uid: 4791 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 2 - - uid: 8347 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 2 -- proto: SignBar - entities: - - uid: 6812 - components: - - type: Transform - pos: -18.5,4.5 - parent: 2 -- proto: SignBio - entities: - - uid: 6811 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 -- proto: SignBiohazardMed - entities: - - uid: 21893 - components: - - type: Transform - pos: 47.5,10.5 - parent: 2 -- proto: SignBridge - entities: - - uid: 6813 - components: - - type: Transform - pos: 46.5,-21.5 - parent: 2 -- proto: SignCargo - entities: - - uid: 6814 - components: - - type: Transform - pos: 22.5,9.5 - parent: 2 -- proto: SignCargoDock - entities: - - uid: 21894 - components: - - type: Transform - pos: 30.5,24.5 - parent: 2 - - uid: 21895 - components: - - type: Transform - pos: 24.5,24.5 - parent: 2 -- proto: SignChapel - entities: - - uid: 2082 - components: - - type: Transform - pos: -25.5,-32.5 - parent: 2 -- proto: SignChem - entities: - - uid: 5964 - components: - - type: Transform - pos: 41.5,10.5 - parent: 2 - - uid: 8369 - components: - - type: Transform - pos: 42.5,16.5 - parent: 2 -- proto: SignConference - entities: - - uid: 2699 - components: - - type: Transform - pos: 30.5,-28.5 - parent: 2 -- proto: SignCryogenicsMed - entities: - - uid: 7038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-2.5 - parent: 2 -- proto: SignDangerMed - entities: - - uid: 17068 - components: - - type: Transform - pos: 30.5,-52.5 - parent: 2 - - uid: 20805 - components: - - type: Transform - pos: 27.5,-57.5 - parent: 2 - - uid: 21077 - components: - - type: Transform - pos: 55.5,-43.5 - parent: 2 - - uid: 21125 - components: - - type: Transform - pos: 50.5,-43.5 - parent: 2 - - uid: 22095 - components: - - type: Transform - pos: 11.5,-52.5 - parent: 2 - - uid: 22500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-35.5 - parent: 2 -- proto: SignDirectionalBar - entities: - - uid: 13599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-5.5 - parent: 2 - - uid: 13600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-32.5 - parent: 2 - - uid: 13601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 2 - - uid: 13602 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 2 - - uid: 13603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,9.5 - parent: 2 - - uid: 13604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 2 - - uid: 21869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.509625,-34.787674 - parent: 2 -- proto: SignDirectionalBrig - entities: - - uid: 13605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,26.5 - parent: 2 -- proto: SignDirectionalChapel - entities: - - uid: 13606 - components: - - type: Transform - pos: -22.495113,-11.233777 - parent: 2 - - uid: 13607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.491245,-32.232563 - parent: 2 -- proto: SignDirectionalChemistry - entities: - - uid: 13608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,6.5 - parent: 2 -- proto: SignDirectionalCryo - entities: - - uid: 13609 - components: - - type: Transform - pos: 52.5,9.5 - parent: 2 -- proto: SignDirectionalDorms - entities: - - uid: 13610 - components: - - type: Transform - pos: -27.5,8.5 - parent: 2 - - uid: 13611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-32.5 - parent: 2 -- proto: SignDirectionalEng - entities: - - uid: 13612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.511724,-32.217175 - parent: 2 - - uid: 20489 - components: - - type: Transform - pos: -25.510857,-5.767983 - parent: 2 - - uid: 20864 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 13613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.4961,-32.779675 - parent: 2 - - uid: 13614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.494131,8.773048 - parent: 2 - - uid: 13615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 2 - - uid: 13616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 2 - - uid: 13617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 2 - - uid: 13618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 2 - - uid: 17454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.502985,-24.238998 - parent: 2 -- proto: SignDirectionalFood - entities: - - uid: 13619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 2 - - uid: 13620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.499298,18.229422 - parent: 2 -- proto: SignDirectionalGravity - entities: - - uid: 13621 - components: - - type: Transform - pos: 44.51204,-17.745241 - parent: 2 -- proto: SignDirectionalHop - entities: - - uid: 13622 - components: - - type: Transform - pos: 18.493233,9.222223 - parent: 2 - - uid: 13623 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 2 -- proto: SignDirectionalJanitor - entities: - - uid: 13624 - components: - - type: Transform - pos: -25.505726,-7.2018347 - parent: 2 - - uid: 13625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.482073,18.78723 - parent: 2 - - uid: 13626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.543232,-17.25335 - parent: 2 -- proto: SignDirectionalLibrary - entities: - - uid: 13627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.480328,-32.243916 - parent: 2 - - uid: 13628 - components: - - type: Transform - pos: -27.506214,8.259279 - parent: 2 - - uid: 13629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,18.5 - parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 17449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.470295,-5.772457 - parent: 2 - - uid: 20486 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 2 - - uid: 20487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.499676,16.214537 - parent: 2 - - uid: 20490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.495012,18.771885 - parent: 2 - - uid: 20491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.508957,-25.217173 - parent: 2 - - uid: 21908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.512268,-21.218489 - parent: 2 - - uid: 21910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.47832,-32.75125 - parent: 2 -- proto: SignDirectionalSalvage - entities: - - uid: 13630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.51097,17.851742 - parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 7179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 - parent: 2 - - uid: 13631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.482822,1.7950348 - parent: 2 - - uid: 13632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 2 - - uid: 13633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.500166,-25.753792 - parent: 2 - - uid: 13634 - components: - - type: Transform - pos: -25.51464,-7.7475777 - parent: 2 - - uid: 13647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.51245,-24.757616 - parent: 2 -- proto: SignDirectionalSec - entities: - - uid: 13635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,16.5 - parent: 2 - - uid: 13636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.51479,-5.215695 - parent: 2 - - uid: 13637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-24.5 - parent: 2 - - uid: 13638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.51868,-17.241924 - parent: 2 - - uid: 13639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.507929,1.2496392 - parent: 2 -- proto: SignDirectionalSupply - entities: - - uid: 13640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.46845,-17.784672 - parent: 2 - - uid: 13641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.479525,-32.753902 - parent: 2 - - uid: 13642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.510996,-34.195675 - parent: 2 - - uid: 13643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.50406,16.777948 - parent: 2 - - uid: 13644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.515841,18.759907 - parent: 2 - - uid: 20488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.510857,-5.235952 - parent: 2 -- proto: SignDirectionalWash - entities: - - uid: 13645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 2 - - uid: 13646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.4859295,18.77162 - parent: 2 -- proto: SignDisposalSpace - entities: - - uid: 7904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-37.5 - parent: 2 -- proto: SignDoors - entities: - - uid: 6816 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2 - - uid: 8119 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 2 - - uid: 8349 - components: - - type: Transform - pos: -40.5,-59.5 - parent: 2 - - uid: 8351 - components: - - type: Transform - pos: -40.5,-64.5 - parent: 2 - - uid: 8352 - components: - - type: Transform - pos: -54.5,-64.5 - parent: 2 -- proto: SignElectricalMed - entities: - - uid: 6817 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 2 - - uid: 6818 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 2 - - uid: 7864 - components: - - type: Transform - pos: 13.5,-78.5 - parent: 2 - - uid: 8356 - components: - - type: Transform - pos: -52.5,8.5 - parent: 2 - - uid: 8357 - components: - - type: Transform - pos: 40.5,-14.5 - parent: 2 - - uid: 8358 - components: - - type: Transform - pos: 37.5,8.5 - parent: 2 - - uid: 8359 - components: - - type: Transform - pos: 0.5,13.5 - parent: 2 - - uid: 8360 - components: - - type: Transform - pos: -5.5,13.5 - parent: 2 - - uid: 9268 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - - uid: 9348 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 2 - - uid: 17335 - components: - - type: Transform - pos: -2.5,16.5 - parent: 2 - - uid: 17506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,55.5 - parent: 2 - - uid: 17508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,55.5 - parent: 2 - - uid: 17509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,51.5 - parent: 2 - - uid: 17510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,43.5 - parent: 2 - - uid: 17511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,42.5 - parent: 2 - - uid: 20349 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 2 - - uid: 21111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-37.5 - parent: 2 - - uid: 22016 - components: - - type: Transform - pos: 27.5,-66.5 - parent: 2 - - uid: 22018 - components: - - type: Transform - pos: 11.5,-66.5 - parent: 2 - - uid: 22019 - components: - - type: Transform - pos: 25.5,-78.5 - parent: 2 - - uid: 22029 - components: - - type: Transform - pos: 22.5,-63.5 - parent: 2 - - uid: 22434 - components: - - type: Transform - pos: 14.5,-37.5 - parent: 2 - - uid: 22435 - components: - - type: Transform - pos: 52.5,-30.5 - parent: 2 - - uid: 22436 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 2 - - uid: 22440 - components: - - type: Transform - pos: -22.5,33.5 - parent: 2 - - uid: 22441 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 2 - - uid: 22442 - components: - - type: Transform - pos: 63.5,-29.5 - parent: 2 - - uid: 22443 - components: - - type: Transform - pos: 88.5,-21.5 - parent: 2 - - uid: 22444 - components: - - type: Transform - pos: 62.5,10.5 - parent: 2 -- proto: SignEngine - entities: - - uid: 6819 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 2 -- proto: SignEngineering - entities: - - uid: 2083 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 2 - - uid: 15951 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 -- proto: SignEscapePods - entities: - - uid: 15261 - components: - - type: Transform - pos: 66.5,4.5 - parent: 2 - - uid: 15262 - components: - - type: Transform - pos: 66.5,0.5 - parent: 2 - - uid: 15263 - components: - - type: Transform - pos: 66.5,-3.5 - parent: 2 - - uid: 16026 - components: - - type: Transform - pos: -21.5,-45.5 - parent: 2 - - uid: 17016 - components: - - type: Transform - pos: -19.5,-45.5 - parent: 2 -- proto: SignEVA - entities: - - uid: 7704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-34.5 - parent: 2 -- proto: SignExamroom - entities: - - uid: 6810 - components: - - type: Transform - pos: 48.5,0.5 - parent: 2 -- proto: SignFire - entities: - - uid: 8361 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 2 -- proto: SignFlammableMed - entities: - - uid: 8362 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 2 - - uid: 8363 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 2 -- proto: SignGravity - entities: - - uid: 19808 - components: - - type: Transform - pos: 51.5,-37.5 - parent: 2 -- proto: SignHead - entities: - - uid: 2084 - components: - - type: Transform - pos: 45.5,-22.5 - parent: 2 -- proto: SignHydro1 - entities: - - uid: 2085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 2 -- proto: SignInterrogation - entities: - - uid: 4822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,29.5 - parent: 2 -- proto: SignJanitor - entities: - - uid: 6821 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 2 -- proto: SignLawyer - entities: - - uid: 6823 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 -- proto: SignLibrary - entities: - - uid: 6822 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 2 -- proto: SignMagneticsMed - entities: - - uid: 22501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-33.5 - parent: 2 -- proto: SignMail - entities: - - uid: 6815 - components: - - type: Transform - pos: 22.5,16.5 - parent: 2 -- proto: SignMaterials - entities: - - uid: 4375 - components: - - type: Transform - pos: 31.5,1.5 - parent: 2 -- proto: SignMedical - entities: - - uid: 6824 - components: - - type: Transform - pos: 44.5,0.5 - parent: 2 -- proto: SignMorgue - entities: - - uid: 6665 - components: - - type: Transform - pos: 50.5,-8.5 - parent: 2 - - uid: 14213 - components: - - type: Transform - pos: 47.5,-11.5 - parent: 2 -- proto: SignNanotrasen1 - entities: - - uid: 19752 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 2 -- proto: SignNanotrasen2 - entities: - - uid: 19751 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 2 -- proto: SignNanotrasen3 - entities: - - uid: 19750 - components: - - type: Transform - pos: 36.5,-21.5 - parent: 2 -- proto: SignNanotrasen4 - entities: - - uid: 19749 - components: - - type: Transform - pos: 37.5,-21.5 - parent: 2 -- proto: SignNanotrasen5 - entities: - - uid: 19748 - components: - - type: Transform - pos: 38.5,-21.5 - parent: 2 -- proto: SignNews - entities: - - uid: 3096 - components: - - type: Transform - pos: -52.5,-27.5 - parent: 2 -- proto: SignNTMine - entities: - - uid: 7084 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 -- proto: SignPrison - entities: - - uid: 5110 - components: - - type: Transform - pos: -2.5,35.5 - parent: 2 -- proto: SignRadiationMed - entities: - - uid: 2091 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 2 -- proto: SignReception - entities: - - uid: 854 - components: - - type: Transform - pos: 24.5,15.5 - parent: 2 - - uid: 21597 - components: - - type: Transform - pos: 57.5,-15.5 - parent: 2 - - uid: 21598 - components: - - type: Transform - pos: 44.5,-22.5 - parent: 2 - - uid: 21599 - components: - - type: Transform - pos: 0.5,25.5 - parent: 2 -- proto: SignRedOne - entities: - - uid: 21619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.497345,-11.735416 - parent: 2 -- proto: SignRedTwo - entities: - - uid: 21620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.505127,-11.735416 - parent: 2 -- proto: SignRestroom - entities: - - uid: 20295 - components: - - type: Transform - pos: 15.5,22.5 - parent: 2 -- proto: SignRND - entities: - - uid: 21928 - components: - - type: Transform - pos: 61.5,-15.5 - parent: 2 -- proto: SignRobo - entities: - - uid: 7162 - components: - - type: Transform - pos: 60.5,-21.5 - parent: 2 -- proto: SignSalvage - entities: - - uid: 855 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 -- proto: SignScience - entities: - - uid: 7158 - components: - - type: Transform - pos: 62.5,-18.5 - parent: 2 -- proto: SignSecureMed - entities: - - uid: 1969 - components: - - type: Transform - pos: -29.5,-1.5 - parent: 2 - - uid: 6827 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - - uid: 15635 - components: - - type: Transform - pos: -41.5,22.5 - parent: 2 - - uid: 15929 - components: - - type: Transform - pos: -45.5,22.5 - parent: 2 - - uid: 16658 - components: - - type: Transform - pos: -41.5,24.5 - parent: 2 - - uid: 16659 - components: - - type: Transform - pos: -45.5,24.5 - parent: 2 - - uid: 17248 - components: - - type: Transform - pos: 49.5,-56.5 - parent: 2 - - uid: 17249 - components: - - type: Transform - pos: 43.5,-57.5 - parent: 2 - - uid: 17250 - components: - - type: Transform - pos: 39.5,-52.5 - parent: 2 - - uid: 17251 - components: - - type: Transform - pos: 55.5,-48.5 - parent: 2 - - uid: 17252 - components: - - type: Transform - pos: 61.5,-56.5 - parent: 2 - - uid: 17253 - components: - - type: Transform - pos: 64.5,-48.5 - parent: 2 - - uid: 21950 - components: - - type: Transform - pos: 53.5,-35.5 - parent: 2 - - uid: 22024 - components: - - type: Transform - pos: 15.5,-67.5 - parent: 2 - - uid: 22025 - components: - - type: Transform - pos: 15.5,-74.5 - parent: 2 - - uid: 22026 - components: - - type: Transform - pos: 23.5,-74.5 - parent: 2 - - uid: 22027 - components: - - type: Transform - pos: 23.5,-67.5 - parent: 2 -- proto: SignSecureMedRed - entities: - - uid: 6826 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 2 -- proto: SignSecurity - entities: - - uid: 5111 - components: - - type: Transform - pos: 0.5,22.5 - parent: 2 -- proto: SignServer - entities: - - uid: 21937 - components: - - type: Transform - pos: 71.5,-24.5 - parent: 2 -- proto: SignShipDock - entities: - - uid: 8354 - components: - - type: Transform - pos: -55.5,-0.5 - parent: 2 - - uid: 8355 - components: - - type: Transform - pos: -55.5,3.5 - parent: 2 -- proto: SignSmoking - entities: - - uid: 6825 - components: - - type: Transform - pos: 27.5,-14.5 - parent: 2 -- proto: SignSpace - entities: - - uid: 3616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-2.5 - parent: 2 - - uid: 3617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,5.5 - parent: 2 - - uid: 5726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,17.5 - parent: 2 - - uid: 6828 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 2 - - uid: 21938 - components: - - type: Transform - pos: -10.5,40.5 - parent: 2 - - uid: 21948 - components: - - type: Transform - pos: 71.5,-33.5 - parent: 2 - - uid: 21951 - components: - - type: Transform - pos: -23.5,38.5 - parent: 2 - - uid: 21953 - components: - - type: Transform - pos: -57.5,-20.5 - parent: 2 - - uid: 21954 - components: - - type: Transform - pos: 68.5,20.5 - parent: 2 - - uid: 21991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-31.5 - parent: 2 - - uid: 22185 - components: - - type: Transform - pos: 20.5,-61.5 - parent: 2 -- proto: SignSurgery - entities: - - uid: 6886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,3.5 - parent: 2 -- proto: SignTelecomms - entities: - - uid: 7586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-35.5 - parent: 2 - - uid: 7591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 2 -- proto: SignToolStorage - entities: - - uid: 4404 - components: - - type: Transform - pos: 40.5,0.5 - parent: 2 -- proto: SignVault - entities: - - uid: 21949 - components: - - type: Transform - pos: 53.5,-34.5 - parent: 2 -- proto: SignVirology - entities: - - uid: 6829 - components: - - type: Transform - pos: 56.5,15.5 - parent: 2 -- proto: SignVox - entities: - - uid: 21377 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 2 -- proto: SingularityGenerator - entities: - - uid: 2092 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 3104 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 -- proto: Sink - entities: - - uid: 5948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-29.5 - parent: 2 - - uid: 13488 - components: - - type: Transform - pos: 36.5,-22.5 - parent: 2 -- proto: SinkWide - entities: - - uid: 5258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,45.5 - parent: 2 - - uid: 6755 - components: - - type: Transform - pos: -20.5,12.5 - parent: 2 - - uid: 8239 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - uid: 8240 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 9024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 2 - - uid: 14218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,14.5 - parent: 2 - - uid: 16795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 2 -- proto: Skub - entities: - - uid: 17542 - components: - - type: Transform - pos: 85.054985,-7.3956304 - parent: 2 -- proto: SmartFridge - entities: - - uid: 5992 - components: - - type: Transform - pos: 44.5,10.5 - parent: 2 - - uid: 16772 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 -- proto: SMESBasic - entities: - - uid: 2095 - components: - - type: MetaData - name: Singularity SMES - - type: Transform - pos: 1.5,-17.5 - parent: 2 - - uid: 2096 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-17.5 - parent: 2 - - uid: 2097 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-14.5 - parent: 2 - - uid: 2098 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-15.5 - parent: 2 - - uid: 2099 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-16.5 - parent: 2 - - uid: 8097 - components: - - type: MetaData - name: South Solars SMES - - type: Transform - pos: -1.5,-37.5 - parent: 2 - - uid: 8098 - components: - - type: MetaData - name: South Solars SMES - - type: Transform - pos: -0.5,-37.5 - parent: 2 - - uid: 10575 - components: - - type: MetaData - name: Secure Command SMES - - type: Transform - pos: 54.5,-40.5 - parent: 2 - - uid: 15809 - components: - - type: MetaData - name: North Solars SMES - - type: Transform - pos: -28.5,34.5 - parent: 2 - - uid: 15810 - components: - - type: MetaData - name: North Solars SMES - - type: Transform - pos: -28.5,35.5 - parent: 2 - - uid: 20944 - components: - - type: MetaData - name: Rage Cage SMES - - type: Transform - pos: 88.5,-22.5 - parent: 2 - - uid: 22070 - components: - - type: MetaData - name: AI Core SMES - - type: Transform - pos: 23.5,-63.5 - parent: 2 -- proto: SodaDispenser - entities: - - uid: 2102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,2.5 - parent: 2 - - uid: 2103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 2 - - uid: 16595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 - parent: 2 -- proto: SolarPanel - entities: - - uid: 3207 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 2 - - uid: 3279 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 2 - - uid: 3281 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 2 - - uid: 3295 - components: - - type: Transform - pos: 2.5,-52.5 - parent: 2 - - uid: 3297 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 2 - - uid: 3323 - components: - - type: Transform - pos: 2.5,-50.5 - parent: 2 - - uid: 3324 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 - - uid: 3669 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 2 - - uid: 4999 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 2 - - uid: 5000 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 2 - - uid: 15083 - components: - - type: Transform - pos: -2.5,-48.5 - parent: 2 - - uid: 15474 - components: - - type: Transform - pos: -2.5,-50.5 - parent: 2 - - uid: 15475 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 2 - - uid: 15476 - components: - - type: Transform - pos: -3.5,-50.5 - parent: 2 - - uid: 15477 - components: - - type: Transform - pos: -4.5,-50.5 - parent: 2 - - uid: 15478 - components: - - type: Transform - pos: -5.5,-50.5 - parent: 2 - - uid: 15479 - components: - - type: Transform - pos: -6.5,-50.5 - parent: 2 - - uid: 15480 - components: - - type: Transform - pos: -6.5,-48.5 - parent: 2 - - uid: 15481 - components: - - type: Transform - pos: -5.5,-48.5 - parent: 2 - - uid: 15482 - components: - - type: Transform - pos: -4.5,-48.5 - parent: 2 - - uid: 15483 - components: - - type: Transform - pos: -6.5,-46.5 - parent: 2 - - uid: 15484 - components: - - type: Transform - pos: -4.5,-46.5 - parent: 2 - - uid: 15485 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 - - uid: 15486 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 2 - - uid: 15487 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 2 - - uid: 15488 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 2 - - uid: 15489 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - - uid: 15490 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 2 - - uid: 15491 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 2 - - uid: 15492 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 2 - - uid: 15493 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 2 - - uid: 15494 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 - - uid: 15495 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 2 - - uid: 15496 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 2 - - uid: 15497 - components: - - type: Transform - pos: -6.5,-52.5 - parent: 2 - - uid: 15498 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 2 - - uid: 15499 - components: - - type: Transform - pos: -5.5,-52.5 - parent: 2 - - uid: 15500 - components: - - type: Transform - pos: -3.5,-52.5 - parent: 2 - - uid: 15501 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 2 - - uid: 15502 - components: - - type: Transform - pos: -2.5,-52.5 - parent: 2 - - uid: 15503 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 2 - - uid: 15504 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 2 - - uid: 15505 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 2 - - uid: 15506 - components: - - type: Transform - pos: -2.5,-54.5 - parent: 2 - - uid: 15507 - components: - - type: Transform - pos: -3.5,-54.5 - parent: 2 - - uid: 15508 - components: - - type: Transform - pos: -5.5,-54.5 - parent: 2 - - uid: 15509 - components: - - type: Transform - pos: -6.5,-54.5 - parent: 2 - - uid: 15510 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 2 - - uid: 15533 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 2 - - uid: 15534 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 2 - - uid: 15570 - components: - - type: Transform - pos: 2.5,-54.5 - parent: 2 - - uid: 15571 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 2 - - uid: 15693 - components: - - type: Transform - pos: -23.5,42.5 - parent: 2 - - uid: 15703 - components: - - type: Transform - pos: -28.5,48.5 - parent: 2 - - uid: 15704 - components: - - type: Transform - pos: -27.5,48.5 - parent: 2 - - uid: 15705 - components: - - type: Transform - pos: -25.5,48.5 - parent: 2 - - uid: 15706 - components: - - type: Transform - pos: -26.5,48.5 - parent: 2 - - uid: 15707 - components: - - type: Transform - pos: -24.5,48.5 - parent: 2 - - uid: 15708 - components: - - type: Transform - pos: -23.5,48.5 - parent: 2 - - uid: 15709 - components: - - type: Transform - pos: -20.5,48.5 - parent: 2 - - uid: 15710 - components: - - type: Transform - pos: -19.5,48.5 - parent: 2 - - uid: 15711 - components: - - type: Transform - pos: -19.5,46.5 - parent: 2 - - uid: 15712 - components: - - type: Transform - pos: -20.5,46.5 - parent: 2 - - uid: 15713 - components: - - type: Transform - pos: -20.5,44.5 - parent: 2 - - uid: 15714 - components: - - type: Transform - pos: -19.5,44.5 - parent: 2 - - uid: 15715 - components: - - type: Transform - pos: -19.5,42.5 - parent: 2 - - uid: 15716 - components: - - type: Transform - pos: -20.5,42.5 - parent: 2 - - uid: 15717 - components: - - type: Transform - pos: -24.5,42.5 - parent: 2 - - uid: 15718 - components: - - type: Transform - pos: -25.5,42.5 - parent: 2 - - uid: 15719 - components: - - type: Transform - pos: -26.5,42.5 - parent: 2 - - uid: 15720 - components: - - type: Transform - pos: -28.5,42.5 - parent: 2 - - uid: 15721 - components: - - type: Transform - pos: -28.5,44.5 - parent: 2 - - uid: 15722 - components: - - type: Transform - pos: -27.5,44.5 - parent: 2 - - uid: 15723 - components: - - type: Transform - pos: -26.5,44.5 - parent: 2 - - uid: 15724 - components: - - type: Transform - pos: -25.5,44.5 - parent: 2 - - uid: 15725 - components: - - type: Transform - pos: -24.5,44.5 - parent: 2 - - uid: 15726 - components: - - type: Transform - pos: -23.5,44.5 - parent: 2 - - uid: 15727 - components: - - type: Transform - pos: -27.5,42.5 - parent: 2 - - uid: 15729 - components: - - type: Transform - pos: -28.5,50.5 - parent: 2 - - uid: 15730 - components: - - type: Transform - pos: -27.5,50.5 - parent: 2 - - uid: 15731 - components: - - type: Transform - pos: -26.5,50.5 - parent: 2 - - uid: 15732 - components: - - type: Transform - pos: -25.5,50.5 - parent: 2 - - uid: 15733 - components: - - type: Transform - pos: -24.5,50.5 - parent: 2 - - uid: 15734 - components: - - type: Transform - pos: -23.5,50.5 - parent: 2 - - uid: 15735 - components: - - type: Transform - pos: -23.5,52.5 - parent: 2 - - uid: 15736 - components: - - type: Transform - pos: -24.5,52.5 - parent: 2 - - uid: 15737 - components: - - type: Transform - pos: -25.5,52.5 - parent: 2 - - uid: 15738 - components: - - type: Transform - pos: -27.5,52.5 - parent: 2 - - uid: 15739 - components: - - type: Transform - pos: -28.5,52.5 - parent: 2 - - uid: 15796 - components: - - type: Transform - pos: -23.5,46.5 - parent: 2 - - uid: 15797 - components: - - type: Transform - pos: -24.5,46.5 - parent: 2 - - uid: 15798 - components: - - type: Transform - pos: -26.5,46.5 - parent: 2 - - uid: 15799 - components: - - type: Transform - pos: -25.5,46.5 - parent: 2 - - uid: 15800 - components: - - type: Transform - pos: -27.5,46.5 - parent: 2 - - uid: 15801 - components: - - type: Transform - pos: -28.5,46.5 - parent: 2 - - uid: 15802 - components: - - type: Transform - pos: -26.5,52.5 - parent: 2 - - uid: 15803 - components: - - type: Transform - pos: -20.5,52.5 - parent: 2 - - uid: 15804 - components: - - type: Transform - pos: -19.5,52.5 - parent: 2 - - uid: 15806 - components: - - type: Transform - pos: -19.5,50.5 - parent: 2 - - uid: 15807 - components: - - type: Transform - pos: -20.5,50.5 - parent: 2 -- proto: SolarTracker - entities: - - uid: 15468 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 2 - - uid: 15702 - components: - - type: Transform - pos: -22.5,55.5 - parent: 2 -- proto: SolidSecretDoor - entities: - - uid: 2339 - components: - - type: Transform - pos: -35.5,-42.5 - parent: 2 -- proto: SpaceCash100 - entities: - - uid: 2104 - components: - - type: Transform - pos: -19.177664,-3.0928874 - parent: 2 - - uid: 2105 - components: - - type: Transform - pos: -19.19601,-3.3864217 - parent: 2 - - uid: 16651 - components: - - type: Transform - parent: 16650 - - type: Stack - count: 500 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceHeater - entities: - - uid: 21477 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 2 - - uid: 21478 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 2 -- proto: SpacemenFigureSpawner - entities: - - uid: 15870 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 2 -- proto: SpawnMechRipley - entities: - - uid: 22481 - components: - - type: Transform - pos: 27.5,8.5 - parent: 2 -- proto: SpawnMobAlexander - entities: - - uid: 21078 - components: - - type: Transform - pos: -21.5,13.5 - parent: 2 -- proto: SpawnMobButterfly - entities: - - uid: 13099 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 2 - - uid: 13740 - components: - - type: Transform - pos: -49.5,-6.5 - parent: 2 - - uid: 13742 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 2 - - uid: 14411 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 2 - - uid: 16201 - components: - - type: Transform - pos: -46.5,-7.5 - parent: 2 -- proto: SpawnMobCatException - entities: - - uid: 6742 - components: - - type: Transform - pos: 59.5,10.5 - parent: 2 -- proto: SpawnMobCatSpace - entities: - - uid: 17293 - components: - - type: Transform - pos: 67.5,-53.5 - parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 2107 - components: - - type: Transform - pos: 44.5,-25.5 - parent: 2 -- proto: SpawnMobCrabAtmos - entities: - - uid: 14868 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 4579 - components: - - type: Transform - pos: 41.5,-30.5 - parent: 2 -- proto: SpawnMobMcGriff - entities: - - uid: 4990 - components: - - type: Transform - pos: 1.5,23.5 - parent: 2 -- proto: SpawnMobMedibot - entities: - - uid: 6049 - components: - - type: Transform - pos: 42.5,8.5 - parent: 2 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 12921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,6.5 - parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 12918 - components: - - type: Transform - pos: 52.5,-10.5 - parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 5733 - components: - - type: Transform - pos: 37.5,15.5 - parent: 2 -- proto: SpawnMobShiva - entities: - - uid: 5701 - components: - - type: Transform - pos: -12.5,34.5 - parent: 2 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 2109 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 7422 - components: - - type: Transform - pos: 68.5,-22.5 - parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 2110 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - - uid: 2111 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 2 - - uid: 2112 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 2113 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - uid: 2114 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 13722 - components: - - type: Transform - pos: 63.5,-23.5 - parent: 2 - - uid: 13723 - components: - - type: Transform - pos: 64.5,-23.5 - parent: 2 - - uid: 13724 - components: - - type: Transform - pos: 65.5,-23.5 - parent: 2 - - uid: 13725 - components: - - type: Transform - pos: 65.5,-24.5 - parent: 2 - - uid: 13726 - components: - - type: Transform - pos: 64.5,-24.5 - parent: 2 - - uid: 13727 - components: - - type: Transform - pos: 63.5,-24.5 - parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 14252 - components: - - type: Transform - pos: -37.5,12.5 - parent: 2 - - uid: 14255 - components: - - type: Transform - pos: -37.5,13.5 - parent: 2 -- proto: SpawnPointBoxer - entities: - - uid: 2117 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 2 - - uid: 2118 - components: - - type: Transform - pos: -33.5,-33.5 - parent: 2 - - uid: 3911 - components: - - type: Transform - pos: -35.5,-27.5 - parent: 2 - - uid: 3912 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 -- proto: SpawnPointCaptain - entities: - - uid: 4578 - components: - - type: Transform - pos: 41.5,-28.5 - parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 5736 - components: - - type: Transform - pos: 28.5,18.5 - parent: 2 - - uid: 5737 - components: - - type: Transform - pos: 26.5,18.5 - parent: 2 - - uid: 5738 - components: - - type: Transform - pos: 25.5,18.5 - parent: 2 - - uid: 5740 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 -- proto: SpawnPointChaplain - entities: - - uid: 15872 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 -- proto: SpawnPointChef - entities: - - uid: 16118 - components: - - type: Transform - pos: -20.5,12.5 - parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 6047 - components: - - type: Transform - pos: 42.5,12.5 - parent: 2 - - uid: 6048 - components: - - type: Transform - pos: 46.5,12.5 - parent: 2 -- proto: SpawnPointChiefEngineer - entities: - - uid: 2120 - components: - - type: Transform - pos: 3.5,-26.5 - parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 6723 - components: - - type: Transform - pos: 55.5,11.5 - parent: 2 -- proto: SpawnPointClown - entities: - - uid: 3910 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 10272 - components: - - type: Transform - pos: -29.5,26.5 - parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 2121 - components: - - type: Transform - pos: 36.5,-25.5 - parent: 2 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 5674 - components: - - type: Transform - pos: -17.5,32.5 - parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 2122 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 2 - - uid: 2123 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 2 - - uid: 22467 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 2 -- proto: SpawnPointLatejoin - entities: - - uid: 5022 - components: - - type: Transform - pos: -47.5,-46.5 - parent: 2 -- proto: SpawnPointLawyer - entities: - - uid: 5968 - components: - - type: Transform - pos: -48.5,-14.5 - parent: 2 -- proto: SpawnPointLibrarian - entities: - - uid: 15871 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 2 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 6720 - components: - - type: Transform - pos: 55.5,3.5 - parent: 2 - - uid: 6721 - components: - - type: Transform - pos: 56.5,3.5 - parent: 2 - - uid: 6722 - components: - - type: Transform - pos: 57.5,3.5 - parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 6724 - components: - - type: Transform - pos: 56.5,2.5 - parent: 2 - - uid: 6725 - components: - - type: Transform - pos: 57.5,2.5 - parent: 2 -- proto: SpawnPointMime - entities: - - uid: 3909 - components: - - type: Transform - pos: -33.5,-19.5 - parent: 2 - - uid: 3913 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 -- proto: SpawnPointMusician - entities: - - uid: 2124 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 3908 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 -- proto: SpawnPointObserver - entities: - - uid: 21965 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 6718 - components: - - type: Transform - pos: 55.5,7.5 - parent: 2 - - uid: 6719 - components: - - type: Transform - pos: 56.5,7.5 - parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 15639 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 2 - - uid: 15641 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - - uid: 15642 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 2 - - uid: 15643 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 2 - - uid: 15644 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 2 - - uid: 15645 - components: - - type: Transform - pos: -32.5,-14.5 - parent: 2 - - uid: 15646 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 2 - - uid: 15647 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 5693 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 -- proto: SpawnPointReporter - entities: - - uid: 5966 - components: - - type: Transform - pos: -55.5,-28.5 - parent: 2 - - uid: 5967 - components: - - type: Transform - pos: -54.5,-28.5 - parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 23342 - components: - - type: Transform - pos: 69.5,-12.5 - parent: 2 -- proto: SpawnPointResearchDirector - entities: - - uid: 7450 - components: - - type: Transform - pos: 71.5,-22.5 - parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 5704 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - uid: 5715 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - uid: 5735 - components: - - type: Transform - pos: 35.5,21.5 - parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 7447 - components: - - type: Transform - pos: 69.5,-13.5 - parent: 2 - - uid: 7449 - components: - - type: Transform - pos: 68.5,-13.5 - parent: 2 - - uid: 20553 - components: - - type: Transform - pos: 70.5,-13.5 - parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 5675 - components: - - type: Transform - pos: -6.5,33.5 - parent: 2 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 5676 - components: - - type: Transform - pos: -9.5,33.5 - parent: 2 - - uid: 5677 - components: - - type: Transform - pos: -8.5,33.5 - parent: 2 - - uid: 5678 - components: - - type: Transform - pos: -7.5,33.5 - parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 2126 - components: - - type: Transform - pos: -32.5,0.5 - parent: 2 - - uid: 2127 - components: - - type: Transform - pos: -34.5,0.5 - parent: 2 - - uid: 2128 - components: - - type: Transform - pos: -36.5,0.5 - parent: 2 - - uid: 2129 - components: - - type: Transform - pos: -30.5,0.5 - parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 2130 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 2 - - uid: 2131 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 2 - - uid: 2132 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 2133 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 2 - - uid: 2134 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 5673 - components: - - type: Transform - pos: 2.5,24.5 - parent: 2 -- proto: Spear - entities: - - uid: 20997 - components: - - type: Transform - pos: 91.5888,-20.49667 - parent: 2 - - uid: 20998 - components: - - type: Transform - pos: 91.44817,-20.40292 - parent: 2 -- proto: SpiderWeb - entities: - - uid: 2136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,14.5 - parent: 2 -- proto: SprayBottle - entities: - - uid: 8194 - components: - - type: Transform - pos: -13.281918,-24.159872 - parent: 2 - - uid: 8430 - components: - - type: Transform - pos: -13.465376,-24.172104 - parent: 2 -- proto: SprayBottleWater - entities: - - uid: 6926 - components: - - type: Transform - pos: 58.459965,18.571264 - parent: 2 -- proto: StairDark - entities: - - uid: 3105 - components: - - type: Transform - pos: 26.5,4.5 - parent: 2 - - uid: 3106 - components: - - type: Transform - pos: 25.5,4.5 - parent: 2 - - uid: 3107 - components: - - type: Transform - pos: 24.5,4.5 - parent: 2 -- proto: Stairs - entities: - - uid: 2682 - components: - - type: Transform - pos: -46.5,-45.5 - parent: 2 - - uid: 2684 - components: - - type: Transform - pos: -47.5,-45.5 - parent: 2 - - uid: 2687 - components: - - type: Transform - pos: -48.5,-45.5 - parent: 2 - - uid: 3741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,2.5 - parent: 2 - - uid: 3742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 2 - - uid: 3743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 2 - - uid: 3829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-28.5 - parent: 2 - - uid: 3830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-27.5 - parent: 2 - - uid: 5932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-17.5 - parent: 2 - - uid: 5933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-17.5 - parent: 2 - - uid: 5934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-17.5 - parent: 2 - - uid: 5935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,21.5 - parent: 2 - - uid: 5936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 2 - - uid: 5937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 2 - - uid: 5938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,21.5 - parent: 2 - - uid: 5939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,20.5 - parent: 2 - - uid: 5940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,19.5 - parent: 2 - - uid: 5941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,3.5 - parent: 2 - - uid: 5943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - uid: 5944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 2 - - uid: 7119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 2 - - uid: 7120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 2 - - uid: 8464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-21.5 - parent: 2 - - uid: 21884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-21.5 - parent: 2 - - uid: 21885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 2 - - uid: 21886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-21.5 - parent: 2 -- proto: StairStage - entities: - - uid: 2150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,4.5 - parent: 2 - - uid: 2151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 2 -- proto: StairWood - entities: - - uid: 8154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-20.5 - parent: 2 - - uid: 8963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 2 - - uid: 13333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,0.5 - parent: 2 - - uid: 14396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,3.5 - parent: 2 - - uid: 14397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,2.5 - parent: 2 - - uid: 15046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,1.5 - parent: 2 - - uid: 21558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-20.5 - parent: 2 -- proto: StasisBed - entities: - - uid: 6583 - components: - - type: Transform - pos: 55.5,-0.5 - parent: 2 -- proto: StationAiUploadComputer - entities: - - uid: 20815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-53.5 - parent: 2 -- proto: StationAnchor - entities: - - uid: 14912 - components: - - type: Transform - pos: 62.5,-35.5 - parent: 2 -- proto: StationBeaconPart - entities: - - uid: 21365 - components: - - type: Transform - pos: 30.702707,-1.6835423 - parent: 2 - - uid: 21366 - components: - - type: Transform - pos: 30.441788,-1.871078 - parent: 2 - - uid: 21367 - components: - - type: Transform - pos: 30.572248,-1.7732333 - parent: 2 -- proto: StationEfficiencyCircuitBoard - entities: - - uid: 21076 - components: - - type: Transform - pos: 14.458807,-65.50417 - parent: 2 -- proto: StationMap - entities: - - uid: 7556 - components: - - type: Transform - pos: 48.5,-17.5 - parent: 2 - - uid: 13592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-23.5 - parent: 2 - - uid: 13593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,18.5 - parent: 2 - - uid: 13594 - components: - - type: Transform - pos: 41.5,6.5 - parent: 2 - - uid: 13595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-34.5 - parent: 2 - - uid: 20200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-48.5 - parent: 2 - - uid: 20438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 2 - - uid: 20439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-28.5 - parent: 2 - - uid: 20440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-14.5 - parent: 2 - - uid: 20441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 - parent: 2 - - uid: 20442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,32.5 - parent: 2 - - uid: 20443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,9.5 - parent: 2 - - uid: 21889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-48.5 - parent: 2 - - uid: 22399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-53.5 - parent: 2 -- proto: StoolBar - entities: - - uid: 2152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,3.5 - parent: 2 - - uid: 2153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,2.5 - parent: 2 - - uid: 2154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,1.5 - parent: 2 - - uid: 2155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 2 - - uid: 2156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 2 - - uid: 14965 - components: - - type: Transform - pos: -35.5,24.5 - parent: 2 - - uid: 14966 - components: - - type: Transform - pos: -36.5,24.5 - parent: 2 - - uid: 15024 - components: - - type: Transform - pos: -34.5,24.5 - parent: 2 - - uid: 16635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,34.5 - parent: 2 - - uid: 16636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,34.5 - parent: 2 - - uid: 16637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,34.5 - parent: 2 - - uid: 16918 - components: - - type: Transform - pos: -37.5,24.5 - parent: 2 -- proto: StorageCanister - entities: - - uid: 2157 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 2 - - uid: 2158 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 2159 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 2 - - uid: 2160 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 2 - - uid: 2161 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 2162 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 2 - - uid: 2163 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - uid: 2164 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - uid: 7394 - components: - - type: Transform - pos: 73.5,-11.5 - parent: 2 - - uid: 7395 - components: - - type: Transform - pos: 73.5,-12.5 - parent: 2 - - uid: 14854 - components: - - type: Transform - pos: -16.5,17.5 - parent: 2 -- proto: SubstationBasic - entities: - - uid: 2165 - components: - - type: MetaData - name: Singularity substation - - type: Transform - pos: 2.5,-17.5 - parent: 2 - - uid: 2166 - components: - - type: MetaData - name: Central Substation - - type: Transform - pos: -3.5,15.5 - parent: 2 - - uid: 2167 - components: - - type: MetaData - name: East Substation - - type: Transform - pos: 37.5,-14.5 - parent: 2 - - uid: 3700 - components: - - type: MetaData - name: Evacuation Substation - - type: Transform - pos: -52.5,10.5 - parent: 2 - - uid: 5971 - components: - - type: MetaData - name: Cargo Substation - - type: Transform - pos: 38.5,6.5 - parent: 2 - - uid: 6135 - components: - - type: MetaData - name: Command Substation - - type: Transform - pos: 51.5,-28.5 - parent: 2 - - uid: 6983 - components: - - type: MetaData - name: South-West Substation - - type: Transform - pos: -37.5,-37.5 - parent: 2 - - uid: 8524 - components: - - type: MetaData - name: Arrivals Substation - - type: Transform - pos: -36.5,-53.5 - parent: 2 - - uid: 9108 - components: - - type: MetaData - name: Science Substation - - type: Transform - pos: 61.5,-32.5 - parent: 2 - - uid: 9117 - components: - - type: MetaData - name: Medical Substation - - type: Transform - pos: 65.5,10.5 - parent: 2 - - uid: 9196 - components: - - type: MetaData - name: Security Substation - - type: Transform - pos: -22.5,35.5 - parent: 2 - - uid: 9203 - components: - - type: MetaData - name: South Substation - - type: Transform - pos: 14.5,-38.5 - parent: 2 - - uid: 9212 - components: - - type: MetaData - name: West Substation - - type: Transform - pos: -61.5,-20.5 - parent: 2 - - uid: 9275 - components: - - type: MetaData - name: Engineering substation - - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 10576 - components: - - type: MetaData - name: Secure Command Substation - - type: Transform - pos: 54.5,-41.5 - parent: 2 - - uid: 17231 - components: - - type: MetaData - name: Outpost Substation - - type: Transform - pos: 66.5,-49.5 - parent: 2 - - uid: 20937 - components: - - type: MetaData - name: Rage Cage Substation - - type: Transform - pos: 89.5,-22.5 - parent: 2 - - uid: 22069 - components: - - type: MetaData - name: AI Core substation - - type: Transform - pos: 24.5,-63.5 - parent: 2 -- proto: SubstationMachineCircuitboard - entities: - - uid: 5879 - components: - - type: Transform - pos: 54.525455,-38.59651 - parent: 2 -- proto: SuitStorageAtmos - entities: - - uid: 2168 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - uid: 2169 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 2 - - uid: 2170 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 -- proto: SuitStorageCaptain - entities: - - uid: 12703 - components: - - type: Transform - pos: 43.5,-27.5 - parent: 2 -- proto: SuitStorageCE - entities: - - uid: 2171 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 2 -- proto: SuitStorageCMO - entities: - - uid: 6736 - components: - - type: Transform - pos: 56.5,12.5 - parent: 2 -- proto: SuitStorageEngi - entities: - - uid: 2172 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 2 - - uid: 2173 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 2 - - uid: 2174 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 2 - - uid: 8113 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 2 - - uid: 8114 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 7606 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 2 - - uid: 7607 - components: - - type: Transform - pos: 23.5,-35.5 - parent: 2 - - uid: 7608 - components: - - type: Transform - pos: 24.5,-35.5 - parent: 2 - - uid: 7609 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 2 - - uid: 7610 - components: - - type: Transform - pos: 24.5,-38.5 - parent: 2 - - uid: 7611 - components: - - type: Transform - pos: 25.5,-38.5 - parent: 2 -- proto: SuitStorageEVAEmergency - entities: - - uid: 7081 - components: - - type: Transform - pos: 57.5,-0.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 8190 - components: - - type: Transform - pos: -2.5,40.5 - parent: 2 - - uid: 8191 - components: - - type: Transform - pos: -0.5,40.5 - parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 5034 - components: - - type: Transform - pos: -11.5,34.5 - parent: 2 -- proto: SuitStorageRD - entities: - - uid: 7425 - components: - - type: Transform - pos: 71.5,-25.5 - parent: 2 -- proto: SuitStorageSec - entities: - - uid: 1966 - components: - - type: Transform - pos: 5.5,31.5 - parent: 2 - - uid: 1967 - components: - - type: Transform - pos: 4.5,31.5 - parent: 2 - - uid: 5041 - components: - - type: Transform - pos: 7.5,32.5 - parent: 2 - - uid: 5042 - components: - - type: Transform - pos: 7.5,31.5 - parent: 2 -- proto: SuitStorageWarden - entities: - - uid: 4956 - components: - - type: Transform - pos: 5.5,23.5 - parent: 2 -- proto: SurveillanceCameraCommand - entities: - - uid: 5889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-39.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity - - uid: 8964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA storage - - uid: 8965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-43.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Telecommunications - - uid: 8968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-44.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High security mainframe - - uid: 8969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Camera routers - - uid: 8970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-38.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Connective hallway - - uid: 8971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: West bridge - - uid: 8972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: East bridge - - uid: 8975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: West bridge entrance - - uid: 8976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: East bridge entrance - - uid: 8977 - components: - - type: Transform - pos: 41.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Head of Personel's office - - uid: 8979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-29.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: North east bridge - - uid: 8980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: North west bridge - - uid: 8981 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference room - - uid: 8984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-32.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - - uid: 15592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Secure board room - - uid: 16967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-32.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High security - - uid: 22356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-51.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core entrance - - uid: 22358 - components: - - type: Transform - pos: 22.5,-53.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI upload room - - uid: 22359 - components: - - type: Transform - pos: 18.5,-65.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core lobby - - uid: 22360 - components: - - type: Transform - pos: 19.5,-73.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core mainframe - - uid: 22361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-74.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: East AI core mainframe - - uid: 22362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-74.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: West AI core mainframe - - uid: 22363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-48.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High security mainframe hallway - - uid: 22364 - components: - - type: Transform - pos: 14.5,-65.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core break room - - uid: 22365 - components: - - type: Transform - pos: 23.5,-65.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core power generation - - uid: 22382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-32.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: North bridge - - uid: 22473 - components: - - type: Transform - pos: 18.5,-60.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: External AI core -- proto: SurveillanceCameraEngineering - entities: - - uid: 6780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Command substation - - uid: 8010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North west outer singularity - - uid: 8945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES - - uid: 8946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Locker bay - - uid: 8947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Particle accelerator - - uid: 8948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singularity storage - - uid: 8949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Break room - - uid: 8950 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Central hallway - - uid: 8952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Front desk - - uid: 8953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer's office - - uid: 8954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer's room - - uid: 8955 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos-Engineering connection - - uid: 8956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Antimatter engine - - uid: 8958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-16.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics supply bay - - uid: 8959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: East atmospherics - - uid: 8960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Spare storage - - uid: 8961 - components: - - type: Transform - pos: 2.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South solars - - uid: 8962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-39.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Board room - - uid: 8994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: East substation - - uid: 8995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Cargo substation - - uid: 8996 - components: - - type: Transform - pos: -2.5,14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Central substation - - uid: 8997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Evacuation substation - - uid: 9036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Drone room - - uid: 10655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North east outer singularity - - uid: 10657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North inner singularity - - uid: 10659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South west outer singularity - - uid: 10660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South east outer singularity - - uid: 18066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West central hallway - - uid: 18068 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospheric's front desk - - uid: 19436 - components: - - type: Transform - pos: 15.5,-38.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South substation - - uid: 20205 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South west substation - - uid: 20206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-53.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Arrivals Substation - - uid: 20207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Science substation - - uid: 20208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Medical substation - - uid: 20209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Security substation - - uid: 20210 - components: - - type: Transform - pos: -26.5,34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North solars - - uid: 20211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West substation - - uid: 22374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West inner singularity - - uid: 22375 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South inner singularity - - uid: 22376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: East inner singularity - - uid: 22377 - components: - - type: Transform - pos: 34.5,-16.5 - parent: 2 - - uid: 22378 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South atmospherics - - uid: 22379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 + pos: -14.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West atmospherics - - uid: 22380 + - uid: 5707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 + pos: -15.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North atmospherics - - uid: 22381 + - uid: 5708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-11.5 + pos: -6.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics blast chamber - - uid: 22405 + - uid: 5710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,38.5 + pos: -7.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Shuttle preperations room - - uid: 22497 + - uid: 5712 components: - type: Transform - pos: 65.5,-36.5 + pos: -9.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Station anchor -- proto: SurveillanceCameraGeneral - entities: - - uid: 8420 + - uid: 5713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-56.5 + pos: -10.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South west arrivals - - uid: 9037 + - uid: 5731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,25.5 + pos: -11.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bathroom - - uid: 9038 + - uid: 5755 components: - type: Transform - pos: 38.5,-4.5 + pos: -5.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool room - - uid: 9039 + - uid: 5903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-26.5 + pos: -3.5,32.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Engineering front - - uid: 9044 + - uid: 6030 components: - type: Transform - pos: -30.5,-15.5 + pos: -3.5,33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms hallway - - uid: 9047 + - uid: 6031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-20.5 + pos: -8.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North lounge - - uid: 9048 + - uid: 6040 components: - type: Transform - pos: -44.5,-31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South lounge - - uid: 9049 + pos: -11.5,30.5 + parent: 2 + - uid: 6042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-27.5 + pos: 1.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West lounge - - uid: 9050 + - uid: 6059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-42.5 + pos: -0.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals connective hallway - - uid: 9051 + - uid: 6099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-50.5 + pos: -2.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East arrivals - - uid: 9052 + - uid: 6103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-50.5 + pos: -4.5,44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West arrivals - - uid: 9053 + - uid: 6113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-56.5 + pos: -0.5,49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South east arrivals - - uid: 9055 + - uid: 6122 components: - type: Transform - pos: -56.5,-65.5 + pos: -3.5,49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South west arrivals 2 - - uid: 9056 + - uid: 6123 components: - type: Transform - pos: -42.5,-47.5 + pos: 0.5,49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North arrivals - - uid: 9057 + - uid: 6130 components: - type: Transform - pos: -33.5,-33.5 + pos: -14.5,42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South boxing arena - - uid: 9058 + - uid: 6131 components: - type: Transform - pos: -35.5,-4.5 + pos: -15.5,42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Front cafeteria - - uid: 9059 + - uid: 6132 components: - type: Transform - pos: -28.5,-4.5 + pos: -17.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Back cafeteria - - uid: 9060 + - uid: 6133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,9.5 + pos: -17.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Kitchen exterior - - uid: 9061 + - uid: 6134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-7.5 + pos: -9.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms-cafeteria hallway - - uid: 9062 + - uid: 6143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-0.5 + pos: -22.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cafeteria entrance - - uid: 9063 + - uid: 6148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,6.5 + pos: -28.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North evacuation - - uid: 9064 + - uid: 6178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,6.5 + pos: -25.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North evacuation 2 - - uid: 9065 + - uid: 6179 components: - type: Transform - pos: -51.5,-3.5 + pos: -26.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South evacuation - - uid: 9066 + - uid: 6180 components: - type: Transform - pos: -43.5,-3.5 + pos: -27.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South evacuation 2 - - uid: 9067 + - uid: 6181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,20.5 + pos: -40.5,29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Small cafeteria - - uid: 9068 + - uid: 6182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,21.5 + pos: -40.5,28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security hallway - - uid: 9069 + - uid: 6183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,21.5 + pos: -38.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security front - - uid: 9070 + - uid: 6184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 + pos: -40.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East security hallway - - uid: 9071 + - uid: 6230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,18.5 + pos: 24.5,26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior loading bay - - uid: 9072 + - uid: 6231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,9.5 + pos: 21.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cargo hallway - - uid: 9073 + - uid: 6232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,4.5 + pos: -37.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South cargo hallway - - uid: 9074 + - uid: 6233 components: - type: Transform - pos: 27.5,2.5 + pos: 20.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior secure storage - - uid: 9075 + - uid: 6234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,4.5 + pos: 30.5,25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Medical-cargo hallway - - uid: 9076 + - uid: 6235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-4.5 + pos: -34.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior tool room - - uid: 9077 + - uid: 6236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,4.5 + pos: -35.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Medical front - - uid: 9079 + - uid: 6237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-16.5 + pos: -29.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North exterior bridge - - uid: 9080 + - uid: 6269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-18.5 + pos: -29.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East exterior bridge - - uid: 9081 + - uid: 6270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-18.5 + pos: -55.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West exterior bridge - - uid: 9082 + - uid: 6271 components: - type: Transform - pos: 60.5,-20.5 + pos: -57.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Science front - - uid: 9083 + - uid: 6272 components: - type: Transform - pos: 54.5,-23.5 + pos: -56.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior science - - uid: 9084 + - uid: 6273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 + pos: -56.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Atmos-bridge hallway - - uid: 9085 + - uid: 6274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-24.5 + pos: -57.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Atmospherics front - - uid: 9086 + - uid: 6275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-29.5 + pos: -56.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVA-atmos hallway - - uid: 9087 + - uid: 6276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-31.5 + pos: -55.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior antimatter engine - - uid: 9088 + - uid: 6461 components: - type: Transform - pos: 8.5,-33.5 + pos: -48.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: External engineering hallway - - uid: 9090 + - uid: 6491 components: - type: Transform - pos: -2.5,-31.5 + pos: -47.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South solars exterior - - uid: 9091 + - uid: 6523 components: - type: Transform - pos: -10.5,-31.5 + pos: -46.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Engineering-janitorial hallway - - uid: 9092 + - uid: 6540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-29.5 + pos: -45.5,-18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior janitorials - - uid: 9093 + - uid: 6545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-23.5 + pos: -51.5,-16.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South west hallway - - uid: 9094 + - uid: 6554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-16.5 + pos: -43.5,-18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms exterior - - uid: 12807 + - uid: 6555 components: - type: Transform - pos: -38.5,-65.5 + pos: -67.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South east arrivals 2 - - uid: 18921 + - uid: 6572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-10.5 + pos: -66.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bridge-medical hallway - - uid: 19758 + - uid: 6577 components: - type: Transform - pos: -47.5,-8.5 + pos: -54.5,-22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Memorial room - - uid: 22393 + - uid: 6870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,21.5 + pos: 60.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dining area - - uid: 22394 + - uid: 6892 components: - type: Transform - pos: -52.5,-21.5 + pos: 59.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North west lounge - - uid: 22395 + - uid: 6894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-9.5 + pos: -53.5,-22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation-lounge hallway - - uid: 22404 + - uid: 6896 components: - type: Transform - pos: 10.5,23.5 + pos: 58.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West bathroom - - uid: 22469 + - uid: 6929 components: - type: Transform - pos: -32.5,-4.5 + pos: 60.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Vox box -- proto: SurveillanceCameraMedical - entities: - - uid: 9023 + - uid: 6930 components: - type: Transform - pos: 41.5,7.5 + pos: 59.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Lobby - - uid: 9025 + - uid: 6931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,12.5 + pos: 58.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: North hallway - - uid: 9026 + - uid: 6965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,6.5 + pos: -47.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Central hallway - - uid: 9027 + - uid: 6971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-5.5 + pos: -46.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination bay - - uid: 9028 + - uid: 6972 components: - type: Transform - pos: 52.5,-14.5 + pos: -46.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - - uid: 9029 + - uid: 7007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-3.5 + pos: -47.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cryogenics - - uid: 9030 + - uid: 7086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,2.5 + pos: -48.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery rooms - - uid: 9031 + - uid: 7100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,3.5 + pos: -41.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical doctor supplies - - uid: 9032 + - uid: 7111 components: - type: Transform - pos: 55.5,6.5 + pos: -41.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Paramedic's office - - uid: 9033 + - uid: 7193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,12.5 + pos: -41.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chief Medical Officer's office - - uid: 9035 + - uid: 7194 components: - type: Transform - pos: 59.5,14.5 + pos: -41.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - - uid: 14256 + - uid: 7310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,16.5 + pos: -26.5,-31.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 22383 + - uid: 7313 components: - type: Transform - pos: 45.5,-4.5 + pos: -26.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 2 - - uid: 22384 + - uid: 7314 components: - type: Transform - pos: 45.5,-1.5 + pos: -26.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 1 - - uid: 22385 + - uid: 7315 components: - type: Transform - pos: 45.5,-7.5 + pos: -26.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 3 - - uid: 22386 + - uid: 7343 components: - type: Transform - pos: 55.5,-1.5 + pos: -26.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 4 - - uid: 22387 + - uid: 7344 components: - type: Transform - pos: 55.5,-7.5 + pos: -26.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 5 - - uid: 22388 + - uid: 7346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,4.5 + pos: -22.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery room 1 - - uid: 22389 + - uid: 7347 components: - type: Transform - pos: 62.5,0.5 + pos: -22.5,-14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery room 2 - - uid: 22390 + - uid: 7348 components: - type: Transform - pos: 54.5,14.5 + pos: -17.5,-28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology connective hallway -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 7976 + - uid: 7353 components: - type: Transform - pos: 11.5,-44.5 + pos: -33.5,-37.5 parent: 2 -- proto: SurveillanceCameraRouterConstructed - entities: - - uid: 7749 + - uid: 7366 components: - type: Transform - pos: 11.5,-49.5 + pos: -29.5,-46.5 parent: 2 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 7957 + - uid: 7369 components: - type: Transform - pos: 13.5,-48.5 + pos: -30.5,-46.5 parent: 2 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 7953 + - uid: 7448 components: - type: Transform - pos: 16.5,-48.5 + pos: -54.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 7958 + - uid: 7475 components: - type: Transform - pos: 13.5,-49.5 + pos: -41.5,-42.5 parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 7956 + - uid: 7494 components: - type: Transform - pos: 14.5,-48.5 + pos: -44.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 7977 + - uid: 7508 components: - type: Transform - pos: 14.5,-44.5 + pos: -53.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterService - entities: - - uid: 7954 + - uid: 7509 components: - type: Transform - pos: 16.5,-49.5 + pos: -52.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 7955 + - uid: 7510 components: - type: Transform - pos: 14.5,-49.5 + pos: -50.5,-44.5 parent: 2 -- proto: SurveillanceCameraScience - entities: - - uid: 8985 + - uid: 7668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-22.5 + pos: -51.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - - uid: 8986 + - uid: 7669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-26.5 + pos: -40.5,-42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Server room - - uid: 8988 + - uid: 7670 components: - type: Transform - pos: 70.5,-18.5 + pos: -40.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Connective hallway - - uid: 8989 + - uid: 7671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-14.5 + pos: -41.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Xenoarchaeology labs - - uid: 8990 + - uid: 7721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-7.5 + pos: -42.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly centre - - uid: 8991 + - uid: 7722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-11.5 + pos: -43.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Reception desk - - uid: 8992 + - uid: 7723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-14.5 + pos: -42.5,-60.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Central hallway -- proto: SurveillanceCameraSecurity - entities: - - uid: 8998 + - uid: 7724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,29.5 + pos: -42.5,-61.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: West hallway - - uid: 8999 + - uid: 7759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,29.5 + pos: -42.5,-62.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Main hallway - - uid: 9000 + - uid: 7790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,34.5 + pos: -42.5,-63.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Officer supply room - - uid: 9001 + - uid: 7795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,34.5 + pos: 30.5,26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Head of Security's office - - uid: 9003 + - uid: 7890 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,29.5 + pos: -66.5,-27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation room - - uid: 9004 + - uid: 7899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,24.5 + pos: -60.5,-34.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Prison 1 - - uid: 9005 + - uid: 7934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,24.5 + pos: -60.5,-35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Prison 2 - - uid: 9006 + - uid: 7960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,24.5 + pos: -44.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Prison 3 - - uid: 9007 + - uid: 7991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,25.5 + pos: -45.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security lobby - - uid: 9008 + - uid: 7992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,28.5 + rot: 1.5707963267948966 rad + pos: -47.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's office - - uid: 9009 + - uid: 8005 components: - type: Transform - pos: 6.5,30.5 + rot: 1.5707963267948966 rad + pos: -46.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 9010 + - uid: 8087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,48.5 + pos: 10.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Central perma - - uid: 9011 + - uid: 8163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,53.5 + pos: 12.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma hydroponics - - uid: 9012 + - uid: 8199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,42.5 + pos: 12.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma room 2 - - uid: 9013 + - uid: 8204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 + pos: 14.5,33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma room 1 - - uid: 9045 + - uid: 8205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-12.5 + pos: 22.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer office - - uid: 9046 + - uid: 8206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-13.5 + pos: 22.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer conference room - - uid: 12808 + - uid: 8426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,38.5 + pos: 32.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security-perma hallway - - uid: 12809 + - uid: 8492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,43.5 + pos: 32.5,15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma entrance - - uid: 20212 + - uid: 8923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,29.5 + pos: 32.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective's office -- proto: SurveillanceCameraService - entities: - - uid: 8924 + - uid: 8926 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,3.5 + pos: 43.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - - uid: 8925 + - uid: 8927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-3.5 + pos: 27.5,16.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar lounge - - uid: 8929 + - uid: 8928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,7.5 + pos: 52.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Theatre - - uid: 8930 + - uid: 8931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-12.5 + rot: 1.5707963267948966 rad + pos: 52.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Game room - - uid: 8932 + - uid: 8935 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-17.5 + pos: 52.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - - uid: 8933 + - uid: 8978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-26.5 + pos: 36.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitorial closet - - uid: 8936 + - uid: 8987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,11.5 + pos: 37.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Arcade - - uid: 8938 + - uid: 9020 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,14.5 + pos: 38.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany closet - - uid: 8939 + - uid: 9041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-28.5 + pos: 40.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Reporter office - - uid: 8940 + - uid: 9043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-24.5 + pos: 40.5,-1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: News room - - uid: 8941 + - uid: 9099 components: - type: Transform - pos: -29.5,11.5 + pos: 44.5,-6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - - uid: 8942 + - uid: 10658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,15.5 + pos: 44.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 8943 + - uid: 11658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,14.5 + pos: 44.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - - uid: 8944 + - uid: 11660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,5.5 + pos: 44.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Music corner - - uid: 9040 + - uid: 12256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-24.5 + pos: 57.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: North boxing arena - - uid: 21412 + - uid: 12257 components: - type: Transform - pos: -22.5,-39.5 + pos: 72.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel - - uid: 22392 + - uid: 12810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,12.5 + pos: 93.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Arcade reception -- proto: SurveillanceCameraSupply - entities: - - uid: 3557 + - uid: 13741 components: - type: Transform - pos: 38.5,20.5 + pos: 93.5,-12.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: External salvage - - uid: 9014 + - uid: 13965 components: - type: Transform - pos: 25.5,10.5 + pos: 93.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Front desk - - uid: 9015 + - uid: 13981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,15.5 + pos: 93.5,-14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo front - - uid: 9018 + - uid: 14241 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,6.5 + pos: 64.5,-21.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Break room - - uid: 9019 + - uid: 14245 components: - type: Transform - pos: 23.5,6.5 + pos: 68.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Secure storage - - uid: 9021 + - uid: 14705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,22.5 + pos: 69.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage supply - - uid: 20086 + - uid: 14786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,13.5 + pos: 70.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Hallway - - uid: 22391 + - uid: 14901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 + pos: 71.5,-34.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Storage bay -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 7959 + - uid: 14953 components: - type: Transform - pos: 11.5,-48.5 + pos: 71.5,-35.5 parent: 2 -- proto: SurveillanceWirelessCameraAnchoredEntertainment - entities: - - uid: 2175 + - uid: 14955 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,5.5 + pos: 73.5,-34.5 parent: 2 - - uid: 4519 + - uid: 14957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-26.5 + pos: 73.5,-35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: News channel -- proto: SurveillanceWirelessCameraMovableConstructed - entities: - - uid: 4531 + - uid: 14958 components: - type: Transform - pos: -56.5,-23.5 + pos: 80.5,-36.5 parent: 2 - - uid: 4532 + - uid: 14961 components: - type: Transform - pos: -55.5,-23.5 + pos: 82.5,-36.5 parent: 2 -- proto: SyndieFlag - entities: - - uid: 21058 + - uid: 14968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-42.5 + pos: 40.5,-22.5 parent: 2 -- proto: SyndieHandyFlag - entities: - - uid: 21059 + - uid: 14969 components: - type: Transform - pos: -34.495705,-44.393948 + pos: 41.5,-22.5 parent: 2 -- proto: SynthesizerInstrument - entities: - - uid: 21334 + - uid: 15032 components: - type: Transform - pos: 47.788773,21.30058 + pos: 42.5,-22.5 parent: 2 -- proto: Syringe - entities: - - uid: 8193 + - uid: 15040 components: - type: Transform - pos: 61.51553,-3.394734 + pos: 44.5,-22.5 parent: 2 - - uid: 16540 + - uid: 15041 components: - type: Transform - pos: 15.512184,29.873684 + pos: 27.5,-27.5 parent: 2 - - uid: 16966 + - uid: 15042 components: - type: Transform - pos: 61.425484,17.165861 + pos: 29.5,-27.5 parent: 2 -- proto: Table - entities: - - uid: 153 + - uid: 15043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-8.5 + pos: 26.5,-27.5 parent: 2 - - uid: 1413 + - uid: 15053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-9.5 + pos: 23.5,-27.5 parent: 2 - - uid: 2177 + - uid: 15091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 + pos: 30.5,-30.5 parent: 2 - - uid: 2178 + - uid: 15215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 + pos: 45.5,-39.5 parent: 2 - - uid: 2179 + - uid: 15222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-21.5 + pos: 33.5,-39.5 parent: 2 - - uid: 2180 + - uid: 15226 components: - type: Transform - pos: -5.5,-23.5 + pos: 34.5,-39.5 parent: 2 - - uid: 2181 + - uid: 15227 components: - type: Transform - pos: -4.5,-23.5 + pos: 38.5,-39.5 parent: 2 - - uid: 2182 + - uid: 15229 components: - type: Transform - pos: 1.5,-19.5 + pos: 36.5,-39.5 parent: 2 - - uid: 2183 + - uid: 15231 components: - type: Transform - pos: 2.5,-19.5 + pos: 40.5,-39.5 parent: 2 - - uid: 2184 + - uid: 15232 components: - type: Transform - pos: -4.5,-26.5 + pos: 44.5,-39.5 parent: 2 - - uid: 2185 + - uid: 15233 components: - type: Transform - pos: 5.5,-19.5 + pos: 42.5,-39.5 parent: 2 - - uid: 2186 + - uid: 15234 components: - type: Transform - pos: 6.5,-19.5 + pos: 47.5,-39.5 parent: 2 - - uid: 2187 + - uid: 15254 components: - type: Transform - pos: 6.5,-23.5 + pos: 23.5,-7.5 parent: 2 - - uid: 2188 + - uid: 15413 components: - type: Transform - pos: 5.5,-23.5 + pos: 22.5,-7.5 parent: 2 - - uid: 2189 + - uid: 15608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 + pos: 52.5,-21.5 parent: 2 - - uid: 2190 + - uid: 15869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 + pos: 21.5,-7.5 parent: 2 - - uid: 2191 + - uid: 15873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-17.5 + pos: -40.5,18.5 parent: 2 - - uid: 2192 + - uid: 15875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-17.5 + pos: 27.5,-7.5 parent: 2 - - uid: 2193 + - uid: 15879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 + pos: 26.5,-7.5 parent: 2 - - uid: 2194 + - uid: 15880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 + pos: 25.5,-7.5 parent: 2 - - uid: 2195 + - uid: 15881 components: - type: Transform - pos: 24.5,-26.5 + pos: 28.5,-8.5 parent: 2 - - uid: 2196 + - uid: 15882 components: - type: Transform - pos: 27.5,-26.5 + pos: 24.5,-7.5 parent: 2 - - uid: 2197 + - uid: 15887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 + pos: 16.5,-7.5 parent: 2 - - uid: 2198 + - uid: 15954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 + pos: 17.5,-7.5 parent: 2 - - uid: 2201 + - uid: 15993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,15.5 + pos: 54.5,-21.5 parent: 2 - - uid: 2202 + - uid: 16005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,15.5 + pos: 18.5,-7.5 parent: 2 - - uid: 2203 + - uid: 16065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,15.5 + pos: 19.5,-7.5 parent: 2 - - uid: 2204 + - uid: 16074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,15.5 + pos: 29.5,-9.5 parent: 2 - - uid: 2205 + - uid: 16097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,17.5 + pos: 20.5,-7.5 parent: 2 - - uid: 2206 + - uid: 16156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,21.5 + pos: 19.5,-34.5 parent: 2 - - uid: 2207 + - uid: 16162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,21.5 + pos: 25.5,-47.5 parent: 2 - - uid: 2208 + - uid: 16172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,17.5 + pos: 27.5,-49.5 parent: 2 - - uid: 2209 + - uid: 16174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-16.5 + pos: 26.5,-49.5 parent: 2 - - uid: 2210 + - uid: 16175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-16.5 + pos: 25.5,-49.5 parent: 2 - - uid: 2211 + - uid: 16192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,13.5 + pos: 25.5,-65.5 parent: 2 - - uid: 2212 + - uid: 16310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,14.5 + pos: 25.5,-64.5 parent: 2 - - uid: 2213 + - uid: 16311 components: - type: Transform - pos: -29.5,-17.5 + pos: 19.5,-61.5 parent: 2 - - uid: 2214 + - uid: 16336 components: - type: Transform - pos: -27.5,-17.5 + pos: 19.5,-55.5 parent: 2 - - uid: 2215 + - uid: 16344 components: - type: Transform - pos: -27.5,-33.5 + pos: 25.5,-63.5 parent: 2 - - uid: 2216 + - uid: 16385 components: - type: Transform - pos: -28.5,-33.5 + pos: 19.5,-71.5 parent: 2 - - uid: 2217 + - uid: 16386 components: - type: Transform - pos: -29.5,-33.5 + pos: -5.5,-32.5 parent: 2 - - uid: 3237 + - uid: 16393 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-8.5 + pos: -4.5,-32.5 parent: 2 - - uid: 3705 + - uid: 16404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,10.5 + pos: -3.5,-32.5 parent: 2 - - uid: 3706 + - uid: 16428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,9.5 + pos: -0.5,-28.5 parent: 2 - - uid: 4063 + - uid: 16443 components: - type: Transform - pos: 49.5,-24.5 + pos: 0.5,-24.5 parent: 2 - - uid: 4064 + - uid: 16453 components: - type: Transform - pos: 31.5,-24.5 + pos: -4.5,-20.5 parent: 2 - - uid: 4254 + - uid: 16454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,1.5 + pos: -3.5,-20.5 parent: 2 - - uid: 4270 + - uid: 16474 components: - type: Transform - pos: -18.5,27.5 + pos: 2.5,-10.5 parent: 2 - - uid: 4307 + - uid: 16515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,8.5 + pos: 1.5,-10.5 parent: 2 - - uid: 4504 + - uid: 16528 components: - type: Transform - pos: -50.5,-13.5 + pos: -0.5,-10.5 parent: 2 - - uid: 4505 + - uid: 16536 components: - type: Transform - pos: -50.5,-12.5 + pos: 0.5,-18.5 parent: 2 - - uid: 4794 + - uid: 16567 components: - type: Transform - pos: -9.5,23.5 + pos: -0.5,-18.5 parent: 2 - - uid: 4871 + - uid: 16568 components: - type: Transform - pos: -5.5,23.5 + pos: 1.5,-18.5 parent: 2 - - uid: 4874 + - uid: 16590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,23.5 + pos: -13.5,-41.5 parent: 2 - - uid: 5048 + - uid: 16638 components: - type: Transform - pos: -8.5,31.5 + pos: -14.5,-41.5 parent: 2 - - uid: 5049 + - uid: 16683 components: - type: Transform - pos: -9.5,31.5 + pos: -11.5,-41.5 parent: 2 - - uid: 5057 + - uid: 16685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,29.5 + pos: -21.5,-46.5 parent: 2 - - uid: 5058 + - uid: 16686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,29.5 + pos: -21.5,-47.5 parent: 2 - - uid: 5166 + - uid: 16916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,47.5 + pos: -49.5,-39.5 parent: 2 - - uid: 5169 + - uid: 17015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,48.5 + pos: -52.5,-37.5 parent: 2 - - uid: 5170 + - uid: 17019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,46.5 + pos: 38.5,19.5 parent: 2 - - uid: 5171 + - uid: 17031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,47.5 + pos: 41.5,19.5 parent: 2 - - uid: 5172 + - uid: 17254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,47.5 + rot: 3.141592653589793 rad + pos: 64.5,-52.5 parent: 2 - - uid: 5173 + - uid: 17308 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,46.5 + pos: 49.5,24.5 parent: 2 - - uid: 5174 + - uid: 17325 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,48.5 + pos: 56.5,28.5 parent: 2 - - uid: 5175 + - uid: 17330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,48.5 + pos: 62.5,28.5 parent: 2 - - uid: 5228 + - uid: 17450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,52.5 + pos: 68.5,20.5 parent: 2 - - uid: 5229 + - uid: 17481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,51.5 + pos: 64.5,13.5 parent: 2 - - uid: 5230 + - uid: 17504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,50.5 + pos: 64.5,14.5 parent: 2 - - uid: 5245 + - uid: 17513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,43.5 + pos: 64.5,15.5 parent: 2 - - uid: 5246 + - uid: 17537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,43.5 + pos: 73.5,-1.5 parent: 2 - - uid: 5515 + - uid: 18277 components: - type: Transform - pos: -19.5,27.5 + pos: 73.5,6.5 parent: 2 - - uid: 5562 + - uid: 18992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,7.5 + pos: 77.5,-7.5 parent: 2 - - uid: 5563 + - uid: 19740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 + pos: 81.5,-4.5 parent: 2 - - uid: 5572 + - uid: 19794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,7.5 + pos: 82.5,-4.5 parent: 2 - - uid: 5669 + - uid: 20354 components: - type: Transform - pos: -20.5,27.5 + pos: 77.5,-5.5 parent: 2 - - uid: 5770 + - uid: 20355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,2.5 + pos: -3.5,22.5 parent: 2 - - uid: 5771 + - uid: 20395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,3.5 + pos: -0.5,22.5 parent: 2 - - uid: 5772 + - uid: 20396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,3.5 + pos: -23.5,28.5 parent: 2 - - uid: 6137 + - uid: 20397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-28.5 + pos: -23.5,27.5 parent: 2 - - uid: 6331 + - uid: 21590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-60.5 + pos: 14.5,-45.5 parent: 2 - - uid: 6332 + - uid: 21591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-61.5 + pos: 11.5,-45.5 parent: 2 - - uid: 6333 + - uid: 21592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-62.5 + pos: -0.5,-40.5 parent: 2 - - uid: 6334 + - uid: 21593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-63.5 + pos: -0.5,-39.5 parent: 2 - - uid: 6335 + - uid: 21594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-60.5 + pos: -5.5,-42.5 parent: 2 - - uid: 6336 + - uid: 21595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-61.5 + pos: -6.5,-42.5 parent: 2 - - uid: 6337 +- proto: RemoteSignaller + entities: + - uid: 3270 components: + - type: MetaData + desc: Bolts all doors and windoors in the HoP's room. + name: Lockdown remote - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-62.5 + pos: 40.97135,-23.35855 parent: 2 - - uid: 6338 + - type: DeviceLinkSource + linkedPorts: + 3516: + - Pressed: DoorBolt + - Pressed: Close + - Pressed: AutoClose + 49: + - Pressed: DoorBolt + - Pressed: AutoClose + - Pressed: Close + 3489: + - Pressed: Close + - Pressed: AutoClose + - Pressed: DoorBolt + - uid: 20229 components: + - type: MetaData + desc: Helpful for troublesome prisoners trying to break out of perma! + name: perma blast door remote - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-63.5 + parent: 4586 + - type: DeviceLinkSource + linkedPorts: + 20613: + - Pressed: Toggle + 20612: + - Pressed: Toggle + 20611: + - Pressed: Toggle + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20230 + components: + - type: MetaData + desc: Just in case you need a double layer of security to the armory! + name: armory blast door remote + - type: Transform + parent: 4586 + - type: DeviceLinkSource + linkedPorts: + 4719: + - Pressed: Toggle + 4895: + - Pressed: Toggle + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ResearchAndDevelopmentServer + entities: + - uid: 7429 + components: + - type: Transform + pos: 71.5,-29.5 parent: 2 - - uid: 6382 +- proto: RevolverCapGun + entities: + - uid: 16113 components: - type: Transform - pos: -55.5,-45.5 + pos: 58.457176,26.640175 parent: 2 - - uid: 6383 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 8017 components: - type: Transform - pos: -39.5,-45.5 + pos: -32.148563,14.497124 parent: 2 - - uid: 6587 +- proto: RubberStampApproved + entities: + - uid: 16307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-8.5 + pos: 28.655685,10.5061245 parent: 2 - - uid: 6684 + - uid: 16905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,1.5 + pos: 44.978428,-23.253704 parent: 2 - - uid: 6685 +- proto: RubberStampDenied + entities: + - uid: 16306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,1.5 + pos: 28.325459,10.518355 parent: 2 - - uid: 6686 + - uid: 16917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,1.5 + pos: 44.978428,-23.482008 parent: 2 - - uid: 6708 +- proto: SalvageMagnet + entities: + - uid: 6058 components: - type: Transform - pos: 48.5,4.5 + rot: 3.141592653589793 rad + pos: 38.5,21.5 parent: 2 - - uid: 6715 +- proto: Screen + entities: + - uid: 3271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,8.5 + pos: 15.5,38.5 parent: 2 - - uid: 6716 + - uid: 7573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,8.5 + pos: -2.5,18.5 parent: 2 - - uid: 7268 + - uid: 10319 components: - type: Transform - pos: 64.5,-11.5 + pos: 18.5,10.5 parent: 2 - - uid: 7277 + - uid: 10320 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-15.5 + pos: 40.5,6.5 parent: 2 - - uid: 8115 + - uid: 12087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-36.5 + pos: 71.5,-19.5 parent: 2 - - uid: 8213 + - uid: 14883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 + pos: -45.5,-5.5 parent: 2 - - uid: 8267 + - uid: 16012 components: - type: Transform - pos: -4.5,21.5 + rot: -1.5707963267948966 rad + pos: -39.5,-34.5 parent: 2 - - uid: 9179 + - uid: 16057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,25.5 + pos: 55.5,-22.5 parent: 2 - - uid: 9180 + - uid: 16166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,25.5 + pos: 65.5,-27.5 parent: 2 - - uid: 9197 + - uid: 16445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,35.5 + rot: -1.5707963267948966 rad + pos: -28.5,-34.5 parent: 2 - - uid: 14240 + - uid: 16617 components: - type: Transform - pos: -21.5,10.5 + pos: 11.5,-34.5 parent: 2 - - uid: 14738 + - uid: 16618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,35.5 + pos: 6.5,-25.5 parent: 2 - - uid: 14753 + - uid: 16804 components: - type: Transform - pos: -20.5,10.5 + pos: -57.5,-26.5 parent: 2 - - uid: 15092 + - uid: 16940 components: - type: Transform - pos: -3.5,-41.5 + pos: 40.5,-31.5 parent: 2 - - uid: 15093 + - uid: 17205 components: - type: Transform - pos: -3.5,-40.5 + pos: 25.5,-34.5 parent: 2 - - uid: 15148 + - uid: 17223 components: - type: Transform - pos: -32.5,38.5 + rot: 4.71238898038469 rad + pos: 30.5,-24.5 parent: 2 - - uid: 15149 + - uid: 20293 components: - type: Transform - pos: -33.5,38.5 + pos: -31.5,-5.5 parent: 2 - - uid: 15620 + - uid: 20311 components: - type: Transform - pos: 69.5,-3.5 + pos: -6.5,-32.5 parent: 2 - - uid: 15952 + - uid: 20312 components: - type: Transform - pos: -42.5,17.5 + pos: -22.5,-20.5 parent: 2 - - uid: 16110 + - uid: 20313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,26.5 + pos: -17.5,-5.5 parent: 2 - - uid: 16138 + - uid: 20796 components: - type: Transform - pos: 60.5,25.5 + pos: -21.5,22.5 parent: 2 - - uid: 16191 + - uid: 20797 components: - type: Transform - pos: 56.5,-27.5 + pos: -9.5,30.5 parent: 2 - - uid: 16203 + - uid: 20798 components: - type: Transform - pos: 55.5,-27.5 + pos: -3.5,49.5 parent: 2 - - uid: 16327 + - uid: 20799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-5.5 + pos: 35.5,10.5 parent: 2 - - uid: 16328 + - uid: 20800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-5.5 + pos: 23.5,24.5 parent: 2 - - uid: 16394 + - uid: 20801 components: - type: Transform - pos: 50.5,22.5 + pos: 48.5,15.5 parent: 2 - - uid: 16395 + - uid: 20802 components: - type: Transform - pos: 51.5,22.5 + pos: 44.5,-9.5 parent: 2 - - uid: 16396 + - uid: 20803 components: - type: Transform - pos: 52.5,22.5 + pos: 22.5,-19.5 parent: 2 - - uid: 16422 + - uid: 20806 components: - type: Transform - pos: 63.5,8.5 + pos: 26.5,-40.5 parent: 2 - - uid: 16463 + - uid: 20808 components: - type: Transform - pos: -54.5,-35.5 + pos: -1.5,-38.5 parent: 2 - - uid: 16464 + - uid: 20809 components: - type: Transform - pos: -54.5,-36.5 + pos: -44.5,-32.5 parent: 2 - - uid: 16467 + - uid: 20810 components: - type: Transform - pos: -59.5,-35.5 + pos: -50.5,-32.5 parent: 2 - - uid: 16468 + - uid: 20811 components: - type: Transform - pos: -59.5,-36.5 + pos: -55.5,2.5 parent: 2 - - uid: 16529 + - uid: 20812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,32.5 + pos: -55.5,0.5 parent: 2 - - uid: 16530 + - uid: 20813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,31.5 + pos: -42.5,9.5 parent: 2 - - uid: 16531 + - uid: 20814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,30.5 + pos: -49.5,-5.5 parent: 2 - - uid: 16532 + - uid: 20816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,29.5 + pos: -38.5,-11.5 parent: 2 - - uid: 16578 + - uid: 21033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 + pos: 31.5,24.5 parent: 2 - - uid: 16597 + - uid: 21034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,42.5 + pos: -33.5,8.5 parent: 2 - - uid: 16598 + - uid: 22184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,42.5 + pos: 21.5,-51.5 parent: 2 - - uid: 16599 + - uid: 22188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,41.5 + pos: 19.5,-74.5 parent: 2 - - uid: 16600 + - uid: 22189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,40.5 + pos: 21.5,-66.5 parent: 2 - - uid: 17379 + - uid: 22190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-3.5 + pos: 17.5,-66.5 parent: 2 - - uid: 20792 +- proto: Screwdriver + entities: + - uid: 2052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,16.5 + pos: -4.4728403,-17.587566 parent: 2 - - uid: 21186 + - uid: 7717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-4.5 + pos: 27.200108,-41.24766 parent: 2 - - uid: 21330 +- proto: SecurityTechFab + entities: + - uid: 5043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-32.5 + pos: 7.5,30.5 parent: 2 -- proto: TableCarpet +- proto: SeedExtractor entities: - - uid: 2218 + - uid: 5236 components: - type: Transform - pos: -19.5,-2.5 + pos: -3.5,51.5 parent: 2 - - uid: 2219 + - uid: 16260 components: - type: Transform - pos: -18.5,-3.5 + pos: -31.5,17.5 parent: 2 - - uid: 2220 +- proto: ShardGlass + entities: + - uid: 6994 components: - type: Transform - pos: -19.5,-3.5 + pos: 37.799515,9.717336 parent: 2 - - uid: 2221 + - uid: 15987 components: - type: Transform - pos: -18.5,-2.5 + pos: 37.220566,10.453447 parent: 2 - - uid: 2222 + - uid: 17064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-14.5 + pos: 38.60945,9.960392 parent: 2 - - uid: 2223 +- proto: SheetGlass + entities: + - uid: 2054 components: - type: Transform - pos: -19.5,-13.5 + pos: -5.303391,-23.421415 parent: 2 - - uid: 2224 + - uid: 4395 components: - type: Transform - pos: -20.5,-13.5 + pos: 30.404766,-0.06552839 parent: 2 - - uid: 2225 + - uid: 7254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-14.5 + pos: 58.962917,-11.384084 parent: 2 - - uid: 16631 + - uid: 8196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,36.5 + pos: 10.711848,-40.45789 parent: 2 - - uid: 16632 + - uid: 15156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,35.5 + pos: -33.249187,38.611046 parent: 2 - - uid: 16633 + - uid: 20556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,35.5 + pos: 5.544655,27.559452 parent: 2 - - uid: 16634 + - type: Stack + count: 15 + - uid: 20886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,35.5 + pos: 23.487421,19.497616 parent: 2 -- proto: TableCounterWood +- proto: SheetPlasma entities: - - uid: 2226 + - uid: 7262 components: - type: Transform - pos: -16.5,-0.5 + rot: 3.141592653589793 rad + pos: 71.45334,-7.4422317 parent: 2 - - uid: 2227 + - uid: 21253 components: - type: Transform - pos: -16.5,3.5 - parent: 2 - - uid: 2228 + pos: 7.572357,0.5568676 + parent: 21128 + - type: Stack + count: 15 + - uid: 21570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,0.5 + pos: 34.50172,-1.4871633 parent: 2 - - uid: 2229 + - type: Stack + count: 15 + - uid: 21882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,1.5 + pos: 6.5330257,-14.510506 parent: 2 - - uid: 2230 + - type: Stack + count: 15 +- proto: SheetPlasma1 + entities: + - uid: 17337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,2.5 + pos: 23.631372,-65.50266 parent: 2 - - uid: 2231 + - type: Stack + count: 15 + - uid: 21880 components: - type: Transform - pos: -15.5,3.5 + pos: 15.5072975,-22.504484 parent: 2 - - uid: 2237 + - type: Stack + count: 15 +- proto: SheetPlasteel + entities: + - uid: 7622 components: - type: Transform - pos: -37.5,-20.5 + pos: 21.439888,-35.48906 parent: 2 - - uid: 2238 +- proto: SheetPlastic + entities: + - uid: 1942 components: - type: Transform - pos: -36.5,-20.5 + pos: 5.388405,27.434452 parent: 2 - - uid: 3730 + - type: Stack + count: 15 + - uid: 2056 components: - type: Transform - pos: -44.5,11.5 + pos: -5.037766,-23.452665 parent: 2 - - uid: 3731 + - uid: 7159 components: - type: Transform - pos: -44.5,12.5 + pos: 58.244167,-11.384084 parent: 2 - - uid: 3732 + - uid: 15157 components: - type: Transform - pos: -44.5,13.5 + pos: -32.858562,38.579796 parent: 2 - - uid: 4407 + - uid: 23343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-15.5 + pos: 23.378046,19.38824 parent: 2 - - uid: 4410 +- proto: SheetRPGlass + entities: + - uid: 5108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-15.5 + pos: -1.4794626,-17.443817 parent: 2 - - uid: 4414 + - type: Stack + count: 15 +- proto: SheetSteel + entities: + - uid: 1960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-16.5 + pos: 23.549921,19.57574 parent: 2 - - uid: 4415 + - uid: 2058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-17.5 + pos: -5.490891,-23.421415 parent: 2 - - uid: 4418 + - uid: 2059 components: - type: Transform - pos: -44.5,-15.5 + pos: 13.431305,-15.361163 parent: 2 - - uid: 4427 + - uid: 2060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-15.5 + pos: 13.559727,-15.471238 parent: 2 - - uid: 4567 + - uid: 4393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-28.5 + pos: 30.423111,0.55823207 parent: 2 - - uid: 12701 + - uid: 7253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-27.5 + pos: 58.494167,-11.36325 parent: 2 - - uid: 12702 + - uid: 8195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-27.5 + pos: 10.393852,-40.433426 parent: 2 - - uid: 16197 + - uid: 15155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-24.5 + pos: -33.561687,38.65792 parent: 2 - - uid: 16199 + - uid: 16653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-24.5 + pos: 13.535873,34.51549 parent: 2 - - uid: 16200 + - uid: 21944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-24.5 + pos: 5.65403,27.653202 parent: 2 -- proto: TableFancyBlack + - type: Stack + count: 15 +- proto: SheetSteel10 entities: - - uid: 3109 + - uid: 20573 components: - type: Transform - pos: -36.5,5.5 + pos: -38.542088,26.524464 parent: 2 - - uid: 3110 +- proto: SheetUranium + entities: + - uid: 20347 components: - type: Transform - pos: -30.5,5.5 + pos: 6.5942326,-13.459567 parent: 2 - - uid: 3111 + - type: Stack + count: 15 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 1813 components: - type: Transform - pos: -36.5,6.5 + pos: 42.5,14.5 parent: 2 - - uid: 3112 +- proto: ShelfMetal + entities: + - uid: 8462 components: - type: Transform - pos: -30.5,7.5 + pos: 2.5,49.5 parent: 2 - - uid: 3121 +- proto: ShotGunCabinetFilled + entities: + - uid: 8186 components: - type: Transform - pos: -30.5,6.5 + rot: 1.5707963267948966 rad + pos: -10.5,33.5 parent: 2 -- proto: TableFancyRed +- proto: ShuttersNormal entities: - - uid: 3124 + - uid: 2061 components: - type: Transform - pos: -20.5,7.5 + rot: -1.5707963267948966 rad + pos: -21.5,-26.5 parent: 2 - - uid: 3490 + - uid: 2062 components: - type: Transform - pos: -21.5,7.5 + rot: -1.5707963267948966 rad + pos: -21.5,-25.5 parent: 2 -- proto: TableFrame - entities: - - uid: 16498 + - uid: 2063 components: - type: Transform - pos: -66.5,-23.5 + rot: -1.5707963267948966 rad + pos: -21.5,-27.5 parent: 2 -- proto: TableReinforced - entities: - - uid: 182 + - uid: 6546 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-64.5 + pos: 44.5,-7.5 parent: 2 - - uid: 758 + - uid: 6547 components: - type: Transform - pos: 9.5,-48.5 + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 parent: 2 - - uid: 880 + - uid: 6548 components: - type: Transform - pos: -32.5,14.5 + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 parent: 2 - - uid: 2243 + - uid: 6549 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-28.5 + rot: -1.5707963267948966 rad + pos: 44.5,-1.5 parent: 2 - - uid: 2244 + - uid: 6550 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-28.5 + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 parent: 2 - - uid: 2245 + - uid: 6551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-27.5 + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 parent: 2 - - uid: 2246 + - uid: 16146 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-27.5 + pos: 62.5,28.5 parent: 2 - - uid: 2247 + - uid: 16147 components: - type: Transform - pos: 20.5,-23.5 + rot: 3.141592653589793 rad + pos: 56.5,28.5 parent: 2 - - uid: 2248 +- proto: ShuttersNormalOpen + entities: + - uid: 2064 components: - type: Transform - pos: 21.5,-23.5 + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 parent: 2 - - uid: 2249 + - uid: 2065 components: - type: Transform - pos: 14.5,-15.5 + rot: -1.5707963267948966 rad + pos: -16.5,0.5 parent: 2 - - uid: 2250 + - uid: 2066 components: - type: Transform - pos: 13.5,-15.5 + rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - - uid: 2251 + - uid: 2067 components: - type: Transform - pos: 17.5,-22.5 + rot: -1.5707963267948966 rad + pos: -16.5,2.5 parent: 2 - - uid: 2252 + - uid: 2068 components: - type: Transform - pos: 17.5,-21.5 + rot: -1.5707963267948966 rad + pos: -16.5,3.5 parent: 2 - - uid: 2253 + - uid: 2693 components: - type: Transform - pos: 17.5,-20.5 + pos: 43.5,10.5 parent: 2 - - uid: 2254 + - uid: 2694 components: - type: Transform - pos: 43.5,-22.5 + pos: 42.5,10.5 parent: 2 - - uid: 2255 + - uid: 2908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-23.5 + rot: -1.5707963267948966 rad + pos: 64.5,-52.5 parent: 2 - - uid: 2256 + - uid: 4423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-23.5 + pos: -45.5,-18.5 parent: 2 - - uid: 2257 + - uid: 4424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-23.5 + pos: -44.5,-18.5 parent: 2 - - uid: 2258 + - uid: 4425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-23.5 + pos: -43.5,-18.5 parent: 2 - - uid: 2259 + - uid: 4540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-28.5 + rot: 3.141592653589793 rad + pos: 23.5,-27.5 parent: 2 - - uid: 2260 + - uid: 4542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-28.5 + rot: 3.141592653589793 rad + pos: 24.5,-27.5 parent: 2 - - uid: 2261 + - uid: 4543 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-24.5 + pos: 25.5,-27.5 parent: 2 - - uid: 2262 + - uid: 4544 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-25.5 + pos: 26.5,-27.5 parent: 2 - - uid: 2263 + - uid: 4545 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-23.5 + pos: 27.5,-27.5 parent: 2 - - uid: 2312 + - uid: 4546 components: - type: Transform - pos: 27.5,-43.5 + rot: 3.141592653589793 rad + pos: 28.5,-27.5 parent: 2 - - uid: 4020 + - uid: 4547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-37.5 + rot: 3.141592653589793 rad + pos: 29.5,-27.5 parent: 2 - - uid: 4021 + - uid: 5655 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-37.5 + pos: 32.5,21.5 parent: 2 - - uid: 4022 + - uid: 5661 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-33.5 + pos: 32.5,20.5 parent: 2 - - uid: 4023 + - uid: 7033 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-32.5 + pos: 32.5,14.5 parent: 2 - - uid: 4024 + - uid: 7377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-32.5 + pos: -20.5,10.5 parent: 2 - - uid: 4025 + - uid: 8280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-33.5 + pos: 33.5,-39.5 parent: 2 - - uid: 4026 + - uid: 8281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-38.5 + pos: 32.5,-39.5 parent: 2 - - uid: 4027 + - uid: 8437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-38.5 + pos: 34.5,-39.5 parent: 2 - - uid: 4028 + - uid: 8587 components: - type: Transform - pos: 33.5,-38.5 + rot: 3.141592653589793 rad + pos: -2.5,54.5 parent: 2 - - uid: 4029 + - uid: 8588 components: - type: Transform - pos: 34.5,-38.5 + rot: 3.141592653589793 rad + pos: -1.5,54.5 parent: 2 - - uid: 4030 + - uid: 8589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-38.5 + rot: 3.141592653589793 rad + pos: -0.5,54.5 parent: 2 - - uid: 4041 + - uid: 8590 components: - type: Transform - pos: 34.5,-37.5 + rot: 3.141592653589793 rad + pos: 0.5,54.5 parent: 2 - - uid: 4042 + - uid: 8591 components: - type: Transform - pos: 32.5,-38.5 + rot: 3.141592653589793 rad + pos: 1.5,54.5 parent: 2 - - uid: 4046 + - uid: 8592 components: - type: Transform - pos: 46.5,-38.5 + rot: 3.141592653589793 rad + pos: 2.5,54.5 parent: 2 - - uid: 4047 + - uid: 8687 components: - type: Transform - pos: 46.5,-37.5 + rot: 3.141592653589793 rad + pos: 40.5,-22.5 parent: 2 - - uid: 4048 + - uid: 8688 components: - type: Transform - pos: 47.5,-38.5 + rot: 3.141592653589793 rad + pos: 41.5,-22.5 parent: 2 - - uid: 4075 + - uid: 8689 components: - type: Transform - pos: 44.5,-32.5 + rot: 3.141592653589793 rad + pos: 42.5,-22.5 parent: 2 - - uid: 4076 + - uid: 8691 components: - type: Transform - pos: 43.5,-32.5 + rot: 3.141592653589793 rad + pos: 44.5,-22.5 parent: 2 - - uid: 4077 + - uid: 8744 components: - type: Transform - pos: 36.5,-32.5 + pos: 48.5,-39.5 parent: 2 - - uid: 4078 + - uid: 8747 components: - type: Transform - pos: 37.5,-32.5 + pos: 45.5,10.5 parent: 2 - - uid: 4094 + - uid: 8748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-30.5 + pos: 46.5,10.5 parent: 2 - - uid: 4095 + - uid: 8768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-30.5 + pos: 47.5,-39.5 parent: 2 - - uid: 4096 + - uid: 9248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-30.5 + pos: 46.5,-39.5 parent: 2 - - uid: 4125 + - uid: 12915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-31.5 + pos: 42.5,-39.5 parent: 2 - - uid: 4127 + - uid: 14724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-31.5 + pos: 38.5,-39.5 parent: 2 - - uid: 4128 + - uid: 15408 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-31.5 + pos: -22.5,10.5 parent: 2 - - uid: 4258 + - uid: 15409 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,11.5 + pos: -23.5,14.5 parent: 2 - - uid: 4259 + - uid: 15410 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,10.5 + pos: -23.5,13.5 parent: 2 - - uid: 4361 + - uid: 15411 components: - type: Transform - pos: 37.5,-4.5 + rot: -1.5707963267948966 rad + pos: -23.5,12.5 parent: 2 - - uid: 4363 + - uid: 16627 components: - type: Transform - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: 14.5,33.5 parent: 2 - - uid: 4364 + - uid: 17478 components: - type: Transform - pos: 36.5,-4.5 + rot: 1.5707963267948966 rad + pos: -27.5,12.5 parent: 2 - - uid: 4365 + - uid: 17479 components: - type: Transform - pos: 36.5,-2.5 + rot: 1.5707963267948966 rad + pos: -27.5,13.5 parent: 2 - - uid: 4383 + - uid: 17480 components: - type: Transform - pos: 30.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.5,14.5 parent: 2 - - uid: 4384 + - uid: 17492 components: - type: Transform - pos: 30.5,-0.5 + rot: -1.5707963267948966 rad + pos: -22.5,-15.5 parent: 2 - - uid: 4385 + - uid: 17493 components: - type: Transform - pos: 30.5,-1.5 + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 parent: 2 - - uid: 4386 + - uid: 17494 components: - type: Transform - pos: 30.5,-2.5 + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 parent: 2 - - uid: 4521 + - uid: 17495 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-24.5 + pos: -22.5,-12.5 parent: 2 - - uid: 4522 + - uid: 17496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-24.5 + pos: -16.5,-28.5 parent: 2 - - uid: 4523 + - uid: 17497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-26.5 + pos: -15.5,-28.5 parent: 2 - - uid: 4525 + - uid: 17498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-25.5 + pos: -17.5,-28.5 parent: 2 - - uid: 4526 + - uid: 17502 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-24.5 + pos: 0.5,24.5 parent: 2 - - uid: 4527 + - uid: 17503 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-27.5 + pos: 0.5,23.5 parent: 2 - - uid: 4533 + - uid: 17512 components: - type: Transform - pos: -56.5,-26.5 + rot: -1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - - uid: 4534 + - uid: 17514 components: - type: Transform - pos: -55.5,-26.5 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 - - uid: 4535 + - uid: 17515 components: - type: Transform - pos: -54.5,-26.5 + rot: -1.5707963267948966 rad + pos: 24.5,12.5 parent: 2 - - uid: 4536 + - uid: 17521 components: - type: Transform - pos: -55.5,-29.5 + pos: 57.5,-15.5 parent: 2 - - uid: 4537 + - uid: 17522 components: - type: Transform - pos: -54.5,-29.5 + pos: 58.5,-15.5 parent: 2 - - uid: 4759 + - uid: 17523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 + pos: 59.5,-15.5 parent: 2 - - uid: 4760 + - uid: 17524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,24.5 + pos: 60.5,-15.5 parent: 2 - - uid: 4958 + - uid: 19928 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,25.5 + pos: 32.5,15.5 parent: 2 - - uid: 4959 + - uid: 20807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,26.5 + pos: -0.5,-28.5 parent: 2 - - uid: 5428 + - uid: 20827 components: - type: Transform - pos: 24.5,13.5 + pos: 0.5,-28.5 parent: 2 - - uid: 5429 + - uid: 21746 components: - type: Transform - pos: 24.5,14.5 + pos: -21.5,10.5 parent: 2 - - uid: 5456 + - uid: 22199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 + rot: 3.141592653589793 rad + pos: 19.5,-71.5 parent: 2 - - uid: 5457 + - uid: 22860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 + rot: -1.5707963267948966 rad + pos: 24.5,15.5 parent: 2 - - uid: 5527 + - uid: 22861 components: - type: Transform - pos: 75.5,-15.5 + rot: -1.5707963267948966 rad + pos: 32.5,19.5 parent: 2 - - uid: 5540 + - uid: 22862 components: - type: Transform - pos: 32.5,20.5 + rot: -1.5707963267948966 rad + pos: 0.5,25.5 parent: 2 - - uid: 5621 +- proto: ShuttersRadiationOpen + entities: + - uid: 2069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,17.5 + pos: 2.5,-10.5 parent: 2 - - uid: 5622 + - uid: 2070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,18.5 + pos: 1.5,-10.5 parent: 2 - - uid: 5623 + - uid: 2071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,19.5 + pos: 0.5,-10.5 parent: 2 - - uid: 5716 + - uid: 2072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,22.5 + pos: -0.5,-10.5 parent: 2 - - uid: 5717 + - uid: 2073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,22.5 + pos: -1.5,-10.5 parent: 2 - - uid: 5910 + - uid: 20350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-35.5 + pos: -0.5,-18.5 parent: 2 - - uid: 5911 + - uid: 20351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-35.5 + pos: 0.5,-18.5 parent: 2 - - uid: 6016 + - uid: 20352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,10.5 + pos: 1.5,-18.5 parent: 2 - - uid: 6018 +- proto: ShuttersWindowOpen + entities: + - uid: 4616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,10.5 + pos: 35.5,-39.5 parent: 2 - - uid: 6582 + - uid: 4617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-7.5 + pos: 36.5,-39.5 parent: 2 - - uid: 6584 + - uid: 4618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-4.5 + pos: 37.5,-39.5 parent: 2 - - uid: 6585 + - uid: 4620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-1.5 + pos: 39.5,-39.5 parent: 2 - - uid: 6586 + - uid: 4621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-1.5 + pos: 40.5,-39.5 parent: 2 - - uid: 6588 + - uid: 4622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 + pos: 41.5,-39.5 parent: 2 - - uid: 6596 + - uid: 4624 components: - type: Transform - pos: 63.5,4.5 + pos: 43.5,-39.5 parent: 2 - - uid: 6604 + - uid: 4625 components: - type: Transform - pos: 63.5,0.5 + pos: 44.5,-39.5 parent: 2 - - uid: 6606 + - uid: 4626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-2.5 + pos: 45.5,-39.5 parent: 2 - - uid: 6607 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 21318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-3.5 - parent: 2 - - uid: 6608 + pos: 7.516014,2.0782585 + parent: 21128 +- proto: ShuttleWindow + entities: + - uid: 21176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 2 - - uid: 6903 + pos: 0.5,-0.5 + parent: 21128 + - uid: 21177 components: - type: Transform - pos: 61.5,17.5 - parent: 2 - - uid: 6904 + pos: 0.5,0.5 + parent: 21128 + - uid: 21178 components: - type: Transform - pos: 61.5,16.5 - parent: 2 - - uid: 6906 + pos: 1.5,0.5 + parent: 21128 + - uid: 21179 components: - type: Transform - pos: 60.5,17.5 - parent: 2 - - uid: 6909 + pos: 3.5,0.5 + parent: 21128 + - uid: 21180 components: - type: Transform - pos: 61.5,15.5 - parent: 2 - - uid: 7044 + pos: 7.5,3.5 + parent: 21128 + - uid: 21181 components: - type: Transform - pos: 57.5,-6.5 + pos: 7.5,4.5 + parent: 21128 + - uid: 21182 + components: + - type: Transform + pos: 9.5,3.5 + parent: 21128 + - uid: 21183 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 21128 + - uid: 21193 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 21128 + - uid: 21194 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 21128 +- proto: SignAi + entities: + - uid: 21407 + components: + - type: Transform + pos: 17.5,-41.5 parent: 2 - - uid: 7053 + - uid: 22196 components: - type: Transform - pos: 61.5,-3.5 + pos: 18.5,-61.5 parent: 2 - - uid: 7097 +- proto: SignAiUpload + entities: + - uid: 21887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-15.5 + pos: 20.5,-41.5 parent: 2 - - uid: 7098 + - uid: 22186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-15.5 + pos: 21.5,-53.5 parent: 2 - - uid: 7099 +- proto: SignalButton + entities: + - uid: 2074 components: + - type: MetaData + name: Radiation shutters button - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-15.5 + pos: 3.5,-11.5 parent: 2 - - uid: 7143 + - type: DeviceLinkSource + linkedPorts: + 2069: + - Pressed: Toggle + 2070: + - Pressed: Toggle + 2071: + - Pressed: Toggle + 2072: + - Pressed: Toggle + 2073: + - Pressed: Toggle + - uid: 2075 components: + - type: MetaData + name: secure supply button - type: Transform - pos: 57.5,-11.5 + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 parent: 2 - - uid: 7144 + - type: DeviceLinkSource + linkedPorts: + 160: + - Pressed: Toggle + 159: + - Pressed: Toggle + - uid: 2076 components: + - type: MetaData + name: Blast chamber doors button - type: Transform - pos: 58.5,-11.5 + rot: 3.141592653589793 rad + pos: 29.5,-14.5 parent: 2 - - uid: 7145 + - type: DeviceLinkSource + linkedPorts: + 158: + - Pressed: Toggle + 157: + - Pressed: Toggle + 16939: + - Pressed: Toggle + - uid: 2077 components: + - type: MetaData + name: Door bolt button - type: Transform - pos: 59.5,-11.5 + rot: 3.141592653589793 rad + pos: -35.5,-11.5 parent: 2 - - uid: 7166 + - type: DeviceLinkSource + linkedPorts: + 6: + - Pressed: DoorBolt + - uid: 2079 components: + - type: MetaData + name: Door bolt button - type: Transform - pos: 65.5,-26.5 + rot: 3.141592653589793 rad + pos: -27.5,-11.5 parent: 2 - - uid: 7172 + - type: DeviceLinkSource + linkedPorts: + 7: + - Pressed: DoorBolt + - uid: 15610 components: + - type: MetaData + name: Lights off button - type: Transform - pos: 66.5,-26.5 + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 parent: 2 - - uid: 7220 + - type: DeviceLinkSource + linkedPorts: + 12667: + - Pressed: Toggle + - uid: 20353 components: + - type: MetaData + name: Radiation shutters button - type: Transform - pos: 67.5,-13.5 + rot: 3.141592653589793 rad + pos: 1.5,-24.5 parent: 2 - - uid: 7221 + - type: DeviceLinkSource + linkedPorts: + 20352: + - Pressed: Toggle + 20351: + - Pressed: Toggle + 20350: + - Pressed: Toggle + - uid: 21867 components: + - type: MetaData + name: Medical exit button - type: Transform - pos: 67.5,-14.5 + rot: 3.141592653589793 rad + pos: 50.5,-2.5 parent: 2 - - uid: 7222 + - type: DeviceLinkSource + linkedPorts: + 6514: + - Pressed: Open + 6515: + - Pressed: Open + 6516: + - Pressed: Open +- proto: SignalButtonDirectional + entities: + - uid: 2018 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 71.5,-13.5 + rot: -1.5707963267948966 rad + pos: -9.5,-37.5 parent: 2 - - uid: 7223 + - type: DeviceLinkSource + linkedPorts: + 16684: + - Pressed: Toggle + - uid: 2100 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 71.5,-14.5 + rot: -1.5707963267948966 rad + pos: 48.5,12.5 parent: 2 - - uid: 7256 + - type: DeviceLinkSource + linkedPorts: + 8747: + - Pressed: Toggle + 8748: + - Pressed: Toggle + 2693: + - Pressed: Toggle + 2694: + - Pressed: Toggle + - uid: 4520 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 71.5,-8.5 + rot: -1.5707963267948966 rad + pos: -42.5,-16.5 parent: 2 - - uid: 7257 + - type: DeviceLinkSource + linkedPorts: + 4425: + - Pressed: Toggle + 4424: + - Pressed: Toggle + 4423: + - Pressed: Toggle + - uid: 4548 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 71.5,-7.5 + rot: -1.5707963267948966 rad + pos: 30.5,-31.5 parent: 2 - - uid: 7427 + - type: DeviceLinkSource + linkedPorts: + 4547: + - Pressed: Toggle + 4546: + - Pressed: Toggle + 4545: + - Pressed: Toggle + 4544: + - Pressed: Toggle + 4543: + - Pressed: Toggle + 4542: + - Pressed: Toggle + 4540: + - Pressed: Toggle + - uid: 5653 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 44.5,16.5 + rot: -1.5707963267948966 rad + pos: 37.5,21.5 parent: 2 - - uid: 7616 + - type: DeviceLinkSource + linkedPorts: + 5655: + - Pressed: Toggle + 5661: + - Pressed: Toggle + 22861: + - Pressed: Toggle + - uid: 5757 components: + - type: MetaData + name: Secure storage doors button - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-38.5 + rot: 3.141592653589793 rad + pos: 27.5,5.5 parent: 2 - - uid: 7617 + - type: DeviceLinkSource + linkedPorts: + 5465: + - Pressed: Toggle + 5466: + - Pressed: Toggle + 5464: + - Pressed: Toggle + - uid: 6961 components: + - type: MetaData + name: containment button - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-38.5 + pos: 56.5,16.5 parent: 2 - - uid: 7709 + - type: DeviceLinkSource + linkedPorts: + 6960: + - Pressed: Toggle + 6905: + - Pressed: DoorBolt + - uid: 7032 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-41.5 + rot: 3.141592653589793 rad + pos: 37.5,11.5 parent: 2 - - uid: 7710 + - type: DeviceLinkSource + linkedPorts: + 14224: + - Pressed: Toggle + - uid: 7039 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-41.5 + rot: -1.5707963267948966 rad + pos: 72.5,-22.5 parent: 2 - - uid: 7711 + - type: DeviceLinkSource + linkedPorts: + 16058: + - Pressed: Toggle + - uid: 7054 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-46.5 + rot: 3.141592653589793 rad + pos: 45.5,-31.5 parent: 2 - - uid: 7712 + - uid: 8185 components: + - type: MetaData + name: Shutters button - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-46.5 + rot: 3.141592653589793 rad + pos: 44.5,-26.5 parent: 2 - - uid: 7777 + - type: DeviceLinkSource + linkedPorts: + 8691: + - Pressed: Toggle + 8689: + - Pressed: Toggle + 8688: + - Pressed: Toggle + 8687: + - Pressed: Toggle + - uid: 8530 components: + - type: MetaData + name: Door bolt button - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-40.5 + pos: 17.5,26.5 parent: 2 - - uid: 7779 + - type: DeviceLinkSource + linkedPorts: + 8242: + - Pressed: DoorBolt + - uid: 8532 components: + - type: MetaData + name: Door bolt button - type: Transform - pos: 10.5,-37.5 + pos: 17.5,24.5 parent: 2 - - uid: 7996 + - type: DeviceLinkSource + linkedPorts: + 8243: + - Pressed: DoorBolt + - uid: 12911 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 9.5,-37.5 + rot: 3.141592653589793 rad + pos: -13.5,-1.5 parent: 2 - - uid: 8000 + - type: DeviceLinkSource + linkedPorts: + 2064: + - Pressed: Toggle + 2065: + - Pressed: Toggle + 2066: + - Pressed: Toggle + 2067: + - Pressed: Toggle + 2068: + - Pressed: Toggle + - uid: 12913 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 8.5,-37.5 + pos: 27.5,24.5 parent: 2 - - uid: 8135 + - type: DeviceLinkSource + linkedPorts: + 5517: + - Pressed: Toggle + 5516: + - Pressed: Toggle + - uid: 12914 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 11.5,-37.5 + rot: -1.5707963267948966 rad + pos: 78.5,-12.5 parent: 2 - - uid: 8139 + - type: DeviceLinkSource + linkedPorts: + 7332: + - Pressed: Toggle + 7333: + - Pressed: Toggle + 7334: + - Pressed: Toggle + - uid: 12916 components: + - type: MetaData + name: Blast doors button - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-40.5 + pos: 78.5,-16.5 parent: 2 - - uid: 8554 + - type: DeviceLinkSource + linkedPorts: + 7335: + - Pressed: Toggle + 7336: + - Pressed: Toggle + 7337: + - Pressed: Toggle + - uid: 14403 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: 75.5,-11.5 + pos: 2.9529366,23.045258 parent: 2 - - uid: 8753 + - type: DeviceLinkSource + linkedPorts: + 20777: + - Pressed: Toggle + - uid: 14879 components: + - type: MetaData + name: Lights off button - type: Transform rot: 3.141592653589793 rad - pos: 45.5,12.5 - parent: 2 - - uid: 15813 - components: - - type: Transform - pos: -27.5,38.5 + pos: -37.5,-11.5 parent: 2 - - uid: 15842 + - type: DeviceLinkSource + linkedPorts: + 1686: + - Pressed: Toggle + - uid: 15913 components: + - type: MetaData + name: Shutters button - type: Transform - pos: -28.5,38.5 + rot: 1.5707963267948966 rad + pos: -23.5,15.5 parent: 2 - - uid: 16119 + - type: DeviceLinkSource + linkedPorts: + 15410: + - Pressed: Toggle + 15409: + - Pressed: Toggle + 15411: + - Pressed: Toggle + 15408: + - Pressed: Toggle + 21746: + - Pressed: Toggle + 7377: + - Pressed: Toggle + - uid: 16121 components: + - type: MetaData + name: Lights off button - type: Transform - pos: -30.5,14.5 + rot: 3.141592653589793 rad + pos: -29.5,-11.5 parent: 2 - - uid: 16259 + - type: DeviceLinkSource + linkedPorts: + 1688: + - Pressed: Toggle + - uid: 16148 components: - type: Transform - pos: -31.5,14.5 + pos: 57.5,28.5 parent: 2 - - uid: 16576 + - type: DeviceLinkSource + linkedPorts: + 16147: + - Pressed: Toggle + - uid: 16149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,12.5 + pos: 61.5,28.5 parent: 2 - - uid: 17596 + - type: DeviceLinkSource + linkedPorts: + 16146: + - Pressed: Toggle + - uid: 16628 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,13.5 + pos: 12.5,31.5 parent: 2 - - uid: 18460 + - type: DeviceLinkSource + linkedPorts: + 16627: + - Pressed: Toggle + - uid: 16704 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 57.5,-7.5 + rot: -1.5707963267948966 rad + pos: 50.5,-36.5 parent: 2 - - uid: 20250 + - type: DeviceLinkSource + linkedPorts: + 12915: + - Pressed: Toggle + 14724: + - Pressed: Toggle + 8437: + - Pressed: Toggle + 4626: + - Pressed: Toggle + 4625: + - Pressed: Toggle + 4624: + - Pressed: Toggle + 8281: + - Pressed: Toggle + 4622: + - Pressed: Toggle + 4621: + - Pressed: Toggle + 4620: + - Pressed: Toggle + 8280: + - Pressed: Toggle + 4618: + - Pressed: Toggle + 4617: + - Pressed: Toggle + 4616: + - Pressed: Toggle + 8744: + - Pressed: Toggle + 8768: + - Pressed: Toggle + 9248: + - Pressed: Toggle + - uid: 17461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-48.5 + rot: -1.5707963267948966 rad + pos: 1.5,-27.5 parent: 2 - - uid: 20606 + - type: DeviceLinkSource + linkedPorts: + 20807: + - Pressed: Toggle + 20827: + - Pressed: Toggle + - uid: 17491 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 43.5,16.5 + rot: 3.141592653589793 rad + pos: -20.5,-16.5 parent: 2 - - uid: 20995 + - type: DeviceLinkSource + linkedPorts: + 17492: + - Pressed: Toggle + 17493: + - Pressed: Toggle + 17494: + - Pressed: Toggle + 17495: + - Pressed: Toggle + - uid: 17499 components: + - type: MetaData + name: Shutters button - type: Transform rot: 3.141592653589793 rad - pos: 91.5,-20.5 + pos: -18.5,-28.5 parent: 2 - - uid: 20996 + - type: DeviceLinkSource + linkedPorts: + 17498: + - Pressed: Toggle + 17496: + - Pressed: Toggle + 17497: + - Pressed: Toggle + - uid: 17505 components: + - type: MetaData + name: Shutters button - type: Transform rot: 3.141592653589793 rad - pos: 90.5,-20.5 + pos: 2.5,22.5 parent: 2 - - uid: 21056 + - type: DeviceLinkSource + linkedPorts: + 17503: + - Pressed: Toggle + 17502: + - Pressed: Toggle + 22862: + - Pressed: Toggle + - uid: 17507 components: + - type: MetaData + name: Shutters button - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-43.5 + rot: 1.5707963267948966 rad + pos: -3.5,53.5 parent: 2 - - uid: 21057 + - type: DeviceLinkSource + linkedPorts: + 8587: + - Pressed: Toggle + 8588: + - Pressed: Toggle + 8589: + - Pressed: Toggle + 8590: + - Pressed: Toggle + 8591: + - Pressed: Toggle + 8592: + - Pressed: Toggle + - uid: 17516 components: + - type: MetaData + name: Shutters button - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-44.5 + rot: 3.141592653589793 rad + pos: 28.5,9.5 parent: 2 - - uid: 21245 + - type: DeviceLinkSource + linkedPorts: + 17515: + - Pressed: Toggle + 17514: + - Pressed: Toggle + 17512: + - Pressed: Toggle + 22860: + - Pressed: Toggle + - uid: 17517 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 7.5,2.5 - parent: 21128 - - uid: 21246 + pos: 46.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6547: + - Pressed: Toggle + 6546: + - Pressed: Toggle + - uid: 17518 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 7.5,1.5 - parent: 21128 - - uid: 21247 + pos: 46.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6550: + - Pressed: Toggle + 6551: + - Pressed: Toggle + - uid: 17519 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 9.5,2.5 - parent: 21128 - - uid: 21248 + pos: 46.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6548: + - Pressed: Toggle + 6549: + - Pressed: Toggle + - uid: 17520 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 9.5,1.5 - parent: 21128 - - uid: 21455 + pos: 61.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17524: + - Pressed: Toggle + 17523: + - Pressed: Toggle + 17522: + - Pressed: Toggle + 17521: + - Pressed: Toggle + - uid: 17526 components: + - type: MetaData + name: Lockdown button - type: Transform - pos: 8.5,-48.5 + rot: 1.5707963267948966 rad + pos: 64.5,-51.5 parent: 2 - - uid: 21550 + - type: DeviceLinkSource + linkedPorts: + 17259: + - Pressed: DoorBolt + 2908: + - Pressed: Toggle + - uid: 18465 components: + - type: MetaData + name: Shutters button - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-65.5 + pos: 35.5,16.5 parent: 2 - - uid: 21552 + - type: DeviceLinkSource + linkedPorts: + 7033: + - Pressed: Toggle + 19928: + - Pressed: Toggle + - uid: 20319 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 27.5,-44.5 + pos: 61.5,-21.5 parent: 2 -- proto: TableReinforcedGlass - entities: - - uid: 6925 + - type: DeviceLinkSource + linkedPorts: + 7121: + - Pressed: Toggle + 7123: + - Pressed: Toggle + - uid: 20781 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: 58.5,18.5 + pos: -5.5,-24.5 parent: 2 -- proto: TableStone - entities: - - uid: 2266 + - type: DeviceLinkSource + linkedPorts: + 20783: + - Pressed: Toggle + - uid: 20784 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: -34.5,-20.5 + rot: 1.5707963267948966 rad + pos: 24.5,11.5 parent: 2 - - uid: 2267 + - type: DeviceLinkSource + linkedPorts: + 20778: + - Pressed: Toggle + - uid: 20785 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: -34.5,-19.5 + rot: -1.5707963267948966 rad + pos: 47.5,2.5 parent: 2 -- proto: TableWood - entities: - - uid: 2269 + - type: DeviceLinkSource + linkedPorts: + 20779: + - Pressed: Toggle + - uid: 20786 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: -13.5,3.5 + rot: 1.5707963267948966 rad + pos: 62.5,-16.5 parent: 2 - - uid: 2271 + - type: DeviceLinkSource + linkedPorts: + 20780: + - Pressed: Toggle + - uid: 21235 components: - type: Transform - pos: -13.5,0.5 - parent: 2 - - uid: 2272 + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 21128 + - type: DeviceLinkSource + linkedPorts: + 21191: + - Pressed: Toggle + 21192: + - Pressed: Toggle + - uid: 21451 components: + - type: MetaData + name: lockdown button - type: Transform - pos: -13.5,2.5 + rot: 1.5707963267948966 rad + pos: 56.47196,16.864159 parent: 2 - - uid: 2273 + - type: DeviceLinkSource + linkedPorts: + 6727: + - Pressed: DoorBolt + - Pressed: Close + - Pressed: AutoClose + - uid: 21844 components: + - type: MetaData + name: Shutters button - type: Transform - pos: -13.5,-0.5 + rot: 3.141592653589793 rad + pos: -31.5,10.5 parent: 2 - - uid: 2274 + - type: DeviceLinkSource + linkedPorts: + 17478: + - Pressed: Toggle + 17480: + - Pressed: Toggle + 17479: + - Pressed: Toggle + - uid: 21873 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,7.5 + rot: 1.5707963267948966 rad + pos: 57.5,11.5 parent: 2 - - uid: 2277 + - type: DeviceLinkSource + linkedPorts: + 21874: + - Pressed: Toggle + - uid: 21875 components: + - type: MetaData + name: Lights off button - type: Transform - pos: -17.5,-13.5 + rot: 1.5707963267948966 rad + pos: -18.5,32.5 parent: 2 - - uid: 2278 + - type: DeviceLinkSource + linkedPorts: + 14851: + - Pressed: Toggle + - uid: 21876 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-8.5 + rot: -1.5707963267948966 rad + pos: 4.5,-26.5 parent: 2 - - uid: 2279 + - type: DeviceLinkSource + linkedPorts: + 21877: + - Pressed: Toggle +- proto: SignAnomaly + entities: + - uid: 8366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-8.5 + pos: 72.5,-15.5 parent: 2 - - uid: 2281 +- proto: SignAnomaly2 + entities: + - uid: 7214 components: - type: Transform - pos: -17.5,-17.5 + pos: 66.5,-11.5 parent: 2 - - uid: 2282 +- proto: SignArcade + entities: + - uid: 2145 components: - type: Transform - pos: -17.5,-18.5 + pos: -44.5,8.5 parent: 2 - - uid: 2283 + - uid: 3123 components: - type: Transform - pos: -19.5,-19.5 + pos: -50.5,8.5 parent: 2 - - uid: 2284 +- proto: SignArmory + entities: + - uid: 4749 components: - type: Transform - pos: -19.5,-20.5 + rot: -1.5707963267948966 rad + pos: 0.5,29.5 parent: 2 - - uid: 2285 +- proto: SignAtmos + entities: + - uid: 2080 components: - type: Transform - pos: -17.5,-23.5 + pos: 22.5,-23.5 parent: 2 - - uid: 2286 + - uid: 4791 components: - type: Transform - pos: -18.5,-23.5 + pos: 15.5,-10.5 parent: 2 - - uid: 2287 + - uid: 8347 components: - type: Transform - pos: -21.5,-23.5 + pos: 14.5,-19.5 parent: 2 - - uid: 2288 +- proto: SignBar + entities: + - uid: 6812 components: - type: Transform - pos: -20.5,-23.5 + pos: -18.5,4.5 parent: 2 - - uid: 2289 +- proto: SignBio + entities: + - uid: 6811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-2.5 + pos: 52.5,15.5 parent: 2 - - uid: 2290 +- proto: SignBiohazardMed + entities: + - uid: 21893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-1.5 + pos: 47.5,10.5 parent: 2 - - uid: 2291 +- proto: SignBridge + entities: + - uid: 6813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-1.5 + pos: 46.5,-21.5 parent: 2 - - uid: 2292 +- proto: SignCargo + entities: + - uid: 6814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-2.5 + pos: 22.5,9.5 parent: 2 - - uid: 2293 +- proto: SignCargoDock + entities: + - uid: 21894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 + pos: 30.5,24.5 parent: 2 - - uid: 2294 + - uid: 21895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-3.5 + pos: 24.5,24.5 parent: 2 - - uid: 2301 +- proto: SignChapel + entities: + - uid: 2082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-2.5 + pos: -25.5,-32.5 parent: 2 - - uid: 2302 +- proto: SignChem + entities: + - uid: 5964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-1.5 + pos: 41.5,10.5 parent: 2 - - uid: 2303 + - uid: 8369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-1.5 + pos: 42.5,16.5 parent: 2 - - uid: 2304 +- proto: SignConference + entities: + - uid: 2699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-3.5 + pos: 30.5,-28.5 parent: 2 - - uid: 2305 +- proto: SignCryogenicsMed + entities: + - uid: 7038 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-3.5 + pos: 53.5,-2.5 parent: 2 - - uid: 2306 +- proto: SignDangerMed + entities: + - uid: 17068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-2.5 + pos: 30.5,-52.5 parent: 2 - - uid: 2309 + - uid: 20805 components: - type: Transform - pos: -35.5,-8.5 + pos: 27.5,-57.5 parent: 2 - - uid: 2310 + - uid: 21077 components: - type: Transform - pos: -35.5,-9.5 + pos: 55.5,-43.5 parent: 2 - - uid: 2311 + - uid: 21125 components: - type: Transform - pos: -35.5,-10.5 + pos: 50.5,-43.5 parent: 2 - - uid: 2314 + - uid: 22095 components: - type: Transform - pos: -29.5,-9.5 + pos: 11.5,-52.5 parent: 2 - - uid: 2315 + - uid: 22500 components: - type: Transform - pos: -29.5,-8.5 + rot: 1.5707963267948966 rad + pos: 66.5,-35.5 parent: 2 - - uid: 2316 +- proto: SignDirectionalBar + entities: + - uid: 13599 components: - type: Transform - pos: -30.5,-37.5 + rot: 1.5707963267948966 rad + pos: -51.5,-5.5 parent: 2 - - uid: 2317 + - uid: 13600 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-38.5 + pos: -43.5,-32.5 parent: 2 - - uid: 2318 + - uid: 13601 components: - type: Transform - pos: -26.5,-36.5 + rot: 3.141592653589793 rad + pos: -22.5,-11.5 parent: 2 - - uid: 2319 + - uid: 13602 components: - type: Transform - pos: -31.5,-37.5 + pos: 18.5,-25.5 parent: 2 - - uid: 3880 + - uid: 13603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-21.5 + rot: 3.141592653589793 rad + pos: 18.5,9.5 parent: 2 - - uid: 3881 + - uid: 13604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-21.5 + rot: -1.5707963267948966 rad + pos: -10.5,18.5 parent: 2 - - uid: 3882 + - uid: 21869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-21.5 + rot: -1.5707963267948966 rad + pos: 9.509625,-34.787674 parent: 2 - - uid: 3883 +- proto: SignDirectionalBrig + entities: + - uid: 13605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-22.5 + rot: -1.5707963267948966 rad + pos: -3.5,26.5 parent: 2 - - uid: 3884 +- proto: SignDirectionalChapel + entities: + - uid: 13606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-22.5 + pos: -22.495113,-11.233777 parent: 2 - - uid: 3885 + - uid: 13607 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-22.5 + pos: -43.491245,-32.232563 parent: 2 - - uid: 3886 +- proto: SignDirectionalChemistry + entities: + - uid: 13608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-22.5 + rot: 3.141592653589793 rad + pos: 45.5,6.5 parent: 2 - - uid: 3887 +- proto: SignDirectionalCryo + entities: + - uid: 13609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-21.5 + pos: 52.5,9.5 parent: 2 - - uid: 3888 +- proto: SignDirectionalDorms + entities: + - uid: 13610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-22.5 + pos: -27.5,8.5 parent: 2 - - uid: 3889 + - uid: 13611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-21.5 + rot: 3.141592653589793 rad + pos: -21.5,-32.5 parent: 2 - - uid: 3890 +- proto: SignDirectionalEng + entities: + - uid: 13612 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-21.5 + pos: -21.511724,-32.217175 parent: 2 - - uid: 3891 + - uid: 20489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-22.5 + pos: -25.510857,-5.767983 parent: 2 - - uid: 4933 + - uid: 20864 components: - type: Transform - pos: -26.5,28.5 + pos: 16.5,1.5 parent: 2 - - uid: 5032 +- proto: SignDirectionalEvac + entities: + - uid: 13613 components: - type: Transform - pos: -11.5,32.5 + rot: -1.5707963267948966 rad + pos: -21.4961,-32.779675 parent: 2 - - uid: 5033 + - uid: 13614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,32.5 + rot: -1.5707963267948966 rad + pos: -27.494131,8.773048 parent: 2 - - uid: 5038 + - uid: 13615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,33.5 + rot: -1.5707963267948966 rad + pos: 14.5,18.5 parent: 2 - - uid: 5039 + - uid: 13616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,32.5 + rot: -1.5707963267948966 rad + pos: 30.5,1.5 parent: 2 - - uid: 5696 + - uid: 13617 components: - type: Transform - pos: 33.5,15.5 + rot: -1.5707963267948966 rad + pos: 44.5,-17.5 parent: 2 - - uid: 5697 + - uid: 13618 components: - type: Transform - pos: 33.5,14.5 + rot: -1.5707963267948966 rad + pos: 9.5,-34.5 parent: 2 - - uid: 6393 + - uid: 17454 components: - type: Transform - pos: -38.5,-60.5 + rot: 3.141592653589793 rad + pos: -22.502985,-24.238998 parent: 2 - - uid: 6396 +- proto: SignDirectionalFood + entities: + - uid: 13619 components: - type: Transform - pos: -56.5,-60.5 + rot: 3.141592653589793 rad + pos: -20.5,-32.5 parent: 2 - - uid: 6397 + - uid: 13620 components: - type: Transform - pos: -57.5,-60.5 + rot: -1.5707963267948966 rad + pos: 14.499298,18.229422 parent: 2 - - uid: 6398 +- proto: SignDirectionalGravity + entities: + - uid: 13621 components: - type: Transform - pos: -57.5,-61.5 + pos: 44.51204,-17.745241 parent: 2 - - uid: 6399 +- proto: SignDirectionalHop + entities: + - uid: 13622 components: - type: Transform - pos: -56.5,-61.5 + pos: 18.493233,9.222223 parent: 2 - - uid: 6400 + - uid: 13623 components: - type: Transform - pos: -57.5,-62.5 + pos: -25.5,-7.5 parent: 2 - - uid: 6401 +- proto: SignDirectionalJanitor + entities: + - uid: 13624 components: - type: Transform - pos: -56.5,-62.5 + pos: -25.505726,-7.2018347 parent: 2 - - uid: 6402 + - uid: 13625 components: - type: Transform - pos: -37.5,-60.5 + rot: -1.5707963267948966 rad + pos: -10.482073,18.78723 parent: 2 - - uid: 6403 + - uid: 13626 components: - type: Transform - pos: -38.5,-61.5 + rot: -1.5707963267948966 rad + pos: 44.543232,-17.25335 parent: 2 - - uid: 6404 +- proto: SignDirectionalLibrary + entities: + - uid: 13627 components: - type: Transform - pos: -37.5,-61.5 + rot: 3.141592653589793 rad + pos: -20.480328,-32.243916 parent: 2 - - uid: 6405 + - uid: 13628 components: - type: Transform - pos: -38.5,-62.5 + pos: -27.506214,8.259279 parent: 2 - - uid: 6406 + - uid: 13629 components: - type: Transform - pos: -37.5,-62.5 + rot: -1.5707963267948966 rad + pos: -9.5,18.5 parent: 2 - - uid: 6738 +- proto: SignDirectionalMed + entities: + - uid: 17449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 + rot: 1.5707963267948966 rad + pos: -51.470295,-5.772457 parent: 2 - - uid: 6739 + - uid: 20486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,10.5 + pos: -25.5,-5.5 parent: 2 - - uid: 7417 + - uid: 20487 components: - type: Transform - pos: 70.5,-20.5 + rot: 1.5707963267948966 rad + pos: -23.499676,16.214537 parent: 2 - - uid: 7418 + - uid: 20490 components: - type: Transform - pos: 71.5,-20.5 + rot: 1.5707963267948966 rad + pos: 16.495012,18.771885 parent: 2 - - uid: 9159 + - uid: 20491 components: - type: Transform - pos: -25.5,28.5 + rot: 1.5707963267948966 rad + pos: 18.508957,-25.217173 parent: 2 - - uid: 13487 + - uid: 21908 components: - type: Transform - pos: 40.5,-30.5 + rot: 3.141592653589793 rad + pos: 51.512268,-21.218489 parent: 2 - - uid: 14062 + - uid: 21910 components: - type: Transform - pos: -35.5,-15.5 + rot: 1.5707963267948966 rad + pos: -43.47832,-32.75125 parent: 2 - - uid: 14784 +- proto: SignDirectionalSalvage + entities: + - uid: 13630 components: - type: Transform - pos: -30.5,-15.5 + rot: 1.5707963267948966 rad + pos: 32.51097,17.851742 parent: 2 - - uid: 14991 +- proto: SignDirectionalSci + entities: + - uid: 7179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,23.5 + rot: 1.5707963267948966 rad + pos: 51.5,-21.5 parent: 2 - - uid: 14994 + - uid: 13631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,28.5 + rot: 1.5707963267948966 rad + pos: 30.482822,1.7950348 parent: 2 - - uid: 14995 + - uid: 13632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,22.5 + rot: 1.5707963267948966 rad + pos: 45.5,-17.5 parent: 2 - - uid: 14996 + - uid: 13633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,23.5 + rot: 1.5707963267948966 rad + pos: 18.500166,-25.753792 parent: 2 - - uid: 14997 + - uid: 13634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,28.5 + pos: -25.51464,-7.7475777 parent: 2 - - uid: 14998 + - uid: 13647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,23.5 + rot: 1.5707963267948966 rad + pos: -22.51245,-24.757616 parent: 2 - - uid: 14999 +- proto: SignDirectionalSec + entities: + - uid: 13635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,23.5 + rot: 1.5707963267948966 rad + pos: -23.5,16.5 parent: 2 - - uid: 15020 + - uid: 13636 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,21.5 + pos: -51.51479,-5.215695 parent: 2 - - uid: 15921 + - uid: 13637 components: - type: Transform - pos: -15.5,41.5 + rot: 3.141592653589793 rad + pos: -22.5,-24.5 parent: 2 - - uid: 15922 + - uid: 13638 components: - type: Transform - pos: -12.5,41.5 + rot: 3.141592653589793 rad + pos: 45.51868,-17.241924 parent: 2 - - uid: 16232 + - uid: 13639 components: - type: Transform - pos: 81.5,-22.5 + rot: -1.5707963267948966 rad + pos: 30.507929,1.2496392 parent: 2 - - uid: 16233 +- proto: SignDirectionalSupply + entities: + - uid: 13640 components: - type: Transform - pos: 81.5,-23.5 + rot: 3.141592653589793 rad + pos: 45.46845,-17.784672 parent: 2 - - uid: 16444 + - uid: 13641 components: - type: Transform - pos: -30.5,-45.5 + rot: 3.141592653589793 rad + pos: -20.479525,-32.753902 parent: 2 - - uid: 16500 + - uid: 13642 components: - type: Transform - pos: -66.5,-24.5 + rot: 1.5707963267948966 rad + pos: 9.510996,-34.195675 parent: 2 - - uid: 17257 + - uid: 13643 components: - type: Transform - pos: 65.5,-52.5 + rot: 1.5707963267948966 rad + pos: -23.50406,16.777948 parent: 2 - - uid: 20418 + - uid: 13644 components: - type: Transform - pos: 81.5,-35.5 + rot: 1.5707963267948966 rad + pos: 14.515841,18.759907 parent: 2 -- proto: TargetClown - entities: - - uid: 16841 + - uid: 20488 components: - type: Transform - pos: 9.5,39.5 + rot: 3.141592653589793 rad + pos: -25.510857,-5.235952 parent: 2 -- proto: TargetDarts +- proto: SignDirectionalWash entities: - - uid: 21576 + - uid: 13645 components: - type: Transform - pos: -36.5,27.5 + rot: 3.141592653589793 rad + pos: 16.5,18.5 parent: 2 -- proto: TargetSyndicate - entities: - - uid: 21066 + - uid: 13646 components: - type: Transform - pos: -36.5,-43.5 + rot: 1.5707963267948966 rad + pos: -9.4859295,18.77162 parent: 2 -- proto: TelecomServer +- proto: SignDisposalSpace entities: - - uid: 7431 + - uid: 7904 components: - type: Transform - pos: 68.5,-29.5 + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 parent: 2 -- proto: TelecomServerFilledCargo +- proto: SignDoors entities: - - uid: 14231 + - uid: 6816 components: - type: Transform - pos: 24.5,-43.5 + pos: 37.5,19.5 parent: 2 -- proto: TelecomServerFilledCommand - entities: - - uid: 14232 + - uid: 8119 components: - type: Transform - pos: 58.5,-32.5 + pos: -54.5,-59.5 parent: 2 - - uid: 14239 + - uid: 8349 components: - type: Transform - pos: 24.5,-44.5 + pos: -40.5,-59.5 parent: 2 -- proto: TelecomServerFilledCommon - entities: - - uid: 14234 + - uid: 8351 components: - type: Transform - pos: 25.5,-41.5 + pos: -40.5,-64.5 parent: 2 -- proto: TelecomServerFilledEngineering - entities: - - uid: 14237 + - uid: 8352 components: - type: Transform - pos: 25.5,-46.5 + pos: -54.5,-64.5 parent: 2 -- proto: TelecomServerFilledMedical +- proto: SignElectricalMed entities: - - uid: 14233 + - uid: 6817 components: - type: Transform - pos: 24.5,-46.5 + pos: -10.5,-17.5 parent: 2 -- proto: TelecomServerFilledScience - entities: - - uid: 14238 + - uid: 6818 components: - type: Transform - pos: 25.5,-43.5 + pos: 13.5,-23.5 parent: 2 -- proto: TelecomServerFilledSecurity - entities: - - uid: 14236 + - uid: 7864 components: - type: Transform - pos: 25.5,-44.5 + pos: 13.5,-78.5 parent: 2 -- proto: TelecomServerFilledService - entities: - - uid: 14235 + - uid: 8356 components: - type: Transform - pos: 24.5,-41.5 + pos: -52.5,8.5 parent: 2 -- proto: Thruster - entities: - - uid: 15142 + - uid: 8357 components: - type: Transform - pos: -33.5,34.5 + pos: 40.5,-14.5 parent: 2 - - uid: 15143 + - uid: 8358 components: - type: Transform - pos: -33.5,35.5 + pos: 37.5,8.5 parent: 2 - - uid: 15144 + - uid: 8359 components: - type: Transform - pos: -32.5,34.5 + pos: 0.5,13.5 parent: 2 - - uid: 15145 + - uid: 8360 components: - type: Transform - pos: -32.5,35.5 + pos: -5.5,13.5 parent: 2 - - uid: 21205 + - uid: 9268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 21128 - - uid: 21206 + pos: -12.5,-12.5 + parent: 2 + - uid: 9348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 21128 -- proto: TintedWindow - entities: - - uid: 6887 + pos: -2.5,-37.5 + parent: 2 + - uid: 17335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,0.5 + pos: -2.5,16.5 parent: 2 - - uid: 6888 + - uid: 17506 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,4.5 + pos: 5.5,55.5 parent: 2 -- proto: ToiletEmpty - entities: - - uid: 2320 + - uid: 17508 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-22.5 + pos: -5.5,55.5 parent: 2 - - uid: 5006 + - uid: 17509 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,40.5 + pos: -9.5,51.5 parent: 2 - - uid: 5286 + - uid: 17510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,40.5 + rot: 1.5707963267948966 rad + pos: 6.5,43.5 parent: 2 - - uid: 8225 + - uid: 17511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,23.5 + rot: 1.5707963267948966 rad + pos: -10.5,42.5 parent: 2 - - uid: 8235 + - uid: 20349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,25.5 + pos: -0.5,-38.5 parent: 2 -- proto: ToiletGoldenDirtyWater - entities: - - uid: 4593 + - uid: 21111 components: - type: Transform - pos: 45.5,-27.5 + rot: 3.141592653589793 rad + pos: 53.5,-37.5 parent: 2 -- proto: ToolboxArtisticFilled - entities: - - uid: 5117 + - uid: 22016 components: - type: Transform - pos: -34.515057,-20.462738 + pos: 27.5,-66.5 parent: 2 -- proto: ToolboxElectricalFilled - entities: - - uid: 4370 + - uid: 22018 components: - type: Transform - pos: 36.492764,-3.2268338 + pos: 11.5,-66.5 parent: 2 - - uid: 16124 + - uid: 22019 components: - type: Transform - pos: 1.5326661,-19.32547 + pos: 25.5,-78.5 parent: 2 - - uid: 22353 + - uid: 22029 components: - type: Transform - pos: 17.546753,-62.23559 + pos: 22.5,-63.5 parent: 2 -- proto: ToolboxEmergencyFilled - entities: - - uid: 2322 + - uid: 22434 components: - type: Transform - pos: 1.4969568,-19.241749 + pos: 14.5,-37.5 parent: 2 - - uid: 4369 + - uid: 22435 components: - type: Transform - pos: 36.51111,-2.9332993 + pos: 52.5,-30.5 parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 5914 + - uid: 22436 components: - type: Transform - pos: 54.499077,-35.417862 + pos: -37.5,-36.5 parent: 2 -- proto: ToolboxMechanical - entities: - - uid: 22354 + - uid: 22440 components: - type: Transform - pos: 17.546753,-62.492435 + pos: -22.5,33.5 parent: 2 -- proto: ToolboxMechanicalFilled - entities: - - uid: 2323 + - uid: 22441 components: - type: Transform - pos: 1.5282068,-19.507374 + pos: -61.5,-21.5 parent: 2 - - uid: 4371 + - uid: 22442 components: - type: Transform - pos: 36.51111,-3.538714 + pos: 63.5,-29.5 parent: 2 - - uid: 5747 + - uid: 22443 components: - type: Transform - pos: 28.502048,12.539796 + pos: 88.5,-21.5 parent: 2 -- proto: ToyFigurineClown - entities: - - uid: 2324 + - uid: 22444 components: - type: Transform - pos: -20.040586,-13.42651 + pos: 62.5,10.5 parent: 2 -- proto: ToyFigurineFootsoldier +- proto: SignEngine entities: - - uid: 21063 + - uid: 6819 components: - type: Transform - pos: -34.32448,-43.488884 + pos: 15.5,-23.5 parent: 2 -- proto: ToyFigurineNukieCommander +- proto: SignEngineering entities: - - uid: 5942 + - uid: 2083 components: - type: Transform - pos: 38.483326,-38.004993 + pos: -4.5,-28.5 parent: 2 -- proto: ToyFigurineNukieElite - entities: - - uid: 21061 + - uid: 15951 components: - type: Transform - pos: -34.63432,-43.333965 + pos: 15.5,0.5 parent: 2 -- proto: ToyFigurinePassenger +- proto: SignEscapePods entities: - - uid: 2325 + - uid: 15261 components: - type: Transform - pos: -20.274961,-14.23901 + pos: 66.5,4.5 parent: 2 -- proto: ToyFigurineSpaceDragon - entities: - - uid: 2326 + - uid: 15262 components: - type: Transform - pos: -19.618711,-14.223385 + pos: 66.5,0.5 parent: 2 -- proto: ToyNuke - entities: - - uid: 2327 + - uid: 15263 components: - type: Transform - pos: -19.44582,-13.477165 + pos: 66.5,-3.5 parent: 2 -- proto: ToyRubberDuck - entities: - - uid: 1971 + - uid: 16026 components: - type: Transform - pos: 45.5,-30.5 + pos: -21.5,-45.5 parent: 2 - - uid: 5256 + - uid: 17016 components: - type: Transform - pos: 0.7634096,47.159733 + pos: -19.5,-45.5 parent: 2 -- proto: ToySpawner +- proto: SignEVA entities: - - uid: 14225 + - uid: 7704 components: - type: Transform - pos: 55.5,-25.5 + rot: -1.5707963267948966 rad + pos: 21.5,-34.5 parent: 2 -- proto: TrainingBomb +- proto: SignExamroom entities: - - uid: 2135 + - uid: 6810 components: - type: Transform - pos: -5.5,32.5 + pos: 48.5,0.5 parent: 2 -- proto: TrashBag +- proto: SignFire entities: - - uid: 5273 + - uid: 8361 components: - type: Transform - pos: -4.987312,48.64716 + pos: 15.5,-14.5 parent: 2 -- proto: TrashBakedBananaPeel +- proto: SignFlammableMed entities: - - uid: 16479 + - uid: 8362 components: - type: Transform - pos: -59.62266,-35.23038 + pos: 32.5,-9.5 parent: 2 - - uid: 16480 + - uid: 8363 components: - type: Transform - pos: -59.42697,-35.426067 + pos: 32.5,-14.5 parent: 2 -- proto: TrashBananaPeel +- proto: SignGravity entities: - - uid: 2328 + - uid: 19808 components: - type: Transform - pos: -27.617392,-17.536655 + pos: 51.5,-37.5 parent: 2 -- proto: trayScanner +- proto: SignHead entities: - - uid: 21861 + - uid: 2084 components: - type: Transform - pos: 58.334652,-7.458692 + pos: 45.5,-22.5 parent: 2 -- proto: TwoWayLever +- proto: SignHydro1 entities: - - uid: 5553 + - uid: 2085 components: - type: Transform - pos: 30.5,23.5 + rot: 3.141592653589793 rad + pos: -27.5,15.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5554: - - Left: Forward - - Right: Reverse - - Middle: Off - 5510: - - Left: Forward - - Right: Reverse - - Middle: Off - 7406: - - Left: Forward - - Right: Reverse - - Middle: Off - 5478: - - Left: Forward - - Right: Reverse - - Middle: Off - 5475: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 7940 +- proto: SignInterrogation + entities: + - uid: 4822 components: - type: Transform - pos: -10.5,-39.5 + rot: 1.5707963267948966 rad + pos: -16.5,29.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7915: - - Left: Forward - - Right: Reverse - - Middle: Off - 2696: - - Left: Forward - - Right: Reverse - - Middle: Off - 9233: - - Left: Forward - - Right: Reverse - - Middle: Off - 20107: - - Left: Forward - - Right: Reverse - - Middle: Off - 7905: - - Left: Forward - - Right: Reverse - - Middle: Off - 16910: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 15603 +- proto: SignJanitor + entities: + - uid: 6821 components: - type: Transform - pos: 24.5,23.5 + pos: -14.5,-28.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8553: - - Left: Forward - - Right: Reverse - - Middle: Off - 17528: - - Left: Forward - - Right: Reverse - - Middle: Off - 17529: - - Left: Forward - - Right: Reverse - - Middle: Off - 17530: - - Left: Forward - - Right: Reverse - - Middle: Off - 17531: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 17334 +- proto: SignLawyer + entities: + - uid: 6823 components: - type: Transform - pos: 33.5,19.5 + pos: -46.5,-18.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5714: - - Left: Reverse - - Right: Forward - - Middle: Off - 8321: - - Left: Reverse - - Right: Forward - - Middle: Off - 5732: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 20106 +- proto: SignLibrary + entities: + - uid: 6822 components: - type: Transform - pos: -11.5,-39.5 + pos: -22.5,-16.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7916: - - Left: Forward - - Right: Reverse - - Middle: Off - 7913: - - Left: Forward - - Right: Reverse - - Middle: Off - 8665: - - Left: Forward - - Right: Reverse - - Middle: Off - 7912: - - Left: Forward - - Right: Reverse - - Middle: Off - 7911: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UnfinishedMachineFrame +- proto: SignMagneticsMed entities: - - uid: 15086 + - uid: 22501 components: - type: Transform - pos: -3.5,-38.5 + rot: 1.5707963267948966 rad + pos: 66.5,-33.5 parent: 2 - - uid: 16136 +- proto: SignMail + entities: + - uid: 6815 components: - type: Transform - pos: 60.5,26.5 + pos: 22.5,16.5 parent: 2 - - uid: 21199 +- proto: SignMaterials + entities: + - uid: 4375 components: - type: Transform - pos: 2.5,-8.5 - parent: 21128 - - uid: 21200 + pos: 31.5,1.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 6824 components: - type: Transform - pos: 8.5,-7.5 - parent: 21128 - - uid: 21201 + pos: 44.5,0.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 6665 components: - type: Transform - pos: 10.5,4.5 - parent: 21128 - - uid: 21202 + pos: 50.5,-8.5 + parent: 2 + - uid: 14213 components: - type: Transform - pos: 8.5,3.5 - parent: 21128 -- proto: UniformPrinter + pos: 47.5,-11.5 + parent: 2 +- proto: SignNanotrasen1 entities: - - uid: 2329 + - uid: 19752 components: - type: Transform - pos: 40.5,-25.5 + pos: 34.5,-21.5 parent: 2 -- proto: UniformShortsRedWithTop +- proto: SignNanotrasen2 entities: - - uid: 21032 + - uid: 19751 components: - type: Transform - pos: -30.471287,-24.425285 + pos: 35.5,-21.5 parent: 2 -- proto: Vaccinator +- proto: SignNanotrasen3 entities: - - uid: 6913 + - uid: 19750 components: - type: Transform - pos: 58.5,17.5 + pos: 36.5,-21.5 parent: 2 -- proto: VendingBarDrobe +- proto: SignNanotrasen4 entities: - - uid: 2331 + - uid: 19749 components: - type: Transform - pos: -17.5,7.5 + pos: 37.5,-21.5 parent: 2 -- proto: VendingMachineAtmosDrobe +- proto: SignNanotrasen5 entities: - - uid: 2332 + - uid: 19748 components: - type: Transform - pos: 14.5,-18.5 + pos: 38.5,-21.5 parent: 2 -- proto: VendingMachineBooze +- proto: SignNews entities: - - uid: 14972 + - uid: 3096 components: - type: Transform - pos: -37.5,21.5 + pos: -52.5,-27.5 parent: 2 - - uid: 20296 +- proto: SignNTMine + entities: + - uid: 7084 components: - type: Transform - pos: -15.5,-0.5 + pos: 32.5,17.5 parent: 2 -- proto: VendingMachineCargoDrobe +- proto: SignPrison entities: - - uid: 16906 + - uid: 5110 components: - type: Transform - pos: 23.5,22.5 + pos: -2.5,35.5 parent: 2 -- proto: VendingMachineCart +- proto: SignRadiationMed entities: - - uid: 2333 + - uid: 2091 components: - type: Transform - pos: 39.5,-25.5 + pos: -2.5,-15.5 parent: 2 -- proto: VendingMachineChapel +- proto: SignReception entities: - - uid: 2334 + - uid: 854 components: - type: Transform - pos: -30.5,-36.5 + pos: 24.5,15.5 parent: 2 -- proto: VendingMachineChefDrobe - entities: - - uid: 2335 + - uid: 21597 components: - type: Transform - pos: -18.5,14.5 + pos: 57.5,-15.5 parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 2336 + - uid: 21598 components: - type: Transform - pos: -18.5,13.5 + pos: 44.5,-22.5 parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 5996 + - uid: 21599 components: - type: Transform - pos: 41.5,12.5 + pos: 0.5,25.5 parent: 2 -- proto: VendingMachineChemicals +- proto: SignRedOne entities: - - uid: 711 + - uid: 21619 components: - type: Transform - pos: 41.5,13.5 + rot: 3.141592653589793 rad + pos: -35.497345,-11.735416 parent: 2 -- proto: VendingMachineCigs +- proto: SignRedTwo entities: - - uid: 2337 + - uid: 21620 components: - type: Transform - pos: -39.5,-24.5 + rot: 3.141592653589793 rad + pos: -27.505127,-11.735416 parent: 2 - - uid: 4170 +- proto: SignRestroom + entities: + - uid: 20295 components: - type: Transform - pos: 24.5,-33.5 + pos: 15.5,22.5 parent: 2 - - uid: 4960 +- proto: SignRND + entities: + - uid: 21928 components: - type: Transform - pos: 5.5,28.5 + pos: 61.5,-15.5 parent: 2 - - uid: 8214 +- proto: SignRobo + entities: + - uid: 7162 components: - type: Transform - pos: 41.5,-6.5 + pos: 60.5,-21.5 parent: 2 - - uid: 16144 +- proto: SignSalvage + entities: + - uid: 855 components: - type: Transform - pos: 13.5,-33.5 + pos: 32.5,19.5 parent: 2 - - uid: 20607 +- proto: SignScience + entities: + - uid: 7158 components: - type: Transform - pos: -21.5,-4.5 + pos: 62.5,-18.5 parent: 2 -- proto: VendingMachineClothing +- proto: SignSecureMed entities: - - uid: 1593 + - uid: 1969 components: - type: Transform - pos: 38.5,0.5 + pos: -29.5,-1.5 parent: 2 - - uid: 2340 + - uid: 6827 components: - type: Transform - pos: -38.5,-13.5 + pos: 21.5,-19.5 parent: 2 - - uid: 20610 + - uid: 15635 components: - type: Transform - pos: -21.5,-3.5 + pos: -41.5,22.5 parent: 2 -- proto: VendingMachineCoffee - entities: - - uid: 2341 + - uid: 15929 components: - type: Transform - pos: -17.5,-15.5 + pos: -45.5,22.5 parent: 2 - - uid: 2342 + - uid: 16658 components: - type: Transform - pos: -28.5,-24.5 + pos: -41.5,24.5 parent: 2 - - uid: 4167 + - uid: 16659 components: - type: Transform - pos: 23.5,-33.5 + pos: -45.5,24.5 parent: 2 -- proto: VendingMachineCondiments - entities: - - uid: 2343 + - uid: 17248 components: - type: Transform - pos: -23.5,14.5 + pos: 49.5,-56.5 parent: 2 -- proto: VendingMachineCuraDrobe - entities: - - uid: 1555 + - uid: 17249 components: - type: Transform - pos: -20.5,-10.5 + pos: 43.5,-57.5 parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 9177 + - uid: 17250 components: - type: Transform - pos: -26.5,25.5 + pos: 39.5,-52.5 parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 2344 + - uid: 17251 components: - type: Transform - pos: -18.5,12.5 + pos: 55.5,-48.5 parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 2345 + - uid: 17252 components: - type: Transform - pos: -9.5,-23.5 + pos: 61.5,-56.5 parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 2346 + - uid: 17253 components: - type: Transform - pos: -8.5,-23.5 + pos: 64.5,-48.5 parent: 2 -- proto: VendingMachineGames - entities: - - uid: 2347 + - uid: 21950 components: - type: Transform - pos: -17.5,-12.5 + pos: 53.5,-35.5 parent: 2 - - uid: 5167 + - uid: 22024 components: - type: Transform - pos: -6.5,45.5 + pos: 15.5,-67.5 parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 14630 + - uid: 22025 components: - type: Transform - pos: -38.5,11.5 + pos: 15.5,-74.5 parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 2349 + - uid: 22026 components: - type: Transform - pos: -18.5,-25.5 + pos: 23.5,-74.5 parent: 2 -- proto: VendingMachineLawDrobe - entities: - - uid: 4501 + - uid: 22027 components: - type: Transform - pos: -44.5,-13.5 + pos: 23.5,-67.5 parent: 2 -- proto: VendingMachineMedical +- proto: SignSecureMedRed entities: - - uid: 6690 - components: - - type: Transform - pos: 50.5,-4.5 - parent: 2 - - uid: 6691 + - uid: 6826 components: - type: Transform - pos: 48.5,5.5 + pos: 25.5,-5.5 parent: 2 -- proto: VendingMachineMediDrobe +- proto: SignSecurity entities: - - uid: 6692 + - uid: 5111 components: - type: Transform - pos: 54.5,4.5 + pos: 0.5,22.5 parent: 2 -- proto: VendingMachineNutri +- proto: SignServer entities: - - uid: 16120 + - uid: 21937 components: - type: Transform - pos: -29.5,17.5 + pos: 71.5,-24.5 parent: 2 -- proto: VendingMachineRoboDrobe +- proto: SignShipDock entities: - - uid: 7102 + - uid: 8354 components: - type: Transform - pos: 60.5,-26.5 + pos: -55.5,-0.5 parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 7161 + - uid: 8355 components: - type: Transform - pos: 60.5,-25.5 + pos: -55.5,3.5 parent: 2 -- proto: VendingMachineSalvage +- proto: SignSmoking entities: - - uid: 5705 + - uid: 6825 components: - type: Transform - pos: 33.5,22.5 + pos: 27.5,-14.5 parent: 2 -- proto: VendingMachineSciDrobe +- proto: SignSpace entities: - - uid: 4277 + - uid: 3616 components: - type: Transform - pos: 67.5,-10.5 + rot: -1.5707963267948966 rad + pos: -55.5,-2.5 parent: 2 -- proto: VendingMachineSec - entities: - - uid: 5051 + - uid: 3617 components: - type: Transform - pos: -4.5,34.5 + rot: -1.5707963267948966 rad + pos: -55.5,5.5 parent: 2 -- proto: VendingMachineSecDrobe - entities: - - uid: 5052 + - uid: 5726 components: - type: Transform - pos: -4.5,33.5 + rot: 3.141592653589793 rad + pos: 37.5,17.5 parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 15399 + - uid: 6828 components: - type: Transform - pos: -30.5,17.5 + pos: -5.5,-12.5 parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 5210 + - uid: 21938 components: - type: Transform - pos: -3.5,52.5 + pos: -10.5,40.5 parent: 2 - - uid: 16332 + - uid: 21948 components: - type: Transform - pos: 80.5,-7.5 + pos: 71.5,-33.5 parent: 2 -- proto: VendingMachineSustenance - entities: - - uid: 5168 + - uid: 21951 components: - type: Transform - pos: -6.5,46.5 + pos: -23.5,38.5 parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 2353 + - uid: 21953 components: - type: Transform - pos: 23.5,-20.5 + pos: -57.5,-20.5 parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 7615 + - uid: 21954 components: - type: Transform - pos: 19.5,-38.5 + pos: 68.5,20.5 parent: 2 - - uid: 8982 + - uid: 21991 components: - type: Transform - pos: 36.5,22.5 + rot: 3.141592653589793 rad + pos: -68.5,-31.5 parent: 2 - - uid: 15147 + - uid: 22185 components: - type: Transform - pos: -31.5,35.5 + pos: 20.5,-61.5 parent: 2 - - uid: 20608 +- proto: SignSurgery + entities: + - uid: 6886 components: - type: Transform - pos: -9.5,-25.5 + rot: 1.5707963267948966 rad + pos: 58.5,3.5 parent: 2 -- proto: VendingMachineTheater +- proto: SignTelecomms entities: - - uid: 2354 + - uid: 7586 components: - type: Transform - pos: -38.5,-12.5 + rot: -1.5707963267948966 rad + pos: 30.5,-35.5 parent: 2 - - uid: 2355 + - uid: 7591 components: - type: Transform - pos: -36.5,7.5 + rot: -1.5707963267948966 rad + pos: 27.5,-35.5 parent: 2 - - uid: 4356 +- proto: SignToolStorage + entities: + - uid: 4404 components: - type: Transform - pos: 39.5,-0.5 + pos: 40.5,0.5 parent: 2 -- proto: VendingMachineVendomat +- proto: SignVault entities: - - uid: 1352 + - uid: 21949 components: - type: Transform - pos: -3.5,-23.5 + pos: 53.5,-34.5 parent: 2 - - uid: 2890 +- proto: SignVirology + entities: + - uid: 6829 components: - type: Transform - pos: 37.5,0.5 + pos: 56.5,15.5 parent: 2 -- proto: VendingMachineViroDrobe +- proto: SignVox entities: - - uid: 6912 + - uid: 21377 components: - type: Transform - pos: 61.5,14.5 + pos: -34.5,-1.5 parent: 2 -- proto: VendingMachineWinter +- proto: SingularityGenerator entities: - - uid: 2358 + - uid: 2092 components: - type: Transform - pos: -38.5,-14.5 + pos: 4.5,-11.5 parent: 2 - - uid: 4357 + - uid: 3104 components: - type: Transform - pos: 39.5,-1.5 + pos: 0.5,0.5 parent: 2 -- proto: VendingMachineYouTool +- proto: Sink entities: - - uid: 2359 + - uid: 5948 components: - type: Transform - pos: -7.5,-23.5 + rot: -1.5707963267948966 rad + pos: 45.5,-29.5 parent: 2 - - uid: 4354 + - uid: 13488 components: - type: Transform - pos: 36.5,0.5 + pos: 36.5,-22.5 parent: 2 -- proto: WallmountTelevision +- proto: SinkWide entities: - - uid: 545 + - uid: 5258 components: - type: Transform - pos: 5.5,22.5 + rot: 3.141592653589793 rad + pos: 0.5,45.5 parent: 2 - - uid: 8920 + - uid: 6755 components: - type: Transform - pos: -19.5,22.5 + pos: -20.5,12.5 parent: 2 - - uid: 8921 + - uid: 8239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,5.5 + pos: 13.5,26.5 parent: 2 - - uid: 8922 + - uid: 8240 components: - type: Transform - pos: -34.5,-23.5 + pos: 15.5,26.5 parent: 2 - - uid: 21745 + - uid: 9024 components: - type: Transform - pos: -10.5,-32.5 + rot: 1.5707963267948966 rad + pos: 43.5,14.5 parent: 2 -- proto: WallPlastic - entities: - - uid: 2360 + - uid: 14218 components: - type: Transform - pos: -30.5,-16.5 + rot: -1.5707963267948966 rad + pos: -33.5,14.5 parent: 2 - - uid: 2361 + - uid: 16795 components: - type: Transform - pos: -27.5,-16.5 + rot: 3.141592653589793 rad + pos: -15.5,5.5 parent: 2 - - uid: 2362 +- proto: Skub + entities: + - uid: 17542 components: - type: Transform - pos: -29.5,-16.5 + pos: 85.054985,-7.3956304 parent: 2 - - uid: 2363 +- proto: SmartFridge + entities: + - uid: 5992 components: - type: Transform - pos: -30.5,-17.5 + pos: 44.5,10.5 parent: 2 - - uid: 2364 + - uid: 16772 components: - type: Transform - pos: -30.5,-18.5 + pos: -19.5,10.5 parent: 2 - - uid: 2365 +- proto: SMESBasic + entities: + - uid: 2095 components: + - type: MetaData + name: Singularity SMES - type: Transform - pos: -30.5,-19.5 + pos: 1.5,-17.5 parent: 2 - - uid: 2366 + - uid: 2096 components: + - type: MetaData + name: Main SMES - type: Transform - pos: -30.5,-20.5 + pos: -12.5,-17.5 parent: 2 -- proto: WallReinforced - entities: - - uid: 48 + - uid: 2097 components: + - type: MetaData + name: Main SMES - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-49.5 + pos: -12.5,-14.5 parent: 2 - - uid: 103 + - uid: 2098 components: + - type: MetaData + name: Main SMES - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-43.5 + pos: -12.5,-15.5 + parent: 2 + - uid: 2099 + components: + - type: MetaData + name: Main SMES + - type: Transform + pos: -12.5,-16.5 parent: 2 - - uid: 851 + - uid: 8097 components: + - type: MetaData + name: South Solars SMES - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-50.5 + pos: -1.5,-37.5 parent: 2 - - uid: 1084 + - uid: 8098 components: + - type: MetaData + name: South Solars SMES - type: Transform - pos: -38.5,-43.5 + pos: -0.5,-37.5 parent: 2 - - uid: 1447 + - uid: 10575 components: + - type: MetaData + name: Secure Command SMES - type: Transform - pos: -62.5,-21.5 + pos: 54.5,-40.5 parent: 2 - - uid: 2002 + - uid: 15809 components: + - type: MetaData + name: North Solars SMES - type: Transform - pos: 50.5,-42.5 + pos: -28.5,34.5 parent: 2 - - uid: 2012 + - uid: 15810 components: + - type: MetaData + name: North Solars SMES - type: Transform - pos: 37.5,-31.5 + pos: -28.5,35.5 parent: 2 - - uid: 2035 + - uid: 20944 components: + - type: MetaData + name: Rage Cage SMES - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,5.5 + pos: 88.5,-22.5 parent: 2 - - uid: 2037 + - uid: 22070 components: + - type: MetaData + name: AI Core SMES - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-0.5 + pos: 23.5,-63.5 parent: 2 - - uid: 2106 +- proto: SodaDispenser + entities: + - uid: 2102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-43.5 + pos: -13.5,2.5 parent: 2 - - uid: 2367 + - uid: 2103 components: - type: Transform - pos: -8.5,11.5 + rot: -1.5707963267948966 rad + pos: -13.5,0.5 parent: 2 - - uid: 2369 + - uid: 16595 components: - type: Transform - pos: -9.5,11.5 + rot: 1.5707963267948966 rad + pos: 5.5,40.5 parent: 2 - - uid: 2371 +- proto: SolarPanel + entities: + - uid: 3207 components: - type: Transform - pos: -6.5,11.5 + pos: 3.5,-52.5 parent: 2 - - uid: 2373 + - uid: 3279 components: - type: Transform - pos: -4.5,11.5 + pos: 2.5,-48.5 parent: 2 - - uid: 2375 + - uid: 3281 components: - type: Transform - pos: -3.5,11.5 + pos: 3.5,-48.5 parent: 2 - - uid: 2377 + - uid: 3295 components: - type: Transform - pos: -1.5,11.5 + pos: 2.5,-52.5 parent: 2 - - uid: 2378 + - uid: 3297 components: - type: Transform - pos: 0.5,11.5 + pos: 3.5,-50.5 parent: 2 - - uid: 2380 + - uid: 3323 components: - type: Transform - pos: 2.5,11.5 + pos: 2.5,-50.5 parent: 2 - - uid: 2381 + - uid: 3324 components: - type: Transform - pos: 3.5,11.5 + pos: -0.5,-50.5 parent: 2 - - uid: 2382 + - uid: 3669 components: - type: Transform - pos: 4.5,11.5 + pos: -0.5,-48.5 parent: 2 - - uid: 2383 + - uid: 4999 components: - type: Transform - pos: 7.5,11.5 + pos: -1.5,-48.5 parent: 2 - - uid: 2386 + - uid: 5000 components: - type: Transform - pos: 9.5,11.5 + pos: -1.5,-50.5 parent: 2 - - uid: 2388 + - uid: 15083 components: - type: Transform - pos: 10.5,11.5 + pos: -2.5,-48.5 parent: 2 - - uid: 2389 + - uid: 15474 components: - type: Transform - pos: 6.5,11.5 + pos: -2.5,-50.5 parent: 2 - - uid: 2391 + - uid: 15475 components: - type: Transform - pos: 11.5,10.5 + pos: -3.5,-48.5 parent: 2 - - uid: 2393 + - uid: 15476 components: - type: Transform - pos: 11.5,8.5 + pos: -3.5,-50.5 parent: 2 - - uid: 2395 + - uid: 15477 components: - type: Transform - pos: 11.5,6.5 + pos: -4.5,-50.5 parent: 2 - - uid: 2396 + - uid: 15478 components: - type: Transform - pos: 11.5,5.5 + pos: -5.5,-50.5 parent: 2 - - uid: 2398 + - uid: 15479 components: - type: Transform - pos: 11.5,3.5 + pos: -6.5,-50.5 parent: 2 - - uid: 2400 + - uid: 15480 components: - type: Transform - pos: 11.5,1.5 + pos: -6.5,-48.5 parent: 2 - - uid: 2401 + - uid: 15481 components: - type: Transform - pos: 11.5,0.5 + pos: -5.5,-48.5 parent: 2 - - uid: 2403 + - uid: 15482 components: - type: Transform - pos: 11.5,-1.5 + pos: -4.5,-48.5 parent: 2 - - uid: 2405 + - uid: 15483 components: - type: Transform - pos: 11.5,-3.5 + pos: -6.5,-46.5 parent: 2 - - uid: 2406 + - uid: 15484 components: - type: Transform - pos: 11.5,-4.5 + pos: -4.5,-46.5 parent: 2 - - uid: 2408 + - uid: 15485 components: - type: Transform - pos: 11.5,-6.5 + pos: -5.5,-46.5 parent: 2 - - uid: 2409 + - uid: 15486 components: - type: Transform - pos: 11.5,-7.5 + pos: -3.5,-46.5 parent: 2 - - uid: 2411 + - uid: 15487 components: - type: Transform - pos: 11.5,-9.5 + pos: -2.5,-46.5 parent: 2 - - uid: 2414 + - uid: 15488 components: - type: Transform - pos: 9.5,-10.5 + pos: -1.5,-46.5 parent: 2 - - uid: 2415 + - uid: 15489 components: - type: Transform - pos: 8.5,-10.5 + pos: -0.5,-46.5 parent: 2 - - uid: 2417 + - uid: 15490 components: - type: Transform - pos: 6.5,-10.5 + pos: -1.5,-44.5 parent: 2 - - uid: 2419 + - uid: 15491 components: - type: Transform - pos: 4.5,-10.5 + pos: -0.5,-44.5 parent: 2 - - uid: 2421 + - uid: 15492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 + pos: -3.5,-44.5 parent: 2 - - uid: 2422 + - uid: 15493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-11.5 + pos: -2.5,-44.5 parent: 2 - - uid: 2423 + - uid: 15494 components: - type: Transform - pos: -2.5,-10.5 + pos: -4.5,-44.5 parent: 2 - - uid: 2425 + - uid: 15495 components: - type: Transform - pos: -4.5,-10.5 + pos: -5.5,-44.5 parent: 2 - - uid: 2428 + - uid: 15496 components: - type: Transform - pos: -5.5,-12.5 + pos: -6.5,-44.5 parent: 2 - - uid: 2431 + - uid: 15497 components: - type: Transform - pos: -10.5,-10.5 + pos: -6.5,-52.5 parent: 2 - - uid: 2432 + - uid: 15498 components: - type: Transform - pos: -10.5,-8.5 + pos: -4.5,-52.5 parent: 2 - - uid: 2434 + - uid: 15499 components: - type: Transform - pos: -10.5,-5.5 + pos: -5.5,-52.5 parent: 2 - - uid: 2438 + - uid: 15500 components: - type: Transform - pos: -10.5,-3.5 + pos: -3.5,-52.5 parent: 2 - - uid: 2441 + - uid: 15501 components: - type: Transform - pos: -10.5,5.5 + pos: -1.5,-52.5 parent: 2 - - uid: 2444 + - uid: 15502 components: - type: Transform - pos: -10.5,8.5 + pos: -2.5,-52.5 parent: 2 - - uid: 2445 + - uid: 15503 components: - type: Transform - pos: -10.5,10.5 + pos: -0.5,-52.5 parent: 2 - - uid: 2446 + - uid: 15504 components: - type: Transform - pos: -10.5,6.5 + pos: -0.5,-54.5 parent: 2 - - uid: 2447 + - uid: 15505 components: - type: Transform - pos: 8.5,-12.5 + pos: -1.5,-54.5 parent: 2 - - uid: 2451 + - uid: 15506 components: - type: Transform - pos: -2.5,-16.5 + pos: -2.5,-54.5 parent: 2 - - uid: 2453 + - uid: 15507 components: - type: Transform - pos: 3.5,-16.5 + pos: -3.5,-54.5 parent: 2 - - uid: 2454 + - uid: 15508 components: - type: Transform - pos: -2.5,-18.5 + pos: -5.5,-54.5 parent: 2 - - uid: 2455 + - uid: 15509 components: - type: Transform - pos: -1.5,-18.5 + pos: -6.5,-54.5 parent: 2 - - uid: 2456 + - uid: 15510 components: - type: Transform - pos: 3.5,-17.5 + pos: -4.5,-54.5 parent: 2 - - uid: 2460 + - uid: 15533 components: - type: Transform - pos: 7.5,-12.5 + pos: 2.5,-46.5 parent: 2 - - uid: 2462 + - uid: 15534 components: - type: Transform - pos: 7.5,-14.5 + pos: 2.5,-44.5 parent: 2 - - uid: 2464 + - uid: 15570 components: - type: Transform - pos: 7.5,-16.5 + pos: 2.5,-54.5 parent: 2 - - uid: 2465 + - uid: 15571 components: - type: Transform - pos: 6.5,-16.5 + pos: 3.5,-54.5 parent: 2 - - uid: 2469 + - uid: 15693 components: - type: Transform - pos: 10.5,-12.5 + pos: -23.5,42.5 parent: 2 - - uid: 2470 + - uid: 15703 components: - type: Transform - pos: 11.5,-12.5 + pos: -28.5,48.5 parent: 2 - - uid: 2471 + - uid: 15704 components: - type: Transform - pos: 12.5,-12.5 + pos: -27.5,48.5 parent: 2 - - uid: 2475 + - uid: 15705 components: - type: Transform - pos: 13.5,-9.5 + pos: -25.5,48.5 parent: 2 - - uid: 2477 + - uid: 15706 components: - type: Transform - pos: 13.5,-7.5 + pos: -26.5,48.5 parent: 2 - - uid: 2478 + - uid: 15707 components: - type: Transform - pos: 13.5,-6.5 + pos: -24.5,48.5 parent: 2 - - uid: 2480 + - uid: 15708 components: - type: Transform - pos: 13.5,-4.5 + pos: -23.5,48.5 parent: 2 - - uid: 2482 + - uid: 15709 components: - type: Transform - pos: 13.5,-1.5 + pos: -20.5,48.5 parent: 2 - - uid: 2484 + - uid: 15710 components: - type: Transform - pos: 13.5,1.5 + pos: -19.5,48.5 parent: 2 - - uid: 2486 + - uid: 15711 components: - type: Transform - pos: 13.5,0.5 + pos: -19.5,46.5 parent: 2 - - uid: 2487 + - uid: 15712 components: - type: Transform - pos: 13.5,-2.5 + pos: -20.5,46.5 parent: 2 - - uid: 2488 + - uid: 15713 components: - type: Transform - pos: 13.5,3.5 + pos: -20.5,44.5 parent: 2 - - uid: 2490 + - uid: 15714 components: - type: Transform - pos: 13.5,6.5 + pos: -19.5,44.5 parent: 2 - - uid: 2491 + - uid: 15715 components: - type: Transform - pos: 13.5,4.5 + pos: -19.5,42.5 parent: 2 - - uid: 2493 + - uid: 15716 components: - type: Transform - pos: 13.5,9.5 + pos: -20.5,42.5 parent: 2 - - uid: 2494 + - uid: 15717 components: - type: Transform - pos: 13.5,10.5 + pos: -24.5,42.5 parent: 2 - - uid: 2497 + - uid: 15718 components: - type: Transform - pos: 13.5,8.5 + pos: -25.5,42.5 parent: 2 - - uid: 2498 + - uid: 15719 components: - type: Transform - pos: 13.5,12.5 + pos: -26.5,42.5 parent: 2 - - uid: 2499 + - uid: 15720 components: - type: Transform - pos: 12.5,13.5 + pos: -28.5,42.5 parent: 2 - - uid: 2501 + - uid: 15721 components: - type: Transform - pos: 10.5,13.5 + pos: -28.5,44.5 parent: 2 - - uid: 2502 + - uid: 15722 components: - type: Transform - pos: 9.5,13.5 + pos: -27.5,44.5 parent: 2 - - uid: 2504 + - uid: 15723 components: - type: Transform - pos: 7.5,13.5 + pos: -26.5,44.5 parent: 2 - - uid: 2506 + - uid: 15724 components: - type: Transform - pos: 5.5,13.5 + pos: -25.5,44.5 parent: 2 - - uid: 2507 + - uid: 15725 components: - type: Transform - pos: 4.5,13.5 + pos: -24.5,44.5 parent: 2 - - uid: 2509 + - uid: 15726 components: - type: Transform - pos: 2.5,13.5 + pos: -23.5,44.5 parent: 2 - - uid: 2511 + - uid: 15727 components: - type: Transform - pos: -0.5,13.5 + pos: -27.5,42.5 parent: 2 - - uid: 2513 + - uid: 15729 components: - type: Transform - pos: -3.5,13.5 + pos: -28.5,50.5 parent: 2 - - uid: 2514 + - uid: 15730 components: - type: Transform - pos: 0.5,13.5 + pos: -27.5,50.5 parent: 2 - - uid: 2515 + - uid: 15731 components: - type: Transform - pos: -2.5,13.5 + pos: -26.5,50.5 parent: 2 - - uid: 2517 + - uid: 15732 components: - type: Transform - pos: -5.5,13.5 + pos: -25.5,50.5 parent: 2 - - uid: 2519 + - uid: 15733 components: - type: Transform - pos: -7.5,13.5 + pos: -24.5,50.5 parent: 2 - - uid: 2520 + - uid: 15734 components: - type: Transform - pos: -8.5,13.5 + pos: -23.5,50.5 parent: 2 - - uid: 2522 + - uid: 15735 components: - type: Transform - pos: -10.5,13.5 + pos: -23.5,52.5 parent: 2 - - uid: 2523 + - uid: 15736 components: - type: Transform - pos: -11.5,13.5 + pos: -24.5,52.5 parent: 2 - - uid: 2525 + - uid: 15737 components: - type: Transform - pos: -12.5,12.5 + pos: -25.5,52.5 parent: 2 - - uid: 2526 + - uid: 15738 components: - type: Transform - pos: -12.5,11.5 + pos: -27.5,52.5 parent: 2 - - uid: 2528 + - uid: 15739 components: - type: Transform - pos: -12.5,9.5 + pos: -28.5,52.5 parent: 2 - - uid: 2530 + - uid: 15796 components: - type: Transform - pos: -12.5,7.5 + pos: -23.5,46.5 parent: 2 - - uid: 2532 + - uid: 15797 components: - type: Transform - pos: -12.5,5.5 + pos: -24.5,46.5 parent: 2 - - uid: 2536 + - uid: 15798 components: - type: Transform - pos: -11.5,3.5 + pos: -26.5,46.5 parent: 2 - - uid: 2537 + - uid: 15799 components: - type: Transform - pos: -12.5,-2.5 + pos: -25.5,46.5 parent: 2 - - uid: 2539 + - uid: 15800 components: - type: Transform - pos: -12.5,-4.5 + pos: -27.5,46.5 parent: 2 - - uid: 2541 + - uid: 15801 components: - type: Transform - pos: -12.5,-6.5 + pos: -28.5,46.5 parent: 2 - - uid: 2543 + - uid: 15802 components: - type: Transform - pos: -12.5,-8.5 + pos: -26.5,52.5 parent: 2 - - uid: 2544 + - uid: 15803 components: - type: Transform - pos: -12.5,-10.5 + pos: -20.5,52.5 parent: 2 - - uid: 2547 + - uid: 15804 components: - type: Transform - pos: -11.5,-12.5 + pos: -19.5,52.5 parent: 2 - - uid: 2550 + - uid: 15806 components: - type: Transform - pos: -9.5,-12.5 + pos: -19.5,50.5 parent: 2 - - uid: 2552 + - uid: 15807 components: - type: Transform - pos: -7.5,-10.5 + pos: -20.5,50.5 parent: 2 - - uid: 2558 +- proto: SolarTracker + entities: + - uid: 15468 components: - type: Transform - pos: -13.5,-12.5 + pos: 1.5,-58.5 parent: 2 - - uid: 2561 + - uid: 15702 components: - type: Transform - pos: -14.5,-14.5 + pos: -22.5,55.5 parent: 2 - - uid: 2563 +- proto: SolidSecretDoor + entities: + - uid: 2339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 + pos: -35.5,-42.5 parent: 2 - - uid: 2564 +- proto: SpaceCash100 + entities: + - uid: 2104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-18.5 + pos: -19.177664,-3.0928874 parent: 2 - - uid: 2566 + - uid: 2105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 + pos: -19.19601,-3.3864217 parent: 2 - - uid: 2567 + - uid: 16651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 2 - - uid: 2570 + parent: 16650 + - type: Stack + count: 500 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceHeater + entities: + - uid: 21477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-19.5 + pos: 21.5,-17.5 parent: 2 - - uid: 2573 + - uid: 21478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-20.5 + pos: 21.5,-16.5 parent: 2 - - uid: 2574 +- proto: SpacemenFigureSpawner + entities: + - uid: 15870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-20.5 + pos: -17.5,-8.5 parent: 2 - - uid: 2576 +- proto: SpawnMechRipley + entities: + - uid: 22481 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-20.5 + pos: 27.5,8.5 parent: 2 - - uid: 2577 +- proto: SpawnMobAlexander + entities: + - uid: 21078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-20.5 + pos: -21.5,13.5 parent: 2 - - uid: 2578 +- proto: SpawnMobButterfly + entities: + - uid: 13099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 + pos: -47.5,-6.5 parent: 2 - - uid: 2579 + - uid: 13740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-24.5 + pos: -49.5,-6.5 parent: 2 - - uid: 2580 + - uid: 13742 components: - type: Transform - pos: -10.5,-22.5 + pos: -45.5,-8.5 parent: 2 - - uid: 2584 + - uid: 14411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 + pos: -48.5,-8.5 parent: 2 - - uid: 2585 + - uid: 16201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 + pos: -46.5,-7.5 parent: 2 - - uid: 2588 +- proto: SpawnMobCatException + entities: + - uid: 6742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 + pos: 59.5,10.5 parent: 2 - - uid: 2592 +- proto: SpawnMobCatSpace + entities: + - uid: 17293 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-27.5 + pos: 67.5,-53.5 parent: 2 - - uid: 2594 +- proto: SpawnMobCorgi + entities: + - uid: 2107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-27.5 + pos: 44.5,-25.5 parent: 2 - - uid: 2596 +- proto: SpawnMobCrabAtmos + entities: + - uid: 14868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-25.5 + pos: 19.5,-11.5 parent: 2 - - uid: 2598 +- proto: SpawnMobFoxRenault + entities: + - uid: 4579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-27.5 + pos: 41.5,-30.5 parent: 2 - - uid: 2600 +- proto: SpawnMobMcGriff + entities: + - uid: 4990 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-28.5 + pos: 1.5,23.5 parent: 2 - - uid: 2602 +- proto: SpawnMobMedibot + entities: + - uid: 6049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-24.5 + pos: 42.5,8.5 parent: 2 - - uid: 2605 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 12921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-25.5 + rot: 1.5707963267948966 rad + pos: -16.5,6.5 parent: 2 - - uid: 2607 +- proto: SpawnMobPossumMorty + entities: + - uid: 12918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-27.5 + pos: 52.5,-10.5 parent: 2 - - uid: 2608 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 5733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-28.5 + pos: 37.5,15.5 parent: 2 - - uid: 2610 +- proto: SpawnMobShiva + entities: + - uid: 5701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-27.5 + pos: -12.5,34.5 parent: 2 - - uid: 2613 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 2109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-28.5 + pos: -19.5,-18.5 parent: 2 - - uid: 2616 +- proto: SpawnMobSmile + entities: + - uid: 7422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-19.5 + pos: 68.5,-22.5 parent: 2 - - uid: 2619 +- proto: SpawnPointAtmos + entities: + - uid: 2110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-23.5 + pos: 10.5,-17.5 parent: 2 - - uid: 2620 + - uid: 2111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 + pos: 11.5,-16.5 parent: 2 - - uid: 2621 + - uid: 2112 components: - type: Transform - pos: 10.5,-25.5 + pos: 12.5,-17.5 parent: 2 - - uid: 2623 +- proto: SpawnPointBartender + entities: + - uid: 2113 components: - type: Transform - pos: 10.5,-27.5 + pos: -14.5,7.5 parent: 2 - - uid: 2626 + - uid: 2114 components: - type: Transform - pos: 11.5,-19.5 + pos: -14.5,6.5 parent: 2 - - uid: 2628 +- proto: SpawnPointBorg + entities: + - uid: 13722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-23.5 + pos: 63.5,-23.5 parent: 2 - - uid: 2629 + - uid: 13723 components: - type: Transform - pos: 9.5,-17.5 + pos: 64.5,-23.5 parent: 2 - - uid: 2633 + - uid: 13724 components: - type: Transform - pos: 9.5,-15.5 + pos: 65.5,-23.5 parent: 2 - - uid: 2634 + - uid: 13725 components: - type: Transform - pos: 16.5,-14.5 + pos: 65.5,-24.5 parent: 2 - - uid: 2636 + - uid: 13726 components: - type: Transform - pos: 5.5,-25.5 + pos: 64.5,-24.5 parent: 2 - - uid: 2637 + - uid: 13727 components: - type: Transform - pos: 8.5,-25.5 + pos: 63.5,-24.5 parent: 2 - - uid: 2641 +- proto: SpawnPointBotanist + entities: + - uid: 14252 components: - type: Transform - pos: 14.5,-19.5 + pos: -37.5,12.5 parent: 2 - - uid: 2643 + - uid: 14255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 + pos: -37.5,13.5 parent: 2 - - uid: 2644 +- proto: SpawnPointBoxer + entities: + - uid: 2117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-29.5 + pos: -32.5,-33.5 parent: 2 - - uid: 2646 + - uid: 2118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-26.5 + pos: -33.5,-33.5 parent: 2 - - uid: 2648 + - uid: 3911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-28.5 + pos: -35.5,-27.5 parent: 2 - - uid: 2650 + - uid: 3912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 + pos: -32.5,-30.5 parent: 2 - - uid: 2653 +- proto: SpawnPointCaptain + entities: + - uid: 4578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-23.5 + pos: 41.5,-28.5 parent: 2 - - uid: 2654 +- proto: SpawnPointCargoTechnician + entities: + - uid: 5736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-24.5 + pos: 28.5,18.5 parent: 2 - - uid: 2657 + - uid: 5737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 + pos: 26.5,18.5 parent: 2 - - uid: 2659 + - uid: 5738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 + pos: 25.5,18.5 parent: 2 - - uid: 2660 + - uid: 5740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-22.5 + pos: 29.5,18.5 parent: 2 - - uid: 2664 +- proto: SpawnPointChaplain + entities: + - uid: 15872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-19.5 + pos: -31.5,-35.5 parent: 2 - - uid: 2665 +- proto: SpawnPointChef + entities: + - uid: 16118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-10.5 + pos: -20.5,12.5 parent: 2 - - uid: 2666 +- proto: SpawnPointChemist + entities: + - uid: 6047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-14.5 + pos: 42.5,12.5 parent: 2 - - uid: 2669 + - uid: 6048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-14.5 + pos: 46.5,12.5 parent: 2 - - uid: 2671 +- proto: SpawnPointChiefEngineer + entities: + - uid: 2120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-14.5 + pos: 3.5,-26.5 parent: 2 - - uid: 2674 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 6723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-12.5 + pos: 55.5,11.5 parent: 2 - - uid: 2675 +- proto: SpawnPointClown + entities: + - uid: 3910 components: - type: Transform - pos: 15.5,-7.5 + pos: -28.5,-19.5 parent: 2 - - uid: 2677 +- proto: SpawnPointDetective + entities: + - uid: 10272 components: - type: Transform - pos: 15.5,-5.5 + pos: -29.5,26.5 parent: 2 - - uid: 2680 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 2121 components: - type: Transform - pos: 15.5,-2.5 + pos: 36.5,-25.5 parent: 2 - - uid: 2726 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 5674 components: - type: Transform - pos: 17.5,-19.5 + pos: -17.5,32.5 parent: 2 - - uid: 2730 +- proto: SpawnPointJanitor + entities: + - uid: 2122 components: - type: Transform - pos: 19.5,-19.5 + pos: -17.5,-26.5 parent: 2 - - uid: 2731 + - uid: 2123 components: - type: Transform - pos: 21.5,-19.5 + pos: -16.5,-26.5 parent: 2 - - uid: 2732 + - uid: 22467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 + pos: -18.5,-26.5 parent: 2 - - uid: 2736 +- proto: SpawnPointLatejoin + entities: + - uid: 5022 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,16.5 + pos: -47.5,-46.5 parent: 2 - - uid: 2738 +- proto: SpawnPointLawyer + entities: + - uid: 5968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,15.5 + pos: -48.5,-14.5 parent: 2 - - uid: 2740 +- proto: SpawnPointLibrarian + entities: + - uid: 15871 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,16.5 + pos: -18.5,-9.5 parent: 2 - - uid: 2741 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 6720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,16.5 + pos: 55.5,3.5 parent: 2 - - uid: 2759 + - uid: 6721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-1.5 + pos: 56.5,3.5 parent: 2 - - uid: 2761 + - uid: 6722 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-1.5 + pos: 57.5,3.5 parent: 2 - - uid: 2766 +- proto: SpawnPointMedicalIntern + entities: + - uid: 6724 components: - type: Transform - pos: 24.5,-19.5 + pos: 56.5,2.5 parent: 2 - - uid: 2767 + - uid: 6725 components: - type: Transform - pos: 25.5,-19.5 + pos: 57.5,2.5 parent: 2 - - uid: 2770 +- proto: SpawnPointMime + entities: + - uid: 3909 components: - type: Transform - pos: 26.5,-17.5 + pos: -33.5,-19.5 parent: 2 - - uid: 2772 + - uid: 3913 components: - type: Transform - pos: 26.5,-14.5 + pos: -33.5,6.5 parent: 2 - - uid: 2774 +- proto: SpawnPointMusician + entities: + - uid: 2124 components: - type: Transform - pos: 24.5,-23.5 + pos: -24.5,1.5 parent: 2 - - uid: 2777 + - uid: 3908 components: - type: Transform - pos: 24.5,-20.5 + pos: -38.5,-19.5 parent: 2 - - uid: 2779 +- proto: SpawnPointObserver + entities: + - uid: 21965 components: - type: Transform - pos: 28.5,-9.5 + pos: -33.5,0.5 parent: 2 - - uid: 2780 +- proto: SpawnPointParamedic + entities: + - uid: 6718 components: - type: Transform - pos: 28.5,-7.5 + pos: 55.5,7.5 parent: 2 - - uid: 2781 + - uid: 6719 components: - type: Transform - pos: 30.5,-9.5 + pos: 56.5,7.5 parent: 2 - - uid: 2784 +- proto: SpawnPointPassenger + entities: + - uid: 15639 components: - type: Transform - pos: 29.5,-14.5 + pos: -36.5,-9.5 parent: 2 - - uid: 2786 + - uid: 15641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 + pos: -28.5,-9.5 parent: 2 - - uid: 2788 + - uid: 15642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 + pos: -35.5,-13.5 parent: 2 - - uid: 2790 + - uid: 15643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 + pos: -35.5,-14.5 parent: 2 - - uid: 2791 + - uid: 15644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 + pos: -32.5,-13.5 parent: 2 - - uid: 2792 + - uid: 15645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 + pos: -32.5,-14.5 parent: 2 - - uid: 2793 + - uid: 15646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 + pos: -29.5,-13.5 parent: 2 - - uid: 2795 + - uid: 15647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 + pos: -29.5,-14.5 parent: 2 - - uid: 2798 +- proto: SpawnPointQuartermaster + entities: + - uid: 5693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-1.5 + pos: 37.5,13.5 parent: 2 - - uid: 2800 +- proto: SpawnPointReporter + entities: + - uid: 5966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 + pos: -55.5,-28.5 parent: 2 - - uid: 2802 + - uid: 5967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 + pos: -54.5,-28.5 parent: 2 - - uid: 2804 +- proto: SpawnPointResearchAssistant + entities: + - uid: 23342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-1.5 + pos: 69.5,-12.5 parent: 2 - - uid: 2807 +- proto: SpawnPointResearchDirector + entities: + - uid: 7450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 + pos: 71.5,-22.5 parent: 2 - - uid: 2812 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 5704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 + pos: 35.5,19.5 parent: 2 - - uid: 2814 + - uid: 5715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-5.5 + pos: 35.5,20.5 parent: 2 - - uid: 2816 + - uid: 5735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-1.5 + pos: 35.5,21.5 parent: 2 - - uid: 2819 +- proto: SpawnPointScientist + entities: + - uid: 7447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 + pos: 69.5,-13.5 parent: 2 - - uid: 2822 + - uid: 7449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 + pos: 68.5,-13.5 parent: 2 - - uid: 2823 + - uid: 20553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-17.5 + pos: 70.5,-13.5 parent: 2 - - uid: 2838 +- proto: SpawnPointSecurityCadet + entities: + - uid: 5675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-5.5 + pos: -6.5,33.5 parent: 2 - - uid: 2839 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 5676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 + pos: -9.5,33.5 parent: 2 - - uid: 2842 + - uid: 5677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 + pos: -8.5,33.5 parent: 2 - - uid: 2844 + - uid: 5678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-7.5 + pos: -7.5,33.5 parent: 2 - - uid: 2846 +- proto: SpawnPointServiceWorker + entities: + - uid: 2126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 + pos: -32.5,0.5 parent: 2 - - uid: 2847 + - uid: 2127 components: - type: Transform - pos: 22.5,-32.5 + pos: -34.5,0.5 parent: 2 - - uid: 2849 + - uid: 2128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 + pos: -36.5,0.5 parent: 2 - - uid: 2851 + - uid: 2129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-17.5 + pos: -30.5,0.5 parent: 2 - - uid: 2852 +- proto: SpawnPointStationEngineer + entities: + - uid: 2130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-14.5 + pos: -9.5,-18.5 parent: 2 - - uid: 2853 + - uid: 2131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-14.5 + pos: -8.5,-18.5 parent: 2 - - uid: 2854 + - uid: 2132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-13.5 + pos: -7.5,-18.5 parent: 2 - - uid: 2856 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 2133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-11.5 + pos: 1.5,-22.5 parent: 2 - - uid: 2859 + - uid: 2134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 + pos: 1.5,-23.5 parent: 2 - - uid: 2862 +- proto: SpawnPointWarden + entities: + - uid: 5673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-17.5 + pos: 2.5,24.5 parent: 2 - - uid: 2864 +- proto: Spear + entities: + - uid: 20997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-16.5 + pos: 91.5888,-20.49667 parent: 2 - - uid: 2866 + - uid: 20998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 + pos: 91.44817,-20.40292 parent: 2 - - uid: 2932 +- proto: SpiderWeb + entities: + - uid: 2136 components: - type: Transform - pos: 37.5,-17.5 + rot: 3.141592653589793 rad + pos: -15.5,14.5 parent: 2 - - uid: 2933 +- proto: SprayBottle + entities: + - uid: 8194 components: - type: Transform - pos: 38.5,-17.5 + pos: -13.281918,-24.159872 parent: 2 - - uid: 2935 + - uid: 8430 components: - type: Transform - pos: 40.5,-17.5 + pos: -13.465376,-24.172104 parent: 2 - - uid: 2936 +- proto: SprayBottleWater + entities: + - uid: 6926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-22.5 + pos: 58.459965,18.571264 parent: 2 - - uid: 2938 +- proto: StairDark + entities: + - uid: 3105 components: - type: Transform - pos: 37.5,-21.5 + pos: 26.5,4.5 parent: 2 - - uid: 2940 + - uid: 3106 components: - type: Transform - pos: 35.5,-21.5 + pos: 25.5,4.5 parent: 2 - - uid: 2942 + - uid: 3107 components: - type: Transform - pos: 30.5,-21.5 + pos: 24.5,4.5 parent: 2 - - uid: 2946 +- proto: Stairs + entities: + - uid: 2682 components: - type: Transform - pos: 30.5,-25.5 + pos: -46.5,-45.5 parent: 2 - - uid: 2948 + - uid: 2684 components: - type: Transform - pos: 30.5,-27.5 + pos: -47.5,-45.5 parent: 2 - - uid: 2950 + - uid: 2687 components: - type: Transform - pos: 22.5,-28.5 + pos: -48.5,-45.5 parent: 2 - - uid: 2953 + - uid: 3741 components: - type: Transform - pos: 22.5,-31.5 + rot: 1.5707963267948966 rad + pos: -40.5,2.5 parent: 2 - - uid: 2955 + - uid: 3742 components: - type: Transform - pos: 22.5,-34.5 + rot: 1.5707963267948966 rad + pos: -40.5,1.5 parent: 2 - - uid: 2956 + - uid: 3743 components: - type: Transform - pos: 18.5,-35.5 + rot: 1.5707963267948966 rad + pos: -40.5,0.5 parent: 2 - - uid: 2975 + - uid: 3829 components: - type: Transform - pos: 3.5,-32.5 + rot: -1.5707963267948966 rad + pos: -42.5,-28.5 parent: 2 - - uid: 2976 + - uid: 3830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-38.5 + rot: -1.5707963267948966 rad + pos: -42.5,-27.5 parent: 2 - - uid: 2979 + - uid: 5932 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-38.5 + pos: 41.5,-17.5 parent: 2 - - uid: 2980 + - uid: 5933 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-33.5 + pos: 42.5,-17.5 parent: 2 - - uid: 2992 + - uid: 5934 components: - type: Transform - pos: 31.5,-22.5 + rot: 3.141592653589793 rad + pos: 43.5,-17.5 parent: 2 - - uid: 2994 + - uid: 5935 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-23.5 + pos: 4.5,21.5 parent: 2 - - uid: 2995 + - uid: 5936 components: - type: Transform - pos: 34.5,-26.5 + rot: 1.5707963267948966 rad + pos: 4.5,20.5 parent: 2 - - uid: 3000 + - uid: 5937 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-23.5 + pos: 4.5,19.5 parent: 2 - - uid: 3001 + - uid: 5938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-23.5 + rot: -1.5707963267948966 rad + pos: -9.5,21.5 parent: 2 - - uid: 3003 + - uid: 5939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-27.5 + rot: -1.5707963267948966 rad + pos: -9.5,20.5 parent: 2 - - uid: 3004 + - uid: 5940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-27.5 + rot: -1.5707963267948966 rad + pos: -9.5,19.5 parent: 2 - - uid: 3006 + - uid: 5941 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-27.5 + pos: 30.5,3.5 parent: 2 - - uid: 3009 + - uid: 5943 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-23.5 + pos: 30.5,4.5 parent: 2 - - uid: 3016 + - uid: 5944 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-26.5 + pos: 30.5,2.5 parent: 2 - - uid: 3018 + - uid: 7119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-26.5 + rot: -1.5707963267948966 rad + pos: 59.5,-22.5 parent: 2 - - uid: 3020 + - uid: 7120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-26.5 + rot: -1.5707963267948966 rad + pos: 59.5,-23.5 parent: 2 - - uid: 3022 + - uid: 8464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-26.5 + rot: 3.141592653589793 rad + pos: 33.5,-21.5 parent: 2 - - uid: 3028 + - uid: 21884 components: - type: Transform - pos: 50.5,-21.5 + rot: 3.141592653589793 rad + pos: 32.5,-21.5 parent: 2 - - uid: 3033 + - uid: 21885 components: - type: Transform - pos: 50.5,-25.5 + rot: 3.141592653589793 rad + pos: 47.5,-21.5 parent: 2 - - uid: 3047 + - uid: 21886 components: - type: Transform - pos: 4.5,-39.5 + rot: 3.141592653589793 rad + pos: 48.5,-21.5 parent: 2 - - uid: 3055 +- proto: StairStage + entities: + - uid: 2150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-13.5 + rot: 1.5707963267948966 rad + pos: -29.5,4.5 parent: 2 - - uid: 3059 + - uid: 2151 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-13.5 + pos: -37.5,4.5 parent: 2 - - uid: 3103 +- proto: StairWood + entities: + - uid: 8154 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 2 - - uid: 3114 - components: - - type: Transform - pos: -22.5,-32.5 + pos: -20.5,-20.5 parent: 2 - - uid: 3155 + - uid: 8963 components: - type: Transform - pos: -19.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 parent: 2 - - uid: 3162 + - uid: 13333 components: - type: Transform - pos: -12.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,0.5 parent: 2 - - uid: 3176 + - uid: 14396 components: - type: Transform - pos: 5.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,3.5 parent: 2 - - uid: 3179 + - uid: 14397 components: - type: Transform - pos: 2.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,2.5 parent: 2 - - uid: 3181 + - uid: 15046 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,22.5 + pos: -20.5,1.5 parent: 2 - - uid: 3185 + - uid: 21558 components: - type: Transform - pos: -4.5,24.5 + rot: 3.141592653589793 rad + pos: -18.5,-20.5 parent: 2 - - uid: 3189 +- proto: StasisBed + entities: + - uid: 6583 components: - type: Transform - pos: -8.5,22.5 + pos: 55.5,-0.5 parent: 2 - - uid: 3249 +- proto: StationAiUploadComputer + entities: + - uid: 20815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,-53.5 parent: 2 - - uid: 3250 +- proto: StationAnchor + entities: + - uid: 14912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,16.5 + pos: 62.5,-35.5 parent: 2 - - uid: 3251 +- proto: StationBeaconPart + entities: + - uid: 21365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,16.5 + pos: 30.702707,-1.6835423 parent: 2 - - uid: 3287 + - uid: 21366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,19.5 + pos: 30.441788,-1.871078 parent: 2 - - uid: 3309 + - uid: 21367 components: - type: Transform - pos: -55.5,-5.5 + pos: 30.572248,-1.7732333 parent: 2 - - uid: 3310 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 21076 components: - type: Transform - pos: 29.5,-0.5 + pos: 14.458807,-65.50417 parent: 2 - - uid: 3453 +- proto: StationMap + entities: + - uid: 7556 components: - type: Transform - pos: -36.5,-37.5 + pos: 48.5,-17.5 parent: 2 - - uid: 3564 + - uid: 13592 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,7.5 + pos: -26.5,-23.5 parent: 2 - - uid: 3572 + - uid: 13593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,8.5 + pos: -17.5,18.5 parent: 2 - - uid: 3575 + - uid: 13594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-4.5 + pos: 41.5,6.5 parent: 2 - - uid: 3591 + - uid: 13595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,3.5 + rot: 3.141592653589793 rad + pos: 8.5,-34.5 parent: 2 - - uid: 3600 + - uid: 20200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-48.5 + parent: 2 + - uid: 20438 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-2.5 + pos: 3.5,-19.5 parent: 2 - - uid: 3615 + - uid: 20439 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,8.5 + pos: 50.5,-28.5 parent: 2 - - uid: 3656 + - uid: 20440 components: - type: Transform - pos: -55.5,9.5 + rot: -1.5707963267948966 rad + pos: 66.5,-14.5 parent: 2 - - uid: 3658 + - uid: 20441 components: - type: Transform - pos: -55.5,11.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - uid: 3659 + - uid: 20442 components: - type: Transform - pos: -54.5,11.5 + rot: -1.5707963267948966 rad + pos: 0.5,32.5 parent: 2 - - uid: 3663 + - uid: 20443 components: - type: Transform - pos: -51.5,10.5 + rot: 1.5707963267948966 rad + pos: 29.5,9.5 parent: 2 - - uid: 3665 + - uid: 21889 components: - type: Transform - pos: -51.5,12.5 + rot: 3.141592653589793 rad + pos: -52.5,-48.5 parent: 2 - - uid: 3666 + - uid: 22399 components: - type: Transform - pos: -51.5,13.5 + rot: 1.5707963267948966 rad + pos: 17.5,-53.5 parent: 2 - - uid: 3747 +- proto: StoolBar + entities: + - uid: 2152 components: - type: Transform - pos: -55.5,-7.5 + rot: 1.5707963267948966 rad + pos: -17.5,3.5 parent: 2 - - uid: 3748 + - uid: 2153 components: - type: Transform - pos: -55.5,-8.5 + rot: 1.5707963267948966 rad + pos: -17.5,2.5 parent: 2 - - uid: 3760 + - uid: 2154 components: - type: Transform - pos: -55.5,-10.5 + rot: 1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - - uid: 3761 + - uid: 2155 components: - type: Transform - pos: -55.5,-11.5 + rot: 1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 - - uid: 3763 + - uid: 2156 components: - type: Transform - pos: -55.5,-13.5 + rot: 1.5707963267948966 rad + pos: -17.5,-0.5 parent: 2 - - uid: 3790 + - uid: 14965 components: - type: Transform - pos: -55.5,-14.5 + pos: -35.5,24.5 parent: 2 - - uid: 3793 + - uid: 14966 components: - type: Transform - pos: -55.5,-17.5 + pos: -36.5,24.5 parent: 2 - - uid: 3907 + - uid: 15024 components: - type: Transform - pos: 41.5,6.5 + pos: -34.5,24.5 parent: 2 - - uid: 3917 + - uid: 16635 components: - type: Transform - pos: 34.5,-28.5 + rot: 3.141592653589793 rad + pos: 14.5,34.5 parent: 2 - - uid: 3919 + - uid: 16636 components: - type: Transform - pos: 34.5,-30.5 + rot: 3.141592653589793 rad + pos: 15.5,34.5 parent: 2 - - uid: 3921 + - uid: 16637 components: - type: Transform - pos: 35.5,-31.5 + rot: 3.141592653589793 rad + pos: 16.5,34.5 parent: 2 - - uid: 3925 + - uid: 16918 components: - type: Transform - pos: 39.5,-31.5 + pos: -37.5,24.5 parent: 2 - - uid: 3929 +- proto: StorageCanister + entities: + - uid: 2157 components: - type: Transform - pos: 46.5,-27.5 + pos: -1.5,-19.5 parent: 2 - - uid: 3930 + - uid: 2158 components: - type: Transform - pos: 46.5,-28.5 + pos: -0.5,-19.5 parent: 2 - - uid: 3933 + - uid: 2159 components: - type: Transform - pos: 46.5,-31.5 + pos: -0.5,-20.5 parent: 2 - - uid: 3935 + - uid: 2160 components: - type: Transform - pos: 44.5,-31.5 + pos: -1.5,-20.5 parent: 2 - - uid: 3939 + - uid: 2161 components: - type: Transform - pos: 41.5,-31.5 + pos: 26.5,-2.5 parent: 2 - - uid: 3940 + - uid: 2162 components: - type: Transform - pos: 50.5,-28.5 + pos: 25.5,-17.5 parent: 2 - - uid: 3945 + - uid: 2163 components: - type: Transform - pos: 50.5,-33.5 + pos: 25.5,-16.5 parent: 2 - - uid: 3946 + - uid: 2164 components: - type: Transform - pos: 50.5,-34.5 + pos: 25.5,-18.5 parent: 2 - - uid: 3948 + - uid: 7394 components: - type: Transform - pos: 50.5,-36.5 + pos: 73.5,-11.5 parent: 2 - - uid: 3950 + - uid: 7395 components: - type: Transform - pos: 30.5,-28.5 + pos: 73.5,-12.5 parent: 2 - - uid: 3953 + - uid: 14854 components: - type: Transform - pos: 30.5,-31.5 + pos: -16.5,17.5 parent: 2 - - uid: 3955 +- proto: SubstationBasic + entities: + - uid: 2165 components: + - type: MetaData + name: Singularity substation - type: Transform - pos: 30.5,-33.5 + pos: 2.5,-17.5 parent: 2 - - uid: 3957 + - uid: 2166 components: + - type: MetaData + name: Central Substation - type: Transform - pos: 30.5,-35.5 + pos: -3.5,15.5 parent: 2 - - uid: 3959 + - uid: 2167 components: + - type: MetaData + name: East Substation - type: Transform - pos: 21.5,-53.5 + pos: 37.5,-14.5 parent: 2 - - uid: 3965 + - uid: 3700 components: + - type: MetaData + name: Evacuation Substation - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-38.5 + pos: -52.5,10.5 parent: 2 - - uid: 3968 + - uid: 5971 components: + - type: MetaData + name: Cargo Substation - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-38.5 + pos: 38.5,6.5 parent: 2 - - uid: 3970 + - uid: 6135 components: + - type: MetaData + name: Command Substation - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-38.5 + pos: 51.5,-28.5 parent: 2 - - uid: 3971 + - uid: 6983 components: + - type: MetaData + name: South-West Substation - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-38.5 + pos: -37.5,-37.5 parent: 2 - - uid: 4040 + - uid: 8524 components: + - type: MetaData + name: Arrivals Substation - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-20.5 + pos: -36.5,-53.5 parent: 2 - - uid: 4137 + - uid: 9108 components: + - type: MetaData + name: Science Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-34.5 + pos: 61.5,-32.5 parent: 2 - - uid: 4139 + - uid: 9117 components: + - type: MetaData + name: Medical Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-34.5 + pos: 65.5,10.5 parent: 2 - - uid: 4140 + - uid: 9196 components: + - type: MetaData + name: Security Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-34.5 + pos: -22.5,35.5 parent: 2 - - uid: 4142 + - uid: 9203 components: + - type: MetaData + name: South Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-34.5 + pos: 14.5,-38.5 parent: 2 - - uid: 4184 + - uid: 9212 components: + - type: MetaData + name: West Substation - type: Transform - pos: 22.5,21.5 + pos: -61.5,-20.5 parent: 2 - - uid: 4186 + - uid: 9275 components: + - type: MetaData + name: Engineering substation - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,6.5 + pos: -0.5,-17.5 parent: 2 - - uid: 4188 + - uid: 10576 components: + - type: MetaData + name: Secure Command Substation - type: Transform - pos: 22.5,18.5 + pos: 54.5,-41.5 parent: 2 - - uid: 4189 + - uid: 17231 components: + - type: MetaData + name: Outpost Substation - type: Transform - pos: 22.5,17.5 + pos: 66.5,-49.5 parent: 2 - - uid: 4190 + - uid: 20937 components: + - type: MetaData + name: Rage Cage Substation - type: Transform - pos: 22.5,16.5 + pos: 89.5,-22.5 parent: 2 - - uid: 4198 + - uid: 22069 components: + - type: MetaData + name: AI Core substation - type: Transform - pos: 22.5,7.5 + pos: 24.5,-63.5 parent: 2 - - uid: 4199 +- proto: SubstationMachineCircuitboard + entities: + - uid: 5879 components: - type: Transform - pos: 22.5,5.5 + pos: 54.525455,-38.59651 parent: 2 - - uid: 4200 +- proto: SuitStorageAtmos + entities: + - uid: 2168 components: - type: Transform - pos: 22.5,9.5 + pos: 10.5,-15.5 parent: 2 - - uid: 4213 + - uid: 2169 components: - type: Transform - pos: 29.5,0.5 + pos: 11.5,-15.5 parent: 2 - - uid: 4214 + - uid: 2170 components: - type: Transform - pos: 29.5,1.5 + pos: 12.5,-15.5 parent: 2 - - uid: 4215 +- proto: SuitStorageCaptain + entities: + - uid: 12703 components: - type: Transform - pos: 30.5,1.5 + pos: 43.5,-27.5 parent: 2 - - uid: 4216 +- proto: SuitStorageCE + entities: + - uid: 2171 components: - type: Transform - pos: 31.5,1.5 + pos: 0.5,-25.5 parent: 2 - - uid: 4245 +- proto: SuitStorageCMO + entities: + - uid: 6736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-50.5 + pos: 56.5,12.5 parent: 2 - - uid: 4247 +- proto: SuitStorageEngi + entities: + - uid: 2172 components: - type: Transform - pos: 44.5,-5.5 + pos: -4.5,-19.5 parent: 2 - - uid: 4250 + - uid: 2173 components: - type: Transform - pos: 44.5,-2.5 + pos: -5.5,-19.5 parent: 2 - - uid: 4253 + - uid: 2174 components: - type: Transform - pos: 44.5,0.5 + pos: -3.5,-19.5 parent: 2 - - uid: 4265 + - uid: 8113 components: - type: Transform - pos: 35.5,5.5 + pos: -5.5,-33.5 parent: 2 - - uid: 4267 + - uid: 8114 components: - type: Transform - pos: 33.5,5.5 + pos: -4.5,-33.5 parent: 2 - - uid: 4268 +- proto: SuitStorageEVA + entities: + - uid: 7606 components: - type: Transform - pos: 32.5,5.5 + pos: 25.5,-35.5 parent: 2 - - uid: 4271 + - uid: 7607 components: - type: Transform - pos: 30.5,5.5 + pos: 23.5,-35.5 parent: 2 - - uid: 4272 + - uid: 7608 components: - type: Transform - pos: 29.5,5.5 + pos: 24.5,-35.5 parent: 2 - - uid: 4274 + - uid: 7609 components: - type: Transform - pos: 27.5,5.5 + pos: 23.5,-38.5 parent: 2 - - uid: 4278 + - uid: 7610 components: - type: Transform - pos: 23.5,5.5 + pos: 24.5,-38.5 parent: 2 - - uid: 4280 + - uid: 7611 components: - type: Transform - pos: 29.5,-1.5 + pos: 25.5,-38.5 parent: 2 - - uid: 4281 +- proto: SuitStorageEVAEmergency + entities: + - uid: 7081 components: - type: Transform - pos: 29.5,-2.5 + pos: 57.5,-0.5 parent: 2 - - uid: 4282 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 8190 components: - type: Transform - pos: 29.5,-3.5 + pos: -2.5,40.5 parent: 2 - - uid: 4283 + - uid: 8191 components: - type: Transform - pos: 30.5,-3.5 + pos: -0.5,40.5 parent: 2 - - uid: 4284 +- proto: SuitStorageHOS + entities: + - uid: 5034 components: - type: Transform - pos: 31.5,-3.5 + pos: -11.5,34.5 parent: 2 - - uid: 4285 +- proto: SuitStorageRD + entities: + - uid: 7425 components: - type: Transform - pos: 32.5,-3.5 + pos: 71.5,-25.5 parent: 2 - - uid: 4286 +- proto: SuitStorageSec + entities: + - uid: 1966 components: - type: Transform - pos: 33.5,-3.5 + pos: 5.5,31.5 parent: 2 - - uid: 4287 + - uid: 1967 components: - type: Transform - pos: 34.5,-3.5 + pos: 4.5,31.5 parent: 2 - - uid: 4288 + - uid: 5041 components: - type: Transform - pos: 35.5,-3.5 + pos: 7.5,32.5 parent: 2 - - uid: 4291 + - uid: 5042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,9.5 + pos: 7.5,31.5 parent: 2 - - uid: 4302 +- proto: SuitStorageWarden + entities: + - uid: 4956 components: - type: Transform - pos: 35.5,1.5 + pos: 5.5,23.5 parent: 2 - - uid: 4345 +- proto: SurveillanceCameraCommand + entities: + - uid: 5889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-28.5 + rot: 1.5707963267948966 rad + pos: 54.5,-39.5 parent: 2 - - uid: 4352 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Gravity + - uid: 8964 components: - type: Transform - pos: 47.5,5.5 + rot: -1.5707963267948966 rad + pos: 19.5,-37.5 parent: 2 - - uid: 4444 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA storage + - uid: 8965 components: - type: Transform - pos: 35.5,-2.5 + rot: 1.5707963267948966 rad + pos: 29.5,-43.5 parent: 2 - - uid: 4445 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecommunications + - uid: 8968 components: - type: Transform - pos: 35.5,-1.5 + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 parent: 2 - - uid: 4446 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High security mainframe + - uid: 8969 components: - type: Transform - pos: 35.5,-0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-46.5 parent: 2 - - uid: 4447 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Camera routers + - uid: 8970 components: - type: Transform - pos: 35.5,0.5 + rot: 1.5707963267948966 rad + pos: 29.5,-38.5 parent: 2 - - uid: 4461 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Connective hallway + - uid: 8971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,3.5 + rot: -1.5707963267948966 rad + pos: 31.5,-34.5 parent: 2 - - uid: 4475 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: West bridge + - uid: 8972 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-28.5 + pos: 49.5,-34.5 parent: 2 - - uid: 4477 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: East bridge + - uid: 8975 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-27.5 + pos: 33.5,-23.5 parent: 2 - - uid: 4484 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: West bridge entrance + - uid: 8976 components: - type: Transform - pos: -37.5,-39.5 + rot: -1.5707963267948966 rad + pos: 47.5,-23.5 parent: 2 - - uid: 4488 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: East bridge entrance + - uid: 8977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-21.5 + pos: 41.5,-25.5 parent: 2 - - uid: 4558 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Head of Personel's office + - uid: 8979 components: - type: Transform - pos: 44.5,-27.5 + rot: -1.5707963267948966 rad + pos: 47.5,-29.5 parent: 2 - - uid: 4629 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: North east bridge + - uid: 8980 components: - type: Transform - pos: 50.5,-40.5 + rot: 1.5707963267948966 rad + pos: 33.5,-28.5 parent: 2 - - uid: 4662 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: North west bridge + - uid: 8981 components: - type: Transform - pos: -4.5,23.5 + pos: 25.5,-33.5 parent: 2 - - uid: 4667 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference room + - uid: 8984 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,34.5 + pos: 55.5,-32.5 parent: 2 - - uid: 4678 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + - uid: 15592 components: - type: Transform - pos: -8.5,24.5 + rot: 3.141592653589793 rad + pos: 7.5,-46.5 parent: 2 - - uid: 4681 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Secure board room + - uid: 16967 components: - type: Transform - pos: 1.5,26.5 + rot: -1.5707963267948966 rad + pos: 51.5,-32.5 parent: 2 - - uid: 4685 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High security + - uid: 22356 components: - type: Transform - pos: -12.5,24.5 + rot: 1.5707963267948966 rad + pos: 20.5,-51.5 parent: 2 - - uid: 4688 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core entrance + - uid: 22358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,31.5 + pos: 22.5,-53.5 parent: 2 - - uid: 4689 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI upload room + - uid: 22359 components: - type: Transform - pos: -16.5,26.5 + pos: 18.5,-65.5 parent: 2 - - uid: 4693 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core lobby + - uid: 22360 components: - type: Transform - pos: -16.5,23.5 + pos: 19.5,-73.5 parent: 2 - - uid: 4705 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core mainframe + - uid: 22361 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,34.5 + pos: 22.5,-74.5 parent: 2 - - uid: 4716 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: East AI core mainframe + - uid: 22362 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,36.5 + pos: 16.5,-74.5 parent: 2 - - uid: 4721 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: West AI core mainframe + - uid: 22363 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,28.5 + pos: 19.5,-48.5 parent: 2 - - uid: 4723 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High security mainframe hallway + - uid: 22364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,26.5 + pos: 14.5,-65.5 parent: 2 - - uid: 4725 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core break room + - uid: 22365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,23.5 + pos: 23.5,-65.5 parent: 2 - - uid: 4726 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core power generation + - uid: 22382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,25.5 + rot: 3.141592653589793 rad + pos: 40.5,-32.5 parent: 2 - - uid: 4727 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: North bridge + - uid: 22473 components: - type: Transform - pos: 8.5,32.5 + pos: 18.5,-60.5 parent: 2 - - uid: 4728 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: External AI core +- proto: SurveillanceCameraEngineering + entities: + - uid: 6780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,33.5 + rot: 3.141592653589793 rad + pos: 52.5,-28.5 parent: 2 - - uid: 4730 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Command substation + - uid: 8010 components: - type: Transform - pos: 8.5,33.5 + rot: -1.5707963267948966 rad + pos: -9.5,4.5 parent: 2 - - uid: 4738 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North west outer singularity + - uid: 8945 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,2.5 + pos: -11.5,-13.5 parent: 2 - - uid: 4739 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES + - uid: 8946 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,29.5 + pos: -3.5,-18.5 parent: 2 - - uid: 4742 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Locker bay + - uid: 8947 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,27.5 + pos: -1.5,-12.5 parent: 2 - - uid: 4747 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Particle accelerator + - uid: 8948 components: - type: Transform - pos: 0.5,29.5 + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 parent: 2 - - uid: 4768 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Singularity storage + - uid: 8949 components: - type: Transform - pos: -4.5,35.5 + rot: -1.5707963267948966 rad + pos: 4.5,-20.5 parent: 2 - - uid: 4770 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break room + - uid: 8950 components: - type: Transform - pos: 46.5,6.5 + pos: -4.5,-23.5 parent: 2 - - uid: 4772 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Central hallway + - uid: 8952 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,1.5 + pos: -5.5,-25.5 parent: 2 - - uid: 4776 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Front desk + - uid: 8953 components: - type: Transform - pos: -13.5,30.5 + rot: 1.5707963267948966 rad + pos: 0.5,-25.5 parent: 2 - - uid: 4779 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Chief Engineer's office + - uid: 8954 components: - type: Transform - pos: -10.5,30.5 + rot: 3.141592653589793 rad + pos: 2.5,-25.5 parent: 2 - - uid: 4782 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Chief Engineer's room + - uid: 8955 components: - type: Transform - pos: -4.5,30.5 + pos: 13.5,-22.5 parent: 2 - - uid: 4785 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos-Engineering connection + - uid: 8956 components: - type: Transform - pos: -16.5,30.5 + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 parent: 2 - - uid: 4788 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Antimatter engine + - uid: 8958 components: - type: Transform - pos: -16.5,27.5 + rot: -1.5707963267948966 rad + pos: 10.5,-16.5 parent: 2 - - uid: 4802 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics supply bay + - uid: 8959 components: - type: Transform - pos: -10.5,33.5 + rot: 1.5707963267948966 rad + pos: 27.5,-9.5 parent: 2 - - uid: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East atmospherics + - uid: 8960 components: - type: Transform - pos: -28.5,24.5 + rot: -1.5707963267948966 rad + pos: -5.5,-34.5 parent: 2 - - uid: 4813 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Spare storage + - uid: 8961 components: - type: Transform - pos: -27.5,24.5 + pos: 2.5,-37.5 parent: 2 - - uid: 4819 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South solars + - uid: 8962 components: - type: Transform - pos: -21.5,24.5 + rot: -1.5707963267948966 rad + pos: 8.5,-39.5 parent: 2 - - uid: 4820 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Board room + - uid: 8994 components: - type: Transform - pos: -20.5,24.5 + rot: -1.5707963267948966 rad + pos: 37.5,-15.5 parent: 2 - - uid: 4824 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East substation + - uid: 8995 components: - type: Transform - pos: -17.5,30.5 + rot: 1.5707963267948966 rad + pos: 38.5,7.5 parent: 2 - - uid: 4825 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Cargo substation + - uid: 8996 components: - type: Transform - pos: -19.5,30.5 + pos: -2.5,14.5 parent: 2 - - uid: 4828 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Central substation + - uid: 8997 components: - type: Transform - pos: -21.5,29.5 + rot: 3.141592653589793 rad + pos: -53.5,10.5 parent: 2 - - uid: 4829 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Evacuation substation + - uid: 9036 components: - type: Transform - pos: -21.5,28.5 + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 parent: 2 - - uid: 4833 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Drone room + - uid: 10655 components: - type: Transform - pos: -17.5,24.5 + rot: 1.5707963267948966 rad + pos: 10.5,4.5 parent: 2 - - uid: 4838 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North east outer singularity + - uid: 10657 components: - type: Transform - pos: -23.5,30.5 + rot: 3.141592653589793 rad + pos: 0.5,6.5 parent: 2 - - uid: 4841 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North inner singularity + - uid: 10659 components: - type: Transform - pos: -7.5,35.5 + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 parent: 2 - - uid: 4843 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South west outer singularity + - uid: 10660 components: - type: Transform - pos: -9.5,35.5 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 parent: 2 - - uid: 4845 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South east outer singularity + - uid: 18066 components: - type: Transform - pos: -11.5,35.5 + rot: -1.5707963267948966 rad + pos: -9.5,-22.5 parent: 2 - - uid: 4848 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West central hallway + - uid: 18068 components: - type: Transform - pos: -15.5,31.5 + pos: 18.5,-22.5 parent: 2 - - uid: 4851 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospheric's front desk + - uid: 19436 components: - type: Transform - pos: -14.5,35.5 + pos: 15.5,-38.5 parent: 2 - - uid: 4853 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South substation + - uid: 20205 components: - type: Transform - pos: -15.5,35.5 + pos: -38.5,-37.5 parent: 2 - - uid: 4855 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South west substation + - uid: 20206 components: - type: Transform - pos: -9.5,30.5 + rot: -1.5707963267948966 rad + pos: -37.5,-53.5 parent: 2 - - uid: 4862 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Arrivals Substation + - uid: 20207 components: - type: Transform - pos: -18.5,33.5 + rot: 1.5707963267948966 rad + pos: 63.5,-31.5 parent: 2 - - uid: 4865 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Science substation + - uid: 20208 components: - type: Transform - pos: -16.5,34.5 + rot: 3.141592653589793 rad + pos: 64.5,10.5 parent: 2 - - uid: 4877 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Medical substation + - uid: 20209 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,25.5 - parent: 2 - - uid: 4884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,36.5 + pos: -21.5,34.5 parent: 2 - - uid: 4887 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Security substation + - uid: 20210 components: - type: Transform - pos: -63.5,-20.5 + pos: -26.5,34.5 parent: 2 - - uid: 4894 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North solars + - uid: 20211 components: - type: Transform - pos: 1.5,33.5 + rot: -1.5707963267948966 rad + pos: -61.5,-19.5 parent: 2 - - uid: 4906 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West substation + - uid: 22374 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,34.5 + pos: -5.5,0.5 parent: 2 - - uid: 4907 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West inner singularity + - uid: 22375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,34.5 + pos: 0.5,-5.5 parent: 2 - - uid: 4918 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South inner singularity + - uid: 22376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,38.5 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 parent: 2 - - uid: 4928 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East inner singularity + - uid: 22377 components: - type: Transform - pos: -29.5,33.5 + pos: 34.5,-16.5 parent: 2 - - uid: 4929 + - uid: 22378 components: - type: Transform - pos: -25.5,24.5 + pos: 18.5,-18.5 parent: 2 - - uid: 4934 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South atmospherics + - uid: 22379 components: - type: Transform - pos: -0.5,35.5 + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 parent: 2 - - uid: 4935 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West atmospherics + - uid: 22380 components: - type: Transform - pos: -2.5,35.5 + rot: 3.141592653589793 rad + pos: 21.5,-8.5 parent: 2 - - uid: 4940 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North atmospherics + - uid: 22381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,36.5 + rot: 1.5707963267948966 rad + pos: 35.5,-11.5 parent: 2 - - uid: 4942 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics blast chamber + - uid: 22405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,36.5 + rot: 3.141592653589793 rad + pos: -31.5,38.5 parent: 2 - - uid: 4945 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Shuttle preperations room + - uid: 22497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,36.5 + pos: 65.5,-36.5 parent: 2 - - uid: 4954 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Station anchor +- proto: SurveillanceCameraGeneral + entities: + - uid: 8420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,27.5 + rot: 3.141592653589793 rad + pos: -56.5,-56.5 parent: 2 - - uid: 4969 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South west arrivals + - uid: 9037 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,29.5 + pos: 13.5,25.5 parent: 2 - - uid: 4970 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bathroom + - uid: 9038 components: - type: Transform - pos: 3.5,29.5 + pos: 38.5,-4.5 parent: 2 - - uid: 4977 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tool room + - uid: 9039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,35.5 + rot: 3.141592653589793 rad + pos: 6.5,-26.5 parent: 2 - - uid: 4985 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Engineering front + - uid: 9044 components: - type: Transform - pos: 1.5,39.5 + pos: -30.5,-15.5 parent: 2 - - uid: 4986 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms hallway + - uid: 9047 components: - type: Transform - pos: 3.5,39.5 + rot: 1.5707963267948966 rad + pos: -43.5,-20.5 parent: 2 - - uid: 5001 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North lounge + - uid: 9048 components: - type: Transform - pos: -10.5,37.5 + pos: -44.5,-31.5 parent: 2 - - uid: 5003 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South lounge + - uid: 9049 components: - type: Transform - pos: -8.5,37.5 + rot: -1.5707963267948966 rad + pos: -51.5,-27.5 parent: 2 - - uid: 5009 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West lounge + - uid: 9050 components: - type: Transform - pos: -0.5,39.5 + rot: 1.5707963267948966 rad + pos: -46.5,-42.5 parent: 2 - - uid: 5013 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals connective hallway + - uid: 9051 components: - type: Transform - pos: -7.5,38.5 + rot: 1.5707963267948966 rad + pos: -39.5,-50.5 parent: 2 - - uid: 5014 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East arrivals + - uid: 9052 components: - type: Transform - pos: 4.5,39.5 + rot: -1.5707963267948966 rad + pos: -55.5,-50.5 parent: 2 - - uid: 5098 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West arrivals + - uid: 9053 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,0.5 + pos: -38.5,-56.5 parent: 2 - - uid: 5114 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South east arrivals + - uid: 9055 components: - type: Transform - pos: -3.5,44.5 + pos: -56.5,-65.5 parent: 2 - - uid: 5124 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South west arrivals 2 + - uid: 9056 components: - type: Transform - pos: 4.5,44.5 + pos: -42.5,-47.5 parent: 2 - - uid: 5127 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North arrivals + - uid: 9057 components: - type: Transform - pos: 4.5,41.5 + pos: -33.5,-33.5 parent: 2 - - uid: 5134 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South boxing arena + - uid: 9058 components: - type: Transform - pos: -7.5,41.5 + pos: -35.5,-4.5 parent: 2 - - uid: 5135 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Front cafeteria + - uid: 9059 components: - type: Transform - pos: -7.5,42.5 + pos: -28.5,-4.5 parent: 2 - - uid: 5139 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Back cafeteria + - uid: 9060 components: - type: Transform - pos: -7.5,45.5 + rot: 3.141592653589793 rad + pos: -23.5,9.5 parent: 2 - - uid: 5141 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Kitchen exterior + - uid: 9061 components: - type: Transform - pos: -7.5,47.5 + rot: 1.5707963267948966 rad + pos: -22.5,-7.5 parent: 2 - - uid: 5144 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms-cafeteria hallway + - uid: 9062 components: - type: Transform - pos: 4.5,46.5 + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 parent: 2 - - uid: 5146 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cafeteria entrance + - uid: 9063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,52.5 + rot: 3.141592653589793 rad + pos: -51.5,6.5 parent: 2 - - uid: 5153 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North evacuation + - uid: 9064 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,0.5 + pos: -43.5,6.5 parent: 2 - - uid: 5179 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North evacuation 2 + - uid: 9065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,49.5 + pos: -51.5,-3.5 parent: 2 - - uid: 5185 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South evacuation + - uid: 9066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,51.5 + pos: -43.5,-3.5 parent: 2 - - uid: 5189 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South evacuation 2 + - uid: 9067 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,53.5 + pos: -26.5,20.5 parent: 2 - - uid: 5190 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Small cafeteria + - uid: 9068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,54.5 + rot: 3.141592653589793 rad + pos: -12.5,21.5 parent: 2 - - uid: 5193 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security hallway + - uid: 9069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,51.5 + rot: 3.141592653589793 rad + pos: 0.5,21.5 parent: 2 - - uid: 5196 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security front + - uid: 9070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,48.5 + rot: 3.141592653589793 rad + pos: 9.5,21.5 parent: 2 - - uid: 5279 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East security hallway + - uid: 9071 components: - type: Transform - pos: -7.5,40.5 + rot: 1.5707963267948966 rad + pos: 21.5,18.5 parent: 2 - - uid: 5283 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior loading bay + - uid: 9072 components: - type: Transform - pos: -6.5,39.5 + rot: -1.5707963267948966 rad + pos: 19.5,9.5 parent: 2 - - uid: 5285 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cargo hallway + - uid: 9073 components: - type: Transform - pos: -4.5,39.5 + rot: 3.141592653589793 rad + pos: 22.5,4.5 parent: 2 - - uid: 5296 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South cargo hallway + - uid: 9074 components: - type: Transform - pos: 10.5,29.5 + pos: 27.5,2.5 parent: 2 - - uid: 5298 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior secure storage + - uid: 9075 components: - type: Transform - pos: 10.5,31.5 + rot: 3.141592653589793 rad + pos: 35.5,4.5 parent: 2 - - uid: 5326 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medical-cargo hallway + - uid: 9076 components: - type: Transform - pos: 10.5,32.5 + rot: -1.5707963267948966 rad + pos: 41.5,-4.5 parent: 2 - - uid: 5424 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior tool room + - uid: 9077 components: - type: Transform - pos: 24.5,16.5 + rot: 1.5707963267948966 rad + pos: 46.5,4.5 parent: 2 - - uid: 5427 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medical front + - uid: 9079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,11.5 + pos: 41.5,-16.5 parent: 2 - - uid: 5431 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North exterior bridge + - uid: 9080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 + rot: 3.141592653589793 rad + pos: 48.5,-18.5 parent: 2 - - uid: 5432 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East exterior bridge + - uid: 9081 components: - type: Transform - pos: 10.5,34.5 + rot: 3.141592653589793 rad + pos: 36.5,-18.5 parent: 2 - - uid: 5434 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West exterior bridge + - uid: 9082 components: - type: Transform - pos: 10.5,36.5 + pos: 60.5,-20.5 parent: 2 - - uid: 5479 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Science front + - uid: 9083 components: - type: Transform - pos: 35.5,11.5 + pos: 54.5,-23.5 parent: 2 - - uid: 5483 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior science + - uid: 9084 components: - type: Transform - pos: 33.5,16.5 + rot: 1.5707963267948966 rad + pos: 29.5,-21.5 parent: 2 - - uid: 5484 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Atmos-bridge hallway + - uid: 9085 components: - type: Transform - pos: 35.5,16.5 + rot: 3.141592653589793 rad + pos: 24.5,-24.5 parent: 2 - - uid: 5486 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Atmospherics front + - uid: 9086 components: - type: Transform - pos: 35.5,10.5 + rot: 1.5707963267948966 rad + pos: 21.5,-29.5 parent: 2 - - uid: 5488 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: EVA-atmos hallway + - uid: 9087 components: - type: Transform - pos: 35.5,8.5 + rot: 3.141592653589793 rad + pos: 17.5,-31.5 parent: 2 - - uid: 5489 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior antimatter engine + - uid: 9088 components: - type: Transform - pos: 35.5,6.5 + pos: 8.5,-33.5 parent: 2 - - uid: 5495 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: External engineering hallway + - uid: 9090 components: - type: Transform - pos: 33.5,11.5 + pos: -2.5,-31.5 parent: 2 - - uid: 5499 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South solars exterior + - uid: 9091 components: - type: Transform - pos: 37.5,16.5 + pos: -10.5,-31.5 parent: 2 - - uid: 5500 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Engineering-janitorial hallway + - uid: 9092 components: - type: Transform - pos: 37.5,17.5 + rot: 3.141592653589793 rad + pos: -18.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior janitorials + - uid: 9093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South west hallway + - uid: 9094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-16.5 parent: 2 - - uid: 5502 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms exterior + - uid: 12807 components: - type: Transform - pos: 37.5,19.5 + pos: -38.5,-65.5 parent: 2 - - uid: 5503 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South east arrivals 2 + - uid: 18921 components: - type: Transform - pos: 37.5,20.5 + rot: 1.5707963267948966 rad + pos: 43.5,-10.5 parent: 2 - - uid: 5505 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bridge-medical hallway + - uid: 19758 components: - type: Transform - pos: 37.5,22.5 + pos: -47.5,-8.5 parent: 2 - - uid: 5507 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Memorial room + - uid: 22393 components: - type: Transform - pos: 22.5,23.5 + rot: 3.141592653589793 rad + pos: -20.5,21.5 parent: 2 - - uid: 5509 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dining area + - uid: 22394 components: - type: Transform - pos: 23.5,24.5 + pos: -52.5,-21.5 parent: 2 - - uid: 5511 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North west lounge + - uid: 22395 components: - type: Transform - pos: 32.5,24.5 + rot: -1.5707963267948966 rad + pos: -54.5,-9.5 parent: 2 - - uid: 5512 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evacuation-lounge hallway + - uid: 22404 components: - type: Transform - pos: 31.5,24.5 + pos: 10.5,23.5 parent: 2 - - uid: 5532 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West bathroom + - uid: 22469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,9.5 + pos: -32.5,-4.5 parent: 2 - - uid: 5559 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Vox box +- proto: SurveillanceCameraMedical + entities: + - uid: 9023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,9.5 + pos: 41.5,7.5 parent: 2 - - uid: 5569 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Lobby + - uid: 9025 components: - type: Transform - pos: 29.5,6.5 + rot: 1.5707963267948966 rad + pos: 51.5,12.5 parent: 2 - - uid: 5570 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: North hallway + - uid: 9026 components: - type: Transform - pos: 29.5,8.5 + rot: 1.5707963267948966 rad + pos: 51.5,6.5 parent: 2 - - uid: 5616 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Central hallway + - uid: 9027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,27.5 + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 parent: 2 - - uid: 5628 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination bay + - uid: 9028 components: - type: Transform - pos: 38.5,16.5 + pos: 52.5,-14.5 parent: 2 - - uid: 5629 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + - uid: 9029 components: - type: Transform - pos: 38.5,15.5 + rot: 3.141592653589793 rad + pos: 57.5,-3.5 parent: 2 - - uid: 5632 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryogenics + - uid: 9030 components: - type: Transform - pos: 38.5,12.5 + rot: 1.5707963267948966 rad + pos: 60.5,2.5 parent: 2 - - uid: 5634 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery rooms + - uid: 9031 components: - type: Transform - pos: 37.5,11.5 + rot: 1.5707963267948966 rad + pos: 57.5,3.5 parent: 2 - - uid: 5659 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical doctor supplies + - uid: 9032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,0.5 + pos: 55.5,6.5 parent: 2 - - uid: 5723 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Paramedic's office + - uid: 9033 components: - type: Transform - pos: 40.5,18.5 + rot: 3.141592653589793 rad + pos: 55.5,12.5 parent: 2 - - uid: 5743 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chief Medical Officer's office + - uid: 9035 components: - type: Transform - pos: 44.5,19.5 + pos: 59.5,14.5 parent: 2 - - uid: 5762 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + - uid: 14256 components: - type: Transform - pos: -27.5,-45.5 + rot: 3.141592653589793 rad + pos: 45.5,16.5 parent: 2 - - uid: 5774 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 22383 components: - type: Transform - pos: 45.5,6.5 + pos: 45.5,-4.5 parent: 2 - - uid: 5775 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 2 + - uid: 22384 components: - type: Transform - pos: 47.5,4.5 + pos: 45.5,-1.5 parent: 2 - - uid: 5778 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 1 + - uid: 22385 components: - type: Transform - pos: 40.5,6.5 + pos: 45.5,-7.5 parent: 2 - - uid: 5779 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 3 + - uid: 22386 components: - type: Transform - pos: 27.5,-57.5 + pos: 55.5,-1.5 parent: 2 - - uid: 5780 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 4 + - uid: 22387 components: - type: Transform - pos: -34.5,-46.5 + pos: 55.5,-7.5 parent: 2 - - uid: 5787 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 5 + - uid: 22388 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-42.5 + pos: 62.5,4.5 parent: 2 - - uid: 5788 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery room 1 + - uid: 22389 components: - type: Transform - pos: 0.5,40.5 + pos: 62.5,0.5 parent: 2 - - uid: 5802 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery room 2 + - uid: 22390 components: - type: Transform - pos: -3.5,40.5 + pos: 54.5,14.5 parent: 2 - - uid: 5810 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology connective hallway +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 7976 components: - type: Transform - pos: 55.5,-39.5 + pos: 11.5,-44.5 parent: 2 - - uid: 5814 +- proto: SurveillanceCameraRouterConstructed + entities: + - uid: 7749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-34.5 + pos: 11.5,-49.5 parent: 2 - - uid: 5817 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 7957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-31.5 + pos: 13.5,-48.5 parent: 2 - - uid: 5820 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 7953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-36.5 + pos: 16.5,-48.5 parent: 2 - - uid: 5821 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 7958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-36.5 + pos: 13.5,-49.5 parent: 2 - - uid: 5823 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 7956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-36.5 + pos: 14.5,-48.5 parent: 2 - - uid: 5824 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 7977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-36.5 + pos: 14.5,-44.5 parent: 2 - - uid: 5826 +- proto: SurveillanceCameraRouterService + entities: + - uid: 7954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-35.5 + pos: 16.5,-49.5 parent: 2 - - uid: 5827 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 7955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-34.5 + pos: 14.5,-49.5 parent: 2 - - uid: 5829 +- proto: SurveillanceCameraScience + entities: + - uid: 8985 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-32.5 + pos: 62.5,-22.5 parent: 2 - - uid: 5832 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + - uid: 8986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-30.5 + rot: 1.5707963267948966 rad + pos: 71.5,-26.5 parent: 2 - - uid: 5834 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Server room + - uid: 8988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-30.5 + pos: 70.5,-18.5 parent: 2 - - uid: 5837 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Connective hallway + - uid: 8989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-31.5 + rot: -1.5707963267948966 rad + pos: 73.5,-14.5 parent: 2 - - uid: 5839 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Xenoarchaeology labs + - uid: 8990 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-31.5 + pos: 70.5,-7.5 parent: 2 - - uid: 5840 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomaly centre + - uid: 8991 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-31.5 + pos: 60.5,-11.5 parent: 2 - - uid: 5841 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Reception desk + - uid: 8992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-31.5 + rot: 1.5707963267948966 rad + pos: 65.5,-14.5 parent: 2 - - uid: 5842 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Central hallway +- proto: SurveillanceCameraSecurity + entities: + - uid: 8998 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-30.5 + pos: -13.5,29.5 parent: 2 - - uid: 5844 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: West hallway + - uid: 8999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-32.5 + rot: 1.5707963267948966 rad + pos: -0.5,29.5 parent: 2 - - uid: 5848 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Main hallway + - uid: 9000 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-36.5 + pos: -5.5,34.5 parent: 2 - - uid: 5849 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Officer supply room + - uid: 9001 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-37.5 + pos: -13.5,34.5 parent: 2 - - uid: 5851 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Head of Security's office + - uid: 9003 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-37.5 + pos: -19.5,29.5 parent: 2 - - uid: 5853 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogation room + - uid: 9004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-37.5 + rot: -1.5707963267948966 rad + pos: -7.5,24.5 parent: 2 - - uid: 5856 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison 1 + - uid: 9005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-37.5 + rot: -1.5707963267948966 rad + pos: -11.5,24.5 parent: 2 - - uid: 5858 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison 2 + - uid: 9006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-37.5 + rot: -1.5707963267948966 rad + pos: -15.5,24.5 parent: 2 - - uid: 5859 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison 3 + - uid: 9007 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-26.5 + pos: -0.5,25.5 parent: 2 - - uid: 5861 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security lobby + - uid: 9008 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-24.5 + pos: 3.5,28.5 parent: 2 - - uid: 5863 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's office + - uid: 9009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-24.5 + pos: 6.5,30.5 parent: 2 - - uid: 5865 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 9010 components: - type: Transform - pos: 56.5,-24.5 + rot: 3.141592653589793 rad + pos: 1.5,48.5 parent: 2 - - uid: 5866 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Central perma + - uid: 9011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-40.5 + rot: 1.5707963267948966 rad + pos: 2.5,53.5 parent: 2 - - uid: 5869 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma hydroponics + - uid: 9012 components: - type: Transform - pos: 59.5,-25.5 + rot: 1.5707963267948966 rad + pos: -4.5,42.5 parent: 2 - - uid: 5874 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma room 2 + - uid: 9013 components: - type: Transform - pos: 53.5,-42.5 + rot: -1.5707963267948966 rad + pos: 1.5,42.5 parent: 2 - - uid: 5877 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma room 1 + - uid: 9045 components: - type: Transform - pos: 52.5,-42.5 + rot: 3.141592653589793 rad + pos: -48.5,-12.5 parent: 2 - - uid: 5880 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer office + - uid: 9046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-41.5 + rot: 3.141592653589793 rad + pos: -45.5,-13.5 parent: 2 - - uid: 5884 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer conference room + - uid: 12808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-52.5 + rot: 3.141592653589793 rad + pos: -0.5,38.5 parent: 2 - - uid: 5891 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security-perma hallway + - uid: 12809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-43.5 + rot: 1.5707963267948966 rad + pos: -0.5,43.5 parent: 2 - - uid: 5902 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma entrance + - uid: 20212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-42.5 + rot: 1.5707963267948966 rad + pos: -24.5,29.5 parent: 2 - - uid: 5952 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective's office +- proto: SurveillanceCameraService + entities: + - uid: 8924 components: - type: Transform - pos: 39.5,7.5 + rot: 3.141592653589793 rad + pos: -18.5,3.5 parent: 2 - - uid: 5954 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + - uid: 8925 components: - type: Transform - pos: 39.5,9.5 + rot: 1.5707963267948966 rad + pos: -13.5,-3.5 parent: 2 - - uid: 5955 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar lounge + - uid: 8929 components: - type: Transform - pos: 40.5,9.5 + rot: 3.141592653589793 rad + pos: -31.5,7.5 parent: 2 - - uid: 5959 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Theatre + - uid: 8930 components: - type: Transform - pos: 40.5,13.5 + rot: 3.141592653589793 rad + pos: -19.5,-12.5 parent: 2 - - uid: 5963 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Game room + - uid: 8932 components: - type: Transform - pos: 41.5,14.5 + rot: 3.141592653589793 rad + pos: -19.5,-17.5 parent: 2 - - uid: 6000 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library + - uid: 8933 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,17.5 + pos: -13.5,-26.5 parent: 2 - - uid: 6003 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitorial closet + - uid: 8936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,17.5 + rot: -1.5707963267948966 rad + pos: -50.5,11.5 parent: 2 - - uid: 6006 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Arcade + - uid: 8938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,15.5 + rot: 3.141592653589793 rad + pos: -37.5,14.5 parent: 2 - - uid: 6010 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany closet + - uid: 8939 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,11.5 + pos: -53.5,-28.5 parent: 2 - - uid: 6043 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Reporter office + - uid: 8940 components: - type: Transform - pos: 50.5,16.5 + rot: 3.141592653589793 rad + pos: -60.5,-24.5 parent: 2 - - uid: 6046 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: News room + - uid: 8941 components: - type: Transform - pos: 49.5,16.5 + pos: -29.5,11.5 parent: 2 - - uid: 6060 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + - uid: 8942 components: - type: Transform - pos: -57.5,-19.5 + rot: 3.141592653589793 rad + pos: -22.5,15.5 parent: 2 - - uid: 6063 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 8943 components: - type: Transform - pos: -18.5,37.5 + rot: 1.5707963267948966 rad + pos: -15.5,14.5 parent: 2 - - uid: 6075 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 8944 components: - type: Transform - pos: -45.5,-37.5 + rot: 1.5707963267948966 rad + pos: -19.5,5.5 parent: 2 - - uid: 6077 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Music corner + - uid: 9040 components: - type: Transform - pos: 37.5,6.5 + rot: 3.141592653589793 rad + pos: -35.5,-24.5 parent: 2 - - uid: 6086 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: North boxing arena + - uid: 21412 components: - type: Transform - pos: -51.5,-37.5 + pos: -22.5,-39.5 parent: 2 - - uid: 6087 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel + - uid: 22392 components: - type: Transform - pos: 79.5,-36.5 + rot: 1.5707963267948966 rad + pos: -42.5,12.5 parent: 2 - - uid: 6096 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Arcade reception +- proto: SurveillanceCameraSupply + entities: + - uid: 3557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-54.5 + pos: 38.5,20.5 parent: 2 - - uid: 6100 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: External salvage + - uid: 9014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-49.5 + pos: 25.5,10.5 parent: 2 - - uid: 6107 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Front desk + - uid: 9015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-42.5 + rot: 3.141592653589793 rad + pos: 22.5,15.5 parent: 2 - - uid: 6145 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo front + - uid: 9018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-42.5 + rot: 1.5707963267948966 rad + pos: 34.5,6.5 parent: 2 - - uid: 6150 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Break room + - uid: 9019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-42.5 + pos: 23.5,6.5 parent: 2 - - uid: 6152 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Secure storage + - uid: 9021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-37.5 + rot: 1.5707963267948966 rad + pos: 36.5,22.5 parent: 2 - - uid: 6160 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage supply + - uid: 20086 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-45.5 + pos: 30.5,13.5 parent: 2 - - uid: 6161 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Hallway + - uid: 22391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-46.5 + rot: 3.141592653589793 rad + pos: 27.5,23.5 parent: 2 - - uid: 6165 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage bay +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 7959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-47.5 + pos: 11.5,-48.5 parent: 2 - - uid: 6166 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 2175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-46.5 + rot: 3.141592653589793 rad + pos: -21.5,5.5 parent: 2 - - uid: 6167 + - uid: 4519 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,-45.5 + pos: -58.5,-26.5 parent: 2 - - uid: 6170 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: News channel +- proto: SurveillanceWirelessCameraMovableConstructed + entities: + - uid: 4531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-55.5 + pos: -56.5,-23.5 parent: 2 - - uid: 6173 + - uid: 4532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-48.5 + pos: -55.5,-23.5 parent: 2 - - uid: 6174 +- proto: SyndieFlag + entities: + - uid: 21058 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-49.5 + pos: -36.5,-42.5 parent: 2 - - uid: 6212 +- proto: SyndieHandyFlag + entities: + - uid: 21059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-55.5 + pos: -34.495705,-44.393948 parent: 2 - - uid: 6214 +- proto: SynthesizerInstrument + entities: + - uid: 21334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-50.5 + pos: 47.788773,21.30058 parent: 2 - - uid: 6215 +- proto: Syringe + entities: + - uid: 8193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-51.5 + pos: 61.51553,-3.394734 parent: 2 - - uid: 6218 + - uid: 16540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-51.5 + pos: 15.512184,29.873684 parent: 2 - - uid: 6219 + - uid: 16966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-52.5 + pos: 61.425484,17.165861 parent: 2 - - uid: 6221 +- proto: Table + entities: + - uid: 153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-54.5 + rot: 3.141592653589793 rad + pos: -32.5,-8.5 parent: 2 - - uid: 6222 + - uid: 1413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-54.5 + pos: 53.5,-9.5 parent: 2 - - uid: 6223 + - uid: 2177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-57.5 + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 parent: 2 - - uid: 6224 + - uid: 2178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-55.5 + rot: 1.5707963267948966 rad + pos: -4.5,-17.5 parent: 2 - - uid: 6225 + - uid: 2179 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-49.5 - parent: 2 - - uid: 6227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-44.5 - parent: 2 - - uid: 6228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-44.5 + pos: -8.5,-21.5 parent: 2 - - uid: 6241 + - uid: 2180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-56.5 + pos: -5.5,-23.5 parent: 2 - - uid: 6246 + - uid: 2181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-54.5 + pos: -4.5,-23.5 parent: 2 - - uid: 6247 + - uid: 2182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-56.5 + pos: 1.5,-19.5 parent: 2 - - uid: 6251 + - uid: 2183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-57.5 + pos: 2.5,-19.5 parent: 2 - - uid: 6254 + - uid: 2184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-57.5 + pos: -4.5,-26.5 parent: 2 - - uid: 6255 + - uid: 2185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-57.5 + pos: 5.5,-19.5 parent: 2 - - uid: 6258 + - uid: 2186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-59.5 + pos: 6.5,-19.5 parent: 2 - - uid: 6259 + - uid: 2187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-59.5 + pos: 6.5,-23.5 parent: 2 - - uid: 6261 + - uid: 2188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-59.5 + pos: 5.5,-23.5 parent: 2 - - uid: 6265 + - uid: 2189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-64.5 + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 parent: 2 - - uid: 6267 + - uid: 2190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-64.5 + rot: 1.5707963267948966 rad + pos: 17.5,-27.5 parent: 2 - - uid: 6268 + - uid: 2191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-64.5 + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 parent: 2 - - uid: 6287 + - uid: 2192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-66.5 + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 parent: 2 - - uid: 6289 + - uid: 2193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-66.5 + rot: 1.5707963267948966 rad + pos: 17.5,-18.5 parent: 2 - - uid: 6295 + - uid: 2194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-54.5 + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 parent: 2 - - uid: 6298 + - uid: 2195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-66.5 + pos: 24.5,-26.5 parent: 2 - - uid: 6300 + - uid: 2196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-66.5 + pos: 27.5,-26.5 parent: 2 - - uid: 6303 + - uid: 2197 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-64.5 + pos: -23.5,13.5 parent: 2 - - uid: 6305 + - uid: 2198 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-62.5 + pos: -23.5,14.5 parent: 2 - - uid: 6307 + - uid: 2201 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-59.5 + pos: -21.5,15.5 parent: 2 - - uid: 6309 + - uid: 2202 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-60.5 + pos: -20.5,15.5 parent: 2 - - uid: 6310 + - uid: 2203 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-58.5 + pos: -19.5,15.5 parent: 2 - - uid: 6311 + - uid: 2204 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-60.5 + pos: -18.5,15.5 parent: 2 - - uid: 6312 + - uid: 2205 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-61.5 + pos: -19.5,17.5 parent: 2 - - uid: 6315 + - uid: 2206 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-63.5 + pos: -19.5,21.5 parent: 2 - - uid: 6316 + - uid: 2207 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-64.5 + pos: -22.5,21.5 parent: 2 - - uid: 6319 + - uid: 2208 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-66.5 + pos: -22.5,17.5 parent: 2 - - uid: 6322 + - uid: 2209 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-66.5 + pos: 38.5,-16.5 parent: 2 - - uid: 6323 + - uid: 2210 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-66.5 + pos: 37.5,-16.5 parent: 2 - - uid: 6325 + - uid: 2211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-51.5 + rot: 3.141592653589793 rad + pos: -27.5,13.5 parent: 2 - - uid: 6486 + - uid: 2212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-8.5 + rot: 3.141592653589793 rad + pos: -27.5,14.5 parent: 2 - - uid: 6490 + - uid: 2213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-8.5 + pos: -29.5,-17.5 parent: 2 - - uid: 6494 + - uid: 2214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-8.5 + pos: -27.5,-17.5 parent: 2 - - uid: 6503 + - uid: 2215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-8.5 + pos: -27.5,-33.5 parent: 2 - - uid: 6507 + - uid: 2216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,0.5 + pos: -28.5,-33.5 parent: 2 - - uid: 6511 + - uid: 2217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-8.5 + pos: -29.5,-33.5 parent: 2 - - uid: 6512 + - uid: 3237 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-8.5 + pos: -33.5,-8.5 parent: 2 - - uid: 6513 + - uid: 3705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-8.5 + rot: 1.5707963267948966 rad + pos: -54.5,10.5 parent: 2 - - uid: 6518 + - uid: 3706 components: - type: Transform - pos: 38.5,5.5 + rot: 1.5707963267948966 rad + pos: -54.5,9.5 parent: 2 - - uid: 6531 + - uid: 4063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-1.5 + pos: 49.5,-24.5 parent: 2 - - uid: 6532 + - uid: 4064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-2.5 + pos: 31.5,-24.5 parent: 2 - - uid: 6564 + - uid: 4254 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-2.5 + pos: 44.5,1.5 parent: 2 - - uid: 6622 + - uid: 4270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 + pos: -18.5,27.5 parent: 2 - - uid: 6629 + - uid: 4307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 + rot: -1.5707963267948966 rad + pos: 33.5,8.5 parent: 2 - - uid: 6630 + - uid: 4504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,6.5 + pos: -50.5,-13.5 parent: 2 - - uid: 6632 + - uid: 4505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,8.5 + pos: -50.5,-12.5 parent: 2 - - uid: 6634 + - uid: 4794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,9.5 + pos: -9.5,23.5 parent: 2 - - uid: 6637 + - uid: 4871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,9.5 + pos: -5.5,23.5 parent: 2 - - uid: 6640 + - uid: 4874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,12.5 + pos: -13.5,23.5 parent: 2 - - uid: 6642 + - uid: 5048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,13.5 + pos: -8.5,31.5 parent: 2 - - uid: 6644 + - uid: 5049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,13.5 + pos: -9.5,31.5 parent: 2 - - uid: 6645 + - uid: 5057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,13.5 + rot: 3.141592653589793 rad + pos: -9.5,29.5 parent: 2 - - uid: 6646 + - uid: 5058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,9.5 + rot: 3.141592653589793 rad + pos: -10.5,29.5 parent: 2 - - uid: 6649 + - uid: 5166 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,10.5 + pos: -6.5,47.5 parent: 2 - - uid: 6651 + - uid: 5169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,12.5 + pos: -6.5,48.5 parent: 2 - - uid: 6654 + - uid: 5170 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,13.5 + pos: 1.5,46.5 parent: 2 - - uid: 6656 + - uid: 5171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,16.5 + pos: 1.5,47.5 parent: 2 - - uid: 6658 + - uid: 5172 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,16.5 + pos: 0.5,47.5 parent: 2 - - uid: 6659 + - uid: 5173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,15.5 + pos: 0.5,46.5 parent: 2 - - uid: 6670 + - uid: 5174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-12.5 + pos: -5.5,48.5 parent: 2 - - uid: 6674 + - uid: 5175 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-15.5 + pos: -4.5,48.5 parent: 2 - - uid: 6676 + - uid: 5228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-15.5 + rot: -1.5707963267948966 rad + pos: 3.5,52.5 parent: 2 - - uid: 6678 + - uid: 5229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-15.5 + rot: -1.5707963267948966 rad + pos: 3.5,51.5 parent: 2 - - uid: 6679 + - uid: 5245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-15.5 + rot: 3.141592653589793 rad + pos: -4.5,43.5 parent: 2 - - uid: 6681 + - uid: 5246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-9.5 + rot: 3.141592653589793 rad + pos: 1.5,43.5 parent: 2 - - uid: 6748 + - uid: 5515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 + pos: -19.5,27.5 parent: 2 - - uid: 6774 + - uid: 5562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-27.5 + rot: -1.5707963267948966 rad + pos: 32.5,7.5 parent: 2 - - uid: 6777 + - uid: 5563 components: - type: Transform - pos: 51.5,-23.5 + rot: -1.5707963267948966 rad + pos: 32.5,8.5 parent: 2 - - uid: 6779 + - uid: 5572 components: - type: Transform - pos: 52.5,-30.5 + rot: -1.5707963267948966 rad + pos: 33.5,7.5 parent: 2 - - uid: 6785 + - uid: 5669 components: - type: Transform - pos: 54.5,-14.5 + pos: -20.5,27.5 parent: 2 - - uid: 6787 + - uid: 5770 components: - type: Transform - pos: 54.5,-12.5 + rot: -1.5707963267948966 rad + pos: 44.5,2.5 parent: 2 - - uid: 6789 + - uid: 5771 components: - type: Transform - pos: 54.5,-10.5 + rot: -1.5707963267948966 rad + pos: 44.5,3.5 parent: 2 - - uid: 6790 + - uid: 5772 components: - type: Transform - pos: 54.5,-9.5 + rot: -1.5707963267948966 rad + pos: 45.5,3.5 parent: 2 - - uid: 6805 + - uid: 6137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-2.5 + rot: 3.141592653589793 rad + pos: 52.5,-28.5 parent: 2 - - uid: 6839 + - uid: 6331 components: - type: Transform - pos: 56.5,18.5 + rot: -1.5707963267948966 rad + pos: -53.5,-60.5 parent: 2 - - uid: 6841 + - uid: 6332 components: - type: Transform - pos: 56.5,20.5 + rot: -1.5707963267948966 rad + pos: -53.5,-61.5 parent: 2 - - uid: 6843 + - uid: 6333 components: - type: Transform - pos: -15.5,-39.5 + rot: -1.5707963267948966 rad + pos: -53.5,-62.5 parent: 2 - - uid: 6845 + - uid: 6334 components: - type: Transform - pos: 63.5,-10.5 + rot: -1.5707963267948966 rad + pos: -53.5,-63.5 parent: 2 - - uid: 6848 + - uid: 6335 components: - type: Transform - pos: 62.5,18.5 + rot: -1.5707963267948966 rad + pos: -41.5,-60.5 parent: 2 - - uid: 6849 + - uid: 6336 components: - type: Transform - pos: 61.5,20.5 + rot: -1.5707963267948966 rad + pos: -41.5,-61.5 parent: 2 - - uid: 6851 + - uid: 6337 components: - type: Transform - pos: 62.5,16.5 + rot: -1.5707963267948966 rad + pos: -41.5,-62.5 parent: 2 - - uid: 6853 + - uid: 6338 components: - type: Transform - pos: 62.5,14.5 + rot: -1.5707963267948966 rad + pos: -41.5,-63.5 parent: 2 - - uid: 6855 + - uid: 6382 components: - type: Transform - pos: 61.5,13.5 + pos: -55.5,-45.5 parent: 2 - - uid: 6857 + - uid: 6383 components: - type: Transform - pos: 58.5,-0.5 + pos: -39.5,-45.5 parent: 2 - - uid: 6859 + - uid: 6587 components: - type: Transform - pos: 59.5,5.5 + rot: 3.141592653589793 rad + pos: -31.5,-8.5 parent: 2 - - uid: 6861 + - uid: 6684 components: - type: Transform - pos: 61.5,5.5 + rot: 1.5707963267948966 rad + pos: 53.5,1.5 parent: 2 - - uid: 6863 + - uid: 6685 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,2.5 + pos: 54.5,1.5 parent: 2 - - uid: 6869 + - uid: 6686 components: - type: Transform - pos: 61.5,-0.5 + rot: 1.5707963267948966 rad + pos: 55.5,1.5 parent: 2 - - uid: 6873 + - uid: 6708 components: - type: Transform - pos: 64.5,0.5 + pos: 48.5,4.5 parent: 2 - - uid: 6874 + - uid: 6715 components: - type: Transform - pos: 64.5,1.5 + rot: -1.5707963267948966 rad + pos: 54.5,8.5 parent: 2 - - uid: 6875 + - uid: 6716 components: - type: Transform - pos: 64.5,2.5 + rot: -1.5707963267948966 rad + pos: 53.5,8.5 parent: 2 - - uid: 6876 + - uid: 7268 components: - type: Transform - pos: 64.5,3.5 + pos: 64.5,-11.5 parent: 2 - - uid: 6878 + - uid: 7277 components: - type: Transform - pos: 64.5,5.5 + rot: 3.141592653589793 rad + pos: 63.5,-15.5 parent: 2 - - uid: 6879 + - uid: 8115 components: - type: Transform - pos: 63.5,5.5 + rot: 3.141592653589793 rad + pos: -4.5,-36.5 parent: 2 - - uid: 6880 + - uid: 8213 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,2.5 + pos: 41.5,-7.5 parent: 2 - - uid: 6932 + - uid: 8267 components: - type: Transform - pos: 57.5,22.5 + pos: -4.5,21.5 parent: 2 - - uid: 6933 + - uid: 9179 components: - type: Transform - pos: 61.5,22.5 + rot: 1.5707963267948966 rad + pos: -25.5,25.5 parent: 2 - - uid: 6942 + - uid: 9180 components: - type: Transform - pos: -40.5,-37.5 + rot: 1.5707963267948966 rad + pos: -24.5,25.5 parent: 2 - - uid: 6952 + - uid: 9197 components: - type: Transform - pos: -3.5,42.5 + rot: 3.141592653589793 rad + pos: -21.5,35.5 parent: 2 - - uid: 6953 + - uid: 14240 components: - type: Transform - pos: 0.5,42.5 + pos: -21.5,10.5 parent: 2 - - uid: 6955 + - uid: 14738 components: - type: Transform - pos: 0.5,44.5 + rot: 1.5707963267948966 rad + pos: -17.5,35.5 parent: 2 - - uid: 6962 + - uid: 14753 components: - type: Transform - pos: -15.5,-41.5 + pos: -20.5,10.5 parent: 2 - - uid: 6970 + - uid: 15092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-38.5 + pos: -3.5,-41.5 parent: 2 - - uid: 6977 + - uid: 15093 components: - type: Transform - pos: 58.5,-10.5 + pos: -3.5,-40.5 parent: 2 - - uid: 6978 + - uid: 15148 components: - type: Transform - pos: 57.5,-10.5 + pos: -32.5,38.5 parent: 2 - - uid: 6980 + - uid: 15149 components: - type: Transform - pos: 56.5,-11.5 + pos: -33.5,38.5 parent: 2 - - uid: 6982 + - uid: 15620 components: - type: Transform - pos: 56.5,-13.5 + pos: 69.5,-3.5 parent: 2 - - uid: 6996 + - uid: 15952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,7.5 + pos: -42.5,17.5 parent: 2 - - uid: 6998 + - uid: 16110 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,7.5 + pos: 58.5,26.5 parent: 2 - - uid: 7009 + - uid: 16138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,11.5 + pos: 60.5,25.5 parent: 2 - - uid: 7020 + - uid: 16191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,22.5 + pos: 56.5,-27.5 parent: 2 - - uid: 7021 + - uid: 16203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,23.5 + pos: 55.5,-27.5 parent: 2 - - uid: 7022 + - uid: 16327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,24.5 + rot: 1.5707963267948966 rad + pos: 78.5,-5.5 parent: 2 - - uid: 7028 + - uid: 16328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-8.5 + rot: 1.5707963267948966 rad + pos: 79.5,-5.5 parent: 2 - - uid: 7029 + - uid: 16394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-8.5 + pos: 50.5,22.5 parent: 2 - - uid: 7066 + - uid: 16395 components: - type: Transform - pos: 61.5,-10.5 + pos: 51.5,22.5 parent: 2 - - uid: 7073 + - uid: 16396 components: - type: Transform - pos: 65.5,-9.5 + pos: 52.5,22.5 parent: 2 - - uid: 7074 + - uid: 16422 components: - type: Transform - pos: 65.5,-8.5 + pos: 63.5,8.5 parent: 2 - - uid: 7089 + - uid: 16463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-21.5 + pos: -54.5,-35.5 parent: 2 - - uid: 7091 + - uid: 16464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-18.5 + pos: -54.5,-36.5 parent: 2 - - uid: 7094 + - uid: 16467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-15.5 + pos: -59.5,-35.5 parent: 2 - - uid: 7095 + - uid: 16468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-15.5 + pos: -59.5,-36.5 parent: 2 - - uid: 7101 + - uid: 16529 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-11.5 + pos: 13.5,32.5 parent: 2 - - uid: 7110 + - uid: 16530 components: - type: Transform - pos: 66.5,-19.5 + rot: -1.5707963267948966 rad + pos: 15.5,31.5 parent: 2 - - uid: 7113 + - uid: 16531 components: - type: Transform - pos: 67.5,-23.5 + rot: -1.5707963267948966 rad + pos: 15.5,30.5 parent: 2 - - uid: 7116 + - uid: 16532 components: - type: Transform - pos: 67.5,-26.5 + rot: -1.5707963267948966 rad + pos: 15.5,29.5 parent: 2 - - uid: 7117 + - uid: 16578 components: - type: Transform - pos: 67.5,-27.5 + rot: 1.5707963267948966 rad + pos: 5.5,40.5 parent: 2 - - uid: 7128 + - uid: 16597 components: - type: Transform - pos: 60.5,-27.5 + rot: 1.5707963267948966 rad + pos: 8.5,42.5 parent: 2 - - uid: 7129 + - uid: 16598 components: - type: Transform - pos: 61.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,42.5 parent: 2 - - uid: 7131 + - uid: 16599 components: - type: Transform - pos: 64.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,41.5 parent: 2 - - uid: 7133 + - uid: 16600 components: - type: Transform - pos: 65.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,40.5 parent: 2 - - uid: 7136 + - uid: 17379 components: - type: Transform - pos: 66.5,-11.5 + rot: 3.141592653589793 rad + pos: -30.5,-3.5 parent: 2 - - uid: 7137 + - uid: 20792 components: - type: Transform - pos: 66.5,-10.5 + rot: 3.141592653589793 rad + pos: 8.5,16.5 parent: 2 - - uid: 7165 + - uid: 21186 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-21.5 + pos: -30.5,-4.5 parent: 2 - - uid: 7182 + - uid: 21330 components: - type: Transform - pos: 60.5,-29.5 + rot: 1.5707963267948966 rad + pos: 63.5,-32.5 parent: 2 - - uid: 7185 +- proto: TableCarpet + entities: + - uid: 2218 components: - type: Transform - pos: 63.5,-29.5 + pos: -19.5,-2.5 parent: 2 - - uid: 7187 + - uid: 2219 components: - type: Transform - pos: 68.5,-15.5 + pos: -18.5,-3.5 parent: 2 - - uid: 7189 + - uid: 2220 components: - type: Transform - pos: 70.5,-15.5 + pos: -19.5,-3.5 parent: 2 - - uid: 7191 + - uid: 2221 components: - type: Transform - pos: 72.5,-15.5 + pos: -18.5,-2.5 parent: 2 - - uid: 7195 + - uid: 2222 components: - type: Transform - pos: 72.5,-11.5 + rot: 1.5707963267948966 rad + pos: -20.5,-14.5 parent: 2 - - uid: 7197 + - uid: 2223 components: - type: Transform - pos: 74.5,-10.5 + pos: -19.5,-13.5 parent: 2 - - uid: 7200 + - uid: 2224 components: - type: Transform - pos: 75.5,-9.5 + pos: -20.5,-13.5 parent: 2 - - uid: 7202 + - uid: 2225 components: - type: Transform - pos: 75.5,-7.5 + rot: 1.5707963267948966 rad + pos: -19.5,-14.5 parent: 2 - - uid: 7204 + - uid: 16631 components: - type: Transform - pos: 74.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,36.5 parent: 2 - - uid: 7206 + - uid: 16632 components: - type: Transform - pos: 72.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,35.5 parent: 2 - - uid: 7209 + - uid: 16633 components: - type: Transform - pos: 69.5,-6.5 + rot: 1.5707963267948966 rad + pos: 15.5,35.5 parent: 2 - - uid: 7212 + - uid: 16634 components: - type: Transform - pos: 66.5,-6.5 + rot: 1.5707963267948966 rad + pos: 16.5,35.5 parent: 2 - - uid: 7269 +- proto: TableCounterWood + entities: + - uid: 2226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-19.5 + pos: -16.5,-0.5 parent: 2 - - uid: 7271 + - uid: 2227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-19.5 + pos: -16.5,3.5 parent: 2 - - uid: 7281 + - uid: 2228 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-20.5 + pos: -16.5,0.5 parent: 2 - - uid: 7284 + - uid: 2229 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-23.5 - parent: 2 - - uid: 7285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-24.5 - parent: 2 - - uid: 7287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-24.5 + pos: -16.5,1.5 parent: 2 - - uid: 7293 + - uid: 2230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-27.5 + rot: 3.141592653589793 rad + pos: -16.5,2.5 parent: 2 - - uid: 7294 + - uid: 2231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-28.5 + pos: -15.5,3.5 parent: 2 - - uid: 7296 + - uid: 2237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-30.5 + pos: -37.5,-20.5 parent: 2 - - uid: 7297 + - uid: 2238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-30.5 + pos: -36.5,-20.5 parent: 2 - - uid: 7299 + - uid: 3730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-30.5 + pos: -44.5,11.5 parent: 2 - - uid: 7300 + - uid: 3731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-30.5 + pos: -44.5,12.5 parent: 2 - - uid: 7304 + - uid: 3732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-19.5 + pos: -44.5,13.5 parent: 2 - - uid: 7307 + - uid: 4407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-19.5 + rot: 1.5707963267948966 rad + pos: -49.5,-15.5 parent: 2 - - uid: 7309 + - uid: 4410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-19.5 + rot: 1.5707963267948966 rad + pos: -48.5,-15.5 parent: 2 - - uid: 7312 + - uid: 4414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-15.5 + rot: 1.5707963267948966 rad + pos: -44.5,-16.5 parent: 2 - - uid: 7317 + - uid: 4415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-11.5 + rot: 1.5707963267948966 rad + pos: -44.5,-17.5 parent: 2 - - uid: 7319 + - uid: 4418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-10.5 + pos: -44.5,-15.5 parent: 2 - - uid: 7321 + - uid: 4427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-15.5 + rot: 1.5707963267948966 rad + pos: -50.5,-15.5 parent: 2 - - uid: 7322 + - uid: 4567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-15.5 + rot: 3.141592653589793 rad + pos: 39.5,-28.5 parent: 2 - - uid: 7323 + - uid: 12701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-15.5 + rot: 3.141592653589793 rad + pos: 39.5,-27.5 parent: 2 - - uid: 7324 + - uid: 12702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-15.5 + rot: 3.141592653589793 rad + pos: 40.5,-27.5 parent: 2 - - uid: 7326 + - uid: 16197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-11.5 + rot: 1.5707963267948966 rad + pos: 77.5,-24.5 parent: 2 - - uid: 7329 + - uid: 16199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-19.5 + rot: 1.5707963267948966 rad + pos: 79.5,-24.5 parent: 2 - - uid: 7331 + - uid: 16200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-19.5 + rot: 1.5707963267948966 rad + pos: 76.5,-24.5 parent: 2 - - uid: 7338 +- proto: TableFancyBlack + entities: + - uid: 3109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-11.5 + pos: -36.5,5.5 parent: 2 - - uid: 7339 + - uid: 3110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-15.5 + pos: -30.5,5.5 parent: 2 - - uid: 7340 + - uid: 3111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-15.5 + pos: -36.5,6.5 parent: 2 - - uid: 7342 + - uid: 3112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-11.5 + pos: -30.5,7.5 parent: 2 - - uid: 7350 + - uid: 3121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-19.5 + pos: -30.5,6.5 parent: 2 - - uid: 7460 +- proto: TableFancyRed + entities: + - uid: 3124 components: - type: Transform - pos: 73.5,-4.5 + pos: -20.5,7.5 parent: 2 - - uid: 7463 + - uid: 3490 components: - type: Transform - pos: 76.5,-4.5 + pos: -21.5,7.5 parent: 2 - - uid: 7478 +- proto: TableFrame + entities: + - uid: 16498 components: - type: Transform - pos: 86.5,-9.5 + pos: -66.5,-23.5 parent: 2 - - uid: 7504 +- proto: TableReinforced + entities: + - uid: 182 components: - type: Transform - pos: 73.5,-33.5 + rot: -1.5707963267948966 rad + pos: 14.5,-64.5 parent: 2 - - uid: 7516 + - uid: 758 components: - type: Transform - pos: 66.5,-28.5 + pos: 9.5,-48.5 parent: 2 - - uid: 7517 + - uid: 880 components: - type: Transform - pos: 66.5,-29.5 + pos: -32.5,14.5 parent: 2 - - uid: 7518 + - uid: 2243 components: - type: Transform - pos: 66.5,-30.5 + rot: 3.141592653589793 rad + pos: -6.5,-28.5 parent: 2 - - uid: 7520 + - uid: 2244 components: - type: Transform - pos: 67.5,-31.5 + rot: 3.141592653589793 rad + pos: -5.5,-28.5 parent: 2 - - uid: 7522 + - uid: 2245 components: - type: Transform - pos: 69.5,-31.5 + rot: 3.141592653589793 rad + pos: 0.5,-27.5 parent: 2 - - uid: 7523 + - uid: 2246 components: - type: Transform - pos: 70.5,-31.5 + rot: 3.141592653589793 rad + pos: -0.5,-27.5 parent: 2 - - uid: 7524 + - uid: 2247 components: - type: Transform - pos: 71.5,-31.5 + pos: 20.5,-23.5 parent: 2 - - uid: 7526 + - uid: 2248 components: - type: Transform - pos: 73.5,-31.5 + pos: 21.5,-23.5 parent: 2 - - uid: 7528 + - uid: 2249 components: - type: Transform - pos: 73.5,-29.5 + pos: 14.5,-15.5 parent: 2 - - uid: 7532 + - uid: 2250 components: - type: Transform - pos: 73.5,-25.5 + pos: 13.5,-15.5 parent: 2 - - uid: 7534 + - uid: 2251 components: - type: Transform - pos: 73.5,-23.5 + pos: 17.5,-22.5 parent: 2 - - uid: 7544 + - uid: 2252 components: - type: Transform - pos: 64.5,-31.5 + pos: 17.5,-21.5 parent: 2 - - uid: 7562 + - uid: 2253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-23.5 + pos: 17.5,-20.5 parent: 2 - - uid: 7565 + - uid: 2254 components: - type: Transform - pos: 64.5,19.5 + pos: 43.5,-22.5 parent: 2 - - uid: 7568 + - uid: 2255 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,18.5 + pos: 41.5,-23.5 parent: 2 - - uid: 7574 + - uid: 2256 components: - type: Transform - pos: 56.5,-15.5 + rot: 1.5707963267948966 rad + pos: 40.5,-23.5 parent: 2 - - uid: 7577 + - uid: 2257 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-34.5 + pos: 44.5,-23.5 parent: 2 - - uid: 7578 + - uid: 2258 components: - type: Transform - pos: 18.5,-36.5 + rot: 1.5707963267948966 rad + pos: 45.5,-23.5 parent: 2 - - uid: 7579 + - uid: 2259 components: - type: Transform - pos: 18.5,-37.5 + rot: -1.5707963267948966 rad + pos: -15.5,-28.5 parent: 2 - - uid: 7588 + - uid: 2260 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-40.5 + pos: -16.5,-28.5 parent: 2 - - uid: 7589 + - uid: 2261 components: - type: Transform - pos: 27.5,-38.5 + rot: 3.141592653589793 rad + pos: -13.5,-24.5 parent: 2 - - uid: 7594 + - uid: 2262 components: - type: Transform - pos: 26.5,-39.5 + rot: 3.141592653589793 rad + pos: -13.5,-25.5 parent: 2 - - uid: 7597 + - uid: 2263 components: - type: Transform - pos: 23.5,-39.5 + rot: 3.141592653589793 rad + pos: -13.5,-23.5 parent: 2 - - uid: 7602 + - uid: 2312 components: - type: Transform - pos: 18.5,-39.5 + pos: 27.5,-43.5 parent: 2 - - uid: 7628 + - uid: 4020 components: - type: Transform - pos: 27.5,-40.5 + rot: -1.5707963267948966 rad + pos: 38.5,-37.5 parent: 2 - - uid: 7630 + - uid: 4021 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-40.5 + pos: 42.5,-37.5 parent: 2 - - uid: 7633 + - uid: 4022 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-49.5 + pos: 35.5,-33.5 parent: 2 - - uid: 7634 + - uid: 4023 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-40.5 + pos: 45.5,-32.5 parent: 2 - - uid: 7635 + - uid: 4024 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-40.5 + pos: 35.5,-32.5 parent: 2 - - uid: 7638 + - uid: 4025 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-41.5 + pos: 45.5,-33.5 parent: 2 - - uid: 7640 + - uid: 4026 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-43.5 + pos: 38.5,-38.5 parent: 2 - - uid: 7642 + - uid: 4027 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-42.5 + pos: 42.5,-38.5 parent: 2 - - uid: 7643 + - uid: 4028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-43.5 + pos: 33.5,-38.5 parent: 2 - - uid: 7644 + - uid: 4029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-44.5 + pos: 34.5,-38.5 parent: 2 - - uid: 7646 + - uid: 4030 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-43.5 + pos: 48.5,-38.5 parent: 2 - - uid: 7647 + - uid: 4041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-40.5 + pos: 34.5,-37.5 parent: 2 - - uid: 7650 + - uid: 4042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-45.5 + pos: 32.5,-38.5 parent: 2 - - uid: 7652 + - uid: 4046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-46.5 + pos: 46.5,-38.5 parent: 2 - - uid: 7656 + - uid: 4047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-42.5 + pos: 46.5,-37.5 parent: 2 - - uid: 7657 + - uid: 4048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 + pos: 47.5,-38.5 parent: 2 - - uid: 7659 + - uid: 4075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-44.5 + pos: 44.5,-32.5 parent: 2 - - uid: 7663 + - uid: 4076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-46.5 + pos: 43.5,-32.5 parent: 2 - - uid: 7665 + - uid: 4077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-47.5 + pos: 36.5,-32.5 parent: 2 - - uid: 7674 + - uid: 4078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-47.5 + pos: 37.5,-32.5 parent: 2 - - uid: 7679 + - uid: 4094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-47.5 + rot: 3.141592653589793 rad + pos: 27.5,-30.5 parent: 2 - - uid: 7725 + - uid: 4095 components: - type: Transform - pos: 29.5,-49.5 + rot: 3.141592653589793 rad + pos: 25.5,-30.5 parent: 2 - - uid: 7728 + - uid: 4096 components: - type: Transform - pos: 31.5,-48.5 + rot: 3.141592653589793 rad + pos: 26.5,-30.5 parent: 2 - - uid: 7729 + - uid: 4125 components: - type: Transform - pos: 30.5,-48.5 + rot: 3.141592653589793 rad + pos: 26.5,-31.5 parent: 2 - - uid: 7731 + - uid: 4127 components: - type: Transform - pos: 22.5,-48.5 + rot: 3.141592653589793 rad + pos: 27.5,-31.5 parent: 2 - - uid: 7734 + - uid: 4128 components: - type: Transform - pos: 24.5,-48.5 + rot: 3.141592653589793 rad + pos: 25.5,-31.5 parent: 2 - - uid: 7740 + - uid: 4258 components: - type: Transform - pos: 17.5,-41.5 + rot: -1.5707963267948966 rad + pos: 28.5,11.5 parent: 2 - - uid: 7743 + - uid: 4259 components: - type: Transform - pos: 20.5,-41.5 + rot: -1.5707963267948966 rad + pos: 28.5,10.5 parent: 2 - - uid: 7752 + - uid: 4361 components: - type: Transform - pos: 13.5,-38.5 + pos: 37.5,-4.5 parent: 2 - - uid: 7753 + - uid: 4363 components: - type: Transform - pos: 16.5,-45.5 + pos: 36.5,-3.5 parent: 2 - - uid: 7754 + - uid: 4364 components: - type: Transform - pos: 20.5,-46.5 + pos: 36.5,-4.5 parent: 2 - - uid: 7761 + - uid: 4365 components: - type: Transform - pos: 17.5,-45.5 + pos: 36.5,-2.5 parent: 2 - - uid: 7765 + - uid: 4383 components: - type: Transform - pos: 4.5,-35.5 + pos: 30.5,0.5 parent: 2 - - uid: 7768 + - uid: 4384 components: - type: Transform - pos: 4.5,-33.5 + pos: 30.5,-0.5 parent: 2 - - uid: 7769 + - uid: 4385 components: - type: Transform - pos: 13.5,-37.5 + pos: 30.5,-1.5 parent: 2 - - uid: 7773 + - uid: 4386 components: - type: Transform - pos: -6.5,-33.5 + pos: 30.5,-2.5 parent: 2 - - uid: 7775 + - uid: 4521 components: - type: Transform - pos: 7.5,-37.5 + rot: -1.5707963267948966 rad + pos: -59.5,-24.5 parent: 2 - - uid: 7780 + - uid: 4522 components: - type: Transform - pos: -8.5,-41.5 + rot: -1.5707963267948966 rad + pos: -60.5,-24.5 parent: 2 - - uid: 7786 + - uid: 4523 components: - type: Transform - pos: 4.5,-37.5 + rot: -1.5707963267948966 rad + pos: -59.5,-26.5 parent: 2 - - uid: 7793 + - uid: 4525 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-48.5 + pos: -59.5,-25.5 parent: 2 - - uid: 7796 + - uid: 4526 components: - type: Transform - pos: 15.5,-45.5 + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 parent: 2 - - uid: 7800 + - uid: 4527 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-63.5 + pos: -59.5,-27.5 parent: 2 - - uid: 7801 + - uid: 4533 components: - type: Transform - pos: 15.5,-43.5 + pos: -56.5,-26.5 parent: 2 - - uid: 7803 + - uid: 4534 components: - type: Transform - pos: 15.5,-42.5 + pos: -55.5,-26.5 parent: 2 - - uid: 7805 + - uid: 4535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-62.5 + pos: -54.5,-26.5 parent: 2 - - uid: 7811 + - uid: 4536 components: - type: Transform - pos: 26.5,-78.5 + pos: -55.5,-29.5 parent: 2 - - uid: 7815 + - uid: 4537 components: - type: Transform - pos: 27.5,-65.5 + pos: -54.5,-29.5 parent: 2 - - uid: 7821 + - uid: 4759 components: - type: Transform - pos: 15.5,-50.5 + rot: 1.5707963267948966 rad + pos: 0.5,23.5 parent: 2 - - uid: 7823 + - uid: 4760 components: - type: Transform - pos: 24.5,-62.5 + rot: 1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - - uid: 7825 + - uid: 4958 components: - type: Transform - pos: 13.5,-62.5 + rot: -1.5707963267948966 rad + pos: 5.5,25.5 parent: 2 - - uid: 7829 + - uid: 4959 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-53.5 + pos: 5.5,26.5 parent: 2 - - uid: 7838 + - uid: 5428 components: - type: Transform - pos: 13.5,-78.5 + pos: 24.5,13.5 parent: 2 - - uid: 7841 + - uid: 5429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-66.5 + pos: 24.5,14.5 parent: 2 - - uid: 7842 + - uid: 5456 components: - type: Transform - pos: 25.5,-79.5 + rot: 1.5707963267948966 rad + pos: 22.5,14.5 parent: 2 - - uid: 7843 + - uid: 5457 components: - type: Transform - pos: 11.5,-64.5 + rot: 1.5707963267948966 rad + pos: 22.5,13.5 parent: 2 - - uid: 7844 + - uid: 5527 components: - type: Transform - pos: 24.5,-66.5 + pos: 75.5,-15.5 parent: 2 - - uid: 7847 + - uid: 5540 components: - type: Transform - pos: 12.5,-66.5 + pos: 32.5,20.5 parent: 2 - - uid: 7850 + - uid: 5621 components: - type: Transform - pos: 17.5,-55.5 + rot: 3.141592653589793 rad + pos: 23.5,17.5 parent: 2 - - uid: 7851 + - uid: 5622 components: - type: Transform - pos: 13.5,-50.5 + rot: 3.141592653589793 rad + pos: 23.5,18.5 parent: 2 - - uid: 7852 + - uid: 5623 components: - type: Transform - pos: 24.5,-50.5 + rot: 3.141592653589793 rad + pos: 23.5,19.5 parent: 2 - - uid: 7853 + - uid: 5716 components: - type: Transform - pos: 17.5,-77.5 + rot: -1.5707963267948966 rad + pos: 34.5,22.5 parent: 2 - - uid: 7854 + - uid: 5717 components: - type: Transform - pos: 15.5,-77.5 + rot: -1.5707963267948966 rad + pos: 35.5,22.5 parent: 2 - - uid: 7857 + - uid: 5910 components: - type: Transform - pos: 21.5,-54.5 + rot: -1.5707963267948966 rad + pos: 55.5,-35.5 parent: 2 - - uid: 7860 + - uid: 5911 components: - type: Transform - pos: 24.5,-53.5 + rot: -1.5707963267948966 rad + pos: 54.5,-35.5 parent: 2 - - uid: 7863 + - uid: 6016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-66.5 + rot: 3.141592653589793 rad + pos: 42.5,10.5 parent: 2 - - uid: 7865 + - uid: 6018 components: - type: Transform - pos: 23.5,-54.5 + rot: 3.141592653589793 rad + pos: 46.5,10.5 parent: 2 - - uid: 7879 + - uid: 6582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-65.5 + rot: 3.141592653589793 rad + pos: 45.5,-7.5 parent: 2 - - uid: 7880 + - uid: 6584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-66.5 + rot: 3.141592653589793 rad + pos: 45.5,-4.5 parent: 2 - - uid: 7882 + - uid: 6585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-62.5 + rot: 3.141592653589793 rad + pos: 45.5,-1.5 parent: 2 - - uid: 7884 + - uid: 6586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-52.5 + rot: 3.141592653589793 rad + pos: 55.5,-1.5 parent: 2 - - uid: 7885 + - uid: 6588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-61.5 + rot: 3.141592653589793 rad + pos: 55.5,-7.5 parent: 2 - - uid: 7886 + - uid: 6596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-61.5 + pos: 63.5,4.5 parent: 2 - - uid: 7889 + - uid: 6604 components: - type: Transform - pos: 14.5,-61.5 + pos: 63.5,0.5 parent: 2 - - uid: 7891 + - uid: 6606 components: - type: Transform - pos: 22.5,-49.5 + rot: 1.5707963267948966 rad + pos: 50.5,-2.5 parent: 2 - - uid: 7892 + - uid: 6607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-39.5 + rot: 1.5707963267948966 rad + pos: 50.5,-3.5 parent: 2 - - uid: 7895 + - uid: 6608 components: - type: Transform - pos: 10.5,-41.5 + rot: 1.5707963267948966 rad + pos: 50.5,-5.5 parent: 2 - - uid: 7897 + - uid: 6903 components: - type: Transform - pos: 12.5,-41.5 + pos: 61.5,17.5 parent: 2 - - uid: 7900 + - uid: 6904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-41.5 + pos: 61.5,16.5 parent: 2 - - uid: 7903 + - uid: 6906 components: - type: Transform - pos: 13.5,-40.5 + pos: 60.5,17.5 parent: 2 - - uid: 7947 + - uid: 6909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,17.5 + pos: 61.5,15.5 parent: 2 - - uid: 7963 + - uid: 7044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 + pos: 57.5,-6.5 parent: 2 - - uid: 7964 + - uid: 7053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-48.5 + pos: 61.5,-3.5 parent: 2 - - uid: 7967 + - uid: 7097 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-50.5 + pos: 59.5,-15.5 parent: 2 - - uid: 7969 + - uid: 7098 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-44.5 + pos: 58.5,-15.5 parent: 2 - - uid: 7970 + - uid: 7099 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-43.5 + pos: 60.5,-15.5 parent: 2 - - uid: 7971 + - uid: 7143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-43.5 + pos: 57.5,-11.5 parent: 2 - - uid: 7990 + - uid: 7144 components: - type: Transform - pos: 24.5,-61.5 + pos: 58.5,-11.5 parent: 2 - - uid: 7997 + - uid: 7145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-33.5 + pos: 59.5,-11.5 parent: 2 - - uid: 8004 + - uid: 7166 components: - type: Transform - pos: -2.5,-37.5 + pos: 65.5,-26.5 parent: 2 - - uid: 8007 + - uid: 7172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-41.5 + pos: 66.5,-26.5 parent: 2 - - uid: 8012 + - uid: 7220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-55.5 + pos: 67.5,-13.5 parent: 2 - - uid: 8013 + - uid: 7221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-33.5 + pos: 67.5,-14.5 parent: 2 - - uid: 8015 + - uid: 7222 components: - type: Transform - pos: 25.5,-62.5 + pos: 71.5,-13.5 parent: 2 - - uid: 8018 + - uid: 7223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-38.5 + pos: 71.5,-14.5 parent: 2 - - uid: 8019 + - uid: 7256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-38.5 + pos: 71.5,-8.5 parent: 2 - - uid: 8022 + - uid: 7257 components: - type: Transform - pos: 27.5,-66.5 + pos: 71.5,-7.5 parent: 2 - - uid: 8040 + - uid: 7427 components: - type: Transform - pos: 15.5,-69.5 + pos: 44.5,16.5 parent: 2 - - uid: 8049 + - uid: 7616 components: - type: Transform - pos: 15.5,-67.5 + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 parent: 2 - - uid: 8050 + - uid: 7617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-60.5 + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 parent: 2 - - uid: 8051 + - uid: 7709 components: - type: Transform - pos: 24.5,-68.5 + rot: 1.5707963267948966 rad + pos: 26.5,-41.5 parent: 2 - - uid: 8052 + - uid: 7710 components: - type: Transform - pos: 24.5,-70.5 + rot: 1.5707963267948966 rad + pos: 27.5,-41.5 parent: 2 - - uid: 8058 + - uid: 7711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-66.5 + rot: 1.5707963267948966 rad + pos: 26.5,-46.5 parent: 2 - - uid: 8064 + - uid: 7712 components: - type: Transform - pos: 23.5,-74.5 + rot: 1.5707963267948966 rad + pos: 27.5,-46.5 parent: 2 - - uid: 8088 + - uid: 7777 components: - type: Transform - pos: -4.5,-37.5 + rot: -1.5707963267948966 rad + pos: 11.5,-40.5 parent: 2 - - uid: 8093 + - uid: 7779 components: - type: Transform - pos: -5.5,-37.5 + pos: 10.5,-37.5 parent: 2 - - uid: 8122 + - uid: 7996 components: - type: Transform - pos: 4.5,-43.5 + pos: 9.5,-37.5 parent: 2 - - uid: 8125 + - uid: 8000 components: - type: Transform - pos: 7.5,-43.5 + pos: 8.5,-37.5 parent: 2 - - uid: 8129 + - uid: 8135 components: - type: Transform - pos: 12.5,-36.5 + pos: 11.5,-37.5 parent: 2 - - uid: 8131 + - uid: 8139 components: - type: Transform - pos: 10.5,-36.5 + rot: -1.5707963267948966 rad + pos: 12.5,-40.5 parent: 2 - - uid: 8132 + - uid: 8554 components: - type: Transform - pos: 8.5,-36.5 + pos: 75.5,-11.5 parent: 2 - - uid: 8140 + - uid: 8753 components: - type: Transform - pos: 5.5,-44.5 + rot: 3.141592653589793 rad + pos: 45.5,12.5 parent: 2 - - uid: 8141 + - uid: 15813 components: - type: Transform - pos: 6.5,-44.5 + pos: -27.5,38.5 parent: 2 - - uid: 8144 + - uid: 15842 components: - type: Transform - pos: 6.5,-46.5 + pos: -28.5,38.5 parent: 2 - - uid: 8146 + - uid: 16259 components: - type: Transform - pos: 5.5,-47.5 + pos: -31.5,14.5 parent: 2 - - uid: 8155 + - uid: 16576 components: - type: Transform - pos: 5.5,-45.5 + rot: 3.141592653589793 rad + pos: 43.5,12.5 parent: 2 - - uid: 8156 + - uid: 17596 components: - type: Transform - pos: 14.5,-39.5 + rot: 1.5707963267948966 rad + pos: -20.5,13.5 parent: 2 - - uid: 8174 + - uid: 18460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,9.5 + pos: 57.5,-7.5 parent: 2 - - uid: 8202 + - uid: 20250 components: - type: Transform - pos: -2.5,-40.5 + rot: 3.141592653589793 rad + pos: 7.5,-48.5 parent: 2 - - uid: 8203 + - uid: 20606 components: - type: Transform - pos: -3.5,-42.5 + pos: 43.5,16.5 parent: 2 - - uid: 8342 + - uid: 20995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-41.5 + rot: 3.141592653589793 rad + pos: 91.5,-20.5 parent: 2 - - uid: 8491 + - uid: 20996 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-41.5 + pos: 90.5,-20.5 parent: 2 - - uid: 8519 + - uid: 21056 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-51.5 + pos: -34.5,-43.5 parent: 2 - - uid: 8523 + - uid: 21057 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-53.5 + pos: -34.5,-44.5 parent: 2 - - uid: 8707 + - uid: 21245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-27.5 - parent: 2 - - uid: 9095 + pos: 7.5,2.5 + parent: 21128 + - uid: 21246 components: - type: Transform - pos: 14.5,-67.5 - parent: 2 - - uid: 9098 + pos: 7.5,1.5 + parent: 21128 + - uid: 21247 components: - type: Transform - pos: 14.5,-74.5 - parent: 2 - - uid: 9100 + pos: 9.5,2.5 + parent: 21128 + - uid: 21248 components: - type: Transform - pos: 21.5,-77.5 + pos: 9.5,1.5 + parent: 21128 + - uid: 21455 + components: + - type: Transform + pos: 8.5,-48.5 parent: 2 - - uid: 9101 + - uid: 21550 components: - type: Transform - pos: 13.5,-67.5 + rot: -1.5707963267948966 rad + pos: 14.5,-65.5 parent: 2 - - uid: 9106 + - uid: 21552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-33.5 + pos: 27.5,-44.5 parent: 2 - - uid: 9107 +- proto: TableReinforcedGlass + entities: + - uid: 6925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-33.5 + pos: 58.5,18.5 parent: 2 - - uid: 9113 +- proto: TableStone + entities: + - uid: 2266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,11.5 + pos: -34.5,-20.5 parent: 2 - - uid: 9116 + - uid: 2267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,8.5 + pos: -34.5,-19.5 parent: 2 - - uid: 9123 +- proto: TableWood + entities: + - uid: 2269 components: - type: Transform - pos: -30.5,24.5 + pos: -13.5,3.5 parent: 2 - - uid: 9126 + - uid: 2271 components: - type: Transform - pos: -30.5,27.5 + pos: -13.5,0.5 parent: 2 - - uid: 9129 + - uid: 2272 components: - type: Transform - pos: -28.5,28.5 + pos: -13.5,2.5 parent: 2 - - uid: 9130 + - uid: 2273 components: - type: Transform - pos: -27.5,28.5 + pos: -13.5,-0.5 parent: 2 - - uid: 9132 + - uid: 2274 components: - type: Transform - pos: -27.5,30.5 + rot: 3.141592653589793 rad + pos: -16.5,7.5 parent: 2 - - uid: 9134 + - uid: 2277 components: - type: Transform - pos: -26.5,31.5 + pos: -17.5,-13.5 parent: 2 - - uid: 9136 + - uid: 2278 components: - type: Transform - pos: -24.5,31.5 + rot: 3.141592653589793 rad + pos: -19.5,-8.5 parent: 2 - - uid: 9138 + - uid: 2279 components: - type: Transform - pos: -27.5,25.5 + rot: 3.141592653589793 rad + pos: -20.5,-8.5 parent: 2 - - uid: 9141 + - uid: 2281 components: - type: Transform - pos: -30.5,30.5 + pos: -17.5,-17.5 parent: 2 - - uid: 9142 + - uid: 2282 components: - type: Transform - pos: -31.5,30.5 + pos: -17.5,-18.5 parent: 2 - - uid: 9145 + - uid: 2283 components: - type: Transform - pos: 84.5,-8.5 + pos: -19.5,-19.5 parent: 2 - - uid: 9152 + - uid: 2284 components: - type: Transform - pos: -27.5,33.5 + pos: -19.5,-20.5 parent: 2 - - uid: 9155 + - uid: 2285 components: - type: Transform - pos: -24.5,33.5 + pos: -17.5,-23.5 parent: 2 - - uid: 9191 + - uid: 2286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,36.5 + pos: -18.5,-23.5 parent: 2 - - uid: 9195 + - uid: 2287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,34.5 + pos: -21.5,-23.5 parent: 2 - - uid: 9206 + - uid: 2288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-19.5 + pos: -20.5,-23.5 parent: 2 - - uid: 9209 + - uid: 2289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-18.5 + rot: -1.5707963267948966 rad + pos: -37.5,-2.5 parent: 2 - - uid: 9210 + - uid: 2290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-18.5 + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 parent: 2 - - uid: 9215 + - uid: 2291 components: - type: Transform - pos: -39.5,-37.5 + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 parent: 2 - - uid: 10638 + - uid: 2292 components: - type: Transform - pos: 15.5,-68.5 + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 parent: 2 - - uid: 10640 + - uid: 2293 components: - type: Transform - pos: 22.5,-77.5 + rot: -1.5707963267948966 rad + pos: -36.5,-3.5 parent: 2 - - uid: 10641 + - uid: 2294 components: - type: Transform - pos: 23.5,-67.5 + rot: -1.5707963267948966 rad + pos: -37.5,-3.5 parent: 2 - - uid: 10643 + - uid: 2301 components: - type: Transform - pos: 14.5,-76.5 + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 parent: 2 - - uid: 10644 + - uid: 2302 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-55.5 + pos: -26.5,-1.5 parent: 2 - - uid: 10645 + - uid: 2303 components: - type: Transform - pos: 23.5,-71.5 + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 parent: 2 - - uid: 10647 + - uid: 2304 components: - type: Transform - pos: 14.5,-66.5 + rot: -1.5707963267948966 rad + pos: -27.5,-3.5 parent: 2 - - uid: 10649 + - uid: 2305 components: - type: Transform - pos: 14.5,-70.5 + rot: -1.5707963267948966 rad + pos: -26.5,-3.5 parent: 2 - - uid: 10652 + - uid: 2306 components: - type: Transform - pos: 25.5,-66.5 + rot: -1.5707963267948966 rad + pos: -27.5,-2.5 parent: 2 - - uid: 11665 + - uid: 2309 components: - type: Transform - pos: 76.5,-32.5 + pos: -35.5,-8.5 parent: 2 - - uid: 12255 + - uid: 2310 components: - type: Transform - pos: 43.5,19.5 + pos: -35.5,-9.5 parent: 2 - - uid: 12462 + - uid: 2311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-28.5 + pos: -35.5,-10.5 parent: 2 - - uid: 12832 + - uid: 2314 components: - type: Transform - pos: 11.5,-52.5 + pos: -29.5,-9.5 parent: 2 - - uid: 12833 + - uid: 2315 components: - type: Transform - pos: 17.5,-76.5 + pos: -29.5,-8.5 parent: 2 - - uid: 12835 + - uid: 2316 components: - type: Transform - pos: 15.5,-74.5 + pos: -30.5,-37.5 parent: 2 - - uid: 12836 + - uid: 2317 components: - type: Transform - pos: 15.5,-72.5 + rot: 1.5707963267948966 rad + pos: -26.5,-38.5 parent: 2 - - uid: 12839 + - uid: 2318 components: - type: Transform - pos: 20.5,-76.5 + pos: -26.5,-36.5 parent: 2 - - uid: 13730 + - uid: 2319 components: - type: Transform - pos: 77.5,-32.5 + pos: -31.5,-37.5 parent: 2 - - uid: 14199 + - uid: 3880 components: - type: Transform - pos: 63.5,27.5 + rot: 1.5707963267948966 rad + pos: -48.5,-21.5 parent: 2 - - uid: 14632 + - uid: 3881 components: - type: Transform - pos: -37.5,-42.5 + rot: 1.5707963267948966 rad + pos: -49.5,-21.5 parent: 2 - - uid: 14672 + - uid: 3882 components: - type: Transform - pos: -61.5,-33.5 + rot: 1.5707963267948966 rad + pos: -50.5,-21.5 parent: 2 - - uid: 14956 + - uid: 3883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,30.5 + rot: 1.5707963267948966 rad + pos: -50.5,-22.5 parent: 2 - - uid: 14959 + - uid: 3884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,30.5 + rot: 1.5707963267948966 rad + pos: -49.5,-22.5 parent: 2 - - uid: 14960 + - uid: 3885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,30.5 + rot: 1.5707963267948966 rad + pos: -48.5,-22.5 parent: 2 - - uid: 15010 + - uid: 3886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,23.5 + rot: 1.5707963267948966 rad + pos: -45.5,-22.5 parent: 2 - - uid: 15012 + - uid: 3887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,21.5 + rot: 1.5707963267948966 rad + pos: -46.5,-21.5 parent: 2 - - uid: 15039 + - uid: 3888 components: - type: Transform - pos: -24.5,39.5 + rot: 1.5707963267948966 rad + pos: -46.5,-22.5 parent: 2 - - uid: 15044 + - uid: 3889 components: - type: Transform - pos: -29.5,39.5 + rot: 1.5707963267948966 rad + pos: -45.5,-21.5 parent: 2 - - uid: 15048 + - uid: 3890 components: - type: Transform - pos: -30.5,34.5 + rot: 1.5707963267948966 rad + pos: -44.5,-21.5 parent: 2 - - uid: 15049 + - uid: 3891 components: - type: Transform - pos: -30.5,33.5 + rot: 1.5707963267948966 rad + pos: -44.5,-22.5 parent: 2 - - uid: 15051 + - uid: 4933 components: - type: Transform - pos: -20.5,38.5 + pos: -26.5,28.5 parent: 2 - - uid: 15067 + - uid: 5032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,39.5 + pos: -11.5,32.5 parent: 2 - - uid: 15069 + - uid: 5033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,39.5 + rot: 1.5707963267948966 rad + pos: -13.5,32.5 parent: 2 - - uid: 15070 + - uid: 5038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,38.5 + rot: 1.5707963267948966 rad + pos: -13.5,33.5 parent: 2 - - uid: 15074 + - uid: 5039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,34.5 + rot: 1.5707963267948966 rad + pos: -12.5,32.5 parent: 2 - - uid: 15075 + - uid: 5696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,33.5 + pos: 33.5,15.5 parent: 2 - - uid: 15077 + - uid: 5697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,33.5 + pos: 33.5,14.5 parent: 2 - - uid: 15079 + - uid: 6393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,38.5 + pos: -38.5,-60.5 parent: 2 - - uid: 15082 + - uid: 6396 components: - type: Transform - pos: 18.5,24.5 + pos: -56.5,-60.5 parent: 2 - - uid: 15197 + - uid: 6397 components: - type: Transform - pos: 71.5,-3.5 + pos: -57.5,-60.5 parent: 2 - - uid: 15200 + - uid: 6398 components: - type: Transform - pos: 71.5,-0.5 + pos: -57.5,-61.5 parent: 2 - - uid: 15208 + - uid: 6399 components: - type: Transform - pos: 71.5,3.5 + pos: -56.5,-61.5 parent: 2 - - uid: 15217 + - uid: 6400 components: - type: Transform - pos: 70.5,7.5 + pos: -57.5,-62.5 parent: 2 - - uid: 15219 + - uid: 6401 components: - type: Transform - pos: 68.5,7.5 + pos: -56.5,-62.5 parent: 2 - - uid: 15244 + - uid: 6402 components: - type: Transform - pos: 67.5,22.5 + pos: -37.5,-60.5 parent: 2 - - uid: 15245 + - uid: 6403 components: - type: Transform - pos: 66.5,22.5 + pos: -38.5,-61.5 parent: 2 - - uid: 15397 + - uid: 6404 components: - type: Transform - pos: 21.5,-39.5 + pos: -37.5,-61.5 parent: 2 - - uid: 15590 + - uid: 6405 components: - type: Transform - pos: 7.5,-45.5 + pos: -38.5,-62.5 parent: 2 - - uid: 15599 + - uid: 6406 components: - type: Transform - pos: 43.5,17.5 + pos: -37.5,-62.5 parent: 2 - - uid: 15847 + - uid: 6738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-70.5 + rot: 3.141592653589793 rad + pos: 54.5,11.5 parent: 2 - - uid: 15848 + - uid: 6739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-69.5 + rot: 3.141592653589793 rad + pos: 54.5,10.5 parent: 2 - - uid: 15850 + - uid: 7417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-68.5 + pos: 70.5,-20.5 parent: 2 - - uid: 15859 + - uid: 7418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-67.5 + pos: 71.5,-20.5 parent: 2 - - uid: 15876 + - uid: 9159 components: - type: Transform - pos: -17.5,41.5 + pos: -25.5,28.5 parent: 2 - - uid: 15883 + - uid: 13487 components: - type: Transform - pos: -11.5,42.5 + pos: 40.5,-30.5 parent: 2 - - uid: 15885 + - uid: 14062 components: - type: Transform - pos: -10.5,41.5 + pos: -35.5,-15.5 parent: 2 - - uid: 15942 + - uid: 14784 components: - type: Transform - pos: -43.5,18.5 + pos: -30.5,-15.5 parent: 2 - - uid: 15946 + - uid: 14991 components: - type: Transform - pos: -44.5,15.5 + rot: -1.5707963267948966 rad + pos: -35.5,23.5 parent: 2 - - uid: 16002 + - uid: 14994 components: - type: Transform - pos: -21.5,-45.5 + rot: -1.5707963267948966 rad + pos: -38.5,28.5 parent: 2 - - uid: 16004 + - uid: 14995 components: - type: Transform - pos: -19.5,-45.5 + rot: -1.5707963267948966 rad + pos: -34.5,22.5 parent: 2 - - uid: 16023 + - uid: 14996 components: - type: Transform - pos: -23.5,-44.5 + rot: -1.5707963267948966 rad + pos: -34.5,23.5 parent: 2 - - uid: 16025 + - uid: 14997 components: - type: Transform - pos: -20.5,-45.5 + rot: -1.5707963267948966 rad + pos: -34.5,28.5 parent: 2 - - uid: 16090 + - uid: 14998 components: - type: Transform - pos: 63.5,28.5 + rot: -1.5707963267948966 rad + pos: -37.5,23.5 parent: 2 - - uid: 16091 + - uid: 14999 components: - type: Transform - pos: 60.5,28.5 + rot: -1.5707963267948966 rad + pos: -36.5,23.5 parent: 2 - - uid: 16095 + - uid: 15020 components: - type: Transform - pos: 58.5,28.5 + rot: 1.5707963267948966 rad + pos: -36.5,21.5 parent: 2 - - uid: 16099 + - uid: 15921 components: - type: Transform - pos: 55.5,27.5 + pos: -15.5,41.5 parent: 2 - - uid: 16154 + - uid: 15922 components: - type: Transform - pos: 71.5,-36.5 + pos: -12.5,41.5 parent: 2 - - uid: 16167 + - uid: 16232 components: - type: Transform - pos: -37.5,-46.5 + pos: 81.5,-22.5 parent: 2 - - uid: 16170 + - uid: 16233 components: - type: Transform - pos: 84.5,-31.5 + pos: 81.5,-23.5 parent: 2 - - uid: 16177 + - uid: 16444 components: - type: Transform - pos: 84.5,-24.5 + pos: -30.5,-45.5 parent: 2 - - uid: 16262 + - uid: 16500 components: - type: Transform - pos: 20.5,-39.5 + pos: -66.5,-24.5 parent: 2 - - uid: 16308 + - uid: 17257 components: - type: Transform - pos: 78.5,-4.5 + pos: 65.5,-52.5 parent: 2 - - uid: 16312 + - uid: 20418 components: - type: Transform - pos: 80.5,-4.5 + pos: 81.5,-35.5 parent: 2 - - uid: 16314 +- proto: TargetClown + entities: + - uid: 16841 components: - type: Transform - pos: 83.5,-5.5 + pos: 9.5,39.5 parent: 2 - - uid: 16316 +- proto: TargetDarts + entities: + - uid: 21576 components: - type: Transform - pos: 83.5,-7.5 + pos: -36.5,27.5 parent: 2 - - uid: 16337 +- proto: TargetSyndicate + entities: + - uid: 21066 components: - type: Transform - pos: 53.5,25.5 + pos: -36.5,-43.5 parent: 2 - - uid: 16343 +- proto: TelecomServer + entities: + - uid: 7431 components: - type: Transform - pos: 54.5,25.5 + pos: 68.5,-29.5 parent: 2 - - uid: 16346 +- proto: TelecomServerFilledCargo + entities: + - uid: 14231 components: - type: Transform - pos: 49.5,25.5 + pos: 24.5,-43.5 parent: 2 - - uid: 16390 +- proto: TelecomServerFilledCommand + entities: + - uid: 14232 components: - type: Transform - pos: 17.5,26.5 + pos: 58.5,-32.5 parent: 2 - - uid: 16423 + - uid: 14239 components: - type: Transform - pos: -26.5,-44.5 + pos: 24.5,-44.5 parent: 2 - - uid: 16429 +- proto: TelecomServerFilledCommon + entities: + - uid: 14234 components: - type: Transform - pos: 16.5,28.5 + pos: 25.5,-41.5 parent: 2 - - uid: 16430 +- proto: TelecomServerFilledEngineering + entities: + - uid: 14237 components: - type: Transform - pos: -31.5,-46.5 + pos: 25.5,-46.5 parent: 2 - - uid: 16457 +- proto: TelecomServerFilledMedical + entities: + - uid: 14233 components: - type: Transform - pos: -59.5,-37.5 + pos: 24.5,-46.5 parent: 2 - - uid: 16458 +- proto: TelecomServerFilledScience + entities: + - uid: 14238 components: - type: Transform - pos: -58.5,-37.5 + pos: 25.5,-43.5 parent: 2 - - uid: 16460 +- proto: TelecomServerFilledSecurity + entities: + - uid: 14236 components: - type: Transform - pos: -56.5,-37.5 + pos: 25.5,-44.5 parent: 2 - - uid: 16462 +- proto: TelecomServerFilledService + entities: + - uid: 14235 components: - type: Transform - pos: -54.5,-37.5 + pos: 24.5,-41.5 parent: 2 - - uid: 16488 +- proto: Thruster + entities: + - uid: 15142 components: - type: Transform - pos: -68.5,-26.5 + pos: -33.5,34.5 parent: 2 - - uid: 16490 + - uid: 15143 components: - type: Transform - pos: -68.5,-24.5 + pos: -33.5,35.5 parent: 2 - - uid: 16494 + - uid: 15144 components: - type: Transform - pos: -65.5,-22.5 + pos: -32.5,34.5 parent: 2 - - uid: 16495 + - uid: 15145 components: - type: Transform - pos: -67.5,-22.5 + pos: -32.5,35.5 parent: 2 - - uid: 16510 + - uid: 21205 components: - type: Transform - pos: 16.5,30.5 - parent: 2 - - uid: 16511 + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 21128 + - uid: 21206 components: - type: Transform - pos: 16.5,31.5 - parent: 2 - - uid: 16518 + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 21128 +- proto: TintedWindow + entities: + - uid: 2021 components: - type: Transform - pos: 48.5,22.5 + pos: 47.5,-4.5 parent: 2 - - uid: 16520 + - uid: 2022 components: - type: Transform - pos: 46.5,22.5 + pos: 53.5,-7.5 parent: 2 - - uid: 16570 + - uid: 2023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,43.5 + pos: 47.5,-7.5 parent: 2 - - uid: 16572 + - uid: 2024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,43.5 + pos: 47.5,-1.5 parent: 2 - - uid: 16574 + - uid: 2025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,43.5 + pos: 53.5,-1.5 parent: 2 - - uid: 16604 + - uid: 2026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-43.5 + pos: -22.5,-41.5 parent: 2 - - uid: 16613 + - uid: 6887 components: - type: Transform - pos: 85.5,-23.5 + rot: 1.5707963267948966 rad + pos: 61.5,0.5 parent: 2 - - uid: 16622 + - uid: 6888 components: - type: Transform - pos: 17.5,37.5 + rot: 1.5707963267948966 rad + pos: 61.5,4.5 parent: 2 - - uid: 16624 +- proto: ToiletEmpty + entities: + - uid: 2320 components: - type: Transform - pos: 17.5,35.5 + rot: 1.5707963267948966 rad + pos: 35.5,-22.5 parent: 2 - - uid: 16626 + - uid: 5006 components: - type: Transform - pos: 17.5,34.5 + rot: 1.5707963267948966 rad + pos: -6.5,40.5 parent: 2 - - uid: 16713 + - uid: 5286 components: - type: Transform - pos: 22.5,-75.5 + rot: -1.5707963267948966 rad + pos: 3.5,40.5 parent: 2 - - uid: 16734 + - uid: 8225 components: - type: Transform - pos: 23.5,-70.5 + rot: -1.5707963267948966 rad + pos: 17.5,23.5 parent: 2 - - uid: 16773 + - uid: 8235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-42.5 + pos: 17.5,25.5 parent: 2 - - uid: 16774 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 4593 components: - type: Transform - pos: 55.5,-42.5 + pos: 45.5,-27.5 parent: 2 - - uid: 16775 +- proto: ToolboxArtisticFilled + entities: + - uid: 5117 components: - type: Transform - pos: 55.5,-41.5 + pos: -34.515057,-20.462738 parent: 2 - - uid: 16790 +- proto: ToolboxElectricalFilled + entities: + - uid: 4370 components: - type: Transform - pos: 62.5,-37.5 + pos: 36.492764,-3.2268338 parent: 2 - - uid: 16794 + - uid: 16124 components: - type: Transform - pos: 66.5,-37.5 + pos: 1.5326661,-19.32547 parent: 2 - - uid: 16801 + - uid: 22353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-40.5 + pos: 17.546753,-62.23559 parent: 2 - - uid: 16813 +- proto: ToolboxEmergencyFilled + entities: + - uid: 2322 components: - type: Transform - pos: 43.5,-57.5 + pos: 1.4969568,-19.241749 parent: 2 - - uid: 16822 + - uid: 4369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-26.5 + pos: 36.51111,-2.9332993 parent: 2 - - uid: 16828 +- proto: ToolboxGoldFilled + entities: + - uid: 5914 components: - type: Transform - pos: 30.5,-52.5 + pos: 54.499077,-35.417862 parent: 2 - - uid: 16852 +- proto: ToolboxMechanical + entities: + - uid: 22354 components: - type: Transform - pos: 5.5,56.5 + pos: 17.546753,-62.492435 parent: 2 - - uid: 16854 +- proto: ToolboxMechanicalFilled + entities: + - uid: 2323 components: - type: Transform - pos: 6.5,55.5 + pos: 1.5282068,-19.507374 parent: 2 - - uid: 16856 + - uid: 4371 components: - type: Transform - pos: -5.5,55.5 + pos: 36.51111,-3.538714 parent: 2 - - uid: 16859 + - uid: 5747 components: - type: Transform - pos: -9.5,51.5 + pos: 28.502048,12.539796 parent: 2 - - uid: 16862 +- proto: ToyFigurineClown + entities: + - uid: 2324 components: - type: Transform - pos: -6.5,51.5 + pos: -20.040586,-13.42651 parent: 2 - - uid: 17018 +- proto: ToyFigurineFootsoldier + entities: + - uid: 21063 components: - type: Transform - pos: 24.5,-67.5 + pos: -34.32448,-43.488884 parent: 2 - - uid: 17020 +- proto: ToyFigurineNukieCommander + entities: + - uid: 5942 components: - type: Transform - pos: 24.5,-74.5 + pos: 38.483326,-38.004993 parent: 2 - - uid: 17070 +- proto: ToyFigurineNukieElite + entities: + - uid: 21061 components: - type: Transform - pos: 39.5,-52.5 + pos: -34.63432,-43.333965 parent: 2 - - uid: 17071 +- proto: ToyFigurinePassenger + entities: + - uid: 2325 components: - type: Transform - pos: 49.5,-56.5 + pos: -20.274961,-14.23901 parent: 2 - - uid: 17072 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 2326 components: - type: Transform - pos: 55.5,-48.5 + pos: -19.618711,-14.223385 parent: 2 - - uid: 17073 +- proto: ToyNuke + entities: + - uid: 2327 components: - type: Transform - pos: 61.5,-56.5 + pos: -19.44582,-13.477165 parent: 2 - - uid: 17074 +- proto: ToyRubberDuck + entities: + - uid: 1971 components: - type: Transform - pos: 64.5,-48.5 + pos: 45.5,-30.5 parent: 2 - - uid: 17197 + - uid: 5256 components: - type: Transform - pos: 66.5,-35.5 + pos: 0.7634096,47.159733 parent: 2 - - uid: 17202 +- proto: ToySpawner + entities: + - uid: 14225 components: - type: Transform - pos: 64.5,-49.5 + pos: 55.5,-25.5 parent: 2 - - uid: 17209 +- proto: TrainingBomb + entities: + - uid: 2135 components: - type: Transform - pos: 67.5,-48.5 + pos: -5.5,32.5 parent: 2 - - uid: 17210 +- proto: TrashBag + entities: + - uid: 5273 components: - type: Transform - pos: 65.5,-48.5 + pos: -4.987312,48.64716 parent: 2 - - uid: 17211 +- proto: TrashBakedBananaPeel + entities: + - uid: 16479 components: - type: Transform - pos: 66.5,-48.5 + pos: -59.62266,-35.23038 parent: 2 - - uid: 17232 + - uid: 16480 components: - type: Transform - pos: 64.5,-37.5 + pos: -59.42697,-35.426067 parent: 2 - - uid: 17247 +- proto: TrashBananaPeel + entities: + - uid: 2328 components: - type: Transform - pos: 67.5,-49.5 + pos: -27.617392,-17.536655 parent: 2 - - uid: 17327 +- proto: trayScanner + entities: + - uid: 21861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-38.5 + pos: 58.334652,-7.458692 parent: 2 - - uid: 17354 +- proto: TwoWayLever + entities: + - uid: 5553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-29.5 + pos: 30.5,23.5 parent: 2 - - uid: 18469 + - type: DeviceLinkSource + linkedPorts: + 5554: + - Left: Forward + - Right: Reverse + - Middle: Off + 5510: + - Left: Forward + - Right: Reverse + - Middle: Off + 7406: + - Left: Forward + - Right: Reverse + - Middle: Off + 5478: + - Left: Forward + - Right: Reverse + - Middle: Off + 5475: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 7940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-6.5 + pos: -10.5,-39.5 parent: 2 - - uid: 18470 + - type: DeviceLinkSource + linkedPorts: + 7915: + - Left: Forward + - Right: Reverse + - Middle: Off + 2696: + - Left: Forward + - Right: Reverse + - Middle: Off + 9233: + - Left: Forward + - Right: Reverse + - Middle: Off + 20107: + - Left: Forward + - Right: Reverse + - Middle: Off + 7905: + - Left: Forward + - Right: Reverse + - Middle: Off + 16910: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 15603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-7.5 + pos: 24.5,23.5 parent: 2 - - uid: 18475 + - type: DeviceLinkSource + linkedPorts: + 8553: + - Left: Forward + - Right: Reverse + - Middle: Off + 17528: + - Left: Forward + - Right: Reverse + - Middle: Off + 17529: + - Left: Forward + - Right: Reverse + - Middle: Off + 17530: + - Left: Forward + - Right: Reverse + - Middle: Off + 17531: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 17334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-4.5 + pos: 33.5,19.5 parent: 2 - - uid: 18579 + - type: DeviceLinkSource + linkedPorts: + 5714: + - Left: Reverse + - Right: Forward + - Middle: Off + 8321: + - Left: Reverse + - Right: Forward + - Middle: Off + 5732: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 20106 components: - type: Transform - pos: 15.5,-75.5 + pos: -11.5,-39.5 parent: 2 - - uid: 19151 + - type: DeviceLinkSource + linkedPorts: + 7916: + - Left: Forward + - Right: Reverse + - Middle: Off + 7913: + - Left: Forward + - Right: Reverse + - Middle: Off + 8665: + - Left: Forward + - Right: Reverse + - Middle: Off + 7912: + - Left: Forward + - Right: Reverse + - Middle: Off + 7911: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 15086 components: - type: Transform - pos: 19.5,-76.5 + pos: -3.5,-38.5 parent: 2 - - uid: 20088 + - uid: 16136 components: - type: Transform - pos: 16.5,-75.5 + pos: 60.5,26.5 parent: 2 - - uid: 20089 + - uid: 21199 components: - type: Transform - pos: 23.5,-75.5 - parent: 2 - - uid: 20097 + pos: 2.5,-8.5 + parent: 21128 + - uid: 21200 components: - type: Transform - pos: 22.5,-76.5 - parent: 2 - - uid: 20201 + pos: 8.5,-7.5 + parent: 21128 + - uid: 21201 components: - type: Transform - pos: 19.5,-77.5 - parent: 2 - - uid: 20303 + pos: 10.5,4.5 + parent: 21128 + - uid: 21202 components: - type: Transform - pos: 15.5,38.5 + pos: 8.5,3.5 + parent: 21128 +- proto: UniformPrinter + entities: + - uid: 2329 + components: + - type: Transform + pos: 40.5,-25.5 parent: 2 - - uid: 20356 +- proto: UniformShortsRedWithTop + entities: + - uid: 21032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,39.5 + pos: -30.471287,-24.425285 parent: 2 - - uid: 20357 +- proto: Vaccinator + entities: + - uid: 6913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,42.5 + pos: 58.5,17.5 parent: 2 - - uid: 20360 +- proto: VendingBarDrobe + entities: + - uid: 2331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,43.5 + pos: -17.5,7.5 parent: 2 - - uid: 20362 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 2332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,43.5 + pos: 14.5,-18.5 parent: 2 - - uid: 20364 +- proto: VendingMachineBooze + entities: + - uid: 14972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,42.5 + pos: -37.5,21.5 parent: 2 - - uid: 20367 + - uid: 20296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,39.5 + pos: -15.5,-0.5 parent: 2 - - uid: 20398 +- proto: VendingMachineCargoDrobe + entities: + - uid: 16906 components: - type: Transform - pos: 83.5,-36.5 + pos: 23.5,22.5 parent: 2 - - uid: 20400 +- proto: VendingMachineCart + entities: + - uid: 2333 components: - type: Transform - pos: 84.5,-35.5 + pos: 39.5,-25.5 parent: 2 - - uid: 20402 +- proto: VendingMachineChapel + entities: + - uid: 2334 components: - type: Transform - pos: 84.5,-33.5 + pos: -30.5,-36.5 parent: 2 - - uid: 20405 +- proto: VendingMachineChefDrobe + entities: + - uid: 2335 components: - type: Transform - pos: 79.5,-34.5 + pos: -18.5,14.5 parent: 2 - - uid: 20406 +- proto: VendingMachineChefvend + entities: + - uid: 2336 components: - type: Transform - pos: 79.5,-33.5 + pos: -18.5,13.5 parent: 2 - - uid: 20529 +- proto: VendingMachineChemDrobe + entities: + - uid: 5996 components: - type: Transform - pos: -41.5,22.5 + pos: 41.5,12.5 parent: 2 - - uid: 20531 +- proto: VendingMachineChemicals + entities: + - uid: 711 components: - type: Transform - pos: -42.5,21.5 + pos: 41.5,13.5 parent: 2 - - uid: 20533 +- proto: VendingMachineCigs + entities: + - uid: 2337 components: - type: Transform - pos: -44.5,22.5 + pos: -39.5,-24.5 parent: 2 - - uid: 20536 + - uid: 4170 components: - type: Transform - pos: -44.5,24.5 + pos: 24.5,-33.5 parent: 2 - - uid: 20879 + - uid: 4960 components: - type: Transform - pos: 87.5,-10.5 + pos: 5.5,28.5 parent: 2 - - uid: 20883 + - uid: 8214 components: - type: Transform - pos: 89.5,-10.5 + pos: 41.5,-6.5 parent: 2 - - uid: 20889 + - uid: 16144 components: - type: Transform - pos: 91.5,-10.5 + pos: 13.5,-33.5 parent: 2 - - uid: 20902 + - uid: 20607 components: - type: Transform - pos: 93.5,-16.5 + pos: -21.5,-4.5 parent: 2 - - uid: 20924 +- proto: VendingMachineClothing + entities: + - uid: 1593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-21.5 + pos: 38.5,0.5 parent: 2 - - uid: 20925 + - uid: 2340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-21.5 + pos: -38.5,-13.5 parent: 2 - - uid: 20930 + - uid: 20610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-21.5 + pos: -21.5,-3.5 parent: 2 - - uid: 20932 +- proto: VendingMachineCoffee + entities: + - uid: 2341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-23.5 + pos: -17.5,-15.5 parent: 2 - - uid: 20935 + - uid: 2342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-23.5 + pos: -28.5,-24.5 parent: 2 - - uid: 21398 + - uid: 4167 components: - type: Transform - pos: -21.5,-48.5 + pos: 23.5,-33.5 parent: 2 - - uid: 21453 +- proto: VendingMachineCondiments + entities: + - uid: 2343 components: - type: Transform - pos: -64.5,-33.5 + pos: -23.5,14.5 parent: 2 - - uid: 21460 +- proto: VendingMachineCuraDrobe + entities: + - uid: 1555 components: - type: Transform - pos: 24.5,-76.5 + pos: -20.5,-10.5 parent: 2 - - uid: 21461 +- proto: VendingMachineDetDrobe + entities: + - uid: 9177 components: - type: Transform - pos: 14.5,-71.5 + pos: -26.5,25.5 parent: 2 - - uid: 21463 +- proto: VendingMachineDinnerware + entities: + - uid: 2344 components: - type: Transform - pos: 15.5,-62.5 + pos: -18.5,12.5 parent: 2 - - uid: 21525 +- proto: VendingMachineEngiDrobe + entities: + - uid: 2345 components: - type: Transform - pos: 24.5,-72.5 + pos: -9.5,-23.5 parent: 2 - - uid: 21526 +- proto: VendingMachineEngivend + entities: + - uid: 2346 components: - type: Transform - pos: 24.5,-73.5 + pos: -8.5,-23.5 parent: 2 - - uid: 21528 +- proto: VendingMachineGames + entities: + - uid: 2347 components: - type: Transform - pos: 11.5,-66.5 + pos: -17.5,-12.5 parent: 2 - - uid: 21587 + - uid: 5167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-49.5 + pos: -6.5,45.5 parent: 2 - - uid: 21588 +- proto: VendingMachineHydrobe + entities: + - uid: 14630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-50.5 + pos: -38.5,11.5 parent: 2 - - uid: 21589 +- proto: VendingMachineJaniDrobe + entities: + - uid: 2349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-49.5 + pos: -18.5,-25.5 parent: 2 - - uid: 21671 +- proto: VendingMachineLawDrobe + entities: + - uid: 4501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,18.5 + pos: -44.5,-13.5 parent: 2 - - uid: 21748 +- proto: VendingMachineMedical + entities: + - uid: 6690 components: - type: Transform - pos: 42.5,16.5 + pos: 50.5,-4.5 parent: 2 - - uid: 22006 + - uid: 6691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-59.5 + pos: 48.5,5.5 parent: 2 - - uid: 22038 +- proto: VendingMachineMediDrobe + entities: + - uid: 6692 components: - type: Transform - pos: 20.5,-71.5 + pos: 54.5,4.5 parent: 2 - - uid: 22041 +- proto: VendingMachineNutri + entities: + - uid: 16120 components: - type: Transform - pos: 18.5,-71.5 + pos: -29.5,17.5 parent: 2 - - uid: 22042 +- proto: VendingMachineRoboDrobe + entities: + - uid: 7102 components: - type: Transform - pos: 20.5,-74.5 + pos: 60.5,-26.5 parent: 2 - - uid: 22043 +- proto: VendingMachineRobotics + entities: + - uid: 7161 components: - type: Transform - pos: 18.5,-74.5 + pos: 60.5,-25.5 parent: 2 - - uid: 22044 +- proto: VendingMachineSalvage + entities: + - uid: 5705 components: - type: Transform - pos: 19.5,-74.5 + pos: 33.5,22.5 parent: 2 - - uid: 22174 +- proto: VendingMachineSciDrobe + entities: + - uid: 4277 components: - type: Transform - pos: 18.5,-73.5 + pos: 67.5,-10.5 parent: 2 - - uid: 22177 +- proto: VendingMachineSec + entities: + - uid: 5051 components: - type: Transform - pos: 20.5,-73.5 + pos: -4.5,34.5 parent: 2 - - uid: 22448 +- proto: VendingMachineSecDrobe + entities: + - uid: 5052 components: - type: Transform - pos: -63.5,-33.5 + pos: -4.5,33.5 parent: 2 -- proto: WallReinforcedRust +- proto: VendingMachineSeeds entities: - - uid: 597 + - uid: 15399 components: - type: Transform - pos: 14.5,-73.5 + pos: -30.5,17.5 parent: 2 - - uid: 2330 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 5210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-42.5 + pos: -3.5,52.5 parent: 2 - - uid: 2368 + - uid: 16332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-42.5 + pos: 80.5,-7.5 parent: 2 - - uid: 2370 +- proto: VendingMachineSustenance + entities: + - uid: 5168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-43.5 + pos: -6.5,46.5 parent: 2 - - uid: 2372 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 2353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-41.5 + pos: 23.5,-20.5 parent: 2 - - uid: 2374 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 7615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,11.5 + pos: 19.5,-38.5 parent: 2 - - uid: 2376 + - uid: 8982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 + pos: 36.5,22.5 parent: 2 - - uid: 2379 + - uid: 15147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 + pos: -31.5,35.5 parent: 2 - - uid: 2384 + - uid: 20608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 + pos: -9.5,-25.5 parent: 2 - - uid: 2385 +- proto: VendingMachineTheater + entities: + - uid: 2354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 + pos: -38.5,-12.5 parent: 2 - - uid: 2387 + - uid: 2355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,11.5 + pos: -36.5,7.5 parent: 2 - - uid: 2390 + - uid: 4356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,11.5 + pos: 39.5,-0.5 parent: 2 - - uid: 2392 +- proto: VendingMachineVendomat + entities: + - uid: 1352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,11.5 + pos: -3.5,-23.5 parent: 2 - - uid: 2394 + - uid: 2890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 + pos: 37.5,0.5 parent: 2 - - uid: 2397 +- proto: VendingMachineViroDrobe + entities: + - uid: 6912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,11.5 + pos: 61.5,14.5 parent: 2 - - uid: 2399 +- proto: VendingMachineWinter + entities: + - uid: 2358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,9.5 + pos: -38.5,-14.5 parent: 2 - - uid: 2402 + - uid: 4357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,7.5 + pos: 39.5,-1.5 parent: 2 - - uid: 2404 +- proto: VendingMachineYouTool + entities: + - uid: 2359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 + pos: -7.5,-23.5 parent: 2 - - uid: 2407 + - uid: 4354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,2.5 + pos: 36.5,0.5 parent: 2 - - uid: 2410 +- proto: WallmountTelevision + entities: + - uid: 545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 5.5,22.5 parent: 2 - - uid: 2412 + - uid: 8920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 + pos: -19.5,22.5 parent: 2 - - uid: 2413 + - uid: 8921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 + rot: -1.5707963267948966 rad + pos: -40.5,5.5 parent: 2 - - uid: 2416 + - uid: 8922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 + pos: -34.5,-23.5 parent: 2 - - uid: 2418 + - uid: 21745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-10.5 + pos: -10.5,-32.5 parent: 2 - - uid: 2420 +- proto: WallPlastic + entities: + - uid: 2360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + pos: -30.5,-16.5 parent: 2 - - uid: 2424 + - uid: 2361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-10.5 + pos: -27.5,-16.5 parent: 2 - - uid: 2426 + - uid: 2362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-10.5 + pos: -29.5,-16.5 parent: 2 - - uid: 2427 + - uid: 2363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-10.5 + pos: -30.5,-17.5 parent: 2 - - uid: 2429 + - uid: 2364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 + pos: -30.5,-18.5 parent: 2 - - uid: 2430 + - uid: 2365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 + pos: -30.5,-19.5 parent: 2 - - uid: 2433 + - uid: 2366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 + pos: -30.5,-20.5 parent: 2 - - uid: 2435 +- proto: WallReinforced + entities: + - uid: 48 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-10.5 + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 parent: 2 - - uid: 2436 + - uid: 103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-10.5 + rot: -1.5707963267948966 rad + pos: 54.5,-43.5 parent: 2 - - uid: 2437 + - uid: 851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 + rot: -1.5707963267948966 rad + pos: 6.5,-50.5 parent: 2 - - uid: 2439 + - uid: 1084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 + pos: -38.5,-43.5 parent: 2 - - uid: 2440 + - uid: 1447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 + pos: -62.5,-21.5 parent: 2 - - uid: 2442 + - uid: 2002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 + pos: 50.5,-42.5 parent: 2 - - uid: 2443 + - uid: 2012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,4.5 + pos: 37.5,-31.5 parent: 2 - - uid: 2448 + - uid: 2035 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,3.5 + pos: -55.5,5.5 parent: 2 - - uid: 2449 + - uid: 2037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,9.5 + pos: -55.5,-0.5 parent: 2 - - uid: 2450 + - uid: 2106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,7.5 + rot: -1.5707963267948966 rad + pos: 56.5,-43.5 parent: 2 - - uid: 2452 + - uid: 2367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 + pos: -8.5,11.5 parent: 2 - - uid: 2457 + - uid: 2369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 + pos: -9.5,11.5 parent: 2 - - uid: 2458 + - uid: 2371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 + pos: -6.5,11.5 parent: 2 - - uid: 2459 + - uid: 2373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 + pos: -4.5,11.5 parent: 2 - - uid: 2461 + - uid: 2375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 + pos: -3.5,11.5 parent: 2 - - uid: 2463 + - uid: 2377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 + pos: -1.5,11.5 parent: 2 - - uid: 2466 + - uid: 2378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-11.5 + pos: 0.5,11.5 parent: 2 - - uid: 2467 + - uid: 2380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-13.5 + pos: 2.5,11.5 parent: 2 - - uid: 2468 + - uid: 2381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-15.5 + pos: 3.5,11.5 parent: 2 - - uid: 2472 + - uid: 2382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-16.5 + pos: 4.5,11.5 parent: 2 - - uid: 2473 + - uid: 2383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-16.5 + pos: 7.5,11.5 parent: 2 - - uid: 2474 + - uid: 2386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-12.5 + pos: 9.5,11.5 parent: 2 - - uid: 2476 + - uid: 2388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-12.5 + pos: 10.5,11.5 parent: 2 - - uid: 2479 + - uid: 2389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-11.5 + pos: 6.5,11.5 parent: 2 - - uid: 2481 + - uid: 2391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-10.5 + pos: 11.5,10.5 parent: 2 - - uid: 2483 + - uid: 2393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 + pos: 11.5,8.5 parent: 2 - - uid: 2485 + - uid: 2395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 + pos: 11.5,6.5 parent: 2 - - uid: 2489 + - uid: 2396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 + pos: 11.5,5.5 parent: 2 - - uid: 2492 + - uid: 2398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 + pos: 11.5,3.5 parent: 2 - - uid: 2495 + - uid: 2400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 + pos: 11.5,1.5 parent: 2 - - uid: 2496 + - uid: 2401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 + pos: 11.5,0.5 parent: 2 - - uid: 2500 + - uid: 2403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 + pos: 11.5,-1.5 parent: 2 - - uid: 2503 + - uid: 2405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,11.5 + pos: 11.5,-3.5 parent: 2 - - uid: 2505 + - uid: 2406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,13.5 + pos: 11.5,-4.5 parent: 2 - - uid: 2508 + - uid: 2408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 + pos: 11.5,-6.5 parent: 2 - - uid: 2510 + - uid: 2409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,13.5 + pos: 11.5,-7.5 parent: 2 - - uid: 2512 + - uid: 2411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,13.5 + pos: 11.5,-9.5 parent: 2 - - uid: 2516 + - uid: 2414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 + pos: 9.5,-10.5 parent: 2 - - uid: 2518 + - uid: 2415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,13.5 + pos: 8.5,-10.5 parent: 2 - - uid: 2521 + - uid: 2417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,13.5 + pos: 6.5,-10.5 parent: 2 - - uid: 2524 + - uid: 2419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,13.5 + pos: 4.5,-10.5 parent: 2 - - uid: 2527 + - uid: 2421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,13.5 + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 parent: 2 - - uid: 2529 + - uid: 2422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,13.5 + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 parent: 2 - - uid: 2531 + - uid: 2423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,13.5 + pos: -2.5,-10.5 parent: 2 - - uid: 2533 + - uid: 2425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,10.5 + pos: -4.5,-10.5 parent: 2 - - uid: 2534 + - uid: 2428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,8.5 + pos: -5.5,-12.5 parent: 2 - - uid: 2535 + - uid: 2431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,6.5 + pos: -10.5,-10.5 parent: 2 - - uid: 2538 + - uid: 2432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,4.5 + pos: -10.5,-8.5 parent: 2 - - uid: 2540 + - uid: 2434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 + pos: -10.5,-5.5 parent: 2 - - uid: 2542 + - uid: 2438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-0.5 + pos: -10.5,-3.5 parent: 2 - - uid: 2545 + - uid: 2441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-3.5 + pos: -10.5,5.5 parent: 2 - - uid: 2546 + - uid: 2444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 + pos: -10.5,8.5 parent: 2 - - uid: 2548 + - uid: 2445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 + pos: -10.5,10.5 parent: 2 - - uid: 2549 + - uid: 2446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 + pos: -10.5,6.5 parent: 2 - - uid: 2551 + - uid: 2447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-9.5 + pos: 8.5,-12.5 parent: 2 - - uid: 2553 + - uid: 2451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 + pos: -2.5,-16.5 parent: 2 - - uid: 2554 + - uid: 2453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 + pos: 3.5,-16.5 parent: 2 - - uid: 2556 + - uid: 2454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 + pos: -2.5,-18.5 parent: 2 - - uid: 2557 + - uid: 2455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 + pos: -1.5,-18.5 parent: 2 - - uid: 2559 + - uid: 2456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 + pos: 3.5,-17.5 parent: 2 - - uid: 2560 + - uid: 2460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-19.5 + pos: 7.5,-12.5 parent: 2 - - uid: 2562 + - uid: 2462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-19.5 + pos: 7.5,-14.5 parent: 2 - - uid: 2565 + - uid: 2464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 + pos: 7.5,-16.5 parent: 2 - - uid: 2568 + - uid: 2465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-13.5 + pos: 6.5,-16.5 parent: 2 - - uid: 2569 + - uid: 2469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-15.5 + pos: 10.5,-12.5 parent: 2 - - uid: 2571 + - uid: 2470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-17.5 + pos: 11.5,-12.5 parent: 2 - - uid: 2572 + - uid: 2471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-13.5 + pos: 12.5,-12.5 parent: 2 - - uid: 2575 + - uid: 2475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 + pos: 13.5,-9.5 parent: 2 - - uid: 2581 + - uid: 2477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-19.5 + pos: 13.5,-7.5 parent: 2 - - uid: 2582 + - uid: 2478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 + pos: 13.5,-6.5 parent: 2 - - uid: 2583 + - uid: 2480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-19.5 + pos: 13.5,-4.5 parent: 2 - - uid: 2586 + - uid: 2482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-23.5 + pos: 13.5,-1.5 parent: 2 - - uid: 2587 + - uid: 2484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 + pos: 13.5,1.5 parent: 2 - - uid: 2589 + - uid: 2486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-24.5 + pos: 13.5,0.5 parent: 2 - - uid: 2590 + - uid: 2487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-24.5 + pos: 13.5,-2.5 parent: 2 - - uid: 2591 + - uid: 2488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-24.5 + pos: 13.5,3.5 parent: 2 - - uid: 2593 + - uid: 2490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-25.5 + pos: 13.5,6.5 parent: 2 - - uid: 2595 + - uid: 2491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-25.5 + pos: 13.5,4.5 parent: 2 - - uid: 2597 + - uid: 2493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 + pos: 13.5,9.5 parent: 2 - - uid: 2599 + - uid: 2494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-28.5 + pos: 13.5,10.5 parent: 2 - - uid: 2601 + - uid: 2497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-28.5 + pos: 13.5,8.5 parent: 2 - - uid: 2603 + - uid: 2498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 + pos: 13.5,12.5 parent: 2 - - uid: 2604 + - uid: 2499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-28.5 + pos: 12.5,13.5 parent: 2 - - uid: 2606 + - uid: 2501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-24.5 + pos: 10.5,13.5 parent: 2 - - uid: 2609 + - uid: 2502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-24.5 + pos: 9.5,13.5 parent: 2 - - uid: 2611 + - uid: 2504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-24.5 + pos: 7.5,13.5 parent: 2 - - uid: 2612 + - uid: 2506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 + pos: 5.5,13.5 parent: 2 - - uid: 2617 + - uid: 2507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-25.5 + pos: 4.5,13.5 parent: 2 - - uid: 2618 + - uid: 2509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 + pos: 2.5,13.5 parent: 2 - - uid: 2622 + - uid: 2511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-28.5 + pos: -0.5,13.5 parent: 2 - - uid: 2624 + - uid: 2513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 + pos: -3.5,13.5 parent: 2 - - uid: 2625 + - uid: 2514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-22.5 + pos: 0.5,13.5 parent: 2 - - uid: 2627 + - uid: 2515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-26.5 + pos: -2.5,13.5 parent: 2 - - uid: 2630 + - uid: 2517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 + pos: -5.5,13.5 parent: 2 - - uid: 2632 + - uid: 2519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-19.5 + pos: -7.5,13.5 parent: 2 - - uid: 2635 + - uid: 2520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-20.5 + pos: -8.5,13.5 parent: 2 - - uid: 2638 + - uid: 2522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-16.5 + pos: -10.5,13.5 parent: 2 - - uid: 2639 + - uid: 2523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 + pos: -11.5,13.5 parent: 2 - - uid: 2640 + - uid: 2525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 + pos: -12.5,12.5 parent: 2 - - uid: 2642 + - uid: 2526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 + pos: -12.5,11.5 parent: 2 - - uid: 2645 + - uid: 2528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-19.5 + pos: -12.5,9.5 parent: 2 - - uid: 2647 + - uid: 2530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-28.5 + pos: -12.5,7.5 parent: 2 - - uid: 2649 + - uid: 2532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-23.5 + pos: -12.5,5.5 parent: 2 - - uid: 2651 + - uid: 2536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 + pos: -11.5,3.5 parent: 2 - - uid: 2652 + - uid: 2537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-27.5 + pos: -12.5,-2.5 parent: 2 - - uid: 2655 + - uid: 2539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-30.5 + pos: -12.5,-4.5 parent: 2 - - uid: 2656 + - uid: 2541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-23.5 + pos: -12.5,-6.5 parent: 2 - - uid: 2658 + - uid: 2543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 + pos: -12.5,-8.5 parent: 2 - - uid: 2661 + - uid: 2544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 + pos: -12.5,-10.5 parent: 2 - - uid: 2662 + - uid: 2547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 + pos: -11.5,-12.5 parent: 2 - - uid: 2663 + - uid: 2550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-30.5 + pos: -9.5,-12.5 parent: 2 - - uid: 2667 + - uid: 2552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 + pos: -7.5,-10.5 parent: 2 - - uid: 2668 + - uid: 2558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-20.5 + pos: -13.5,-12.5 parent: 2 - - uid: 2670 + - uid: 2561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-19.5 + pos: -14.5,-14.5 parent: 2 - - uid: 2672 + - uid: 2563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-14.5 + rot: -1.5707963267948966 rad + pos: -10.5,-18.5 parent: 2 - - uid: 2673 + - uid: 2564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-14.5 + rot: -1.5707963267948966 rad + pos: -14.5,-18.5 parent: 2 - - uid: 2676 + - uid: 2566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-14.5 + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 parent: 2 - - uid: 2678 + - uid: 2567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-14.5 + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 parent: 2 - - uid: 2679 + - uid: 2570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-9.5 + rot: -1.5707963267948966 rad + pos: -13.5,-19.5 parent: 2 - - uid: 2685 + - uid: 2573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-6.5 + rot: 3.141592653589793 rad + pos: -7.5,-20.5 parent: 2 - - uid: 2697 + - uid: 2574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 + rot: 3.141592653589793 rad + pos: -5.5,-20.5 parent: 2 - - uid: 2728 + - uid: 2576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 + rot: 3.141592653589793 rad + pos: -2.5,-20.5 parent: 2 - - uid: 2729 + - uid: 2577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-1.5 + rot: 3.141592653589793 rad + pos: -10.5,-20.5 parent: 2 - - uid: 2734 + - uid: 2578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 + rot: -1.5707963267948966 rad + pos: -9.5,-24.5 parent: 2 - - uid: 2760 + - uid: 2579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-19.5 + rot: -1.5707963267948966 rad + pos: -10.5,-24.5 parent: 2 - - uid: 2762 + - uid: 2580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-19.5 + pos: -10.5,-22.5 parent: 2 - - uid: 2763 + - uid: 2584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-28.5 + rot: -1.5707963267948966 rad + pos: -7.5,-24.5 parent: 2 - - uid: 2764 + - uid: 2585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 + rot: -1.5707963267948966 rad + pos: -5.5,-24.5 parent: 2 - - uid: 2765 + - uid: 2588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-20.5 + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 parent: 2 - - uid: 2768 + - uid: 2592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 + rot: 3.141592653589793 rad + pos: -10.5,-27.5 parent: 2 - - uid: 2769 + - uid: 2594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 + rot: 3.141592653589793 rad + pos: -8.5,-27.5 parent: 2 - - uid: 2771 + - uid: 2596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-19.5 + rot: 3.141592653589793 rad + pos: -3.5,-25.5 parent: 2 - - uid: 2773 + - uid: 2598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-19.5 + rot: 3.141592653589793 rad + pos: -3.5,-27.5 parent: 2 - - uid: 2775 + - uid: 2600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-18.5 + rot: 3.141592653589793 rad + pos: -4.5,-28.5 parent: 2 - - uid: 2776 + - uid: 2602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-5.5 + rot: 3.141592653589793 rad + pos: 2.5,-24.5 parent: 2 - - uid: 2778 + - uid: 2605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 + rot: 3.141592653589793 rad + pos: 4.5,-25.5 parent: 2 - - uid: 2782 + - uid: 2607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-22.5 + rot: 3.141592653589793 rad + pos: 4.5,-27.5 parent: 2 - - uid: 2783 + - uid: 2608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-21.5 + rot: 3.141592653589793 rad + pos: 4.5,-28.5 parent: 2 - - uid: 2785 + - uid: 2610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 + rot: 3.141592653589793 rad + pos: 1.5,-27.5 parent: 2 - - uid: 2787 + - uid: 2613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-14.5 + rot: 3.141592653589793 rad + pos: 2.5,-28.5 parent: 2 - - uid: 2789 + - uid: 2616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-14.5 + rot: 3.141592653589793 rad + pos: 3.5,-19.5 parent: 2 - - uid: 2794 + - uid: 2619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-14.5 + rot: 3.141592653589793 rad + pos: 3.5,-23.5 parent: 2 - - uid: 2796 + - uid: 2620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 + rot: -1.5707963267948966 rad + pos: 10.5,-24.5 parent: 2 - - uid: 2797 + - uid: 2621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 + pos: 10.5,-25.5 parent: 2 - - uid: 2799 + - uid: 2623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 + pos: 10.5,-27.5 parent: 2 - - uid: 2801 + - uid: 2626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 + pos: 11.5,-19.5 parent: 2 - - uid: 2803 + - uid: 2628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-1.5 + rot: -1.5707963267948966 rad + pos: 17.5,-23.5 parent: 2 - - uid: 2805 + - uid: 2629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-2.5 + pos: 9.5,-17.5 parent: 2 - - uid: 2806 + - uid: 2633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 + pos: 9.5,-15.5 parent: 2 - - uid: 2808 + - uid: 2634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-1.5 + pos: 16.5,-14.5 parent: 2 - - uid: 2809 + - uid: 2636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-2.5 + pos: 5.5,-25.5 parent: 2 - - uid: 2810 + - uid: 2637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 + pos: 8.5,-25.5 parent: 2 - - uid: 2811 + - uid: 2641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 + pos: 14.5,-19.5 parent: 2 - - uid: 2813 + - uid: 2643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 + rot: -1.5707963267948966 rad + pos: 11.5,-23.5 parent: 2 - - uid: 2815 + - uid: 2644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-1.5 + rot: -1.5707963267948966 rad + pos: 10.5,-29.5 parent: 2 - - uid: 2817 + - uid: 2646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-2.5 + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 parent: 2 - - uid: 2818 + - uid: 2648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-4.5 + rot: -1.5707963267948966 rad + pos: 18.5,-28.5 parent: 2 - - uid: 2820 + - uid: 2650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 + rot: -1.5707963267948966 rad + pos: 18.5,-29.5 parent: 2 - - uid: 2824 + - uid: 2653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 + rot: -1.5707963267948966 rad + pos: 15.5,-23.5 parent: 2 - - uid: 2837 + - uid: 2654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 + rot: -1.5707963267948966 rad + pos: 18.5,-24.5 parent: 2 - - uid: 2840 + - uid: 2657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 parent: 2 - - uid: 2841 + - uid: 2659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-17.5 + rot: -1.5707963267948966 rad + pos: 13.5,-23.5 parent: 2 - - uid: 2843 + - uid: 2660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-17.5 + rot: -1.5707963267948966 rad + pos: 16.5,-22.5 parent: 2 - - uid: 2845 + - uid: 2664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-5.5 + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 parent: 2 - - uid: 2850 + - uid: 2665 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-5.5 + pos: 15.5,-10.5 parent: 2 - - uid: 2855 + - uid: 2666 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-6.5 + pos: 15.5,-14.5 parent: 2 - - uid: 2857 + - uid: 2669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-8.5 + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 parent: 2 - - uid: 2858 + - uid: 2671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-17.5 + rot: -1.5707963267948966 rad + pos: 13.5,-14.5 parent: 2 - - uid: 2860 + - uid: 2674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-12.5 + pos: 15.5,-12.5 parent: 2 - - uid: 2861 + - uid: 2675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-10.5 + pos: 15.5,-7.5 parent: 2 - - uid: 2863 + - uid: 2677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-9.5 + pos: 15.5,-5.5 parent: 2 - - uid: 2865 + - uid: 2680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 + pos: 15.5,-2.5 parent: 2 - - uid: 2872 + - uid: 2726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-17.5 + pos: 17.5,-19.5 parent: 2 - - uid: 2889 + - uid: 2730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-17.5 + pos: 19.5,-19.5 parent: 2 - - uid: 2934 + - uid: 2731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-15.5 + pos: 21.5,-19.5 parent: 2 - - uid: 2937 + - uid: 2732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-13.5 + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 parent: 2 - - uid: 2939 + - uid: 2736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 + rot: 3.141592653589793 rad + pos: -0.5,16.5 parent: 2 - - uid: 2941 + - uid: 2738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-17.5 + rot: 3.141592653589793 rad + pos: -4.5,15.5 parent: 2 - - uid: 2943 + - uid: 2740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-21.5 + rot: 3.141592653589793 rad + pos: -3.5,16.5 parent: 2 - - uid: 2944 + - uid: 2741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-21.5 + rot: 3.141592653589793 rad + pos: -4.5,16.5 parent: 2 - - uid: 2945 + - uid: 2759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-21.5 + rot: 3.141592653589793 rad + pos: -10.5,-1.5 parent: 2 - - uid: 2947 + - uid: 2761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-22.5 + rot: 3.141592653589793 rad + pos: -12.5,-1.5 parent: 2 - - uid: 2949 + - uid: 2766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 + pos: 24.5,-19.5 parent: 2 - - uid: 2951 + - uid: 2767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-24.5 + pos: 25.5,-19.5 parent: 2 - - uid: 2952 + - uid: 2770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-26.5 + pos: 26.5,-17.5 parent: 2 - - uid: 2954 + - uid: 2772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-27.5 + pos: 26.5,-14.5 parent: 2 - - uid: 2958 + - uid: 2774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-29.5 + pos: 24.5,-23.5 parent: 2 - - uid: 2973 + - uid: 2777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-30.5 + pos: 24.5,-20.5 parent: 2 - - uid: 2981 + - uid: 2779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 + pos: 28.5,-9.5 parent: 2 - - uid: 2993 + - uid: 2780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-34.5 + pos: 28.5,-7.5 parent: 2 - - uid: 2996 + - uid: 2781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-32.5 + pos: 30.5,-9.5 parent: 2 - - uid: 2997 + - uid: 2784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-32.5 + pos: 29.5,-14.5 parent: 2 - - uid: 2998 + - uid: 2786 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-22.5 + pos: 17.5,-4.5 parent: 2 - - uid: 2999 + - uid: 2788 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-26.5 + pos: 17.5,-2.5 parent: 2 - - uid: 3002 + - uid: 2790 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-25.5 + pos: 16.5,-1.5 parent: 2 - - uid: 3005 + - uid: 2791 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-22.5 + pos: 18.5,-1.5 parent: 2 - - uid: 3007 + - uid: 2792 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-23.5 + pos: 19.5,-1.5 parent: 2 - - uid: 3008 + - uid: 2793 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-26.5 + pos: 19.5,-2.5 parent: 2 - - uid: 3010 + - uid: 2795 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-27.5 + pos: 19.5,-4.5 parent: 2 - - uid: 3011 + - uid: 2798 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-27.5 + pos: 21.5,-1.5 parent: 2 - - uid: 3012 + - uid: 2800 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-25.5 + pos: 21.5,-3.5 parent: 2 - - uid: 3013 + - uid: 2802 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-22.5 + pos: 21.5,-5.5 parent: 2 - - uid: 3014 + - uid: 2804 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-21.5 + pos: 23.5,-1.5 parent: 2 - - uid: 3015 + - uid: 2807 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-22.5 + pos: 23.5,-4.5 parent: 2 - - uid: 3017 + - uid: 2812 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-24.5 + pos: 25.5,-3.5 parent: 2 - - uid: 3019 + - uid: 2814 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-25.5 + pos: 25.5,-5.5 parent: 2 - - uid: 3021 + - uid: 2816 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-26.5 + pos: 27.5,-1.5 parent: 2 - - uid: 3029 + - uid: 2819 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-26.5 + pos: 27.5,-4.5 parent: 2 - - uid: 3030 + - uid: 2822 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-26.5 + pos: 29.5,-17.5 parent: 2 - - uid: 3031 + - uid: 2823 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-26.5 + pos: 28.5,-17.5 parent: 2 - - uid: 3032 + - uid: 2838 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-22.5 + pos: 29.5,-5.5 parent: 2 - - uid: 3034 + - uid: 2839 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-22.5 + pos: 30.5,-5.5 parent: 2 - - uid: 3035 + - uid: 2842 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-23.5 + pos: 33.5,-5.5 parent: 2 - - uid: 3048 + - uid: 2844 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-24.5 + pos: 33.5,-7.5 parent: 2 - - uid: 3049 + - uid: 2846 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-26.5 + pos: 33.5,-9.5 parent: 2 - - uid: 3054 + - uid: 2847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-26.5 + pos: 22.5,-32.5 parent: 2 - - uid: 3056 + - uid: 2849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-40.5 + pos: 33.5,-17.5 parent: 2 - - uid: 3057 + - uid: 2851 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-32.5 + pos: 31.5,-17.5 parent: 2 - - uid: 3058 + - uid: 2852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-16.5 + pos: 32.5,-14.5 parent: 2 - - uid: 3158 + - uid: 2853 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-14.5 + pos: 36.5,-14.5 parent: 2 - - uid: 3175 + - uid: 2854 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-13.5 + pos: 36.5,-13.5 parent: 2 - - uid: 3177 + - uid: 2856 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-13.5 + pos: 36.5,-11.5 parent: 2 - - uid: 3178 + - uid: 2859 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,22.5 + pos: 35.5,-9.5 parent: 2 - - uid: 3180 + - uid: 2862 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,22.5 + pos: 35.5,-17.5 parent: 2 - - uid: 3183 + - uid: 2864 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,22.5 + pos: 36.5,-16.5 parent: 2 - - uid: 3288 + - uid: 2866 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,22.5 + pos: 15.5,-8.5 parent: 2 - - uid: 3289 + - uid: 2932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,22.5 + pos: 37.5,-17.5 parent: 2 - - uid: 3294 + - uid: 2933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,22.5 + pos: 38.5,-17.5 parent: 2 - - uid: 3424 + - uid: 2935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,18.5 + pos: 40.5,-17.5 parent: 2 - - uid: 3452 + - uid: 2936 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,20.5 + pos: 39.5,-22.5 parent: 2 - - uid: 3454 + - uid: 2938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,18.5 + pos: 37.5,-21.5 parent: 2 - - uid: 3562 + - uid: 2940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-38.5 + pos: 35.5,-21.5 parent: 2 - - uid: 3563 + - uid: 2942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-36.5 + pos: 30.5,-21.5 parent: 2 - - uid: 3566 + - uid: 2946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,18.5 + pos: 30.5,-25.5 parent: 2 - - uid: 3576 + - uid: 2948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,7.5 + pos: 30.5,-27.5 parent: 2 - - uid: 3577 + - uid: 2950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,7.5 + pos: 22.5,-28.5 parent: 2 - - uid: 3614 + - uid: 2953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,8.5 + pos: 22.5,-31.5 parent: 2 - - uid: 3657 + - uid: 2955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-4.5 + pos: 22.5,-34.5 parent: 2 - - uid: 3660 + - uid: 2956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-4.5 + pos: 18.5,-35.5 parent: 2 - - uid: 3661 + - uid: 2975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,8.5 + pos: 3.5,-32.5 parent: 2 - - uid: 3662 + - uid: 2976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,10.5 + rot: 3.141592653589793 rad + pos: -2.5,-38.5 parent: 2 - - uid: 3664 + - uid: 2979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,11.5 + rot: 3.141592653589793 rad + pos: -1.5,-38.5 parent: 2 - - uid: 3667 + - uid: 2980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,11.5 + rot: 3.141592653589793 rad + pos: 3.5,-33.5 parent: 2 - - uid: 3668 + - uid: 2992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,11.5 + pos: 31.5,-22.5 parent: 2 - - uid: 3671 + - uid: 2994 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,9.5 + pos: 34.5,-23.5 parent: 2 - - uid: 3746 + - uid: 2995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,14.5 + pos: 34.5,-26.5 parent: 2 - - uid: 3749 + - uid: 3000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,14.5 + pos: 37.5,-23.5 parent: 2 - - uid: 3762 + - uid: 3001 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,14.5 + pos: 35.5,-23.5 parent: 2 - - uid: 3765 + - uid: 3003 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-6.5 + pos: 38.5,-27.5 parent: 2 - - uid: 3791 + - uid: 3004 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-9.5 + pos: 36.5,-27.5 parent: 2 - - uid: 3792 + - uid: 3006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-12.5 + pos: 35.5,-27.5 parent: 2 - - uid: 3794 + - uid: 3009 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-15.5 + pos: 46.5,-23.5 parent: 2 - - uid: 3854 + - uid: 3016 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-16.5 + pos: 45.5,-26.5 parent: 2 - - uid: 3855 + - uid: 3018 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-18.5 + pos: 43.5,-26.5 parent: 2 - - uid: 3914 + - uid: 3020 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-20.5 + pos: 41.5,-26.5 parent: 2 - - uid: 3920 + - uid: 3022 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-19.5 + pos: 39.5,-26.5 parent: 2 - - uid: 3923 + - uid: 3028 components: - type: Transform - pos: 36.5,-31.5 + pos: 50.5,-21.5 parent: 2 - - uid: 3924 + - uid: 3033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-27.5 + pos: 50.5,-25.5 parent: 2 - - uid: 3926 + - uid: 3047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-31.5 + pos: 4.5,-39.5 parent: 2 - - uid: 3928 + - uid: 3055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-31.5 + rot: -1.5707963267948966 rad + pos: 39.5,-13.5 parent: 2 - - uid: 3934 + - uid: 3059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-29.5 + rot: -1.5707963267948966 rad + pos: 37.5,-13.5 parent: 2 - - uid: 3936 + - uid: 3103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-30.5 + rot: 3.141592653589793 rad + pos: -14.5,-28.5 parent: 2 - - uid: 3937 + - uid: 3114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-31.5 + pos: -22.5,-32.5 parent: 2 - - uid: 3938 + - uid: 3155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-31.5 + pos: -19.5,22.5 parent: 2 - - uid: 3941 + - uid: 3162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-31.5 + pos: -12.5,22.5 parent: 2 - - uid: 3942 + - uid: 3176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 + pos: 5.5,22.5 parent: 2 - - uid: 3943 + - uid: 3179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-29.5 + pos: 2.5,22.5 parent: 2 - - uid: 3944 + - uid: 3181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-30.5 + rot: -1.5707963267948966 rad + pos: 0.5,22.5 parent: 2 - - uid: 3949 + - uid: 3185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-31.5 + pos: -4.5,24.5 parent: 2 - - uid: 3954 + - uid: 3189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-32.5 + pos: -8.5,22.5 parent: 2 - - uid: 3956 + - uid: 3249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-37.5 + rot: 3.141592653589793 rad + pos: -0.5,15.5 parent: 2 - - uid: 3969 + - uid: 3250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-32.5 + rot: 3.141592653589793 rad + pos: -1.5,16.5 parent: 2 - - uid: 3972 + - uid: 3251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-34.5 + rot: 3.141592653589793 rad + pos: -2.5,16.5 parent: 2 - - uid: 3973 + - uid: 3287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-39.5 + rot: 3.141592653589793 rad + pos: -37.5,19.5 parent: 2 - - uid: 4018 + - uid: 3309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-37.5 + pos: -55.5,-5.5 parent: 2 - - uid: 4019 + - uid: 3310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-39.5 + pos: 29.5,-0.5 parent: 2 - - uid: 4138 + - uid: 3453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-32.5 + pos: -36.5,-37.5 parent: 2 - - uid: 4141 + - uid: 3564 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-32.5 + pos: -55.5,7.5 parent: 2 - - uid: 4183 + - uid: 3572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-34.5 + rot: -1.5707963267948966 rad + pos: -55.5,8.5 parent: 2 - - uid: 4192 + - uid: 3575 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-34.5 + pos: -56.5,-4.5 parent: 2 - - uid: 4197 + - uid: 3591 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,22.5 + pos: -55.5,3.5 parent: 2 - - uid: 4201 + - uid: 3600 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,8.5 + pos: -55.5,-2.5 parent: 2 - - uid: 4244 + - uid: 3615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,6.5 + rot: -1.5707963267948966 rad + pos: -51.5,8.5 parent: 2 - - uid: 4266 + - uid: 3656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-8.5 + pos: -55.5,9.5 parent: 2 - - uid: 4269 + - uid: 3658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 + pos: -55.5,11.5 parent: 2 - - uid: 4273 + - uid: 3659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,5.5 + pos: -54.5,11.5 parent: 2 - - uid: 4314 + - uid: 3663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,5.5 + pos: -51.5,10.5 parent: 2 - - uid: 4315 + - uid: 3665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 + pos: -51.5,12.5 parent: 2 - - uid: 4317 + - uid: 3666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-2.5 + pos: -51.5,13.5 parent: 2 - - uid: 4441 + - uid: 3747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-2.5 + pos: -55.5,-7.5 parent: 2 - - uid: 4450 + - uid: 3748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,5.5 + pos: -55.5,-8.5 parent: 2 - - uid: 4474 + - uid: 3760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-29.5 + pos: -55.5,-10.5 parent: 2 - - uid: 4482 + - uid: 3761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-22.5 + pos: -55.5,-11.5 parent: 2 - - uid: 4483 + - uid: 3763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-21.5 + pos: -55.5,-13.5 parent: 2 - - uid: 4486 + - uid: 3790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-21.5 + pos: -55.5,-14.5 parent: 2 - - uid: 4489 + - uid: 3793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-20.5 + pos: -55.5,-17.5 parent: 2 - - uid: 4491 + - uid: 3907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-20.5 + pos: 41.5,6.5 parent: 2 - - uid: 4660 + - uid: 3917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-46.5 + pos: 34.5,-28.5 parent: 2 - - uid: 4663 + - uid: 3919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,25.5 + pos: 34.5,-30.5 parent: 2 - - uid: 4664 + - uid: 3921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,26.5 + pos: 35.5,-31.5 parent: 2 - - uid: 4668 + - uid: 3925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,26.5 + pos: 39.5,-31.5 parent: 2 - - uid: 4670 + - uid: 3929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,32.5 + pos: 46.5,-27.5 parent: 2 - - uid: 4672 + - uid: 3930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,26.5 + pos: 46.5,-28.5 parent: 2 - - uid: 4674 + - uid: 3933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,35.5 + pos: 46.5,-31.5 parent: 2 - - uid: 4677 + - uid: 3935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,25.5 + pos: 44.5,-31.5 parent: 2 - - uid: 4679 + - uid: 3939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,23.5 + pos: 41.5,-31.5 parent: 2 - - uid: 4680 + - uid: 3940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,30.5 + pos: 50.5,-28.5 parent: 2 - - uid: 4684 + - uid: 3945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,25.5 + pos: 50.5,-33.5 parent: 2 - - uid: 4686 + - uid: 3946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,23.5 + pos: 50.5,-34.5 parent: 2 - - uid: 4691 + - uid: 3948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,25.5 + pos: 50.5,-36.5 parent: 2 - - uid: 4692 + - uid: 3950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,24.5 + pos: 30.5,-28.5 parent: 2 - - uid: 4707 + - uid: 3953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,31.5 + pos: 30.5,-31.5 parent: 2 - - uid: 4708 + - uid: 3955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,34.5 + pos: 30.5,-33.5 parent: 2 - - uid: 4713 + - uid: 3957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,36.5 + pos: 30.5,-35.5 parent: 2 - - uid: 4714 + - uid: 3959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,27.5 + pos: 21.5,-53.5 parent: 2 - - uid: 4715 + - uid: 3965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,35.5 + rot: 3.141592653589793 rad + pos: 50.5,-38.5 parent: 2 - - uid: 4722 + - uid: 3968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,27.5 + rot: 3.141592653589793 rad + pos: 49.5,-38.5 parent: 2 - - uid: 4724 + - uid: 3970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,24.5 + rot: 3.141592653589793 rad + pos: 31.5,-38.5 parent: 2 - - uid: 4741 + - uid: 3971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,28.5 + rot: 3.141592653589793 rad + pos: 30.5,-38.5 parent: 2 - - uid: 4743 + - uid: 4040 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,29.5 + pos: -56.5,-20.5 parent: 2 - - uid: 4748 + - uid: 4137 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,29.5 + pos: 24.5,-34.5 parent: 2 - - uid: 4757 + - uid: 4139 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,26.5 + pos: 26.5,-34.5 parent: 2 - - uid: 4771 + - uid: 4140 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,33.5 + pos: 27.5,-34.5 parent: 2 - - uid: 4773 + - uid: 4142 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,30.5 + pos: 29.5,-34.5 parent: 2 - - uid: 4775 + - uid: 4184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,30.5 + pos: 22.5,21.5 parent: 2 - - uid: 4786 + - uid: 4186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,29.5 + rot: 3.141592653589793 rad + pos: 47.5,6.5 parent: 2 - - uid: 4790 + - uid: 4188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,29.5 + pos: 22.5,18.5 parent: 2 - - uid: 4806 + - uid: 4189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,25.5 + pos: 22.5,17.5 parent: 2 - - uid: 4811 + - uid: 4190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,24.5 + pos: 22.5,16.5 parent: 2 - - uid: 4814 + - uid: 4198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,24.5 + pos: 22.5,7.5 parent: 2 - - uid: 4816 + - uid: 4199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,24.5 + pos: 22.5,5.5 parent: 2 - - uid: 4817 + - uid: 4200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,24.5 + pos: 22.5,9.5 parent: 2 - - uid: 4818 + - uid: 4213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,25.5 + pos: 29.5,0.5 parent: 2 - - uid: 4821 + - uid: 4214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,24.5 + pos: 29.5,1.5 parent: 2 - - uid: 4823 + - uid: 4215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,30.5 + pos: 30.5,1.5 parent: 2 - - uid: 4826 + - uid: 4216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,30.5 + pos: 31.5,1.5 parent: 2 - - uid: 4827 + - uid: 4245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,30.5 + rot: -1.5707963267948966 rad + pos: -56.5,-50.5 parent: 2 - - uid: 4830 + - uid: 4247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,27.5 + pos: 44.5,-5.5 parent: 2 - - uid: 4831 + - uid: 4250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,26.5 + pos: 44.5,-2.5 parent: 2 - - uid: 4832 + - uid: 4253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,25.5 + pos: 44.5,0.5 parent: 2 - - uid: 4837 + - uid: 4265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,29.5 + pos: 35.5,5.5 parent: 2 - - uid: 4839 + - uid: 4267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,35.5 + pos: 33.5,5.5 parent: 2 - - uid: 4840 + - uid: 4268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,35.5 + pos: 32.5,5.5 parent: 2 - - uid: 4842 + - uid: 4271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,35.5 + pos: 30.5,5.5 parent: 2 - - uid: 4844 + - uid: 4272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,35.5 + pos: 29.5,5.5 parent: 2 - - uid: 4847 + - uid: 4274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,33.5 + pos: 27.5,5.5 parent: 2 - - uid: 4850 + - uid: 4278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,35.5 + pos: 23.5,5.5 parent: 2 - - uid: 4852 + - uid: 4280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,35.5 + pos: 29.5,-1.5 parent: 2 - - uid: 4854 + - uid: 4281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,32.5 + pos: 29.5,-2.5 parent: 2 - - uid: 4858 + - uid: 4282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,31.5 + pos: 29.5,-3.5 parent: 2 - - uid: 4863 + - uid: 4283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,31.5 + pos: 30.5,-3.5 parent: 2 - - uid: 4864 + - uid: 4284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,34.5 + pos: 31.5,-3.5 parent: 2 - - uid: 4866 + - uid: 4285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,34.5 + pos: 32.5,-3.5 parent: 2 - - uid: 4867 + - uid: 4286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,34.5 + pos: 33.5,-3.5 parent: 2 - - uid: 4881 + - uid: 4287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,25.5 + pos: 34.5,-3.5 parent: 2 - - uid: 4883 + - uid: 4288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,35.5 + pos: 35.5,-3.5 parent: 2 - - uid: 4886 + - uid: 4291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-32.5 + rot: -1.5707963267948966 rad + pos: 28.5,9.5 parent: 2 - - uid: 4888 + - uid: 4302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,37.5 + pos: 35.5,1.5 parent: 2 - - uid: 4896 + - uid: 4345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,31.5 + rot: 3.141592653589793 rad + pos: 53.5,-28.5 parent: 2 - - uid: 4897 + - uid: 4352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,30.5 + pos: 47.5,5.5 parent: 2 - - uid: 4899 + - uid: 4444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,30.5 + pos: 35.5,-2.5 parent: 2 - - uid: 4908 + - uid: 4445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,34.5 + pos: 35.5,-1.5 parent: 2 - - uid: 4909 + - uid: 4446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,34.5 + pos: 35.5,-0.5 parent: 2 - - uid: 4910 + - uid: 4447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,34.5 + pos: 35.5,0.5 parent: 2 - - uid: 4911 + - uid: 4461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,34.5 + rot: 3.141592653589793 rad + pos: 47.5,3.5 parent: 2 - - uid: 4912 + - uid: 4475 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,34.5 + pos: -64.5,-28.5 parent: 2 - - uid: 4913 + - uid: 4477 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,34.5 + pos: -64.5,-27.5 parent: 2 - - uid: 4927 + - uid: 4484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,33.5 + pos: -37.5,-39.5 parent: 2 - - uid: 4937 + - uid: 4488 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,38.5 + pos: -59.5,-21.5 parent: 2 - - uid: 4939 + - uid: 4558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,36.5 + pos: 44.5,-27.5 parent: 2 - - uid: 4941 + - uid: 4629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,36.5 + pos: 50.5,-40.5 parent: 2 - - uid: 4943 + - uid: 4662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,36.5 + pos: -4.5,23.5 parent: 2 - - uid: 4944 + - uid: 4667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,36.5 + rot: 3.141592653589793 rad + pos: -20.5,34.5 parent: 2 - - uid: 4953 + - uid: 4678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,27.5 + pos: -8.5,24.5 parent: 2 - - uid: 4955 + - uid: 4681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,27.5 + pos: 1.5,26.5 parent: 2 - - uid: 4968 + - uid: 4685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,29.5 + pos: -12.5,24.5 parent: 2 - - uid: 4974 + - uid: 4688 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,32.5 + pos: -3.5,31.5 parent: 2 - - uid: 4975 + - uid: 4689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,32.5 + pos: -16.5,26.5 parent: 2 - - uid: 4976 + - uid: 4693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,34.5 + pos: -16.5,23.5 parent: 2 - - uid: 5002 + - uid: 4705 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,37.5 + pos: -3.5,34.5 parent: 2 - - uid: 5004 + - uid: 4716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,37.5 + rot: -1.5707963267948966 rad + pos: 2.5,36.5 parent: 2 - - uid: 5005 + - uid: 4721 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,40.5 + pos: 6.5,28.5 parent: 2 - - uid: 5008 + - uid: 4723 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,39.5 + pos: 6.5,26.5 parent: 2 - - uid: 5011 + - uid: 4725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,39.5 + pos: 6.5,23.5 parent: 2 - - uid: 5012 + - uid: 4726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,39.5 + pos: 6.5,25.5 parent: 2 - - uid: 5113 + - uid: 4727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,44.5 + pos: 8.5,32.5 parent: 2 - - uid: 5125 + - uid: 4728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,43.5 + rot: -1.5707963267948966 rad + pos: 0.5,33.5 parent: 2 - - uid: 5126 + - uid: 4730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,42.5 + pos: 8.5,33.5 parent: 2 - - uid: 5136 + - uid: 4738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,43.5 + rot: 3.141592653589793 rad + pos: 47.5,2.5 parent: 2 - - uid: 5137 + - uid: 4739 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,44.5 + pos: 8.5,29.5 parent: 2 - - uid: 5140 + - uid: 4742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 + rot: -1.5707963267948966 rad + pos: 7.5,27.5 parent: 2 - - uid: 5142 + - uid: 4747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,48.5 + pos: 0.5,29.5 parent: 2 - - uid: 5143 + - uid: 4768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,45.5 + pos: -4.5,35.5 parent: 2 - - uid: 5145 + - uid: 4770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,47.5 + pos: 46.5,6.5 parent: 2 - - uid: 5176 + - uid: 4772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,49.5 + rot: 3.141592653589793 rad + pos: 47.5,1.5 parent: 2 - - uid: 5177 + - uid: 4776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,49.5 + pos: -13.5,30.5 parent: 2 - - uid: 5178 + - uid: 4779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,49.5 + pos: -10.5,30.5 parent: 2 - - uid: 5184 + - uid: 4782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,50.5 + pos: -4.5,30.5 parent: 2 - - uid: 5186 + - uid: 4785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,52.5 + pos: -16.5,30.5 parent: 2 - - uid: 5187 + - uid: 4788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,53.5 + pos: -16.5,27.5 parent: 2 - - uid: 5188 + - uid: 4802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,54.5 + pos: -10.5,33.5 parent: 2 - - uid: 5191 + - uid: 4812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,53.5 + pos: -28.5,24.5 parent: 2 - - uid: 5192 + - uid: 4813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,53.5 + pos: -27.5,24.5 parent: 2 - - uid: 5194 + - uid: 4819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,50.5 + pos: -21.5,24.5 parent: 2 - - uid: 5195 + - uid: 4820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,49.5 + pos: -20.5,24.5 parent: 2 - - uid: 5282 + - uid: 4824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,39.5 + pos: -17.5,30.5 parent: 2 - - uid: 5284 + - uid: 4825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,39.5 + pos: -19.5,30.5 parent: 2 - - uid: 5295 + - uid: 4828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,6.5 + pos: -21.5,29.5 parent: 2 - - uid: 5378 + - uid: 4829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,33.5 + pos: -21.5,28.5 parent: 2 - - uid: 5423 + - uid: 4833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,16.5 + pos: -17.5,24.5 parent: 2 - - uid: 5433 + - uid: 4838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,35.5 + pos: -23.5,30.5 parent: 2 - - uid: 5451 + - uid: 4841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,9.5 + pos: -7.5,35.5 parent: 2 - - uid: 5455 + - uid: 4843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-37.5 + pos: -9.5,35.5 parent: 2 - - uid: 5470 + - uid: 4845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,16.5 + pos: -11.5,35.5 parent: 2 - - uid: 5477 + - uid: 4848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 + pos: -15.5,31.5 parent: 2 - - uid: 5485 + - uid: 4851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,16.5 + pos: -14.5,35.5 parent: 2 - - uid: 5490 + - uid: 4853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,7.5 + pos: -15.5,35.5 parent: 2 - - uid: 5494 + - uid: 4855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,11.5 + pos: -9.5,30.5 parent: 2 - - uid: 5496 + - uid: 4862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,11.5 + pos: -18.5,33.5 parent: 2 - - uid: 5497 + - uid: 4865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,12.5 + pos: -16.5,34.5 parent: 2 - - uid: 5498 + - uid: 4877 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,16.5 + pos: -15.5,25.5 parent: 2 - - uid: 5504 + - uid: 4884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,21.5 + rot: 3.141592653589793 rad + pos: -20.5,36.5 parent: 2 - - uid: 5506 + - uid: 4887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,23.5 + pos: -63.5,-20.5 parent: 2 - - uid: 5508 + - uid: 4894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,24.5 + pos: 1.5,33.5 parent: 2 - - uid: 5513 + - uid: 4906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-51.5 + rot: -1.5707963267948966 rad + pos: 4.5,34.5 parent: 2 - - uid: 5617 + - uid: 4907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,27.5 + rot: -1.5707963267948966 rad + pos: 2.5,34.5 parent: 2 - - uid: 5630 + - uid: 4918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,14.5 + rot: -1.5707963267948966 rad + pos: 11.5,38.5 parent: 2 - - uid: 5631 + - uid: 4928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,13.5 + pos: -29.5,33.5 parent: 2 - - uid: 5633 + - uid: 4929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,11.5 + pos: -25.5,24.5 parent: 2 - - uid: 5635 + - uid: 4934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 + pos: -0.5,35.5 parent: 2 - - uid: 5664 + - uid: 4935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,19.5 + pos: -2.5,35.5 parent: 2 - - uid: 5665 + - uid: 4940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,16.5 + rot: -1.5707963267948966 rad + pos: 4.5,36.5 parent: 2 - - uid: 5666 + - uid: 4942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,16.5 + rot: -1.5707963267948966 rad + pos: 6.5,36.5 parent: 2 - - uid: 5667 + - uid: 4945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,17.5 + rot: -1.5707963267948966 rad + pos: 8.5,36.5 parent: 2 - - uid: 5742 + - uid: 4954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,19.5 + rot: -1.5707963267948966 rad + pos: 9.5,27.5 parent: 2 - - uid: 5789 + - uid: 4969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,41.5 + rot: -1.5707963267948966 rad + pos: 5.5,29.5 parent: 2 - - uid: 5795 + - uid: 4970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-46.5 + pos: 3.5,29.5 parent: 2 - - uid: 5803 + - uid: 4977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-42.5 + rot: -1.5707963267948966 rad + pos: 0.5,35.5 parent: 2 - - uid: 5804 + - uid: 4985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 + pos: 1.5,39.5 parent: 2 - - uid: 5811 + - uid: 4986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-42.5 + pos: 3.5,39.5 parent: 2 - - uid: 5812 + - uid: 5001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-36.5 + pos: -10.5,37.5 parent: 2 - - uid: 5813 + - uid: 5003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-35.5 + pos: -8.5,37.5 parent: 2 - - uid: 5815 + - uid: 5009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-27.5 + pos: -0.5,39.5 parent: 2 - - uid: 5816 + - uid: 5013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-32.5 + pos: -7.5,38.5 parent: 2 - - uid: 5818 + - uid: 5014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-30.5 + pos: 4.5,39.5 parent: 2 - - uid: 5819 + - uid: 5098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-44.5 + rot: 3.141592653589793 rad + pos: 47.5,0.5 parent: 2 - - uid: 5822 + - uid: 5114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-36.5 + pos: -3.5,44.5 parent: 2 - - uid: 5825 + - uid: 5124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-36.5 + pos: 4.5,44.5 parent: 2 - - uid: 5828 + - uid: 5127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-33.5 + pos: 4.5,41.5 parent: 2 - - uid: 5830 + - uid: 5134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-31.5 + pos: -7.5,41.5 parent: 2 - - uid: 5831 + - uid: 5135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-30.5 + pos: -7.5,42.5 parent: 2 - - uid: 5833 + - uid: 5139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-30.5 + pos: -7.5,45.5 parent: 2 - - uid: 5835 + - uid: 5141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-30.5 + pos: -7.5,47.5 parent: 2 - - uid: 5836 + - uid: 5144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-30.5 + pos: 4.5,46.5 parent: 2 - - uid: 5838 + - uid: 5146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-31.5 + rot: -1.5707963267948966 rad + pos: 4.5,52.5 parent: 2 - - uid: 5843 + - uid: 5153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-31.5 + rot: 3.141592653589793 rad + pos: 46.5,0.5 parent: 2 - - uid: 5845 + - uid: 5179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-33.5 + pos: -4.5,49.5 parent: 2 - - uid: 5846 + - uid: 5185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-34.5 + rot: -1.5707963267948966 rad + pos: -4.5,51.5 parent: 2 - - uid: 5847 + - uid: 5189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-35.5 + rot: -1.5707963267948966 rad + pos: -3.5,53.5 parent: 2 - - uid: 5850 + - uid: 5190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-37.5 + rot: -1.5707963267948966 rad + pos: 3.5,54.5 parent: 2 - - uid: 5852 + - uid: 5193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-37.5 + rot: -1.5707963267948966 rad + pos: 4.5,51.5 parent: 2 - - uid: 5854 + - uid: 5196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-37.5 + rot: -1.5707963267948966 rad + pos: 4.5,48.5 parent: 2 - - uid: 5855 + - uid: 5279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-37.5 + pos: -7.5,40.5 parent: 2 - - uid: 5860 + - uid: 5283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-25.5 + pos: -6.5,39.5 parent: 2 - - uid: 5867 + - uid: 5285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-24.5 + pos: -4.5,39.5 parent: 2 - - uid: 5868 + - uid: 5296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-24.5 + pos: 10.5,29.5 parent: 2 - - uid: 5870 + - uid: 5298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-26.5 + pos: 10.5,31.5 parent: 2 - - uid: 5871 + - uid: 5326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-27.5 + pos: 10.5,32.5 parent: 2 - - uid: 5873 + - uid: 5424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-39.5 + pos: 24.5,16.5 parent: 2 - - uid: 5876 + - uid: 5427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-41.5 + rot: -1.5707963267948966 rad + pos: 24.5,11.5 parent: 2 - - uid: 5882 + - uid: 5431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-25.5 + rot: -1.5707963267948966 rad + pos: 23.5,9.5 parent: 2 - - uid: 5887 + - uid: 5432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-53.5 + pos: 10.5,34.5 parent: 2 - - uid: 5888 + - uid: 5434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-50.5 + pos: 10.5,36.5 parent: 2 - - uid: 5892 + - uid: 5479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-43.5 + pos: 35.5,11.5 parent: 2 - - uid: 5918 + - uid: 5483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,8.5 + pos: 33.5,16.5 parent: 2 - - uid: 5951 + - uid: 5484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,10.5 + pos: 35.5,16.5 parent: 2 - - uid: 5956 + - uid: 5486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,11.5 + pos: 35.5,10.5 parent: 2 - - uid: 5957 + - uid: 5488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,12.5 + pos: 35.5,8.5 parent: 2 - - uid: 5958 + - uid: 5489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-20.5 + pos: 35.5,6.5 parent: 2 - - uid: 5961 + - uid: 5495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,14.5 + pos: 33.5,11.5 parent: 2 - - uid: 5962 + - uid: 5499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,38.5 + pos: 37.5,16.5 parent: 2 - - uid: 5972 + - uid: 5500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,10.5 + pos: 37.5,17.5 parent: 2 - - uid: 5989 + - uid: 5502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,10.5 + pos: 37.5,19.5 parent: 2 - - uid: 5995 + - uid: 5503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,10.5 + pos: 37.5,20.5 parent: 2 - - uid: 5999 + - uid: 5505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 + pos: 37.5,22.5 parent: 2 - - uid: 6001 + - uid: 5507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,17.5 + pos: 22.5,23.5 parent: 2 - - uid: 6002 + - uid: 5509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,17.5 + pos: 23.5,24.5 parent: 2 - - uid: 6004 + - uid: 5511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,16.5 + pos: 32.5,24.5 parent: 2 - - uid: 6005 + - uid: 5512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 + pos: 31.5,24.5 parent: 2 - - uid: 6007 + - uid: 5532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,12.5 + rot: 3.141592653589793 rad + pos: 27.5,9.5 parent: 2 - - uid: 6009 + - uid: 5559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,16.5 + rot: 3.141592653589793 rad + pos: 25.5,9.5 parent: 2 - - uid: 6044 + - uid: 5569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,16.5 + pos: 29.5,6.5 parent: 2 - - uid: 6051 + - uid: 5570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,15.5 + pos: 29.5,8.5 parent: 2 - - uid: 6052 + - uid: 5616 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,19.5 + pos: 30.5,27.5 parent: 2 - - uid: 6053 + - uid: 5628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-38.5 + pos: 38.5,16.5 parent: 2 - - uid: 6076 + - uid: 5629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,5.5 + pos: 38.5,15.5 parent: 2 - - uid: 6078 + - uid: 5632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-37.5 + pos: 38.5,12.5 parent: 2 - - uid: 6079 + - uid: 5634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-37.5 + pos: 37.5,11.5 parent: 2 - - uid: 6081 + - uid: 5659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-41.5 + rot: 3.141592653589793 rad + pos: 45.5,0.5 parent: 2 - - uid: 6097 + - uid: 5723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-43.5 + pos: 40.5,18.5 parent: 2 - - uid: 6108 + - uid: 5743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-43.5 + pos: 44.5,19.5 parent: 2 - - uid: 6110 + - uid: 5762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-42.5 + pos: -27.5,-45.5 parent: 2 - - uid: 6111 + - uid: 5774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-43.5 + pos: 45.5,6.5 parent: 2 - - uid: 6144 + - uid: 5775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-53.5 + pos: 47.5,4.5 parent: 2 - - uid: 6146 + - uid: 5778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-44.5 + pos: 40.5,6.5 parent: 2 - - uid: 6147 + - uid: 5779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-43.5 + pos: 27.5,-57.5 parent: 2 - - uid: 6149 + - uid: 5780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-37.5 + pos: -34.5,-46.5 parent: 2 - - uid: 6153 + - uid: 5787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,37.5 + rot: 3.141592653589793 rad + pos: -17.5,-42.5 parent: 2 - - uid: 6154 + - uid: 5788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,37.5 + pos: 0.5,40.5 parent: 2 - - uid: 6155 + - uid: 5802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-41.5 + pos: -3.5,40.5 parent: 2 - - uid: 6156 + - uid: 5810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-36.5 + pos: 55.5,-39.5 parent: 2 - - uid: 6157 + - uid: 5814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-36.5 + rot: 3.141592653589793 rad + pos: 53.5,-34.5 parent: 2 - - uid: 6159 + - uid: 5817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-47.5 + rot: 3.141592653589793 rad + pos: 53.5,-31.5 parent: 2 - - uid: 6162 + - uid: 5820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-48.5 + rot: 3.141592653589793 rad + pos: 54.5,-36.5 parent: 2 - - uid: 6163 + - uid: 5821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-48.5 + rot: 3.141592653589793 rad + pos: 55.5,-36.5 parent: 2 - - uid: 6164 + - uid: 5823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-55.5 + rot: 3.141592653589793 rad + pos: 57.5,-36.5 parent: 2 - - uid: 6168 + - uid: 5824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-57.5 + rot: 3.141592653589793 rad + pos: 58.5,-36.5 parent: 2 - - uid: 6169 + - uid: 5826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-54.5 + rot: 3.141592653589793 rad + pos: 59.5,-35.5 parent: 2 - - uid: 6171 + - uid: 5827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-48.5 + rot: 3.141592653589793 rad + pos: 59.5,-34.5 parent: 2 - - uid: 6172 + - uid: 5829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-49.5 + rot: 3.141592653589793 rad + pos: 59.5,-32.5 parent: 2 - - uid: 6175 + - uid: 5832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-49.5 + rot: 3.141592653589793 rad + pos: 58.5,-30.5 parent: 2 - - uid: 6176 + - uid: 5834 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-49.5 + rot: 3.141592653589793 rad + pos: 56.5,-30.5 parent: 2 - - uid: 6177 + - uid: 5837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-50.5 + rot: 3.141592653589793 rad + pos: 58.5,-31.5 parent: 2 - - uid: 6202 + - uid: 5839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-55.5 + rot: 3.141592653589793 rad + pos: 56.5,-31.5 parent: 2 - - uid: 6210 + - uid: 5840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-54.5 + rot: 3.141592653589793 rad + pos: 55.5,-31.5 parent: 2 - - uid: 6211 + - uid: 5841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-54.5 + rot: 3.141592653589793 rad + pos: 54.5,-31.5 parent: 2 - - uid: 6213 + - uid: 5842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-52.5 + rot: 3.141592653589793 rad + pos: 60.5,-30.5 parent: 2 - - uid: 6216 + - uid: 5844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-53.5 + rot: 3.141592653589793 rad + pos: 60.5,-32.5 parent: 2 - - uid: 6217 + - uid: 5848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-53.5 + rot: 3.141592653589793 rad + pos: 60.5,-36.5 parent: 2 - - uid: 6220 + - uid: 5849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-44.5 + rot: 3.141592653589793 rad + pos: 60.5,-37.5 parent: 2 - - uid: 6226 + - uid: 5851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-44.5 + rot: 3.141592653589793 rad + pos: 58.5,-37.5 parent: 2 - - uid: 6229 + - uid: 5853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-51.5 + rot: 3.141592653589793 rad + pos: 56.5,-37.5 parent: 2 - - uid: 6239 + - uid: 5856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-54.5 + rot: 3.141592653589793 rad + pos: 53.5,-37.5 parent: 2 - - uid: 6240 + - uid: 5858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-57.5 + rot: 3.141592653589793 rad + pos: 51.5,-37.5 parent: 2 - - uid: 6242 + - uid: 5859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-54.5 + rot: 3.141592653589793 rad + pos: 53.5,-26.5 parent: 2 - - uid: 6243 + - uid: 5861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-54.5 + rot: 3.141592653589793 rad + pos: 53.5,-24.5 parent: 2 - - uid: 6244 + - uid: 5863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-54.5 + rot: 3.141592653589793 rad + pos: 55.5,-24.5 parent: 2 - - uid: 6245 + - uid: 5865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-55.5 + pos: 56.5,-24.5 parent: 2 - - uid: 6248 + - uid: 5866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-54.5 + rot: -1.5707963267948966 rad + pos: 56.5,-40.5 parent: 2 - - uid: 6249 + - uid: 5869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-56.5 + pos: 59.5,-25.5 parent: 2 - - uid: 6250 + - uid: 5874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-57.5 + pos: 53.5,-42.5 parent: 2 - - uid: 6252 + - uid: 5877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-59.5 + pos: 52.5,-42.5 parent: 2 - - uid: 6253 + - uid: 5880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-56.5 + rot: -1.5707963267948966 rad + pos: 49.5,-41.5 parent: 2 - - uid: 6256 + - uid: 5884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-57.5 + rot: -1.5707963267948966 rad + pos: -56.5,-52.5 parent: 2 - - uid: 6257 + - uid: 5891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-59.5 + rot: -1.5707963267948966 rad + pos: 51.5,-43.5 parent: 2 - - uid: 6260 + - uid: 5902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-59.5 + rot: -1.5707963267948966 rad + pos: 49.5,-42.5 parent: 2 - - uid: 6262 + - uid: 5952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-64.5 + pos: 39.5,7.5 parent: 2 - - uid: 6263 + - uid: 5954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-64.5 + pos: 39.5,9.5 parent: 2 - - uid: 6264 + - uid: 5955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-64.5 + pos: 40.5,9.5 parent: 2 - - uid: 6266 + - uid: 5959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-66.5 + pos: 40.5,13.5 parent: 2 - - uid: 6285 + - uid: 5963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-66.5 + pos: 41.5,14.5 parent: 2 - - uid: 6286 + - uid: 6000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-66.5 + pos: 44.5,17.5 parent: 2 - - uid: 6288 + - uid: 6003 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-66.5 + pos: 47.5,17.5 parent: 2 - - uid: 6290 + - uid: 6006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-66.5 + pos: 48.5,15.5 parent: 2 - - uid: 6296 + - uid: 6010 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-66.5 + pos: 48.5,11.5 parent: 2 - - uid: 6297 + - uid: 6043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-66.5 + pos: 50.5,16.5 parent: 2 - - uid: 6299 + - uid: 6046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-66.5 + pos: 49.5,16.5 parent: 2 - - uid: 6301 + - uid: 6060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-65.5 + pos: -57.5,-19.5 parent: 2 - - uid: 6302 + - uid: 6063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-63.5 + pos: -18.5,37.5 parent: 2 - - uid: 6304 + - uid: 6075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-61.5 + pos: -45.5,-37.5 parent: 2 - - uid: 6306 + - uid: 6077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-58.5 + pos: 37.5,6.5 parent: 2 - - uid: 6308 + - uid: 6086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-62.5 + pos: -51.5,-37.5 parent: 2 - - uid: 6313 + - uid: 6087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-59.5 + pos: 79.5,-36.5 parent: 2 - - uid: 6314 + - uid: 6096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-65.5 + rot: -1.5707963267948966 rad + pos: -38.5,-54.5 parent: 2 - - uid: 6317 + - uid: 6100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-66.5 + rot: -1.5707963267948966 rad + pos: -56.5,-49.5 parent: 2 - - uid: 6318 + - uid: 6107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-66.5 + rot: -1.5707963267948966 rad + pos: -45.5,-42.5 parent: 2 - - uid: 6320 + - uid: 6145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-66.5 + rot: -1.5707963267948966 rad + pos: -55.5,-42.5 parent: 2 - - uid: 6321 + - uid: 6150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-8.5 + rot: -1.5707963267948966 rad + pos: -39.5,-42.5 parent: 2 - - uid: 6324 + - uid: 6152 components: - type: Transform - pos: 21.5,-51.5 + rot: -1.5707963267948966 rad + pos: -43.5,-37.5 parent: 2 - - uid: 6371 + - uid: 6160 components: - type: Transform - pos: 23.5,-72.5 + rot: -1.5707963267948966 rad + pos: -38.5,-45.5 parent: 2 - - uid: 6487 + - uid: 6161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-8.5 + rot: -1.5707963267948966 rad + pos: -38.5,-46.5 parent: 2 - - uid: 6488 + - uid: 6165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-8.5 + rot: -1.5707963267948966 rad + pos: -56.5,-47.5 parent: 2 - - uid: 6495 + - uid: 6166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-8.5 + rot: -1.5707963267948966 rad + pos: -56.5,-46.5 parent: 2 - - uid: 6502 + - uid: 6167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-8.5 + rot: -1.5707963267948966 rad + pos: -56.5,-45.5 parent: 2 - - uid: 6510 + - uid: 6170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,0.5 + rot: -1.5707963267948966 rad + pos: -42.5,-55.5 parent: 2 - - uid: 6524 + - uid: 6173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,12.5 + rot: -1.5707963267948966 rad + pos: -52.5,-48.5 parent: 2 - - uid: 6527 + - uid: 6174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,10.5 + rot: -1.5707963267948966 rad + pos: -42.5,-49.5 parent: 2 - - uid: 6528 + - uid: 6212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-15.5 + rot: -1.5707963267948966 rad + pos: -52.5,-55.5 parent: 2 - - uid: 6529 + - uid: 6214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-0.5 + rot: 3.141592653589793 rad + pos: -52.5,-50.5 parent: 2 - - uid: 6542 + - uid: 6215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,13.5 + rot: 3.141592653589793 rad + pos: -52.5,-51.5 parent: 2 - - uid: 6563 + - uid: 6218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,5.5 + rot: 3.141592653589793 rad + pos: -42.5,-51.5 parent: 2 - - uid: 6623 + - uid: 6219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,0.5 + rot: 3.141592653589793 rad + pos: -42.5,-52.5 parent: 2 - - uid: 6628 + - uid: 6221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,7.5 + rot: -1.5707963267948966 rad + pos: -57.5,-54.5 parent: 2 - - uid: 6631 + - uid: 6222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,9.5 + rot: -1.5707963267948966 rad + pos: -59.5,-54.5 parent: 2 - - uid: 6633 + - uid: 6223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,11.5 + rot: -1.5707963267948966 rad + pos: -60.5,-57.5 parent: 2 - - uid: 6639 + - uid: 6224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,13.5 + rot: -1.5707963267948966 rad + pos: -60.5,-55.5 parent: 2 - - uid: 6641 + - uid: 6225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,13.5 + rot: -1.5707963267948966 rad + pos: -38.5,-49.5 parent: 2 - - uid: 6643 + - uid: 6227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,9.5 + rot: 3.141592653589793 rad + pos: -39.5,-44.5 parent: 2 - - uid: 6647 + - uid: 6228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,9.5 + rot: 3.141592653589793 rad + pos: -49.5,-44.5 parent: 2 - - uid: 6648 + - uid: 6241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,11.5 + rot: -1.5707963267948966 rad + pos: -52.5,-56.5 parent: 2 - - uid: 6650 + - uid: 6246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,13.5 + rot: -1.5707963267948966 rad + pos: -35.5,-54.5 parent: 2 - - uid: 6652 + - uid: 6247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,13.5 + rot: -1.5707963267948966 rad + pos: -34.5,-56.5 parent: 2 - - uid: 6653 + - uid: 6251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,16.5 + rot: -1.5707963267948966 rad + pos: -42.5,-57.5 parent: 2 - - uid: 6655 + - uid: 6254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,16.5 + rot: -1.5707963267948966 rad + pos: -40.5,-57.5 parent: 2 - - uid: 6657 + - uid: 6255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-11.5 + rot: -1.5707963267948966 rad + pos: -54.5,-57.5 parent: 2 - - uid: 6667 + - uid: 6258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-13.5 + rot: -1.5707963267948966 rad + pos: -40.5,-59.5 parent: 2 - - uid: 6669 + - uid: 6259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-14.5 + rot: -1.5707963267948966 rad + pos: -41.5,-59.5 parent: 2 - - uid: 6671 + - uid: 6261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-15.5 + rot: -1.5707963267948966 rad + pos: -53.5,-59.5 parent: 2 - - uid: 6672 + - uid: 6265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-15.5 + rot: -1.5707963267948966 rad + pos: -40.5,-64.5 parent: 2 - - uid: 6673 + - uid: 6267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-15.5 + rot: -1.5707963267948966 rad + pos: -53.5,-64.5 parent: 2 - - uid: 6675 + - uid: 6268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-40.5 + rot: -1.5707963267948966 rad + pos: -54.5,-64.5 parent: 2 - - uid: 6677 + - uid: 6287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-24.5 + rot: -1.5707963267948966 rad + pos: -54.5,-66.5 parent: 2 - - uid: 6728 + - uid: 6289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-22.5 + rot: -1.5707963267948966 rad + pos: -41.5,-66.5 parent: 2 - - uid: 6759 + - uid: 6295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-24.5 + rot: -1.5707963267948966 rad + pos: 16.5,-54.5 parent: 2 - - uid: 6776 + - uid: 6298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-13.5 + rot: -1.5707963267948966 rad + pos: -57.5,-66.5 parent: 2 - - uid: 6778 + - uid: 6300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-11.5 + rot: -1.5707963267948966 rad + pos: -59.5,-66.5 parent: 2 - - uid: 6786 + - uid: 6303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,17.5 + rot: -1.5707963267948966 rad + pos: -60.5,-64.5 parent: 2 - - uid: 6788 + - uid: 6305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,19.5 + rot: -1.5707963267948966 rad + pos: -60.5,-62.5 parent: 2 - - uid: 6830 + - uid: 6307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,20.5 + rot: -1.5707963267948966 rad + pos: -60.5,-59.5 parent: 2 - - uid: 6838 + - uid: 6309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,20.5 + rot: -1.5707963267948966 rad + pos: -60.5,-60.5 parent: 2 - - uid: 6840 + - uid: 6310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,19.5 + rot: -1.5707963267948966 rad + pos: -34.5,-58.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-60.5 parent: 2 - - uid: 6842 + - uid: 6312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,17.5 + rot: -1.5707963267948966 rad + pos: -34.5,-61.5 parent: 2 - - uid: 6844 + - uid: 6315 components: - type: Transform - pos: 9.5,-45.5 + rot: -1.5707963267948966 rad + pos: -34.5,-63.5 parent: 2 - - uid: 6846 + - uid: 6316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,15.5 + rot: -1.5707963267948966 rad + pos: -34.5,-64.5 parent: 2 - - uid: 6847 + - uid: 6319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,13.5 + rot: -1.5707963267948966 rad + pos: -35.5,-66.5 parent: 2 - - uid: 6850 + - uid: 6322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-0.5 + rot: -1.5707963267948966 rad + pos: -38.5,-66.5 parent: 2 - - uid: 6852 + - uid: 6323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,5.5 + rot: -1.5707963267948966 rad + pos: -39.5,-66.5 parent: 2 - - uid: 6854 + - uid: 6325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,5.5 + rot: -1.5707963267948966 rad + pos: 16.5,-51.5 parent: 2 - - uid: 6858 + - uid: 6486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,2.5 + pos: 45.5,-8.5 parent: 2 - - uid: 6860 + - uid: 6490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-0.5 + pos: 52.5,-8.5 parent: 2 - - uid: 6862 + - uid: 6494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-0.5 + rot: -1.5707963267948966 rad + pos: 55.5,-8.5 parent: 2 - - uid: 6864 + - uid: 6503 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-0.5 + pos: 53.5,-8.5 parent: 2 - - uid: 6868 + - uid: 6507 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,4.5 + pos: 48.5,0.5 parent: 2 - - uid: 6871 + - uid: 6511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-2.5 + rot: -1.5707963267948966 rad + pos: 57.5,-8.5 parent: 2 - - uid: 6872 + - uid: 6512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,21.5 + rot: 3.141592653589793 rad + pos: 48.5,-8.5 parent: 2 - - uid: 6877 + - uid: 6513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,21.5 + rot: 3.141592653589793 rad + pos: 47.5,-8.5 parent: 2 - - uid: 6902 + - uid: 6518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-37.5 + pos: 38.5,5.5 parent: 2 - - uid: 6934 + - uid: 6531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,41.5 + rot: -1.5707963267948966 rad + pos: 56.5,-1.5 parent: 2 - - uid: 6935 + - uid: 6532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,43.5 + rot: -1.5707963267948966 rad + pos: 56.5,-2.5 parent: 2 - - uid: 6941 + - uid: 6564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,43.5 + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 parent: 2 - - uid: 6950 + - uid: 6622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,7.5 + pos: 57.5,5.5 parent: 2 - - uid: 6954 + - uid: 6629 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,8.5 + pos: 57.5,0.5 parent: 2 - - uid: 6956 + - uid: 6630 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-10.5 + pos: 57.5,6.5 parent: 2 - - uid: 6963 + - uid: 6632 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-12.5 + pos: 57.5,8.5 parent: 2 - - uid: 6964 + - uid: 6634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-14.5 + pos: 56.5,9.5 parent: 2 - - uid: 6979 + - uid: 6637 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,7.5 + pos: 55.5,9.5 parent: 2 - - uid: 6981 + - uid: 6640 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,7.5 + pos: 57.5,12.5 parent: 2 - - uid: 6984 + - uid: 6642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,7.5 + pos: 55.5,13.5 parent: 2 - - uid: 6999 + - uid: 6644 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,8.5 + pos: 53.5,13.5 parent: 2 - - uid: 7000 + - uid: 6645 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,11.5 + pos: 56.5,13.5 parent: 2 - - uid: 7001 + - uid: 6646 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,11.5 + pos: 58.5,9.5 parent: 2 - - uid: 7006 + - uid: 6649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,12.5 + pos: 60.5,10.5 parent: 2 - - uid: 7010 + - uid: 6651 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,18.5 + pos: 60.5,12.5 parent: 2 - - uid: 7012 + - uid: 6654 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,22.5 + pos: 58.5,13.5 parent: 2 - - uid: 7016 + - uid: 6656 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-8.5 + pos: 54.5,16.5 parent: 2 - - uid: 7030 + - uid: 6658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-10.5 + pos: 56.5,16.5 parent: 2 - - uid: 7031 + - uid: 6659 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,-10.5 + pos: 56.5,15.5 parent: 2 - - uid: 7034 + - uid: 6670 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-10.5 + pos: 47.5,-12.5 parent: 2 - - uid: 7068 + - uid: 6674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-10.5 + pos: 48.5,-15.5 parent: 2 - - uid: 7069 + - uid: 6676 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-10.5 + pos: 50.5,-15.5 parent: 2 - - uid: 7070 + - uid: 6678 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-7.5 + pos: 52.5,-15.5 parent: 2 - - uid: 7071 + - uid: 6679 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-6.5 + pos: 53.5,-15.5 parent: 2 - - uid: 7072 + - uid: 6681 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-37.5 + pos: 47.5,-9.5 parent: 2 - - uid: 7075 + - uid: 6748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-20.5 + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 parent: 2 - - uid: 7076 + - uid: 6774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-21.5 + rot: 3.141592653589793 rad + pos: 51.5,-27.5 parent: 2 - - uid: 7078 + - uid: 6777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-21.5 + pos: 51.5,-23.5 parent: 2 - - uid: 7083 + - uid: 6779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-14.5 + pos: 52.5,-30.5 parent: 2 - - uid: 7085 + - uid: 6785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-14.5 + pos: 54.5,-14.5 parent: 2 - - uid: 7087 + - uid: 6787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-16.5 + pos: 54.5,-12.5 parent: 2 - - uid: 7088 + - uid: 6789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-21.5 + pos: 54.5,-10.5 parent: 2 - - uid: 7090 + - uid: 6790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-21.5 + pos: 54.5,-9.5 parent: 2 - - uid: 7093 + - uid: 6805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-22.5 + rot: -1.5707963267948966 rad + pos: 58.5,-2.5 parent: 2 - - uid: 7107 + - uid: 6839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-24.5 + pos: 56.5,18.5 parent: 2 - - uid: 7108 + - uid: 6841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-25.5 + pos: 56.5,20.5 parent: 2 - - uid: 7112 + - uid: 6843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-15.5 + pos: -15.5,-39.5 parent: 2 - - uid: 7114 + - uid: 6845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-27.5 + pos: 63.5,-10.5 parent: 2 - - uid: 7115 + - uid: 6848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-27.5 + pos: 62.5,18.5 parent: 2 - - uid: 7127 + - uid: 6849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-29.5 + pos: 61.5,20.5 parent: 2 - - uid: 7132 + - uid: 6851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-15.5 + pos: 62.5,16.5 parent: 2 - - uid: 7134 + - uid: 6853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-15.5 + pos: 62.5,14.5 parent: 2 - - uid: 7181 + - uid: 6855 components: - type: Transform - pos: 2.5,39.5 + pos: 61.5,13.5 parent: 2 - - uid: 7183 + - uid: 6857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-15.5 + pos: 58.5,-0.5 parent: 2 - - uid: 7186 + - uid: 6859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-14.5 + pos: 59.5,5.5 parent: 2 - - uid: 7188 + - uid: 6861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-10.5 + pos: 61.5,5.5 parent: 2 - - uid: 7190 + - uid: 6863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-10.5 + pos: 63.5,2.5 parent: 2 - - uid: 7192 + - uid: 6869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-10.5 + pos: 61.5,-0.5 parent: 2 - - uid: 7196 + - uid: 6873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-8.5 + pos: 64.5,0.5 parent: 2 - - uid: 7198 + - uid: 6874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-6.5 + pos: 64.5,1.5 parent: 2 - - uid: 7199 + - uid: 6875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-6.5 + pos: 64.5,2.5 parent: 2 - - uid: 7201 + - uid: 6876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-6.5 + pos: 64.5,3.5 parent: 2 - - uid: 7203 + - uid: 6878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-6.5 + pos: 64.5,5.5 parent: 2 - - uid: 7205 + - uid: 6879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-6.5 + pos: 63.5,5.5 parent: 2 - - uid: 7207 + - uid: 6880 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-19.5 + pos: 61.5,2.5 parent: 2 - - uid: 7208 + - uid: 6932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-19.5 + pos: 57.5,22.5 parent: 2 - - uid: 7211 + - uid: 6933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-19.5 + pos: 61.5,22.5 parent: 2 - - uid: 7270 + - uid: 6942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-19.5 + pos: -40.5,-37.5 parent: 2 - - uid: 7278 + - uid: 6952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-21.5 + pos: -3.5,42.5 parent: 2 - - uid: 7279 + - uid: 6953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-22.5 + pos: 0.5,42.5 parent: 2 - - uid: 7280 + - uid: 6955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-24.5 + pos: 0.5,44.5 parent: 2 - - uid: 7282 + - uid: 6962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-24.5 + pos: -15.5,-41.5 parent: 2 - - uid: 7283 + - uid: 6970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-25.5 + rot: -1.5707963267948966 rad + pos: -49.5,-38.5 parent: 2 - - uid: 7286 + - uid: 6977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-26.5 + pos: 58.5,-10.5 parent: 2 - - uid: 7290 + - uid: 6978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-29.5 + pos: 57.5,-10.5 parent: 2 - - uid: 7291 + - uid: 6980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-30.5 + pos: 56.5,-11.5 parent: 2 - - uid: 7292 + - uid: 6982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-28.5 + pos: 56.5,-13.5 parent: 2 - - uid: 7295 + - uid: 6996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-29.5 + rot: -1.5707963267948966 rad + pos: 66.5,7.5 parent: 2 - - uid: 7298 + - uid: 6998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-30.5 + rot: -1.5707963267948966 rad + pos: 65.5,7.5 parent: 2 - - uid: 7301 + - uid: 7009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-19.5 + rot: -1.5707963267948966 rad + pos: 63.5,11.5 parent: 2 - - uid: 7302 + - uid: 7020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-19.5 + rot: -1.5707963267948966 rad + pos: 63.5,22.5 parent: 2 - - uid: 7303 + - uid: 7021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-10.5 + rot: -1.5707963267948966 rad + pos: 63.5,23.5 parent: 2 - - uid: 7306 + - uid: 7022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-10.5 + rot: -1.5707963267948966 rad + pos: 63.5,24.5 parent: 2 - - uid: 7308 + - uid: 7028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-11.5 + rot: -1.5707963267948966 rad + pos: 60.5,-8.5 parent: 2 - - uid: 7318 + - uid: 7029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-11.5 + rot: -1.5707963267948966 rad + pos: 61.5,-8.5 parent: 2 - - uid: 7320 + - uid: 7066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-19.5 + pos: 61.5,-10.5 parent: 2 - - uid: 7325 + - uid: 7073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-19.5 + pos: 65.5,-9.5 parent: 2 - - uid: 7327 + - uid: 7074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-11.5 + pos: 65.5,-8.5 parent: 2 - - uid: 7328 + - uid: 7089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-19.5 + rot: -1.5707963267948966 rad + pos: 60.5,-21.5 parent: 2 - - uid: 7330 + - uid: 7091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,27.5 + rot: 3.141592653589793 rad + pos: 62.5,-18.5 parent: 2 - - uid: 7341 + - uid: 7094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 + rot: 3.141592653589793 rad + pos: 62.5,-15.5 parent: 2 - - uid: 7349 + - uid: 7095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-4.5 + rot: 3.141592653589793 rad + pos: 61.5,-15.5 parent: 2 - - uid: 7378 + - uid: 7101 components: - type: Transform - pos: 42.5,14.5 + rot: -1.5707963267948966 rad + pos: 62.5,-11.5 parent: 2 - - uid: 7390 + - uid: 7110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-4.5 + pos: 66.5,-19.5 parent: 2 - - uid: 7416 + - uid: 7113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-50.5 + pos: 67.5,-23.5 parent: 2 - - uid: 7445 + - uid: 7116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-10.5 + pos: 67.5,-26.5 parent: 2 - - uid: 7446 + - uid: 7117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-33.5 + pos: 67.5,-27.5 parent: 2 - - uid: 7461 + - uid: 7128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-33.5 + pos: 60.5,-27.5 parent: 2 - - uid: 7462 + - uid: 7129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-32.5 + pos: 61.5,-27.5 parent: 2 - - uid: 7464 + - uid: 7131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-31.5 + pos: 64.5,-27.5 parent: 2 - - uid: 7479 + - uid: 7133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-31.5 + pos: 65.5,-27.5 parent: 2 - - uid: 7503 + - uid: 7136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-31.5 + pos: 66.5,-11.5 parent: 2 - - uid: 7513 + - uid: 7137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-30.5 + pos: 66.5,-10.5 parent: 2 - - uid: 7514 + - uid: 7165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-28.5 + rot: 3.141592653589793 rad + pos: 55.5,-21.5 parent: 2 - - uid: 7519 + - uid: 7182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-27.5 + pos: 60.5,-29.5 parent: 2 - - uid: 7521 + - uid: 7185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-26.5 + pos: 63.5,-29.5 parent: 2 - - uid: 7525 + - uid: 7187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-24.5 + pos: 68.5,-15.5 parent: 2 - - uid: 7527 + - uid: 7189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-33.5 + pos: 70.5,-15.5 parent: 2 - - uid: 7529 + - uid: 7191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-33.5 + pos: 72.5,-15.5 parent: 2 - - uid: 7530 + - uid: 7195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-33.5 + pos: 72.5,-11.5 parent: 2 - - uid: 7531 + - uid: 7197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-30.5 + pos: 74.5,-10.5 parent: 2 - - uid: 7533 + - uid: 7200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-29.5 + pos: 75.5,-9.5 parent: 2 - - uid: 7540 + - uid: 7202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-32.5 + pos: 75.5,-7.5 parent: 2 - - uid: 7542 + - uid: 7204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 + pos: 74.5,-6.5 parent: 2 - - uid: 7543 + - uid: 7206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-39.5 + pos: 72.5,-6.5 parent: 2 - - uid: 7545 + - uid: 7209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-37.5 + pos: 69.5,-6.5 parent: 2 - - uid: 7546 + - uid: 7212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-35.5 + pos: 66.5,-6.5 parent: 2 - - uid: 7547 + - uid: 7269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-39.5 + rot: 3.141592653589793 rad + pos: 68.5,-19.5 parent: 2 - - uid: 7553 + - uid: 7271 components: - type: Transform - pos: 54.5,-24.5 + rot: 3.141592653589793 rad + pos: 69.5,-19.5 parent: 2 - - uid: 7567 + - uid: 7281 components: - type: Transform - pos: 64.5,21.5 + rot: 3.141592653589793 rad + pos: 72.5,-20.5 parent: 2 - - uid: 7580 + - uid: 7284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-39.5 + rot: 3.141592653589793 rad + pos: 72.5,-23.5 parent: 2 - - uid: 7587 + - uid: 7285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-39.5 + rot: -1.5707963267948966 rad + pos: 71.5,-24.5 parent: 2 - - uid: 7590 + - uid: 7287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-39.5 + rot: -1.5707963267948966 rad + pos: 70.5,-24.5 parent: 2 - - uid: 7593 + - uid: 7293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-39.5 + rot: -1.5707963267948966 rad + pos: 72.5,-27.5 parent: 2 - - uid: 7595 + - uid: 7294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-40.5 + rot: -1.5707963267948966 rad + pos: 72.5,-28.5 parent: 2 - - uid: 7596 + - uid: 7296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-41.5 + rot: -1.5707963267948966 rad + pos: 72.5,-30.5 parent: 2 - - uid: 7598 + - uid: 7297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-40.5 + rot: -1.5707963267948966 rad + pos: 71.5,-30.5 parent: 2 - - uid: 7599 + - uid: 7299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-42.5 + rot: -1.5707963267948966 rad + pos: 69.5,-30.5 parent: 2 - - uid: 7601 + - uid: 7300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-41.5 + rot: -1.5707963267948966 rad + pos: 68.5,-30.5 parent: 2 - - uid: 7631 + - uid: 7304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-42.5 + rot: -1.5707963267948966 rad + pos: 73.5,-19.5 parent: 2 - - uid: 7632 + - uid: 7307 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-50.5 + pos: 76.5,-19.5 parent: 2 - - uid: 7636 + - uid: 7309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-41.5 + rot: -1.5707963267948966 rad + pos: 78.5,-19.5 parent: 2 - - uid: 7637 + - uid: 7312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-44.5 + rot: -1.5707963267948966 rad + pos: 78.5,-15.5 parent: 2 - - uid: 7639 + - uid: 7317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-45.5 + rot: -1.5707963267948966 rad + pos: 78.5,-11.5 parent: 2 - - uid: 7641 + - uid: 7319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-46.5 + rot: -1.5707963267948966 rad + pos: 77.5,-10.5 parent: 2 - - uid: 7645 + - uid: 7321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-47.5 + rot: -1.5707963267948966 rad + pos: 79.5,-15.5 parent: 2 - - uid: 7648 + - uid: 7322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-47.5 + rot: -1.5707963267948966 rad + pos: 80.5,-15.5 parent: 2 - - uid: 7649 + - uid: 7323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-44.5 + rot: -1.5707963267948966 rad + pos: 81.5,-15.5 parent: 2 - - uid: 7651 + - uid: 7324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-45.5 + rot: -1.5707963267948966 rad + pos: 82.5,-15.5 parent: 2 - - uid: 7653 + - uid: 7326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-45.5 + rot: -1.5707963267948966 rad + pos: 80.5,-11.5 parent: 2 - - uid: 7654 + - uid: 7329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-46.5 + rot: -1.5707963267948966 rad + pos: 80.5,-19.5 parent: 2 - - uid: 7655 + - uid: 7331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-47.5 + rot: -1.5707963267948966 rad + pos: 82.5,-19.5 parent: 2 - - uid: 7658 + - uid: 7338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-49.5 + rot: -1.5707963267948966 rad + pos: 82.5,-11.5 parent: 2 - - uid: 7660 + - uid: 7339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-48.5 + rot: -1.5707963267948966 rad + pos: 83.5,-15.5 parent: 2 - - uid: 7661 + - uid: 7340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-49.5 + rot: -1.5707963267948966 rad + pos: 84.5,-15.5 parent: 2 - - uid: 7662 + - uid: 7342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-48.5 + rot: -1.5707963267948966 rad + pos: 84.5,-11.5 parent: 2 - - uid: 7664 + - uid: 7350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-49.5 + rot: -1.5707963267948966 rad + pos: 83.5,-19.5 parent: 2 - - uid: 7726 + - uid: 7460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 + pos: 73.5,-4.5 parent: 2 - - uid: 7730 + - uid: 7463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-41.5 + pos: 76.5,-4.5 parent: 2 - - uid: 7733 + - uid: 7478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-49.5 + pos: 86.5,-9.5 parent: 2 - - uid: 7735 + - uid: 7504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-41.5 + pos: 73.5,-33.5 parent: 2 - - uid: 7736 + - uid: 7516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-45.5 + pos: 66.5,-28.5 parent: 2 - - uid: 7741 + - uid: 7517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-45.5 + pos: 66.5,-29.5 parent: 2 - - uid: 7744 + - uid: 7518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-36.5 + pos: 66.5,-30.5 parent: 2 - - uid: 7746 + - uid: 7520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-50.5 + pos: 67.5,-31.5 parent: 2 - - uid: 7756 + - uid: 7522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-34.5 + pos: 69.5,-31.5 parent: 2 - - uid: 7757 + - uid: 7523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-36.5 + pos: 70.5,-31.5 parent: 2 - - uid: 7758 + - uid: 7524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-37.5 + pos: 71.5,-31.5 parent: 2 - - uid: 7762 + - uid: 7526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 + pos: 73.5,-31.5 parent: 2 - - uid: 7763 + - uid: 7528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-47.5 + pos: 73.5,-29.5 parent: 2 - - uid: 7764 + - uid: 7532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-49.5 + pos: 73.5,-25.5 parent: 2 - - uid: 7767 + - uid: 7534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-44.5 + pos: 73.5,-23.5 parent: 2 - - uid: 7770 + - uid: 7544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-50.5 + pos: 64.5,-31.5 parent: 2 - - uid: 7772 + - uid: 7562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-50.5 + rot: 3.141592653589793 rad + pos: 55.5,-23.5 parent: 2 - - uid: 7782 + - uid: 7565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-42.5 + pos: 64.5,19.5 parent: 2 - - uid: 7783 + - uid: 7568 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-42.5 + pos: 65.5,18.5 parent: 2 - - uid: 7794 + - uid: 7574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-50.5 + pos: 56.5,-15.5 parent: 2 - - uid: 7804 + - uid: 7577 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-50.5 + pos: 21.5,-34.5 parent: 2 - - uid: 7806 + - uid: 7578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-50.5 + pos: 18.5,-36.5 parent: 2 - - uid: 7816 + - uid: 7579 components: - type: Transform - pos: 18.5,-55.5 + pos: 18.5,-37.5 parent: 2 - - uid: 7817 + - uid: 7588 components: - type: Transform - pos: 18.5,-61.5 + rot: -1.5707963267948966 rad + pos: 31.5,-40.5 parent: 2 - - uid: 7818 + - uid: 7589 components: - type: Transform - pos: 22.5,-66.5 + pos: 27.5,-38.5 parent: 2 - - uid: 7819 + - uid: 7594 components: - type: Transform - pos: 23.5,-61.5 + pos: 26.5,-39.5 parent: 2 - - uid: 7820 + - uid: 7597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-50.5 + pos: 23.5,-39.5 parent: 2 - - uid: 7822 + - uid: 7602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-50.5 + pos: 18.5,-39.5 parent: 2 - - uid: 7824 + - uid: 7628 components: - type: Transform - pos: 25.5,-67.5 + pos: 27.5,-40.5 parent: 2 - - uid: 7826 + - uid: 7630 components: - type: Transform - pos: 14.5,-62.5 + rot: -1.5707963267948966 rad + pos: 30.5,-40.5 parent: 2 - - uid: 7827 + - uid: 7633 components: - type: Transform - pos: 17.5,-51.5 + rot: -1.5707963267948966 rad + pos: 6.5,-49.5 parent: 2 - - uid: 7828 + - uid: 7634 components: - type: Transform - pos: 17.5,-54.5 + rot: -1.5707963267948966 rad + pos: 25.5,-40.5 parent: 2 - - uid: 7831 + - uid: 7635 components: - type: Transform - pos: 13.5,-66.5 + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 parent: 2 - - uid: 7833 + - uid: 7638 components: - type: Transform - pos: 21.5,-55.5 + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 parent: 2 - - uid: 7834 + - uid: 7640 components: - type: Transform - pos: 20.5,-55.5 + rot: -1.5707963267948966 rad + pos: 23.5,-43.5 parent: 2 - - uid: 7835 + - uid: 7642 components: - type: Transform - pos: 18.5,-66.5 + rot: -1.5707963267948966 rad + pos: 30.5,-42.5 parent: 2 - - uid: 7845 + - uid: 7643 components: - type: Transform - pos: 12.5,-78.5 + rot: -1.5707963267948966 rad + pos: 30.5,-43.5 parent: 2 - - uid: 7846 + - uid: 7644 components: - type: Transform - pos: 11.5,-65.5 + rot: -1.5707963267948966 rad + pos: 30.5,-44.5 parent: 2 - - uid: 7848 + - uid: 7646 components: - type: Transform - pos: 15.5,-61.5 + rot: -1.5707963267948966 rad + pos: 31.5,-43.5 parent: 2 - - uid: 7849 + - uid: 7647 components: - type: Transform - pos: 17.5,-61.5 + rot: -1.5707963267948966 rad + pos: 22.5,-40.5 parent: 2 - - uid: 7855 + - uid: 7650 components: - type: Transform - pos: 16.5,-52.5 + rot: -1.5707963267948966 rad + pos: 31.5,-45.5 parent: 2 - - uid: 7856 + - uid: 7652 components: - type: Transform - pos: 16.5,-53.5 + rot: -1.5707963267948966 rad + pos: 30.5,-46.5 parent: 2 - - uid: 7858 + - uid: 7656 components: - type: Transform - pos: 25.5,-61.5 + rot: -1.5707963267948966 rad + pos: 22.5,-42.5 parent: 2 - - uid: 7859 + - uid: 7657 components: - type: Transform - pos: 23.5,-62.5 + rot: -1.5707963267948966 rad + pos: 22.5,-43.5 parent: 2 - - uid: 7861 + - uid: 7659 components: - type: Transform - pos: 16.5,-63.5 + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 parent: 2 - - uid: 7862 + - uid: 7663 components: - type: Transform - pos: 24.5,-54.5 + rot: -1.5707963267948966 rad + pos: 22.5,-46.5 parent: 2 - - uid: 7866 + - uid: 7665 components: - type: Transform - pos: 22.5,-54.5 + rot: -1.5707963267948966 rad + pos: 23.5,-47.5 parent: 2 - - uid: 7869 + - uid: 7674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-38.5 + rot: -1.5707963267948966 rad + pos: 24.5,-47.5 parent: 2 - - uid: 7871 + - uid: 7679 components: - type: Transform - pos: 23.5,-76.5 + rot: -1.5707963267948966 rad + pos: 29.5,-47.5 parent: 2 - - uid: 7872 + - uid: 7725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-40.5 + pos: 29.5,-49.5 parent: 2 - - uid: 7873 + - uid: 7728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-41.5 + pos: 31.5,-48.5 parent: 2 - - uid: 7874 + - uid: 7729 components: - type: Transform - pos: 22.5,-61.5 + pos: 30.5,-48.5 parent: 2 - - uid: 7875 + - uid: 7731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-41.5 + pos: 22.5,-48.5 parent: 2 - - uid: 7878 + - uid: 7734 components: - type: Transform - pos: 16.5,-65.5 + pos: 24.5,-48.5 parent: 2 - - uid: 7881 + - uid: 7740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-41.5 + pos: 17.5,-41.5 parent: 2 - - uid: 7883 + - uid: 7743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-50.5 + pos: 20.5,-41.5 parent: 2 - - uid: 7888 + - uid: 7752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-45.5 + pos: 13.5,-38.5 parent: 2 - - uid: 7893 + - uid: 7753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-46.5 + pos: 16.5,-45.5 parent: 2 - - uid: 7894 + - uid: 7754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-49.5 + pos: 20.5,-46.5 parent: 2 - - uid: 7896 + - uid: 7761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-50.5 + pos: 17.5,-45.5 parent: 2 - - uid: 7898 + - uid: 7765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-43.5 + pos: 4.5,-35.5 parent: 2 - - uid: 7907 + - uid: 7768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-43.5 + pos: 4.5,-33.5 parent: 2 - - uid: 7914 + - uid: 7769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 + pos: 13.5,-37.5 parent: 2 - - uid: 7962 + - uid: 7773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-34.5 + pos: -6.5,-33.5 parent: 2 - - uid: 7965 + - uid: 7775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-36.5 + pos: 7.5,-37.5 parent: 2 - - uid: 7966 + - uid: 7780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-39.5 + pos: -8.5,-41.5 parent: 2 - - uid: 7968 + - uid: 7786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-41.5 + pos: 4.5,-37.5 parent: 2 - - uid: 7972 + - uid: 7793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-33.5 + rot: -1.5707963267948966 rad + pos: 20.5,-48.5 parent: 2 - - uid: 7973 + - uid: 7796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-33.5 + pos: 15.5,-45.5 parent: 2 - - uid: 7995 + - uid: 7800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-32.5 + rot: -1.5707963267948966 rad + pos: 22.5,-63.5 parent: 2 - - uid: 7998 + - uid: 7801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-38.5 + pos: 15.5,-43.5 parent: 2 - - uid: 8001 + - uid: 7803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-38.5 + pos: 15.5,-42.5 parent: 2 - - uid: 8023 + - uid: 7805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 + rot: -1.5707963267948966 rad + pos: 22.5,-62.5 parent: 2 - - uid: 8024 + - uid: 7811 components: - type: Transform - pos: 26.5,-66.5 + pos: 26.5,-78.5 parent: 2 - - uid: 8025 + - uid: 7815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 + pos: 27.5,-65.5 parent: 2 - - uid: 8026 + - uid: 7821 components: - type: Transform - pos: 25.5,-78.5 + pos: 15.5,-50.5 parent: 2 - - uid: 8027 + - uid: 7823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-42.5 + pos: 24.5,-62.5 parent: 2 - - uid: 8030 + - uid: 7825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-43.5 + pos: 13.5,-62.5 parent: 2 - - uid: 8031 + - uid: 7829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-43.5 + rot: -1.5707963267948966 rad + pos: 17.5,-53.5 parent: 2 - - uid: 8035 + - uid: 7838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-43.5 + pos: 13.5,-78.5 parent: 2 - - uid: 8036 + - uid: 7841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-36.5 + rot: -1.5707963267948966 rad + pos: 20.5,-66.5 parent: 2 - - uid: 8039 + - uid: 7842 components: - type: Transform - pos: 24.5,-71.5 + pos: 25.5,-79.5 parent: 2 - - uid: 8047 + - uid: 7843 components: - type: Transform - pos: 24.5,-51.5 + pos: 11.5,-64.5 parent: 2 - - uid: 8048 + - uid: 7844 components: - type: Transform - pos: 14.5,-69.5 + pos: 24.5,-66.5 parent: 2 - - uid: 8053 + - uid: 7847 components: - type: Transform - pos: 15.5,-70.5 + pos: 12.5,-66.5 parent: 2 - - uid: 8059 + - uid: 7850 components: - type: Transform - pos: 24.5,-52.5 + pos: 17.5,-55.5 parent: 2 - - uid: 8065 + - uid: 7851 components: - type: Transform - pos: 18.5,-76.5 + pos: 13.5,-50.5 parent: 2 - - uid: 8079 + - uid: 7852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-36.5 + pos: 24.5,-50.5 parent: 2 - - uid: 8120 + - uid: 7853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-36.5 + pos: 17.5,-77.5 parent: 2 - - uid: 8121 + - uid: 7854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-36.5 + pos: 15.5,-77.5 parent: 2 - - uid: 8123 + - uid: 7857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-45.5 + pos: 21.5,-54.5 parent: 2 - - uid: 8124 + - uid: 7860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-46.5 + pos: 24.5,-53.5 parent: 2 - - uid: 8126 + - uid: 7863 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-49.5 + pos: 16.5,-66.5 parent: 2 - - uid: 8127 + - uid: 7865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-47.5 + pos: 23.5,-54.5 parent: 2 - - uid: 8128 + - uid: 7879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-48.5 + rot: -1.5707963267948966 rad + pos: 22.5,-65.5 parent: 2 - - uid: 8142 + - uid: 7880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 + rot: -1.5707963267948966 rad + pos: 21.5,-66.5 parent: 2 - - uid: 8143 + - uid: 7882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 + rot: -1.5707963267948966 rad + pos: 16.5,-62.5 parent: 2 - - uid: 8145 + - uid: 7884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,9.5 + rot: -1.5707963267948966 rad + pos: 17.5,-52.5 parent: 2 - - uid: 8147 + - uid: 7885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-42.5 + rot: -1.5707963267948966 rad + pos: 16.5,-61.5 parent: 2 - - uid: 8149 + - uid: 7886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 + rot: -1.5707963267948966 rad + pos: 20.5,-61.5 parent: 2 - - uid: 8151 + - uid: 7889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-42.5 + pos: 14.5,-61.5 parent: 2 - - uid: 8152 + - uid: 7891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-42.5 + pos: 22.5,-49.5 parent: 2 - - uid: 8157 + - uid: 7892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-51.5 + rot: 3.141592653589793 rad + pos: 7.5,-39.5 parent: 2 - - uid: 8182 + - uid: 7895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-51.5 + pos: 10.5,-41.5 parent: 2 - - uid: 8183 + - uid: 7897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-52.5 + pos: 12.5,-41.5 parent: 2 - - uid: 8200 + - uid: 7900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-33.5 + rot: 3.141592653589793 rad + pos: 7.5,-41.5 parent: 2 - - uid: 8201 + - uid: 7903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,11.5 + pos: 13.5,-40.5 parent: 2 - - uid: 8207 + - uid: 7947 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,10.5 + pos: 64.5,17.5 parent: 2 - - uid: 8208 + - uid: 7963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,9.5 + rot: -1.5707963267948966 rad + pos: 10.5,-47.5 parent: 2 - - uid: 8520 + - uid: 7964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,25.5 + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 parent: 2 - - uid: 8521 + - uid: 7967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,26.5 + rot: -1.5707963267948966 rad + pos: 11.5,-50.5 parent: 2 - - uid: 8522 + - uid: 7969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,28.5 + rot: -1.5707963267948966 rad + pos: 10.5,-44.5 parent: 2 - - uid: 8884 + - uid: 7970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,18.5 + rot: -1.5707963267948966 rad + pos: 11.5,-43.5 parent: 2 - - uid: 8974 + - uid: 7971 components: - type: Transform - pos: 44.5,-30.5 + rot: -1.5707963267948966 rad + pos: 12.5,-43.5 parent: 2 - - uid: 9096 + - uid: 7990 components: - type: Transform - pos: 23.5,-73.5 + pos: 24.5,-61.5 parent: 2 - - uid: 9097 + - uid: 7997 components: - type: Transform - pos: 24.5,-75.5 + rot: 3.141592653589793 rad + pos: -2.5,-33.5 parent: 2 - - uid: 9105 + - uid: 8004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,28.5 + pos: -2.5,-37.5 parent: 2 - - uid: 9112 + - uid: 8007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,29.5 + rot: 3.141592653589793 rad + pos: -0.5,-41.5 parent: 2 - - uid: 9114 + - uid: 8012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,31.5 + rot: -1.5707963267948966 rad + pos: 22.5,-55.5 parent: 2 - - uid: 9115 + - uid: 8013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,31.5 + rot: 3.141592653589793 rad + pos: -0.5,-33.5 parent: 2 - - uid: 9124 + - uid: 8015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,27.5 + pos: 25.5,-62.5 parent: 2 - - uid: 9125 + - uid: 8018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,30.5 + rot: 3.141592653589793 rad + pos: 4.5,-38.5 parent: 2 - - uid: 9127 + - uid: 8019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,30.5 + rot: 3.141592653589793 rad + pos: 3.5,-38.5 parent: 2 - - uid: 9128 + - uid: 8022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-8.5 + pos: 27.5,-66.5 parent: 2 - - uid: 9131 + - uid: 8040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-8.5 + pos: 15.5,-69.5 parent: 2 - - uid: 9133 + - uid: 8049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-8.5 + pos: 15.5,-67.5 parent: 2 - - uid: 9135 + - uid: 8050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,33.5 + rot: 3.141592653589793 rad + pos: 22.5,-60.5 parent: 2 - - uid: 9137 + - uid: 8051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,33.5 + pos: 24.5,-68.5 parent: 2 - - uid: 9139 + - uid: 8052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,33.5 + pos: 24.5,-70.5 parent: 2 - - uid: 9143 + - uid: 8058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,36.5 + rot: -1.5707963267948966 rad + pos: 17.5,-66.5 parent: 2 - - uid: 9144 + - uid: 8064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,36.5 + pos: 23.5,-74.5 parent: 2 - - uid: 9146 + - uid: 8088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,35.5 + pos: -4.5,-37.5 parent: 2 - - uid: 9148 + - uid: 8093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 + pos: -5.5,-37.5 parent: 2 - - uid: 9153 + - uid: 8122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 + pos: 4.5,-43.5 parent: 2 - - uid: 9156 + - uid: 8125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-38.5 + pos: 7.5,-43.5 parent: 2 - - uid: 9157 + - uid: 8129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-20.5 + pos: 12.5,-36.5 parent: 2 - - uid: 9192 + - uid: 8131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-18.5 + pos: 10.5,-36.5 parent: 2 - - uid: 9193 + - uid: 8132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-18.5 + pos: 8.5,-36.5 parent: 2 - - uid: 9194 + - uid: 8140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-19.5 + pos: 5.5,-44.5 parent: 2 - - uid: 9199 + - uid: 8141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-38.5 + pos: 6.5,-44.5 parent: 2 - - uid: 9201 + - uid: 8144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-38.5 + pos: 6.5,-46.5 parent: 2 - - uid: 9202 + - uid: 8146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-38.5 + pos: 5.5,-47.5 parent: 2 - - uid: 9205 + - uid: 8155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-32.5 + pos: 5.5,-45.5 parent: 2 - - uid: 9207 + - uid: 8156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-38.5 + pos: 14.5,-39.5 parent: 2 - - uid: 9208 + - uid: 8174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,22.5 + rot: 3.141592653589793 rad + pos: 52.5,9.5 parent: 2 - - uid: 9211 + - uid: 8202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-32.5 + pos: -2.5,-40.5 parent: 2 - - uid: 9216 + - uid: 8203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,39.5 + pos: -3.5,-42.5 parent: 2 - - uid: 9217 + - uid: 8342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,30.5 + rot: -1.5707963267948966 rad + pos: -49.5,-41.5 parent: 2 - - uid: 9218 + - uid: 8491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,22.5 + rot: 3.141592653589793 rad + pos: -12.5,-41.5 parent: 2 - - uid: 10288 + - uid: 8519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,20.5 + rot: -1.5707963267948966 rad + pos: -37.5,-51.5 parent: 2 - - uid: 10499 + - uid: 8523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-30.5 + rot: -1.5707963267948966 rad + pos: -35.5,-53.5 parent: 2 - - uid: 10633 + - uid: 8707 components: - type: Transform - pos: 13.5,-79.5 + rot: 3.141592653589793 rad + pos: 52.5,-27.5 parent: 2 - - uid: 10636 + - uid: 9095 components: - type: Transform - pos: 13.5,-61.5 + pos: 14.5,-67.5 parent: 2 - - uid: 10637 + - uid: 9098 components: - type: Transform - pos: 16.5,-77.5 + pos: 14.5,-74.5 parent: 2 - - uid: 10646 + - uid: 9100 components: - type: Transform - pos: 15.5,-71.5 + pos: 21.5,-77.5 parent: 2 - - uid: 10653 + - uid: 9101 components: - type: Transform - pos: 14.5,-75.5 + pos: 13.5,-67.5 parent: 2 - - uid: 11666 + - uid: 9106 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,39.5 + pos: 62.5,-33.5 parent: 2 - - uid: 12466 + - uid: 9107 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,35.5 - parent: 2 - - uid: 12670 - components: - - type: Transform - pos: 44.5,-28.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - pos: 23.5,-69.5 + pos: 61.5,-33.5 parent: 2 - - uid: 12812 + - uid: 9113 components: - type: Transform - pos: 27.5,-64.5 + rot: 3.141592653589793 rad + pos: 66.5,11.5 parent: 2 - - uid: 12813 + - uid: 9116 components: - type: Transform - pos: 20.5,-60.5 + rot: 3.141592653589793 rad + pos: 66.5,8.5 parent: 2 - - uid: 12834 + - uid: 9123 components: - type: Transform - pos: 23.5,-77.5 + pos: -30.5,24.5 parent: 2 - - uid: 12837 + - uid: 9126 components: - type: Transform - pos: 20.5,-77.5 + pos: -30.5,27.5 parent: 2 - - uid: 12838 + - uid: 9129 components: - type: Transform - pos: 16.5,-76.5 + pos: -28.5,28.5 parent: 2 - - uid: 14192 + - uid: 9130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,39.5 + pos: -27.5,28.5 parent: 2 - - uid: 14660 + - uid: 9132 components: - type: Transform - pos: -62.5,-33.5 + pos: -27.5,30.5 parent: 2 - - uid: 14674 + - uid: 9134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,38.5 + pos: -26.5,31.5 parent: 2 - - uid: 14814 + - uid: 9136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,26.5 + pos: -24.5,31.5 parent: 2 - - uid: 14954 + - uid: 9138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,23.5 + pos: -27.5,25.5 parent: 2 - - uid: 15011 + - uid: 9141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,39.5 + pos: -30.5,30.5 parent: 2 - - uid: 15013 + - uid: 9142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,39.5 + pos: -31.5,30.5 parent: 2 - - uid: 15045 + - uid: 9145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,25.5 + pos: 84.5,-8.5 parent: 2 - - uid: 15047 + - uid: 9152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,35.5 + pos: -27.5,33.5 parent: 2 - - uid: 15052 + - uid: 9155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,33.5 + pos: -24.5,33.5 parent: 2 - - uid: 15056 + - uid: 9191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,33.5 + rot: 3.141592653589793 rad + pos: -21.5,36.5 parent: 2 - - uid: 15060 + - uid: 9195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,36.5 + rot: 3.141592653589793 rad + pos: -23.5,34.5 parent: 2 - - uid: 15062 + - uid: 9206 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,0.5 + pos: -62.5,-19.5 parent: 2 - - uid: 15066 + - uid: 9209 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,6.5 + pos: -60.5,-18.5 parent: 2 - - uid: 15068 + - uid: 9210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,7.5 + pos: -59.5,-18.5 parent: 2 - - uid: 15072 + - uid: 9215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,7.5 + pos: -39.5,-37.5 parent: 2 - - uid: 15073 + - uid: 10638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,7.5 + pos: 15.5,-68.5 parent: 2 - - uid: 15076 + - uid: 10640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-3.5 + pos: 22.5,-77.5 parent: 2 - - uid: 15078 + - uid: 10641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-3.5 + pos: 23.5,-67.5 parent: 2 - - uid: 15158 + - uid: 10643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,22.5 + pos: 14.5,-76.5 parent: 2 - - uid: 15205 + - uid: 10644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,2.5 + rot: -1.5707963267948966 rad + pos: 16.5,-55.5 parent: 2 - - uid: 15207 + - uid: 10645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-1.5 + pos: 23.5,-71.5 parent: 2 - - uid: 15216 + - uid: 10647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,4.5 + pos: 14.5,-66.5 parent: 2 - - uid: 15218 + - uid: 10649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-67.5 + pos: 14.5,-70.5 parent: 2 - - uid: 15220 + - uid: 10652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-70.5 + pos: 25.5,-66.5 parent: 2 - - uid: 15223 + - uid: 11665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-69.5 + pos: 76.5,-32.5 parent: 2 - - uid: 15224 + - uid: 12255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-68.5 + pos: 43.5,19.5 parent: 2 - - uid: 15246 + - uid: 12462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,38.5 + pos: 54.5,-28.5 parent: 2 - - uid: 15247 + - uid: 12832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,42.5 + pos: 11.5,-52.5 parent: 2 - - uid: 15248 + - uid: 12833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,42.5 + pos: 17.5,-76.5 parent: 2 - - uid: 15249 + - uid: 12835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,42.5 + pos: 15.5,-74.5 parent: 2 - - uid: 15591 + - uid: 12836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,40.5 + pos: 15.5,-72.5 parent: 2 - - uid: 15623 + - uid: 12839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,38.5 + pos: 20.5,-76.5 parent: 2 - - uid: 15624 + - uid: 13730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,18.5 + pos: 77.5,-32.5 parent: 2 - - uid: 15846 + - uid: 14199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,18.5 + pos: 63.5,27.5 parent: 2 - - uid: 15849 + - uid: 14632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,17.5 + pos: -37.5,-42.5 parent: 2 - - uid: 15851 + - uid: 14672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,16.5 + pos: -61.5,-33.5 parent: 2 - - uid: 15858 + - uid: 14956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-45.5 + rot: -1.5707963267948966 rad + pos: -36.5,30.5 parent: 2 - - uid: 15874 + - uid: 14959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-44.5 + rot: -1.5707963267948966 rad + pos: -39.5,30.5 parent: 2 - - uid: 15877 + - uid: 14960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-44.5 + rot: -1.5707963267948966 rad + pos: -40.5,30.5 parent: 2 - - uid: 15878 + - uid: 15010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,22.5 + rot: -1.5707963267948966 rad + pos: -38.5,23.5 parent: 2 - - uid: 15888 + - uid: 15012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,28.5 + rot: -1.5707963267948966 rad + pos: -38.5,21.5 parent: 2 - - uid: 15941 + - uid: 15039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,28.5 + pos: -24.5,39.5 parent: 2 - - uid: 15944 + - uid: 15044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,26.5 + pos: -29.5,39.5 parent: 2 - - uid: 15945 + - uid: 15048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,25.5 + pos: -30.5,34.5 parent: 2 - - uid: 15995 + - uid: 15049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,28.5 + pos: -30.5,33.5 parent: 2 - - uid: 16024 + - uid: 15051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,28.5 + pos: -20.5,38.5 parent: 2 - - uid: 16027 + - uid: 15067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,26.5 + rot: -1.5707963267948966 rad + pos: -32.5,39.5 parent: 2 - - uid: 16056 + - uid: 15069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,25.5 + rot: -1.5707963267948966 rad + pos: -34.5,39.5 parent: 2 - - uid: 16060 + - uid: 15070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-36.5 + rot: -1.5707963267948966 rad + pos: -34.5,38.5 parent: 2 - - uid: 16061 + - uid: 15074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-32.5 + rot: -1.5707963267948966 rad + pos: -34.5,34.5 parent: 2 - - uid: 16073 + - uid: 15075 components: - type: Transform - pos: 55.5,-22.5 + rot: -1.5707963267948966 rad + pos: -34.5,33.5 parent: 2 - - uid: 16087 + - uid: 15077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-32.5 + rot: -1.5707963267948966 rad + pos: -32.5,33.5 parent: 2 - - uid: 16088 + - uid: 15079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-30.5 + rot: -1.5707963267948966 rad + pos: -30.5,38.5 parent: 2 - - uid: 16092 + - uid: 15082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-23.5 + pos: 18.5,24.5 parent: 2 - - uid: 16093 + - uid: 15197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-43.5 + pos: 71.5,-3.5 parent: 2 - - uid: 16094 + - uid: 15200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-4.5 + pos: 71.5,-0.5 parent: 2 - - uid: 16096 + - uid: 15208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-4.5 + pos: 71.5,3.5 parent: 2 - - uid: 16098 + - uid: 15217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-6.5 + pos: 70.5,7.5 parent: 2 - - uid: 16100 + - uid: 15219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,25.5 + pos: 68.5,7.5 parent: 2 - - uid: 16101 + - uid: 15244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,25.5 + pos: 67.5,22.5 parent: 2 - - uid: 16153 + - uid: 15245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,25.5 + pos: 66.5,22.5 parent: 2 - - uid: 16160 + - uid: 15397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,22.5 + pos: 21.5,-39.5 parent: 2 - - uid: 16165 + - uid: 15590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,27.5 + pos: 7.5,-45.5 parent: 2 - - uid: 16169 + - uid: 15599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,26.5 + pos: 43.5,17.5 parent: 2 - - uid: 16171 + - uid: 15847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-46.5 + rot: -1.5707963267948966 rad + pos: -52.5,-70.5 parent: 2 - - uid: 16178 + - uid: 15848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-46.5 + rot: -1.5707963267948966 rad + pos: -42.5,-69.5 parent: 2 - - uid: 16179 + - uid: 15850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-46.5 + rot: -1.5707963267948966 rad + pos: -52.5,-68.5 parent: 2 - - uid: 16309 + - uid: 15859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-46.5 + rot: -1.5707963267948966 rad + pos: -42.5,-67.5 parent: 2 - - uid: 16347 + - uid: 15876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-33.5 + pos: -17.5,41.5 parent: 2 - - uid: 16348 + - uid: 15883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-36.5 + pos: -11.5,42.5 parent: 2 - - uid: 16351 + - uid: 15885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-37.5 + pos: -10.5,41.5 parent: 2 - - uid: 16374 + - uid: 15942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-37.5 + pos: -43.5,18.5 parent: 2 - - uid: 16389 + - uid: 15946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-37.5 + pos: -44.5,15.5 parent: 2 - - uid: 16427 + - uid: 16002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-27.5 + pos: -21.5,-45.5 parent: 2 - - uid: 16431 + - uid: 16004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-25.5 + pos: -19.5,-45.5 parent: 2 - - uid: 16432 + - uid: 16023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-23.5 + pos: -23.5,-44.5 parent: 2 - - uid: 16433 + - uid: 16025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-22.5 + pos: -20.5,-45.5 parent: 2 - - uid: 16434 + - uid: 16090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-22.5 + pos: 63.5,28.5 parent: 2 - - uid: 16435 + - uid: 16091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,29.5 + pos: 60.5,28.5 parent: 2 - - uid: 16452 + - uid: 16095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,32.5 + pos: 58.5,28.5 parent: 2 - - uid: 16455 + - uid: 16099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,33.5 + pos: 55.5,27.5 parent: 2 - - uid: 16456 + - uid: 16154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-18.5 + pos: 71.5,-36.5 parent: 2 - - uid: 16459 + - uid: 16167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,22.5 + pos: -37.5,-46.5 parent: 2 - - uid: 16461 + - uid: 16170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,22.5 + pos: 84.5,-31.5 parent: 2 - - uid: 16484 + - uid: 16177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,21.5 + pos: 84.5,-24.5 parent: 2 - - uid: 16485 + - uid: 16262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 + pos: 20.5,-39.5 parent: 2 - - uid: 16487 + - uid: 16308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-33.5 + pos: 78.5,-4.5 parent: 2 - - uid: 16489 + - uid: 16312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,39.5 + pos: 80.5,-4.5 parent: 2 - - uid: 16491 + - uid: 16314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,42.5 + pos: 83.5,-5.5 parent: 2 - - uid: 16492 + - uid: 16316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,43.5 + pos: 83.5,-7.5 parent: 2 - - uid: 16493 + - uid: 16337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,43.5 + pos: 53.5,25.5 parent: 2 - - uid: 16509 + - uid: 16343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,43.5 + pos: 54.5,25.5 parent: 2 - - uid: 16512 + - uid: 16346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-23.5 + pos: 49.5,25.5 parent: 2 - - uid: 16513 + - uid: 16390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,38.5 + pos: 17.5,26.5 parent: 2 - - uid: 16517 + - uid: 16423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 + pos: -26.5,-44.5 parent: 2 - - uid: 16519 + - uid: 16429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,33.5 + pos: 16.5,28.5 parent: 2 - - uid: 16521 + - uid: 16430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-11.5 + pos: -31.5,-46.5 parent: 2 - - uid: 16522 + - uid: 16457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-10.5 + pos: -59.5,-37.5 parent: 2 - - uid: 16523 + - uid: 16458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-40.5 + pos: -58.5,-37.5 parent: 2 - - uid: 16552 + - uid: 16460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,55.5 + pos: -56.5,-37.5 parent: 2 - - uid: 16566 + - uid: 16462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,56.5 + pos: -54.5,-37.5 parent: 2 - - uid: 16569 + - uid: 16488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,55.5 + pos: -68.5,-26.5 parent: 2 - - uid: 16571 + - uid: 16490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,51.5 + pos: -68.5,-24.5 parent: 2 - - uid: 16573 + - uid: 16494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,50.5 + pos: -65.5,-22.5 parent: 2 - - uid: 16575 + - uid: 16495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,51.5 + pos: -67.5,-22.5 parent: 2 - - uid: 16614 + - uid: 16510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,24.5 + pos: 16.5,30.5 parent: 2 - - uid: 16621 + - uid: 16511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-34.5 + pos: 16.5,31.5 parent: 2 - - uid: 16623 + - uid: 16518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-29.5 + pos: 48.5,22.5 parent: 2 - - uid: 16625 + - uid: 16520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-27.5 + pos: 46.5,22.5 parent: 2 - - uid: 16660 + - uid: 16570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-43.5 + rot: 3.141592653589793 rad + pos: 10.5,43.5 parent: 2 - - uid: 16730 + - uid: 16572 components: - type: Transform - pos: 15.5,-66.5 + rot: 3.141592653589793 rad + pos: 8.5,43.5 parent: 2 - - uid: 16754 + - uid: 16574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,38.5 + rot: 3.141592653589793 rad + pos: 6.5,43.5 parent: 2 - - uid: 16755 + - uid: 16604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,38.5 + rot: -1.5707963267948966 rad + pos: 50.5,-43.5 parent: 2 - - uid: 16782 + - uid: 16613 components: - type: Transform - pos: 63.5,-37.5 + pos: 85.5,-23.5 parent: 2 - - uid: 16787 + - uid: 16622 components: - type: Transform - pos: 61.5,-37.5 + pos: 17.5,37.5 parent: 2 - - uid: 16827 + - uid: 16624 components: - type: Transform - pos: 15.5,-76.5 + pos: 17.5,35.5 parent: 2 - - uid: 16834 + - uid: 16626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,43.5 + pos: 17.5,34.5 parent: 2 - - uid: 16847 + - uid: 16713 components: - type: Transform - pos: 65.5,-37.5 + pos: 22.5,-75.5 parent: 2 - - uid: 16853 + - uid: 16734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,43.5 + pos: 23.5,-70.5 parent: 2 - - uid: 16855 + - uid: 16773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,43.5 + rot: -1.5707963267948966 rad + pos: 56.5,-42.5 parent: 2 - - uid: 16857 + - uid: 16774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,43.5 + pos: 55.5,-42.5 parent: 2 - - uid: 16858 + - uid: 16775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,40.5 + pos: 55.5,-41.5 parent: 2 - - uid: 16860 + - uid: 16790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,41.5 + pos: 62.5,-37.5 parent: 2 - - uid: 16861 + - uid: 16794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-36.5 + pos: 66.5,-37.5 parent: 2 - - uid: 16913 + - uid: 16801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-34.5 + rot: -1.5707963267948966 rad + pos: 49.5,-40.5 parent: 2 - - uid: 17238 + - uid: 16813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-35.5 + pos: 43.5,-57.5 parent: 2 - - uid: 17328 + - uid: 16822 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-36.5 + pos: 54.5,-26.5 parent: 2 - - uid: 17362 + - uid: 16828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,18.5 + pos: 30.5,-52.5 parent: 2 - - uid: 17434 + - uid: 16852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-48.5 + pos: 5.5,56.5 parent: 2 - - uid: 17558 + - uid: 16854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-3.5 + pos: 6.5,55.5 parent: 2 - - uid: 18472 + - uid: 16856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-5.5 + pos: -5.5,55.5 parent: 2 - - uid: 18473 + - uid: 16859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 + pos: -9.5,51.5 parent: 2 - - uid: 19807 + - uid: 16862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,22.5 + pos: -6.5,51.5 parent: 2 - - uid: 19809 + - uid: 17018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,21.5 + pos: 24.5,-67.5 parent: 2 - - uid: 20302 + - uid: 17020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,22.5 + pos: 24.5,-74.5 parent: 2 - - uid: 20304 + - uid: 17070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,24.5 + pos: 39.5,-52.5 parent: 2 - - uid: 20309 + - uid: 17071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,25.5 + pos: 49.5,-56.5 parent: 2 - - uid: 20310 + - uid: 17072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,25.5 + pos: 55.5,-48.5 parent: 2 - - uid: 20331 + - uid: 17073 components: - type: Transform - pos: 14.5,-72.5 + pos: 61.5,-56.5 parent: 2 - - uid: 20358 + - uid: 17074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,24.5 + pos: 64.5,-48.5 parent: 2 - - uid: 20359 + - uid: 17197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,24.5 + pos: 66.5,-35.5 parent: 2 - - uid: 20361 + - uid: 17202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-45.5 + pos: 64.5,-49.5 parent: 2 - - uid: 20363 + - uid: 17209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-10.5 + pos: 67.5,-48.5 parent: 2 - - uid: 20365 + - uid: 17210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-10.5 + pos: 65.5,-48.5 parent: 2 - - uid: 20366 + - uid: 17211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 92.5,-10.5 + pos: 66.5,-48.5 parent: 2 - - uid: 20399 + - uid: 17232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-17.5 + pos: 64.5,-37.5 parent: 2 - - uid: 20401 + - uid: 17247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-18.5 + pos: 67.5,-49.5 parent: 2 - - uid: 20404 + - uid: 17327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-19.5 + rot: -1.5707963267948966 rad + pos: 56.5,-38.5 parent: 2 - - uid: 20414 + - uid: 17354 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,-20.5 + pos: 54.5,-29.5 parent: 2 - - uid: 20530 + - uid: 18469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 92.5,-21.5 + rot: -1.5707963267948966 rad + pos: 63.5,-6.5 parent: 2 - - uid: 20532 + - uid: 18470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-21.5 + rot: -1.5707963267948966 rad + pos: 62.5,-7.5 parent: 2 - - uid: 20534 + - uid: 18475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-21.5 + rot: -1.5707963267948966 rad + pos: 62.5,-4.5 parent: 2 - - uid: 20535 + - uid: 18579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-22.5 + pos: 15.5,-75.5 parent: 2 - - uid: 20537 + - uid: 19151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-23.5 + pos: 19.5,-76.5 parent: 2 - - uid: 20538 + - uid: 20088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-23.5 + pos: 16.5,-75.5 parent: 2 - - uid: 20539 + - uid: 20089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-39.5 + pos: 23.5,-75.5 parent: 2 - - uid: 20540 + - uid: 20097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-44.5 + pos: 22.5,-76.5 parent: 2 - - uid: 20795 + - uid: 20201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-48.5 + pos: 19.5,-77.5 parent: 2 - - uid: 20804 + - uid: 20303 components: - type: Transform - pos: 14.5,-68.5 + pos: 15.5,38.5 parent: 2 - - uid: 20880 + - uid: 20356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-48.5 + rot: 3.141592653589793 rad + pos: 12.5,39.5 parent: 2 - - uid: 20882 + - uid: 20357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-48.5 + rot: 3.141592653589793 rad + pos: 12.5,42.5 parent: 2 - - uid: 20908 + - uid: 20360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-39.5 + rot: 3.141592653589793 rad + pos: 14.5,43.5 parent: 2 - - uid: 20909 + - uid: 20362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,7.5 + rot: 3.141592653589793 rad + pos: 16.5,43.5 parent: 2 - - uid: 21401 + - uid: 20364 components: - type: Transform - pos: 15.5,-73.5 + rot: 3.141592653589793 rad + pos: 17.5,42.5 parent: 2 - - uid: 21462 + - uid: 20367 components: - type: Transform - pos: 24.5,-69.5 + rot: 3.141592653589793 rad + pos: 17.5,39.5 parent: 2 - - uid: 21523 + - uid: 20398 components: - type: Transform - pos: 21.5,-76.5 + pos: 83.5,-36.5 parent: 2 - - uid: 21524 + - uid: 20400 components: - type: Transform - pos: 18.5,-77.5 + pos: 84.5,-35.5 parent: 2 - - uid: 21527 + - uid: 20402 components: - type: Transform - pos: 23.5,-68.5 + pos: 84.5,-33.5 parent: 2 - - uid: 21647 + - uid: 20405 components: - type: Transform - pos: 42.5,17.5 + pos: 79.5,-34.5 parent: 2 - - uid: 21969 + - uid: 20406 components: - type: Transform - pos: -68.5,-33.5 + pos: 79.5,-33.5 parent: 2 - - uid: 21981 + - uid: 20529 components: - type: Transform - pos: -68.5,-29.5 + pos: -41.5,22.5 parent: 2 - - uid: 22007 + - uid: 20531 components: - type: Transform - pos: 22.5,-59.5 + pos: -42.5,21.5 parent: 2 - - uid: 22017 + - uid: 20533 components: - type: Transform - pos: 23.5,-66.5 + pos: -44.5,22.5 parent: 2 -- proto: WallShuttle - entities: - - uid: 21142 + - uid: 20536 components: - type: Transform - pos: 6.5,3.5 - parent: 21128 - - uid: 21143 + pos: -44.5,24.5 + parent: 2 + - uid: 20879 components: - type: Transform - pos: 6.5,2.5 - parent: 21128 - - uid: 21144 + pos: 87.5,-10.5 + parent: 2 + - uid: 20883 components: - type: Transform - pos: 6.5,1.5 - parent: 21128 - - uid: 21145 + pos: 89.5,-10.5 + parent: 2 + - uid: 20889 components: - type: Transform - pos: 6.5,0.5 - parent: 21128 - - uid: 21146 + pos: 91.5,-10.5 + parent: 2 + - uid: 20902 components: - type: Transform - pos: 6.5,-0.5 - parent: 21128 - - uid: 21147 + pos: 93.5,-16.5 + parent: 2 + - uid: 20924 components: - type: Transform - pos: 6.5,-1.5 - parent: 21128 - - uid: 21148 + rot: 3.141592653589793 rad + pos: 93.5,-21.5 + parent: 2 + - uid: 20925 components: - type: Transform - pos: 6.5,-2.5 - parent: 21128 - - uid: 21149 + rot: 3.141592653589793 rad + pos: 91.5,-21.5 + parent: 2 + - uid: 20930 components: - type: Transform - pos: 6.5,-4.5 - parent: 21128 - - uid: 21150 + rot: 3.141592653589793 rad + pos: 87.5,-21.5 + parent: 2 + - uid: 20932 components: - type: Transform - pos: 8.5,-6.5 - parent: 21128 - - uid: 21151 + rot: 3.141592653589793 rad + pos: 90.5,-23.5 + parent: 2 + - uid: 20935 components: - type: Transform - pos: 9.5,-6.5 - parent: 21128 - - uid: 21152 + rot: 3.141592653589793 rad + pos: 87.5,-23.5 + parent: 2 + - uid: 21398 components: - type: Transform - pos: 10.5,-6.5 - parent: 21128 - - uid: 21153 + pos: -21.5,-48.5 + parent: 2 + - uid: 21453 components: - type: Transform - pos: 10.5,-5.5 - parent: 21128 - - uid: 21154 + pos: -64.5,-33.5 + parent: 2 + - uid: 21460 components: - type: Transform - pos: 7.5,-0.5 - parent: 21128 - - uid: 21155 + pos: 24.5,-76.5 + parent: 2 + - uid: 21461 components: - type: Transform - pos: 4.5,-0.5 - parent: 21128 - - uid: 21156 + pos: 14.5,-71.5 + parent: 2 + - uid: 21463 components: - type: Transform - pos: 4.5,-2.5 - parent: 21128 - - uid: 21157 + pos: 15.5,-62.5 + parent: 2 + - uid: 21525 components: - type: Transform - pos: 4.5,-4.5 - parent: 21128 - - uid: 21158 + pos: 24.5,-72.5 + parent: 2 + - uid: 21526 components: - type: Transform - pos: 4.5,-5.5 - parent: 21128 - - uid: 21159 + pos: 24.5,-73.5 + parent: 2 + - uid: 21528 components: - type: Transform - pos: 4.5,-6.5 - parent: 21128 - - uid: 21160 + pos: 11.5,-66.5 + parent: 2 + - uid: 21587 components: - type: Transform - pos: 4.5,-7.5 - parent: 21128 - - uid: 21161 + rot: -1.5707963267948966 rad + pos: 7.5,-49.5 + parent: 2 + - uid: 21588 components: - type: Transform - pos: 4.5,-8.5 - parent: 21128 - - uid: 21162 + rot: -1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + - uid: 21589 components: - type: Transform - pos: 3.5,-8.5 - parent: 21128 - - uid: 21163 + rot: -1.5707963267948966 rad + pos: 9.5,-49.5 + parent: 2 + - uid: 21671 components: - type: Transform - pos: 3.5,-9.5 - parent: 21128 - - uid: 21164 + rot: 1.5707963267948966 rad + pos: 66.5,18.5 + parent: 2 + - uid: 21748 components: - type: Transform - pos: 2.5,-9.5 - parent: 21128 - - uid: 21165 + pos: 42.5,16.5 + parent: 2 + - uid: 22006 components: - type: Transform - pos: 1.5,-9.5 - parent: 21128 - - uid: 21166 + rot: 3.141592653589793 rad + pos: 20.5,-59.5 + parent: 2 + - uid: 22038 components: - type: Transform - pos: 0.5,-9.5 - parent: 21128 - - uid: 21167 + pos: 20.5,-71.5 + parent: 2 + - uid: 22041 components: - type: Transform - pos: 0.5,-8.5 - parent: 21128 - - uid: 21168 + pos: 18.5,-71.5 + parent: 2 + - uid: 22042 components: - type: Transform - pos: -0.5,-8.5 - parent: 21128 - - uid: 21169 + pos: 20.5,-74.5 + parent: 2 + - uid: 22043 components: - type: Transform - pos: -0.5,-7.5 - parent: 21128 - - uid: 21170 + pos: 18.5,-74.5 + parent: 2 + - uid: 22044 components: - type: Transform - pos: -0.5,-6.5 - parent: 21128 - - uid: 21171 + pos: 19.5,-74.5 + parent: 2 + - uid: 22174 components: - type: Transform - pos: -0.5,-5.5 - parent: 21128 - - uid: 21172 + pos: 18.5,-73.5 + parent: 2 + - uid: 22177 components: - type: Transform - pos: -0.5,-1.5 - parent: 21128 - - uid: 21173 + pos: 20.5,-73.5 + parent: 2 + - uid: 22448 components: - type: Transform - pos: -0.5,-0.5 - parent: 21128 - - uid: 21174 + pos: -63.5,-33.5 + parent: 2 +- proto: WallReinforcedRust + entities: + - uid: 597 components: - type: Transform - pos: 10.5,3.5 - parent: 21128 - - uid: 21175 + pos: 14.5,-73.5 + parent: 2 + - uid: 2330 components: - type: Transform - pos: 10.5,1.5 - parent: 21128 -- proto: WallSolid - entities: - - uid: 2702 + rot: 1.5707963267948966 rad + pos: -38.5,-42.5 + parent: 2 + - uid: 2368 components: - type: Transform - pos: -41.5,3.5 + rot: 1.5707963267948966 rad + pos: 51.5,-42.5 parent: 2 - - uid: 2703 + - uid: 2370 components: - type: Transform - pos: 16.5,17.5 + rot: 1.5707963267948966 rad + pos: 55.5,-43.5 parent: 2 - - uid: 2705 + - uid: 2372 components: - type: Transform - pos: -18.5,10.5 + rot: 1.5707963267948966 rad + pos: 50.5,-41.5 parent: 2 - - uid: 2707 + - uid: 2374 components: - type: Transform - pos: 15.5,-0.5 + rot: 1.5707963267948966 rad + pos: -10.5,11.5 parent: 2 - - uid: 2711 + - uid: 2376 components: - type: Transform - pos: 16.5,6.5 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 parent: 2 - - uid: 2712 + - uid: 2379 components: - type: Transform - pos: 16.5,8.5 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 parent: 2 - - uid: 2713 + - uid: 2384 components: - type: Transform - pos: 16.5,4.5 + rot: 1.5707963267948966 rad + pos: -0.5,11.5 parent: 2 - - uid: 2715 + - uid: 2385 components: - type: Transform - pos: 16.5,9.5 + rot: 1.5707963267948966 rad + pos: -2.5,11.5 parent: 2 - - uid: 2716 + - uid: 2387 components: - type: Transform - pos: 16.5,11.5 + rot: 1.5707963267948966 rad + pos: 1.5,11.5 parent: 2 - - uid: 2718 + - uid: 2390 components: - type: Transform - pos: 15.5,12.5 + rot: 1.5707963267948966 rad + pos: 5.5,11.5 parent: 2 - - uid: 2719 + - uid: 2392 components: - type: Transform - pos: 16.5,10.5 + rot: 1.5707963267948966 rad + pos: 8.5,11.5 parent: 2 - - uid: 2722 + - uid: 2394 components: - type: Transform - pos: 14.5,15.5 + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 parent: 2 - - uid: 2724 + - uid: 2397 components: - type: Transform - pos: 12.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,11.5 parent: 2 - - uid: 2725 + - uid: 2399 components: - type: Transform - pos: 11.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,9.5 parent: 2 - - uid: 2733 + - uid: 2402 components: - type: Transform - pos: 9.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,7.5 parent: 2 - - uid: 2743 + - uid: 2404 components: - type: Transform - pos: 3.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,4.5 parent: 2 - - uid: 2744 + - uid: 2407 components: - type: Transform - pos: 2.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,2.5 parent: 2 - - uid: 2746 + - uid: 2410 components: - type: Transform - pos: 0.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 parent: 2 - - uid: 2747 + - uid: 2412 components: - type: Transform - pos: -5.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 parent: 2 - - uid: 2748 + - uid: 2413 components: - type: Transform - pos: -6.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 parent: 2 - - uid: 2750 + - uid: 2416 components: - type: Transform - pos: -8.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 parent: 2 - - uid: 2751 + - uid: 2418 components: - type: Transform - pos: -10.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 parent: 2 - - uid: 2752 + - uid: 2420 components: - type: Transform - pos: -11.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 parent: 2 - - uid: 2754 + - uid: 2424 components: - type: Transform - pos: -13.5,15.5 + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 parent: 2 - - uid: 2756 + - uid: 2426 components: - type: Transform - pos: -14.5,14.5 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 parent: 2 - - uid: 2758 + - uid: 2427 components: - type: Transform - pos: -14.5,12.5 + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 parent: 2 - - uid: 2826 + - uid: 2429 components: - type: Transform - pos: 10.5,-34.5 + rot: 1.5707963267948966 rad + pos: -3.5,-10.5 parent: 2 - - uid: 2830 + - uid: 2430 components: - type: Transform - pos: -16.5,-12.5 + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 parent: 2 - - uid: 2831 + - uid: 2433 components: - type: Transform - pos: -16.5,-15.5 + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 parent: 2 - - uid: 2832 + - uid: 2435 components: - type: Transform - pos: -16.5,-16.5 + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 parent: 2 - - uid: 2835 + - uid: 2436 components: - type: Transform - pos: -16.5,-19.5 + rot: 1.5707963267948966 rad + pos: -9.5,-10.5 parent: 2 - - uid: 2836 + - uid: 2437 components: - type: Transform - pos: -16.5,-20.5 + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 parent: 2 - - uid: 2868 + - uid: 2439 components: - type: Transform - pos: -15.5,-21.5 + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 parent: 2 - - uid: 2869 + - uid: 2440 components: - type: Transform - pos: -13.5,-21.5 + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 parent: 2 - - uid: 2873 + - uid: 2442 components: - type: Transform - pos: -12.5,-22.5 + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 parent: 2 - - uid: 2874 + - uid: 2443 components: - type: Transform - pos: -12.5,-23.5 + rot: 1.5707963267948966 rad + pos: -10.5,4.5 parent: 2 - - uid: 2875 + - uid: 2448 components: - type: Transform - pos: -12.5,-24.5 + rot: 1.5707963267948966 rad + pos: -10.5,3.5 parent: 2 - - uid: 2877 + - uid: 2449 components: - type: Transform - pos: -12.5,-26.5 + rot: 1.5707963267948966 rad + pos: -10.5,9.5 parent: 2 - - uid: 2879 + - uid: 2450 components: - type: Transform - pos: -12.5,-28.5 + rot: 1.5707963267948966 rad + pos: -10.5,7.5 parent: 2 - - uid: 2880 + - uid: 2452 components: - type: Transform - pos: 27.5,-0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 parent: 2 - - uid: 2884 + - uid: 2457 components: - type: Transform - pos: 24.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 parent: 2 - - uid: 2885 + - uid: 2458 components: - type: Transform - pos: 23.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 parent: 2 - - uid: 2886 + - uid: 2459 components: - type: Transform - pos: 22.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 parent: 2 - - uid: 2888 + - uid: 2461 components: - type: Transform - pos: 20.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 parent: 2 - - uid: 2892 + - uid: 2463 components: - type: Transform - pos: 18.5,0.5 + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 parent: 2 - - uid: 2894 + - uid: 2466 components: - type: Transform - pos: 16.5,0.5 + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 parent: 2 - - uid: 2895 + - uid: 2467 components: - type: Transform - pos: -15.5,-5.5 + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 parent: 2 - - uid: 2896 + - uid: 2468 components: - type: Transform - pos: 16.5,1.5 + rot: 1.5707963267948966 rad + pos: 7.5,-15.5 parent: 2 - - uid: 2898 + - uid: 2472 components: - type: Transform - pos: -56.5,-22.5 + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 parent: 2 - - uid: 2899 + - uid: 2473 components: - type: Transform - pos: -18.5,-5.5 + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 parent: 2 - - uid: 2900 + - uid: 2474 components: - type: Transform - pos: -17.5,-5.5 + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 parent: 2 - - uid: 2903 + - uid: 2476 components: - type: Transform - pos: -16.5,8.5 + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 parent: 2 - - uid: 2905 + - uid: 2479 components: - type: Transform - pos: -17.5,8.5 + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 parent: 2 - - uid: 2906 + - uid: 2481 components: - type: Transform - pos: -18.5,7.5 + rot: 1.5707963267948966 rad + pos: 13.5,-10.5 parent: 2 - - uid: 2910 + - uid: 2483 components: - type: Transform - pos: -16.5,4.5 + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 parent: 2 - - uid: 2911 + - uid: 2485 components: - type: Transform - pos: -17.5,4.5 + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 parent: 2 - - uid: 2913 + - uid: 2489 components: - type: Transform - pos: -18.5,5.5 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 parent: 2 - - uid: 2915 + - uid: 2492 components: - type: Transform - pos: -35.5,-7.5 + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 parent: 2 - - uid: 2917 + - uid: 2495 components: - type: Transform - pos: -21.5,-5.5 + rot: 1.5707963267948966 rad + pos: 13.5,2.5 parent: 2 - - uid: 2918 + - uid: 2496 components: - type: Transform - pos: -17.5,12.5 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 parent: 2 - - uid: 2919 + - uid: 2500 components: - type: Transform - pos: -17.5,16.5 + rot: 1.5707963267948966 rad + pos: 13.5,7.5 parent: 2 - - uid: 2921 + - uid: 2503 components: - type: Transform - pos: -17.5,18.5 + rot: 1.5707963267948966 rad + pos: 13.5,11.5 parent: 2 - - uid: 2925 + - uid: 2505 components: - type: Transform - pos: -16.5,18.5 + rot: 1.5707963267948966 rad + pos: 13.5,13.5 parent: 2 - - uid: 2926 + - uid: 2508 components: - type: Transform - pos: -11.5,18.5 + rot: 1.5707963267948966 rad + pos: 11.5,13.5 parent: 2 - - uid: 2927 + - uid: 2510 components: - type: Transform - pos: -13.5,18.5 + rot: 1.5707963267948966 rad + pos: 8.5,13.5 parent: 2 - - uid: 2928 + - uid: 2512 components: - type: Transform - pos: -10.5,18.5 + rot: 1.5707963267948966 rad + pos: 6.5,13.5 parent: 2 - - uid: 2931 + - uid: 2516 components: - type: Transform - pos: -9.5,18.5 + rot: 1.5707963267948966 rad + pos: 3.5,13.5 parent: 2 - - uid: 2960 + - uid: 2518 components: - type: Transform - pos: -7.5,18.5 + rot: 1.5707963267948966 rad + pos: 1.5,13.5 parent: 2 - - uid: 2961 + - uid: 2521 components: - type: Transform - pos: -4.5,18.5 + rot: 1.5707963267948966 rad + pos: -1.5,13.5 parent: 2 - - uid: 2962 + - uid: 2524 components: - type: Transform - pos: -2.5,18.5 + rot: 1.5707963267948966 rad + pos: -4.5,13.5 parent: 2 - - uid: 2963 + - uid: 2527 components: - type: Transform - pos: -5.5,18.5 + rot: 1.5707963267948966 rad + pos: -6.5,13.5 parent: 2 - - uid: 2964 + - uid: 2529 components: - type: Transform - pos: -1.5,18.5 + rot: 1.5707963267948966 rad + pos: -9.5,13.5 parent: 2 - - uid: 2966 + - uid: 2531 components: - type: Transform - pos: -3.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,13.5 parent: 2 - - uid: 2967 + - uid: 2533 components: - type: Transform - pos: 0.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,10.5 parent: 2 - - uid: 2968 + - uid: 2534 components: - type: Transform - pos: 1.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,8.5 parent: 2 - - uid: 2969 + - uid: 2535 components: - type: Transform - pos: 3.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,6.5 parent: 2 - - uid: 2971 + - uid: 2538 components: - type: Transform - pos: 2.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,4.5 parent: 2 - - uid: 2972 + - uid: 2540 components: - type: Transform - pos: 5.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,3.5 parent: 2 - - uid: 2991 + - uid: 2542 components: - type: Transform - pos: 13.5,18.5 + rot: 1.5707963267948966 rad + pos: -10.5,-0.5 parent: 2 - - uid: 3023 + - uid: 2545 components: - type: Transform - pos: -33.5,-7.5 + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 parent: 2 - - uid: 3027 + - uid: 2546 components: - type: Transform - pos: 16.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 parent: 2 - - uid: 3037 + - uid: 2548 components: - type: Transform - pos: 14.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 parent: 2 - - uid: 3040 + - uid: 2549 components: - type: Transform - pos: 9.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 parent: 2 - - uid: 3042 + - uid: 2551 components: - type: Transform - pos: 7.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 parent: 2 - - uid: 3043 + - uid: 2553 components: - type: Transform - pos: 13.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 parent: 2 - - uid: 3044 + - uid: 2554 components: - type: Transform - pos: 6.5,-34.5 + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 parent: 2 - - uid: 3045 + - uid: 2556 components: - type: Transform - pos: 6.5,-33.5 + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 parent: 2 - - uid: 3050 + - uid: 2557 components: - type: Transform - pos: -8.5,-32.5 + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 parent: 2 - - uid: 3051 + - uid: 2559 components: - type: Transform - pos: -9.5,-32.5 + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 parent: 2 - - uid: 3060 + - uid: 2560 components: - type: Transform - pos: -11.5,-32.5 + rot: 1.5707963267948966 rad + pos: -10.5,-19.5 parent: 2 - - uid: 3061 + - uid: 2562 components: - type: Transform - pos: -12.5,-32.5 + rot: 1.5707963267948966 rad + pos: -11.5,-19.5 parent: 2 - - uid: 3062 + - uid: 2565 components: - type: Transform - pos: 44.5,-14.5 + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 parent: 2 - - uid: 3063 + - uid: 2568 components: - type: Transform - pos: 45.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-13.5 parent: 2 - - uid: 3064 + - uid: 2569 components: - type: Transform - pos: 44.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 parent: 2 - - uid: 3065 + - uid: 2571 components: - type: Transform - pos: 47.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-17.5 parent: 2 - - uid: 3066 + - uid: 2572 components: - type: Transform - pos: 46.5,-17.5 + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 parent: 2 - - uid: 3068 + - uid: 2575 components: - type: Transform - pos: 44.5,-15.5 + rot: 1.5707963267948966 rad + pos: -10.5,-17.5 parent: 2 - - uid: 3069 + - uid: 2581 components: - type: Transform - pos: -19.5,-5.5 + rot: 1.5707963267948966 rad + pos: -14.5,-19.5 parent: 2 - - uid: 3070 + - uid: 2582 components: - type: Transform - pos: -21.5,-8.5 + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 parent: 2 - - uid: 3073 + - uid: 2583 components: - type: Transform - pos: -17.5,15.5 + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 parent: 2 - - uid: 3074 + - uid: 2586 components: - type: Transform - pos: -23.5,16.5 + rot: 1.5707963267948966 rad + pos: -10.5,-23.5 parent: 2 - - uid: 3076 + - uid: 2587 components: - type: Transform - pos: -16.5,10.5 + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 parent: 2 - - uid: 3078 + - uid: 2589 components: - type: Transform - pos: -15.5,15.5 + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 parent: 2 - - uid: 3081 + - uid: 2590 components: - type: Transform - pos: -17.5,14.5 + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 parent: 2 - - uid: 3083 + - uid: 2591 components: - type: Transform - pos: 44.5,-13.5 + rot: 1.5707963267948966 rad + pos: -3.5,-24.5 parent: 2 - - uid: 3084 + - uid: 2593 components: - type: Transform - pos: -16.5,-7.5 + rot: 1.5707963267948966 rad + pos: -8.5,-25.5 parent: 2 - - uid: 3085 + - uid: 2595 components: - type: Transform - pos: -17.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-25.5 parent: 2 - - uid: 3088 + - uid: 2597 components: - type: Transform - pos: -19.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-26.5 parent: 2 - - uid: 3089 + - uid: 2599 components: - type: Transform - pos: -21.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-28.5 parent: 2 - - uid: 3090 + - uid: 2601 components: - type: Transform - pos: -21.5,-9.5 + rot: 1.5707963267948966 rad + pos: -8.5,-28.5 parent: 2 - - uid: 3092 + - uid: 2603 components: - type: Transform - pos: -16.5,-10.5 + rot: 1.5707963267948966 rad + pos: -3.5,-26.5 parent: 2 - - uid: 3093 + - uid: 2604 components: - type: Transform - pos: -15.5,-9.5 + rot: 1.5707963267948966 rad + pos: -3.5,-28.5 parent: 2 - - uid: 3094 + - uid: 2606 components: - type: Transform - pos: -15.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,-24.5 parent: 2 - - uid: 3113 + - uid: 2609 components: - type: Transform - pos: -16.5,-22.5 + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 parent: 2 - - uid: 3115 + - uid: 2611 components: - type: Transform - pos: -16.5,-23.5 + rot: 1.5707963267948966 rad + pos: 4.5,-24.5 parent: 2 - - uid: 3116 + - uid: 2612 components: - type: Transform - pos: -16.5,-24.5 + rot: 1.5707963267948966 rad + pos: 4.5,-26.5 parent: 2 - - uid: 3118 + - uid: 2617 components: - type: Transform - pos: -18.5,-24.5 + rot: 1.5707963267948966 rad + pos: 1.5,-25.5 parent: 2 - - uid: 3126 + - uid: 2618 components: - type: Transform - pos: -21.5,-24.5 + rot: 1.5707963267948966 rad + pos: 1.5,-28.5 parent: 2 - - uid: 3129 + - uid: 2622 components: - type: Transform - pos: -19.5,-28.5 + rot: 1.5707963267948966 rad + pos: 3.5,-28.5 parent: 2 - - uid: 3131 + - uid: 2624 components: - type: Transform - pos: -13.5,-32.5 + rot: 1.5707963267948966 rad + pos: 3.5,-20.5 parent: 2 - - uid: 3133 + - uid: 2625 components: - type: Transform - pos: -15.5,-32.5 + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 parent: 2 - - uid: 3134 + - uid: 2627 components: - type: Transform - pos: -17.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 parent: 2 - - uid: 3135 + - uid: 2630 components: - type: Transform - pos: -18.5,-32.5 + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 parent: 2 - - uid: 3136 + - uid: 2632 components: - type: Transform - pos: -19.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,-19.5 parent: 2 - - uid: 3140 + - uid: 2635 components: - type: Transform - pos: -26.5,-8.5 + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 parent: 2 - - uid: 3141 + - uid: 2638 components: - type: Transform - pos: -25.5,-7.5 + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 parent: 2 - - uid: 3144 + - uid: 2639 components: - type: Transform - pos: -26.5,-11.5 + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 parent: 2 - - uid: 3146 + - uid: 2640 components: - type: Transform - pos: -29.5,-7.5 + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 parent: 2 - - uid: 3147 + - uid: 2642 components: - type: Transform - pos: -32.5,-7.5 + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 parent: 2 - - uid: 3149 + - uid: 2645 components: - type: Transform - pos: -30.5,-7.5 + rot: 1.5707963267948966 rad + pos: 12.5,-19.5 parent: 2 - - uid: 3150 + - uid: 2647 components: - type: Transform - pos: -26.5,-17.5 + rot: 1.5707963267948966 rad + pos: 10.5,-28.5 parent: 2 - - uid: 3152 + - uid: 2649 components: - type: Transform - pos: -26.5,-18.5 + rot: 1.5707963267948966 rad + pos: 10.5,-23.5 parent: 2 - - uid: 3153 + - uid: 2651 components: - type: Transform - pos: -26.5,-20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 parent: 2 - - uid: 3156 + - uid: 2652 components: - type: Transform - pos: -27.5,-7.5 + rot: 1.5707963267948966 rad + pos: 18.5,-27.5 parent: 2 - - uid: 3165 + - uid: 2655 components: - type: Transform - pos: -25.5,-32.5 + rot: 1.5707963267948966 rad + pos: 18.5,-30.5 parent: 2 - - uid: 3166 + - uid: 2656 components: - type: Transform - pos: -29.5,-35.5 + rot: 1.5707963267948966 rad + pos: 16.5,-23.5 parent: 2 - - uid: 3167 + - uid: 2658 components: - type: Transform - pos: -26.5,-33.5 + rot: 1.5707963267948966 rad + pos: 12.5,-23.5 parent: 2 - - uid: 3168 + - uid: 2661 components: - type: Transform - pos: -25.5,-5.5 + rot: 1.5707963267948966 rad + pos: 18.5,-23.5 parent: 2 - - uid: 3169 + - uid: 2662 components: - type: Transform - pos: -26.5,-5.5 + rot: 1.5707963267948966 rad + pos: 17.5,-30.5 parent: 2 - - uid: 3170 + - uid: 2663 components: - type: Transform - pos: -27.5,22.5 + rot: 1.5707963267948966 rad + pos: 11.5,-30.5 parent: 2 - - uid: 3172 + - uid: 2667 components: - type: Transform - pos: -27.5,20.5 + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 parent: 2 - - uid: 3173 + - uid: 2668 components: - type: Transform - pos: -27.5,18.5 + rot: 1.5707963267948966 rad + pos: 16.5,-20.5 parent: 2 - - uid: 3174 + - uid: 2670 components: - type: Transform - pos: -27.5,17.5 + rot: 1.5707963267948966 rad + pos: 16.5,-19.5 parent: 2 - - uid: 3194 + - uid: 2672 components: - type: Transform - pos: -27.5,16.5 + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 parent: 2 - - uid: 3195 + - uid: 2673 components: - type: Transform - pos: -27.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 parent: 2 - - uid: 3198 + - uid: 2676 components: - type: Transform - pos: -24.5,22.5 + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 parent: 2 - - uid: 3199 + - uid: 2678 components: - type: Transform - pos: -23.5,22.5 + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 parent: 2 - - uid: 3200 + - uid: 2679 components: - type: Transform - pos: -25.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 parent: 2 - - uid: 3203 + - uid: 2685 components: - type: Transform - pos: -20.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-6.5 parent: 2 - - uid: 3204 + - uid: 2697 components: - type: Transform - pos: -18.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 parent: 2 - - uid: 3208 + - uid: 2728 components: - type: Transform - pos: 17.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 parent: 2 - - uid: 3210 + - uid: 2729 components: - type: Transform - pos: 15.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 parent: 2 - - uid: 3212 + - uid: 2734 components: - type: Transform - pos: 13.5,22.5 + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 parent: 2 - - uid: 3213 + - uid: 2760 components: - type: Transform - pos: 12.5,22.5 + rot: 1.5707963267948966 rad + pos: 18.5,-19.5 parent: 2 - - uid: 3216 + - uid: 2762 components: - type: Transform - pos: 9.5,22.5 + rot: 1.5707963267948966 rad + pos: 22.5,-19.5 parent: 2 - - uid: 3218 + - uid: 2763 components: - type: Transform - pos: 8.5,23.5 + rot: 1.5707963267948966 rad + pos: -1.5,-28.5 parent: 2 - - uid: 3222 + - uid: 2764 components: - type: Transform - pos: -28.5,-5.5 + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 parent: 2 - - uid: 3223 + - uid: 2765 components: - type: Transform - pos: -29.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-20.5 parent: 2 - - uid: 3224 + - uid: 2768 components: - type: Transform - pos: -30.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 parent: 2 - - uid: 3225 + - uid: 2769 components: - type: Transform - pos: -31.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 parent: 2 - - uid: 3229 + - uid: 2771 components: - type: Transform - pos: -35.5,-5.5 + rot: 1.5707963267948966 rad + pos: 23.5,-19.5 parent: 2 - - uid: 3231 + - uid: 2773 components: - type: Transform - pos: -38.5,-5.5 + rot: 1.5707963267948966 rad + pos: 26.5,-19.5 parent: 2 - - uid: 3232 + - uid: 2775 components: - type: Transform - pos: -39.5,-5.5 + rot: 1.5707963267948966 rad + pos: 26.5,-18.5 parent: 2 - - uid: 3234 + - uid: 2776 components: - type: Transform - pos: -40.5,-4.5 + rot: 1.5707963267948966 rad + pos: 28.5,-5.5 parent: 2 - - uid: 3235 + - uid: 2778 components: - type: Transform - pos: -40.5,-3.5 + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 parent: 2 - - uid: 3236 + - uid: 2782 components: - type: Transform - pos: -28.5,10.5 + rot: 1.5707963267948966 rad + pos: 24.5,-22.5 parent: 2 - - uid: 3239 + - uid: 2783 components: - type: Transform - pos: -30.5,10.5 + rot: 1.5707963267948966 rad + pos: 24.5,-21.5 parent: 2 - - uid: 3240 + - uid: 2785 components: - type: Transform - pos: -31.5,10.5 + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 parent: 2 - - uid: 3241 + - uid: 2787 components: - type: Transform - pos: -32.5,10.5 + rot: 1.5707963267948966 rad + pos: 27.5,-14.5 parent: 2 - - uid: 3242 + - uid: 2789 components: - type: Transform - pos: -33.5,10.5 + rot: 1.5707963267948966 rad + pos: 28.5,-14.5 parent: 2 - - uid: 3244 + - uid: 2794 components: - type: Transform - pos: -35.5,10.5 + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 parent: 2 - - uid: 3245 + - uid: 2796 components: - type: Transform - pos: -36.5,10.5 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 parent: 2 - - uid: 3246 + - uid: 2797 components: - type: Transform - pos: -38.5,10.5 + rot: 1.5707963267948966 rad + pos: 17.5,-1.5 parent: 2 - - uid: 3247 + - uid: 2799 components: - type: Transform - pos: -39.5,10.5 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - - uid: 3254 + - uid: 2801 components: - type: Transform - pos: -40.5,7.5 + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 parent: 2 - - uid: 3255 + - uid: 2803 components: - type: Transform - pos: -40.5,6.5 + rot: 1.5707963267948966 rad + pos: 20.5,-1.5 parent: 2 - - uid: 3258 + - uid: 2805 components: - type: Transform - pos: -40.5,3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-2.5 parent: 2 - - uid: 3259 + - uid: 2806 components: - type: Transform - pos: -40.5,-0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 parent: 2 - - uid: 3260 + - uid: 2808 components: - type: Transform - pos: -40.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.5,-1.5 parent: 2 - - uid: 3262 + - uid: 2809 components: - type: Transform - pos: -31.5,8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-2.5 parent: 2 - - uid: 3263 + - uid: 2810 components: - type: Transform - pos: -33.5,8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 parent: 2 - - uid: 3264 + - uid: 2811 components: - type: Transform - pos: -30.5,8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 parent: 2 - - uid: 3266 + - uid: 2813 components: - type: Transform - pos: -28.5,8.5 + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 parent: 2 - - uid: 3267 + - uid: 2815 components: - type: Transform - pos: -27.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-1.5 parent: 2 - - uid: 3268 + - uid: 2817 components: - type: Transform - pos: -38.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-2.5 parent: 2 - - uid: 3269 + - uid: 2818 components: - type: Transform - pos: -39.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-4.5 parent: 2 - - uid: 3273 + - uid: 2820 components: - type: Transform - pos: -32.5,8.5 + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 parent: 2 - - uid: 3274 + - uid: 2824 components: - type: Transform - pos: -37.5,8.5 + rot: 1.5707963267948966 rad + pos: 27.5,-2.5 parent: 2 - - uid: 3275 + - uid: 2837 components: - type: Transform - pos: -36.5,8.5 + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 parent: 2 - - uid: 3276 + - uid: 2840 components: - type: Transform - pos: -35.5,12.5 + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 parent: 2 - - uid: 3278 + - uid: 2841 components: - type: Transform - pos: -35.5,11.5 + rot: 1.5707963267948966 rad + pos: 27.5,-17.5 parent: 2 - - uid: 3296 + - uid: 2843 components: - type: Transform - pos: -35.5,15.5 + rot: 1.5707963267948966 rad + pos: 30.5,-17.5 parent: 2 - - uid: 3298 + - uid: 2845 components: - type: Transform - pos: -35.5,16.5 + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 parent: 2 - - uid: 3302 + - uid: 2850 components: - type: Transform - pos: -34.5,18.5 + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 parent: 2 - - uid: 3303 + - uid: 2855 components: - type: Transform - pos: -33.5,18.5 + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 parent: 2 - - uid: 3305 + - uid: 2857 components: - type: Transform - pos: -32.5,18.5 + rot: 1.5707963267948966 rad + pos: 33.5,-8.5 parent: 2 - - uid: 3308 + - uid: 2858 components: - type: Transform - pos: -30.5,18.5 + rot: 1.5707963267948966 rad + pos: 32.5,-17.5 parent: 2 - - uid: 3313 + - uid: 2860 components: - type: Transform - pos: -36.5,15.5 + rot: 1.5707963267948966 rad + pos: 36.5,-12.5 parent: 2 - - uid: 3314 + - uid: 2861 components: - type: Transform - pos: -37.5,15.5 + rot: 1.5707963267948966 rad + pos: 36.5,-10.5 parent: 2 - - uid: 3315 + - uid: 2863 components: - type: Transform - pos: -38.5,15.5 + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 parent: 2 - - uid: 3316 + - uid: 2865 components: - type: Transform - pos: -39.5,15.5 + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 parent: 2 - - uid: 3318 + - uid: 2872 components: - type: Transform - pos: -39.5,13.5 + rot: 1.5707963267948966 rad + pos: 34.5,-17.5 parent: 2 - - uid: 3319 + - uid: 2889 components: - type: Transform - pos: -39.5,12.5 + rot: 1.5707963267948966 rad + pos: 36.5,-17.5 parent: 2 - - uid: 3321 + - uid: 2934 components: - type: Transform - pos: -42.5,9.5 + rot: 1.5707963267948966 rad + pos: 36.5,-15.5 parent: 2 - - uid: 3322 + - uid: 2937 components: - type: Transform - pos: -41.5,10.5 + rot: 1.5707963267948966 rad + pos: 15.5,-13.5 parent: 2 - - uid: 3325 + - uid: 2939 components: - type: Transform - pos: -41.5,13.5 + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 parent: 2 - - uid: 3326 + - uid: 2941 components: - type: Transform - pos: -29.5,20.5 + rot: 1.5707963267948966 rad + pos: 39.5,-17.5 parent: 2 - - uid: 3328 + - uid: 2943 components: - type: Transform - pos: -13.5,17.5 + rot: 1.5707963267948966 rad + pos: 38.5,-21.5 parent: 2 - - uid: 3330 + - uid: 2944 components: - type: Transform - pos: -43.5,7.5 + rot: 1.5707963267948966 rad + pos: 36.5,-21.5 parent: 2 - - uid: 3331 + - uid: 2945 components: - type: Transform - pos: -43.5,8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-21.5 parent: 2 - - uid: 3333 + - uid: 2947 components: - type: Transform - pos: -43.5,-4.5 + rot: 1.5707963267948966 rad + pos: 30.5,-22.5 parent: 2 - - uid: 3334 + - uid: 2949 components: - type: Transform - pos: -51.5,-5.5 + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 parent: 2 - - uid: 3335 + - uid: 2951 components: - type: Transform - pos: 18.5,15.5 + rot: 1.5707963267948966 rad + pos: 30.5,-24.5 parent: 2 - - uid: 3336 + - uid: 2952 components: - type: Transform - pos: 18.5,16.5 + rot: 1.5707963267948966 rad + pos: 30.5,-26.5 parent: 2 - - uid: 3337 + - uid: 2954 components: - type: Transform - pos: -36.5,-7.5 + rot: 1.5707963267948966 rad + pos: 22.5,-27.5 parent: 2 - - uid: 3340 + - uid: 2958 components: - type: Transform - pos: -40.5,-7.5 + rot: 1.5707963267948966 rad + pos: 22.5,-29.5 parent: 2 - - uid: 3341 + - uid: 2973 components: - type: Transform - pos: -38.5,-7.5 + rot: 1.5707963267948966 rad + pos: 22.5,-30.5 parent: 2 - - uid: 3342 + - uid: 2981 components: - type: Transform - pos: -27.5,-11.5 + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 parent: 2 - - uid: 3344 + - uid: 2993 components: - type: Transform - pos: -30.5,-11.5 + rot: 1.5707963267948966 rad + pos: 18.5,-34.5 parent: 2 - - uid: 3345 + - uid: 2996 components: - type: Transform - pos: -30.5,-10.5 + rot: 1.5707963267948966 rad + pos: 4.5,-32.5 parent: 2 - - uid: 3347 + - uid: 2997 components: - type: Transform - pos: -30.5,-8.5 + rot: 1.5707963267948966 rad + pos: -2.5,-32.5 parent: 2 - - uid: 3349 + - uid: 2998 components: - type: Transform - pos: -34.5,-8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-22.5 parent: 2 - - uid: 3350 + - uid: 2999 components: - type: Transform - pos: -34.5,-10.5 + rot: 1.5707963267948966 rad + pos: 31.5,-26.5 parent: 2 - - uid: 3351 + - uid: 3002 components: - type: Transform - pos: -35.5,-11.5 + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 parent: 2 - - uid: 3352 + - uid: 3005 components: - type: Transform - pos: -37.5,-11.5 + rot: 1.5707963267948966 rad + pos: 38.5,-22.5 parent: 2 - - uid: 3354 + - uid: 3007 components: - type: Transform - pos: -38.5,-10.5 + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 parent: 2 - - uid: 3355 + - uid: 3008 components: - type: Transform - pos: -38.5,-9.5 + rot: 1.5707963267948966 rad + pos: 38.5,-26.5 parent: 2 - - uid: 3356 + - uid: 3010 components: - type: Transform - pos: -38.5,-8.5 + rot: 1.5707963267948966 rad + pos: 37.5,-27.5 parent: 2 - - uid: 3358 + - uid: 3011 components: - type: Transform - pos: -41.5,-8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-27.5 parent: 2 - - uid: 3359 + - uid: 3012 components: - type: Transform - pos: -41.5,-9.5 + rot: 1.5707963267948966 rad + pos: 38.5,-25.5 parent: 2 - - uid: 3360 + - uid: 3013 components: - type: Transform - pos: -41.5,-10.5 + rot: 1.5707963267948966 rad + pos: 46.5,-22.5 parent: 2 - - uid: 3361 + - uid: 3014 components: - type: Transform - pos: -41.5,-11.5 + rot: 1.5707963267948966 rad + pos: 46.5,-21.5 parent: 2 - - uid: 3363 + - uid: 3015 components: - type: Transform - pos: -39.5,-11.5 + rot: 1.5707963267948966 rad + pos: 45.5,-22.5 parent: 2 - - uid: 3364 + - uid: 3017 components: - type: Transform - pos: -39.5,-12.5 + rot: 1.5707963267948966 rad + pos: 46.5,-24.5 parent: 2 - - uid: 3366 + - uid: 3019 components: - type: Transform - pos: -39.5,-14.5 + rot: 1.5707963267948966 rad + pos: 46.5,-25.5 parent: 2 - - uid: 3367 + - uid: 3021 components: - type: Transform - pos: -39.5,-16.5 + rot: 1.5707963267948966 rad + pos: 46.5,-26.5 parent: 2 - - uid: 3369 + - uid: 3029 components: - type: Transform - pos: -34.5,-16.5 + rot: 1.5707963267948966 rad + pos: 44.5,-26.5 parent: 2 - - uid: 3371 + - uid: 3030 components: - type: Transform - pos: -36.5,-16.5 + rot: 1.5707963267948966 rad + pos: 42.5,-26.5 parent: 2 - - uid: 3374 + - uid: 3031 components: - type: Transform - pos: -40.5,-17.5 + rot: 1.5707963267948966 rad + pos: 40.5,-26.5 parent: 2 - - uid: 3378 + - uid: 3032 components: - type: Transform - pos: -40.5,-19.5 + rot: 1.5707963267948966 rad + pos: 50.5,-22.5 parent: 2 - - uid: 3379 + - uid: 3034 components: - type: Transform - pos: -40.5,-20.5 + rot: 1.5707963267948966 rad + pos: 49.5,-22.5 parent: 2 - - uid: 3381 + - uid: 3035 components: - type: Transform - pos: -35.5,-17.5 + rot: 1.5707963267948966 rad + pos: 50.5,-23.5 parent: 2 - - uid: 3383 + - uid: 3048 components: - type: Transform - pos: -35.5,-19.5 + rot: 1.5707963267948966 rad + pos: 50.5,-24.5 parent: 2 - - uid: 3385 + - uid: 3049 components: - type: Transform - pos: -27.5,-21.5 + rot: 1.5707963267948966 rad + pos: 50.5,-26.5 parent: 2 - - uid: 3386 + - uid: 3054 components: - type: Transform - pos: -29.5,-21.5 + rot: 1.5707963267948966 rad + pos: 49.5,-26.5 parent: 2 - - uid: 3387 + - uid: 3056 components: - type: Transform - pos: -32.5,-21.5 + rot: 1.5707963267948966 rad + pos: 4.5,-40.5 parent: 2 - - uid: 3389 + - uid: 3057 components: - type: Transform - pos: -33.5,-21.5 + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 parent: 2 - - uid: 3390 + - uid: 3058 components: - type: Transform - pos: -35.5,-21.5 + rot: 1.5707963267948966 rad + pos: 40.5,-16.5 parent: 2 - - uid: 3393 + - uid: 3158 components: - type: Transform - pos: -37.5,-21.5 + rot: 1.5707963267948966 rad + pos: 40.5,-14.5 parent: 2 - - uid: 3394 + - uid: 3175 components: - type: Transform - pos: -39.5,-21.5 + rot: 1.5707963267948966 rad + pos: 40.5,-13.5 parent: 2 - - uid: 3395 + - uid: 3177 components: - type: Transform - pos: -43.5,-5.5 + rot: 1.5707963267948966 rad + pos: 38.5,-13.5 parent: 2 - - uid: 3397 + - uid: 3178 components: - type: Transform - pos: -43.5,-7.5 + rot: 1.5707963267948966 rad + pos: -16.5,22.5 parent: 2 - - uid: 3398 + - uid: 3180 components: - type: Transform - pos: -43.5,-8.5 + rot: 1.5707963267948966 rad + pos: 6.5,22.5 parent: 2 - - uid: 3399 + - uid: 3183 components: - type: Transform - pos: -43.5,-9.5 + rot: 1.5707963267948966 rad + pos: 4.5,22.5 parent: 2 - - uid: 3400 + - uid: 3288 components: - type: Transform - pos: -51.5,-12.5 + rot: 1.5707963267948966 rad + pos: 3.5,22.5 parent: 2 - - uid: 3401 + - uid: 3289 components: - type: Transform - pos: -43.5,-13.5 + rot: 1.5707963267948966 rad + pos: 1.5,22.5 parent: 2 - - uid: 3404 + - uid: 3294 components: - type: Transform - pos: -42.5,-16.5 + rot: 1.5707963267948966 rad + pos: -4.5,22.5 parent: 2 - - uid: 3405 + - uid: 3424 components: - type: Transform - pos: -42.5,-14.5 + rot: 1.5707963267948966 rad + pos: -37.5,18.5 parent: 2 - - uid: 3407 + - uid: 3452 components: - type: Transform - pos: -42.5,-18.5 + rot: 1.5707963267948966 rad + pos: -37.5,20.5 parent: 2 - - uid: 3409 + - uid: 3454 components: - type: Transform - pos: -42.5,-20.5 + rot: 1.5707963267948966 rad + pos: -38.5,18.5 parent: 2 - - uid: 3412 + - uid: 3562 components: - type: Transform - pos: -40.5,-23.5 + rot: 1.5707963267948966 rad + pos: -36.5,-38.5 parent: 2 - - uid: 3414 + - uid: 3563 components: - type: Transform - pos: -42.5,-22.5 + rot: 1.5707963267948966 rad + pos: -36.5,-36.5 parent: 2 - - uid: 3415 + - uid: 3566 components: - type: Transform - pos: -41.5,-23.5 + rot: 1.5707963267948966 rad + pos: -41.5,18.5 parent: 2 - - uid: 3416 + - uid: 3576 components: - type: Transform - pos: -38.5,-23.5 + rot: 1.5707963267948966 rad + pos: -57.5,7.5 parent: 2 - - uid: 3417 + - uid: 3577 components: - type: Transform - pos: -37.5,-23.5 + rot: 1.5707963267948966 rad + pos: -56.5,7.5 parent: 2 - - uid: 3419 + - uid: 3614 components: - type: Transform - pos: -34.5,-23.5 + rot: 1.5707963267948966 rad + pos: -54.5,8.5 parent: 2 - - uid: 3420 + - uid: 3657 components: - type: Transform - pos: -33.5,-23.5 + rot: 1.5707963267948966 rad + pos: -57.5,-4.5 parent: 2 - - uid: 3422 + - uid: 3660 components: - type: Transform - pos: -30.5,-23.5 + rot: 1.5707963267948966 rad + pos: -55.5,-4.5 parent: 2 - - uid: 3423 + - uid: 3661 components: - type: Transform - pos: -29.5,-23.5 + rot: 1.5707963267948966 rad + pos: -52.5,8.5 parent: 2 - - uid: 3425 + - uid: 3662 components: - type: Transform - pos: -27.5,-23.5 + rot: 1.5707963267948966 rad + pos: -55.5,10.5 parent: 2 - - uid: 3427 + - uid: 3664 components: - type: Transform - pos: -35.5,-23.5 + rot: 1.5707963267948966 rad + pos: -53.5,11.5 parent: 2 - - uid: 3428 + - uid: 3667 components: - type: Transform - pos: -31.5,-23.5 + rot: 1.5707963267948966 rad + pos: -52.5,11.5 parent: 2 - - uid: 3429 + - uid: 3668 components: - type: Transform - pos: -26.5,-34.5 + rot: 1.5707963267948966 rad + pos: -51.5,11.5 parent: 2 - - uid: 3430 + - uid: 3671 components: - type: Transform - pos: -27.5,-34.5 + rot: 1.5707963267948966 rad + pos: -51.5,9.5 parent: 2 - - uid: 3432 + - uid: 3746 components: - type: Transform - pos: -29.5,-34.5 + rot: 1.5707963267948966 rad + pos: -51.5,14.5 parent: 2 - - uid: 3435 + - uid: 3749 components: - type: Transform - pos: -32.5,-34.5 + rot: 1.5707963267948966 rad + pos: -50.5,14.5 parent: 2 - - uid: 3436 + - uid: 3762 components: - type: Transform - pos: -33.5,-34.5 + rot: 1.5707963267948966 rad + pos: -44.5,14.5 parent: 2 - - uid: 3437 + - uid: 3765 components: - type: Transform - pos: -35.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-6.5 parent: 2 - - uid: 3438 + - uid: 3791 components: - type: Transform - pos: -36.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-9.5 parent: 2 - - uid: 3440 + - uid: 3792 components: - type: Transform - pos: -38.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-12.5 parent: 2 - - uid: 3441 + - uid: 3794 components: - type: Transform - pos: -41.5,-32.5 + rot: 1.5707963267948966 rad + pos: -55.5,-15.5 parent: 2 - - uid: 3442 + - uid: 3854 components: - type: Transform - pos: -41.5,-33.5 + rot: 1.5707963267948966 rad + pos: -55.5,-16.5 parent: 2 - - uid: 3444 + - uid: 3855 components: - type: Transform - pos: -40.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-18.5 parent: 2 - - uid: 3446 + - uid: 3914 components: - type: Transform - pos: -29.5,-37.5 + rot: 1.5707963267948966 rad + pos: -55.5,-20.5 parent: 2 - - uid: 3447 + - uid: 3920 components: - type: Transform - pos: -29.5,-38.5 + rot: 1.5707963267948966 rad + pos: -55.5,-19.5 parent: 2 - - uid: 3449 + - uid: 3923 components: - type: Transform - pos: -26.5,-40.5 + pos: 36.5,-31.5 parent: 2 - - uid: 3455 + - uid: 3924 components: - type: Transform - pos: -28.5,-40.5 + rot: 1.5707963267948966 rad + pos: 50.5,-27.5 parent: 2 - - uid: 3457 + - uid: 3926 components: - type: Transform - pos: -20.5,-40.5 + rot: 1.5707963267948966 rad + pos: 34.5,-31.5 parent: 2 - - uid: 3458 + - uid: 3928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,20.5 + rot: 1.5707963267948966 rad + pos: 38.5,-31.5 parent: 2 - - uid: 3567 + - uid: 3934 components: - type: Transform - pos: -22.5,-40.5 + rot: 1.5707963267948966 rad + pos: 46.5,-29.5 parent: 2 - - uid: 3581 + - uid: 3936 components: - type: Transform - pos: -18.5,-40.5 + rot: 1.5707963267948966 rad + pos: 46.5,-30.5 parent: 2 - - uid: 3685 + - uid: 3937 components: - type: Transform - pos: -17.5,-39.5 + rot: 1.5707963267948966 rad + pos: 45.5,-31.5 parent: 2 - - uid: 3686 + - uid: 3938 components: - type: Transform - pos: -17.5,-38.5 + rot: 1.5707963267948966 rad + pos: 43.5,-31.5 parent: 2 - - uid: 3688 + - uid: 3941 components: - type: Transform - pos: -17.5,-36.5 + rot: 1.5707963267948966 rad + pos: 42.5,-31.5 parent: 2 - - uid: 3689 + - uid: 3942 components: - type: Transform - pos: -17.5,-35.5 + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 parent: 2 - - uid: 3690 + - uid: 3943 components: - type: Transform - pos: -17.5,-34.5 + rot: 1.5707963267948966 rad + pos: 50.5,-29.5 parent: 2 - - uid: 3693 + - uid: 3944 components: - type: Transform - pos: -31.5,-40.5 + rot: 1.5707963267948966 rad + pos: 50.5,-30.5 parent: 2 - - uid: 3694 + - uid: 3949 components: - type: Transform - pos: -32.5,-40.5 + rot: 1.5707963267948966 rad + pos: 50.5,-31.5 parent: 2 - - uid: 3751 + - uid: 3954 components: - type: Transform - pos: -34.5,-36.5 + rot: 1.5707963267948966 rad + pos: 50.5,-32.5 parent: 2 - - uid: 3757 + - uid: 3956 components: - type: Transform - pos: -33.5,-36.5 + rot: 1.5707963267948966 rad + pos: 50.5,-37.5 parent: 2 - - uid: 3758 + - uid: 3969 components: - type: Transform - pos: -34.5,-40.5 + rot: 1.5707963267948966 rad + pos: 30.5,-32.5 parent: 2 - - uid: 3759 + - uid: 3972 components: - type: Transform - pos: -34.5,-39.5 + rot: 1.5707963267948966 rad + pos: 30.5,-34.5 parent: 2 - - uid: 3764 + - uid: 3973 components: - type: Transform - pos: -34.5,-38.5 + rot: 1.5707963267948966 rad + pos: 49.5,-39.5 parent: 2 - - uid: 3770 + - uid: 4018 components: - type: Transform - pos: -45.5,-9.5 + rot: 1.5707963267948966 rad + pos: 30.5,-37.5 parent: 2 - - uid: 3772 + - uid: 4019 components: - type: Transform - pos: -46.5,-9.5 + rot: 1.5707963267948966 rad + pos: 31.5,-39.5 parent: 2 - - uid: 3776 + - uid: 4138 components: - type: Transform - pos: -47.5,-9.5 + rot: 1.5707963267948966 rad + pos: 46.5,-32.5 parent: 2 - - uid: 3778 + - uid: 4141 components: - type: Transform - pos: -48.5,-9.5 + rot: 1.5707963267948966 rad + pos: 34.5,-32.5 parent: 2 - - uid: 3801 + - uid: 4183 components: - type: Transform - pos: -50.5,-9.5 + rot: 1.5707963267948966 rad + pos: 25.5,-34.5 parent: 2 - - uid: 3809 + - uid: 4192 components: - type: Transform - pos: -51.5,-9.5 + rot: 1.5707963267948966 rad + pos: 28.5,-34.5 parent: 2 - - uid: 3838 + - uid: 4197 components: - type: Transform - pos: -51.5,-8.5 + rot: 1.5707963267948966 rad + pos: 22.5,22.5 parent: 2 - - uid: 3840 + - uid: 4201 components: - type: Transform - pos: -51.5,-6.5 + rot: 1.5707963267948966 rad + pos: 22.5,8.5 parent: 2 - - uid: 3842 + - uid: 4244 components: - type: Transform - pos: -50.5,-11.5 + rot: 1.5707963267948966 rad + pos: 22.5,6.5 parent: 2 - - uid: 3845 + - uid: 4266 components: - type: Transform - pos: -48.5,-11.5 + rot: 1.5707963267948966 rad + pos: 44.5,-8.5 parent: 2 - - uid: 3850 + - uid: 4269 components: - type: Transform - pos: -46.5,-13.5 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 parent: 2 - - uid: 3852 + - uid: 4273 components: - type: Transform - pos: 18.5,13.5 + rot: 1.5707963267948966 rad + pos: 31.5,5.5 parent: 2 - - uid: 4065 + - uid: 4314 components: - type: Transform - pos: 18.5,12.5 + rot: 1.5707963267948966 rad + pos: 28.5,5.5 parent: 2 - - uid: 4066 + - uid: 4315 components: - type: Transform - pos: -46.5,-16.5 + rot: 1.5707963267948966 rad + pos: 51.5,-21.5 parent: 2 - - uid: 4177 + - uid: 4317 components: - type: Transform - pos: -46.5,-18.5 + rot: 1.5707963267948966 rad + pos: 61.5,-2.5 parent: 2 - - uid: 4179 + - uid: 4441 components: - type: Transform - pos: -51.5,-18.5 + rot: 1.5707963267948966 rad + pos: 59.5,-2.5 parent: 2 - - uid: 4180 + - uid: 4450 components: - type: Transform - pos: -45.5,-12.5 + rot: 1.5707963267948966 rad + pos: 39.5,5.5 parent: 2 - - uid: 4185 + - uid: 4474 components: - type: Transform - pos: -51.5,-15.5 + rot: 1.5707963267948966 rad + pos: -64.5,-29.5 parent: 2 - - uid: 4203 + - uid: 4482 components: - type: Transform - pos: -51.5,-32.5 + rot: 1.5707963267948966 rad + pos: -64.5,-22.5 parent: 2 - - uid: 4205 + - uid: 4483 components: - type: Transform - pos: -52.5,-31.5 + rot: 1.5707963267948966 rad + pos: -64.5,-21.5 parent: 2 - - uid: 4206 + - uid: 4486 components: - type: Transform - pos: -52.5,-30.5 + rot: 1.5707963267948966 rad + pos: -61.5,-21.5 parent: 2 - - uid: 4207 + - uid: 4489 components: - type: Transform - pos: -52.5,-29.5 + rot: 1.5707963267948966 rad + pos: -59.5,-20.5 parent: 2 - - uid: 4208 + - uid: 4491 components: - type: Transform - pos: -52.5,-28.5 + rot: 1.5707963267948966 rad + pos: -57.5,-20.5 parent: 2 - - uid: 4210 + - uid: 4660 components: - type: Transform - pos: -52.5,-26.5 + rot: 1.5707963267948966 rad + pos: -35.5,-46.5 parent: 2 - - uid: 4212 + - uid: 4663 components: - type: Transform - pos: -52.5,-23.5 + rot: 1.5707963267948966 rad + pos: -4.5,25.5 parent: 2 - - uid: 4220 + - uid: 4664 components: - type: Transform - pos: -52.5,-22.5 + rot: 1.5707963267948966 rad + pos: -4.5,26.5 parent: 2 - - uid: 4223 + - uid: 4668 components: - type: Transform - pos: -43.5,-12.5 + rot: 1.5707963267948966 rad + pos: -3.5,26.5 parent: 2 - - uid: 4229 + - uid: 4670 components: - type: Transform - pos: 50.5,-17.5 + rot: 1.5707963267948966 rad + pos: -10.5,32.5 parent: 2 - - uid: 4233 + - uid: 4672 components: - type: Transform - pos: 49.5,-17.5 + rot: 1.5707963267948966 rad + pos: 0.5,26.5 parent: 2 - - uid: 4238 + - uid: 4674 components: - type: Transform - pos: 18.5,17.5 + rot: 1.5707963267948966 rad + pos: -3.5,35.5 parent: 2 - - uid: 4242 + - uid: 4677 components: - type: Transform - pos: 18.5,10.5 + rot: 1.5707963267948966 rad + pos: -8.5,25.5 parent: 2 - - uid: 4243 + - uid: 4679 components: - type: Transform - pos: 18.5,9.5 + rot: 1.5707963267948966 rad + pos: -8.5,23.5 parent: 2 - - uid: 4289 + - uid: 4680 components: - type: Transform - pos: 18.5,7.5 + rot: 1.5707963267948966 rad + pos: -3.5,30.5 parent: 2 - - uid: 4290 + - uid: 4684 components: - type: Transform - pos: 18.5,6.5 + rot: 1.5707963267948966 rad + pos: -12.5,25.5 parent: 2 - - uid: 4297 + - uid: 4686 components: - type: Transform - pos: 18.5,5.5 + rot: 1.5707963267948966 rad + pos: -12.5,23.5 parent: 2 - - uid: 4299 + - uid: 4691 components: - type: Transform - pos: 18.5,3.5 + rot: 1.5707963267948966 rad + pos: -16.5,25.5 parent: 2 - - uid: 4300 + - uid: 4692 components: - type: Transform - pos: 18.5,2.5 + rot: 1.5707963267948966 rad + pos: -16.5,24.5 parent: 2 - - uid: 4301 + - uid: 4707 components: - type: Transform - pos: 18.5,1.5 + rot: 1.5707963267948966 rad + pos: -10.5,31.5 parent: 2 - - uid: 4303 + - uid: 4708 components: - type: Transform - pos: 39.5,1.5 + rot: 1.5707963267948966 rad + pos: -10.5,34.5 parent: 2 - - uid: 4308 + - uid: 4713 components: - type: Transform - pos: 40.5,0.5 + rot: 1.5707963267948966 rad + pos: 1.5,36.5 parent: 2 - - uid: 4350 + - uid: 4714 components: - type: Transform - pos: 40.5,-6.5 + rot: 1.5707963267948966 rad + pos: 0.5,27.5 parent: 2 - - uid: 4413 + - uid: 4715 components: - type: Transform - pos: 40.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,35.5 parent: 2 - - uid: 4433 + - uid: 4722 components: - type: Transform - pos: 40.5,-9.5 + rot: 1.5707963267948966 rad + pos: 6.5,27.5 parent: 2 - - uid: 4435 + - uid: 4724 components: - type: Transform - pos: 40.5,-11.5 + rot: 1.5707963267948966 rad + pos: 6.5,24.5 parent: 2 - - uid: 4436 + - uid: 4741 components: - type: Transform - pos: 39.5,-11.5 + rot: 1.5707963267948966 rad + pos: 10.5,28.5 parent: 2 - - uid: 4438 + - uid: 4743 components: - type: Transform - pos: 44.5,-11.5 + rot: 1.5707963267948966 rad + pos: 7.5,29.5 parent: 2 - - uid: 4440 + - uid: 4748 components: - type: Transform - pos: 44.5,-9.5 + rot: 1.5707963267948966 rad + pos: 6.5,29.5 parent: 2 - - uid: 4448 + - uid: 4757 components: - type: Transform - pos: 61.5,7.5 + rot: 1.5707963267948966 rad + pos: -0.5,26.5 parent: 2 - - uid: 4449 + - uid: 4771 components: - type: Transform - pos: 37.5,-5.5 + rot: 1.5707963267948966 rad + pos: -20.5,33.5 parent: 2 - - uid: 4451 + - uid: 4773 components: - type: Transform - pos: 39.5,-5.5 + rot: 1.5707963267948966 rad + pos: -15.5,30.5 parent: 2 - - uid: 4452 + - uid: 4775 components: - type: Transform - pos: -15.5,-33.5 + rot: 1.5707963267948966 rad + pos: -14.5,30.5 parent: 2 - - uid: 4453 + - uid: 4786 components: - type: Transform - pos: 51.5,-17.5 + rot: 1.5707963267948966 rad + pos: -16.5,29.5 parent: 2 - - uid: 4454 + - uid: 4790 components: - type: Transform - pos: 40.5,-4.5 + rot: 1.5707963267948966 rad + pos: 1.5,29.5 parent: 2 - - uid: 4457 + - uid: 4806 components: - type: Transform - pos: -57.5,-23.5 + rot: 1.5707963267948966 rad + pos: -11.5,25.5 parent: 2 - - uid: 4459 + - uid: 4811 components: - type: Transform - pos: -57.5,-25.5 + rot: 1.5707963267948966 rad + pos: -29.5,24.5 parent: 2 - - uid: 4468 + - uid: 4814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,20.5 + rot: 1.5707963267948966 rad + pos: -26.5,24.5 parent: 2 - - uid: 4471 + - uid: 4816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,20.5 + rot: 1.5707963267948966 rad + pos: -24.5,24.5 parent: 2 - - uid: 4731 + - uid: 4817 components: - type: Transform - pos: -53.5,-30.5 + rot: 1.5707963267948966 rad + pos: -23.5,24.5 parent: 2 - - uid: 4736 + - uid: 4818 components: - type: Transform - pos: -55.5,-30.5 + rot: 1.5707963267948966 rad + pos: -23.5,25.5 parent: 2 - - uid: 4780 + - uid: 4821 components: - type: Transform - pos: -57.5,-30.5 + rot: 1.5707963267948966 rad + pos: -19.5,24.5 parent: 2 - - uid: 4793 + - uid: 4823 components: - type: Transform - pos: -57.5,-29.5 + rot: 1.5707963267948966 rad + pos: -18.5,30.5 parent: 2 - - uid: 4808 + - uid: 4826 components: - type: Transform - pos: -58.5,-23.5 + rot: 1.5707963267948966 rad + pos: -20.5,30.5 parent: 2 - - uid: 4815 + - uid: 4827 components: - type: Transform - pos: -60.5,-23.5 + rot: 1.5707963267948966 rad + pos: -21.5,30.5 parent: 2 - - uid: 4836 + - uid: 4830 components: - type: Transform - pos: -62.5,-24.5 + rot: 1.5707963267948966 rad + pos: -21.5,27.5 parent: 2 - - uid: 4859 + - uid: 4831 components: - type: Transform - pos: -62.5,-25.5 + rot: 1.5707963267948966 rad + pos: -21.5,26.5 parent: 2 - - uid: 4861 + - uid: 4832 components: - type: Transform - pos: -62.5,-26.5 + rot: 1.5707963267948966 rad + pos: -21.5,25.5 parent: 2 - - uid: 4898 + - uid: 4837 components: - type: Transform - pos: -62.5,-28.5 + rot: 1.5707963267948966 rad + pos: -23.5,29.5 parent: 2 - - uid: 4901 + - uid: 4839 components: - type: Transform - pos: -61.5,-29.5 + rot: 1.5707963267948966 rad + pos: -5.5,35.5 parent: 2 - - uid: 4902 + - uid: 4840 components: - type: Transform - pos: -60.5,-29.5 + rot: 1.5707963267948966 rad + pos: -6.5,35.5 parent: 2 - - uid: 4904 + - uid: 4842 components: - type: Transform - pos: -58.5,-29.5 + rot: 1.5707963267948966 rad + pos: -8.5,35.5 parent: 2 - - uid: 4916 + - uid: 4844 components: - type: Transform - pos: -47.5,-11.5 + rot: 1.5707963267948966 rad + pos: -10.5,35.5 parent: 2 - - uid: 4921 + - uid: 4847 components: - type: Transform - pos: 8.5,24.5 + rot: 1.5707963267948966 rad + pos: -15.5,33.5 parent: 2 - - uid: 4922 + - uid: 4850 components: - type: Transform - pos: 10.5,25.5 + rot: 1.5707963267948966 rad + pos: -12.5,35.5 parent: 2 - - uid: 5024 + - uid: 4852 components: - type: Transform - pos: -41.5,15.5 + rot: 1.5707963267948966 rad + pos: -13.5,35.5 parent: 2 - - uid: 5044 + - uid: 4854 components: - type: Transform - pos: -41.5,17.5 + rot: 1.5707963267948966 rad + pos: -18.5,32.5 parent: 2 - - uid: 5129 + - uid: 4858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,14.5 + rot: 1.5707963267948966 rad + pos: -23.5,31.5 parent: 2 - - uid: 5130 + - uid: 4863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,37.5 + rot: 1.5707963267948966 rad + pos: -18.5,31.5 parent: 2 - - uid: 5133 + - uid: 4864 components: - type: Transform - pos: -3.5,36.5 + rot: 1.5707963267948966 rad + pos: -15.5,34.5 parent: 2 - - uid: 5207 + - uid: 4866 components: - type: Transform - pos: 0.5,38.5 + rot: 1.5707963267948966 rad + pos: -17.5,34.5 parent: 2 - - uid: 5435 + - uid: 4867 components: - type: Transform - pos: 9.5,25.5 + rot: 1.5707963267948966 rad + pos: -18.5,34.5 parent: 2 - - uid: 5438 + - uid: 4881 components: - type: Transform - pos: 12.5,26.5 + rot: 1.5707963267948966 rad + pos: -7.5,25.5 parent: 2 - - uid: 5652 + - uid: 4883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,16.5 + rot: 1.5707963267948966 rad + pos: -20.5,35.5 parent: 2 - - uid: 5766 + - uid: 4886 components: - type: Transform - pos: 12.5,25.5 + rot: 1.5707963267948966 rad + pos: -64.5,-32.5 parent: 2 - - uid: 5781 + - uid: 4888 components: - type: Transform - pos: -21.5,-42.5 + rot: 1.5707963267948966 rad + pos: -17.5,37.5 parent: 2 - - uid: 5782 + - uid: 4896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,37.5 + rot: 1.5707963267948966 rad + pos: 8.5,31.5 parent: 2 - - uid: 5790 + - uid: 4897 components: - type: Transform - pos: -54.5,-32.5 + rot: 1.5707963267948966 rad + pos: 8.5,30.5 parent: 2 - - uid: 5792 + - uid: 4899 components: - type: Transform - pos: -56.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,30.5 parent: 2 - - uid: 5798 + - uid: 4908 components: - type: Transform - pos: -27.5,-42.5 + rot: 1.5707963267948966 rad + pos: 3.5,34.5 parent: 2 - - uid: 5799 + - uid: 4909 components: - type: Transform - pos: -28.5,-42.5 + rot: 1.5707963267948966 rad + pos: 6.5,34.5 parent: 2 - - uid: 5800 + - uid: 4910 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-42.5 + pos: 5.5,34.5 parent: 2 - - uid: 5808 + - uid: 4911 components: - type: Transform - pos: -31.5,-42.5 + rot: 1.5707963267948966 rad + pos: 7.5,34.5 parent: 2 - - uid: 5950 + - uid: 4912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,16.5 + rot: 1.5707963267948966 rad + pos: 8.5,34.5 parent: 2 - - uid: 6050 + - uid: 4913 components: - type: Transform - pos: -64.5,-23.5 + rot: 1.5707963267948966 rad + pos: 1.5,34.5 parent: 2 - - uid: 6064 + - uid: 4927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,38.5 + rot: 1.5707963267948966 rad + pos: -28.5,33.5 parent: 2 - - uid: 6080 + - uid: 4937 components: - type: Transform - pos: -49.5,-33.5 + rot: 1.5707963267948966 rad + pos: 10.5,38.5 parent: 2 - - uid: 6082 + - uid: 4939 components: - type: Transform - pos: -50.5,-35.5 + rot: 1.5707963267948966 rad + pos: 3.5,36.5 parent: 2 - - uid: 6085 + - uid: 4941 components: - type: Transform - pos: -45.5,-33.5 + rot: 1.5707963267948966 rad + pos: 5.5,36.5 parent: 2 - - uid: 6095 + - uid: 4943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,38.5 + rot: 1.5707963267948966 rad + pos: 7.5,36.5 parent: 2 - - uid: 6098 + - uid: 4944 components: - type: Transform - pos: -45.5,-34.5 + rot: 1.5707963267948966 rad + pos: 9.5,36.5 parent: 2 - - uid: 6127 + - uid: 4953 components: - type: Transform - pos: -50.5,-33.5 + rot: 1.5707963267948966 rad + pos: 8.5,27.5 parent: 2 - - uid: 6158 + - uid: 4955 components: - type: Transform - pos: -44.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,27.5 parent: 2 - - uid: 6484 + - uid: 4968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,14.5 + rot: 1.5707963267948966 rad + pos: 2.5,29.5 parent: 2 - - uid: 6485 + - uid: 4974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,12.5 + rot: 1.5707963267948966 rad + pos: 1.5,32.5 parent: 2 - - uid: 6489 + - uid: 4975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,10.5 + rot: 1.5707963267948966 rad + pos: 0.5,32.5 parent: 2 - - uid: 6493 + - uid: 4976 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,17.5 + rot: 1.5707963267948966 rad + pos: 0.5,34.5 parent: 2 - - uid: 6496 + - uid: 5002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,22.5 + rot: 1.5707963267948966 rad + pos: -9.5,37.5 parent: 2 - - uid: 6498 + - uid: 5004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,11.5 + rot: 1.5707963267948966 rad + pos: -7.5,37.5 parent: 2 - - uid: 6499 + - uid: 5005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 + rot: 1.5707963267948966 rad + pos: 4.5,40.5 parent: 2 - - uid: 6500 + - uid: 5008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,24.5 + rot: 1.5707963267948966 rad + pos: 0.5,39.5 parent: 2 - - uid: 6525 + - uid: 5011 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-2.5 + rot: 1.5707963267948966 rad + pos: -3.5,39.5 parent: 2 - - uid: 6544 + - uid: 5012 components: - type: Transform - pos: -15.5,-36.5 + rot: 1.5707963267948966 rad + pos: -2.5,39.5 parent: 2 - - uid: 6553 + - uid: 5113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 + rot: 1.5707963267948966 rad + pos: -1.5,44.5 parent: 2 - - uid: 6571 + - uid: 5125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,43.5 parent: 2 - - uid: 6618 + - uid: 5126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-2.5 + rot: 1.5707963267948966 rad + pos: 4.5,42.5 parent: 2 - - uid: 6619 + - uid: 5136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-5.5 + rot: 1.5707963267948966 rad + pos: -7.5,43.5 parent: 2 - - uid: 6620 + - uid: 5137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 + rot: 1.5707963267948966 rad + pos: -7.5,44.5 parent: 2 - - uid: 6624 + - uid: 5140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-6.5 + rot: 1.5707963267948966 rad + pos: -7.5,46.5 parent: 2 - - uid: 6627 + - uid: 5142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-5.5 + rot: 1.5707963267948966 rad + pos: -7.5,48.5 parent: 2 - - uid: 6635 + - uid: 5143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-2.5 + rot: 1.5707963267948966 rad + pos: 4.5,45.5 parent: 2 - - uid: 6802 + - uid: 5145 components: - type: Transform - pos: -19.5,16.5 + rot: 1.5707963267948966 rad + pos: 4.5,47.5 parent: 2 - - uid: 6899 + - uid: 5176 components: - type: Transform - pos: -20.5,16.5 + rot: 1.5707963267948966 rad + pos: -7.5,49.5 parent: 2 - - uid: 6936 + - uid: 5177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,28.5 + rot: 1.5707963267948966 rad + pos: -6.5,49.5 parent: 2 - - uid: 6943 + - uid: 5178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,31.5 + rot: 1.5707963267948966 rad + pos: -5.5,49.5 parent: 2 - - uid: 6958 + - uid: 5184 components: - type: Transform - pos: 1.5,41.5 + rot: 1.5707963267948966 rad + pos: -4.5,50.5 parent: 2 - - uid: 6973 + - uid: 5186 components: - type: Transform - pos: -44.5,-35.5 + rot: 1.5707963267948966 rad + pos: -4.5,52.5 parent: 2 - - uid: 6975 + - uid: 5187 components: - type: Transform - pos: 45.5,-11.5 + rot: 1.5707963267948966 rad + pos: -4.5,53.5 parent: 2 - - uid: 6986 + - uid: 5188 components: - type: Transform - pos: 54.5,-17.5 + rot: 1.5707963267948966 rad + pos: -3.5,54.5 parent: 2 - - uid: 6987 + - uid: 5191 components: - type: Transform - pos: 3.5,41.5 + rot: 1.5707963267948966 rad + pos: 3.5,53.5 parent: 2 - - uid: 6989 + - uid: 5192 components: - type: Transform - pos: -6.5,41.5 + rot: 1.5707963267948966 rad + pos: 4.5,53.5 parent: 2 - - uid: 6990 + - uid: 5194 components: - type: Transform - pos: -6.5,44.5 + rot: 1.5707963267948966 rad + pos: 4.5,50.5 parent: 2 - - uid: 6991 + - uid: 5195 components: - type: Transform - pos: 1.5,49.5 + rot: 1.5707963267948966 rad + pos: 4.5,49.5 parent: 2 - - uid: 6993 + - uid: 5282 components: - type: Transform - pos: 3.5,49.5 + rot: 1.5707963267948966 rad + pos: -7.5,39.5 parent: 2 - - uid: 7005 + - uid: 5284 components: - type: Transform - pos: 45.5,-13.5 + rot: 1.5707963267948966 rad + pos: -5.5,39.5 parent: 2 - - uid: 7014 + - uid: 5295 components: - type: Transform - pos: 12.5,34.5 + rot: 1.5707963267948966 rad + pos: 39.5,6.5 parent: 2 - - uid: 7024 + - uid: 5378 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,36.5 + pos: 10.5,33.5 parent: 2 - - uid: 7027 + - uid: 5423 components: - type: Transform - pos: 52.5,-17.5 + rot: 1.5707963267948966 rad + pos: 23.5,16.5 parent: 2 - - uid: 7184 + - uid: 5433 components: - type: Transform - pos: 55.5,-17.5 + rot: 1.5707963267948966 rad + pos: 10.5,35.5 parent: 2 - - uid: 7229 + - uid: 5451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,0.5 + rot: 1.5707963267948966 rad + pos: 24.5,9.5 parent: 2 - - uid: 7444 + - uid: 5455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-5.5 + rot: 1.5707963267948966 rad + pos: -44.5,-37.5 parent: 2 - - uid: 7456 + - uid: 5470 components: - type: Transform - pos: 58.5,24.5 + rot: 1.5707963267948966 rad + pos: 32.5,16.5 parent: 2 - - uid: 7465 + - uid: 5477 components: - type: Transform - pos: 62.5,24.5 + rot: 1.5707963267948966 rad + pos: 32.5,23.5 parent: 2 - - uid: 7469 + - uid: 5485 components: - type: Transform - pos: 49.5,19.5 + rot: 1.5707963267948966 rad + pos: 34.5,16.5 parent: 2 - - uid: 7471 + - uid: 5490 components: - type: Transform - pos: 48.5,19.5 + rot: 1.5707963267948966 rad + pos: 35.5,7.5 parent: 2 - - uid: 7473 + - uid: 5494 components: - type: Transform - pos: 66.5,-1.5 + rot: 1.5707963267948966 rad + pos: 32.5,11.5 parent: 2 - - uid: 7481 + - uid: 5496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-14.5 + rot: 1.5707963267948966 rad + pos: 34.5,11.5 parent: 2 - - uid: 7484 + - uid: 5497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-16.5 + rot: 1.5707963267948966 rad + pos: 32.5,12.5 parent: 2 - - uid: 7489 + - uid: 5498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-17.5 + rot: 1.5707963267948966 rad + pos: 36.5,16.5 parent: 2 - - uid: 7495 + - uid: 5504 components: - type: Transform - pos: -53.5,-34.5 + rot: 1.5707963267948966 rad + pos: 37.5,21.5 parent: 2 - - uid: 7496 + - uid: 5506 components: - type: Transform - pos: 54.5,21.5 + rot: 1.5707963267948966 rad + pos: 37.5,23.5 parent: 2 - - uid: 7497 + - uid: 5508 components: - type: Transform - pos: 66.5,2.5 + rot: 1.5707963267948966 rad + pos: 22.5,24.5 parent: 2 - - uid: 7499 + - uid: 5513 components: - type: Transform - pos: 55.5,22.5 + rot: 1.5707963267948966 rad + pos: -56.5,-51.5 parent: 2 - - uid: 7501 + - uid: 5617 components: - type: Transform - pos: 54.5,19.5 + rot: 1.5707963267948966 rad + pos: 24.5,27.5 parent: 2 - - uid: 7502 + - uid: 5630 components: - type: Transform - pos: -53.5,-35.5 + rot: 1.5707963267948966 rad + pos: 38.5,14.5 parent: 2 - - uid: 7506 + - uid: 5631 components: - type: Transform - pos: 55.5,24.5 + rot: 1.5707963267948966 rad + pos: 38.5,13.5 parent: 2 - - uid: 7512 + - uid: 5633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-8.5 + rot: 1.5707963267948966 rad + pos: 38.5,11.5 parent: 2 - - uid: 7515 + - uid: 5635 components: - type: Transform - pos: 66.5,4.5 + rot: 1.5707963267948966 rad + pos: 36.5,11.5 parent: 2 - - uid: 7537 + - uid: 5664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-8.5 + rot: 1.5707963267948966 rad + pos: 40.5,19.5 parent: 2 - - uid: 7539 + - uid: 5665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-23.5 + rot: 1.5707963267948966 rad + pos: 40.5,16.5 parent: 2 - - uid: 7750 + - uid: 5666 components: - type: Transform - pos: 56.5,-17.5 + rot: 1.5707963267948966 rad + pos: 39.5,16.5 parent: 2 - - uid: 7906 + - uid: 5667 components: - type: Transform - pos: -9.5,-35.5 + rot: 1.5707963267948966 rad + pos: 40.5,17.5 parent: 2 - - uid: 7910 + - uid: 5742 components: - type: Transform - pos: -14.5,-35.5 + rot: 1.5707963267948966 rad + pos: 42.5,19.5 parent: 2 - - uid: 7920 + - uid: 5789 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-37.5 + pos: 0.5,41.5 parent: 2 - - uid: 7931 + - uid: 5795 components: - type: Transform - pos: -12.5,-35.5 + rot: 1.5707963267948966 rad + pos: -36.5,-46.5 parent: 2 - - uid: 7950 + - uid: 5803 components: - type: Transform - pos: -8.5,-38.5 + rot: 1.5707963267948966 rad + pos: -16.5,-42.5 parent: 2 - - uid: 7994 + - uid: 5804 components: - type: Transform - pos: -8.5,-40.5 + rot: 1.5707963267948966 rad + pos: -15.5,-42.5 parent: 2 - - uid: 8173 + - uid: 5811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,5.5 + rot: 1.5707963267948966 rad + pos: 54.5,-42.5 parent: 2 - - uid: 8176 + - uid: 5812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,5.5 + rot: 1.5707963267948966 rad + pos: 53.5,-36.5 parent: 2 - - uid: 8178 + - uid: 5813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,5.5 + rot: 1.5707963267948966 rad + pos: 53.5,-35.5 parent: 2 - - uid: 8179 + - uid: 5815 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,4.5 + rot: 1.5707963267948966 rad + pos: 53.5,-27.5 parent: 2 - - uid: 8180 + - uid: 5816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,3.5 + rot: 1.5707963267948966 rad + pos: 53.5,-32.5 parent: 2 - - uid: 8181 + - uid: 5818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,1.5 + rot: 1.5707963267948966 rad + pos: 53.5,-30.5 parent: 2 - - uid: 8223 + - uid: 5819 components: - type: Transform - pos: 16.5,24.5 + rot: 1.5707963267948966 rad + pos: -56.5,-44.5 parent: 2 - - uid: 8226 + - uid: 5822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-21.5 + rot: 1.5707963267948966 rad + pos: 56.5,-36.5 parent: 2 - - uid: 8227 + - uid: 5825 components: - type: Transform - pos: 15.5,27.5 + rot: 1.5707963267948966 rad + pos: 59.5,-36.5 parent: 2 - - uid: 8229 + - uid: 5828 components: - type: Transform - pos: 13.5,27.5 + rot: 1.5707963267948966 rad + pos: 59.5,-33.5 parent: 2 - - uid: 8231 + - uid: 5830 components: - type: Transform - pos: 66.5,-4.5 + rot: 1.5707963267948966 rad + pos: 59.5,-31.5 parent: 2 - - uid: 8233 + - uid: 5831 components: - type: Transform - pos: 17.5,24.5 + rot: 1.5707963267948966 rad + pos: 59.5,-30.5 parent: 2 - - uid: 8234 + - uid: 5833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-21.5 + rot: 1.5707963267948966 rad + pos: 57.5,-30.5 parent: 2 - - uid: 8245 + - uid: 5835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-21.5 + rot: 1.5707963267948966 rad + pos: 55.5,-30.5 parent: 2 - - uid: 9147 + - uid: 5836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-21.5 + rot: 1.5707963267948966 rad + pos: 54.5,-30.5 parent: 2 - - uid: 9154 + - uid: 5838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,27.5 + rot: 1.5707963267948966 rad + pos: 57.5,-31.5 parent: 2 - - uid: 10988 + - uid: 5843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,26.5 + rot: 1.5707963267948966 rad + pos: 60.5,-31.5 parent: 2 - - uid: 11059 + - uid: 5845 components: - type: Transform - pos: -34.5,-4.5 + rot: 1.5707963267948966 rad + pos: 60.5,-33.5 parent: 2 - - uid: 11655 + - uid: 5846 components: - type: Transform - pos: 68.5,-4.5 + rot: 1.5707963267948966 rad + pos: 60.5,-34.5 parent: 2 - - uid: 11656 + - uid: 5847 components: - type: Transform - pos: 71.5,-4.5 + rot: 1.5707963267948966 rad + pos: 60.5,-35.5 parent: 2 - - uid: 12571 + - uid: 5850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,24.5 + rot: 1.5707963267948966 rad + pos: 59.5,-37.5 parent: 2 - - uid: 12603 + - uid: 5852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,22.5 + rot: 1.5707963267948966 rad + pos: 57.5,-37.5 parent: 2 - - uid: 13177 + - uid: 5854 components: - type: Transform - pos: -34.5,-1.5 + rot: 1.5707963267948966 rad + pos: 55.5,-37.5 parent: 2 - - uid: 13745 + - uid: 5855 components: - type: Transform - pos: -15.5,17.5 + rot: 1.5707963267948966 rad + pos: 54.5,-37.5 parent: 2 - - uid: 13983 + - uid: 5860 components: - type: Transform - pos: -42.5,-32.5 + rot: 1.5707963267948966 rad + pos: 53.5,-25.5 parent: 2 - - uid: 14402 + - uid: 5867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,18.5 + rot: 1.5707963267948966 rad + pos: 58.5,-24.5 parent: 2 - - uid: 14695 + - uid: 5868 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-30.5 + rot: 1.5707963267948966 rad + pos: 59.5,-24.5 parent: 2 - - uid: 14704 + - uid: 5870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-27.5 + rot: 1.5707963267948966 rad + pos: 59.5,-26.5 parent: 2 - - uid: 14862 + - uid: 5871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-22.5 + rot: 1.5707963267948966 rad + pos: 59.5,-27.5 parent: 2 - - uid: 14870 + - uid: 5873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 + rot: 1.5707963267948966 rad + pos: 56.5,-39.5 parent: 2 - - uid: 15165 + - uid: 5876 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-5.5 + pos: 56.5,-41.5 parent: 2 - - uid: 15173 + - uid: 5882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,18.5 + rot: 1.5707963267948966 rad + pos: 54.5,-25.5 parent: 2 - - uid: 15201 + - uid: 5887 components: - type: Transform - pos: 70.5,-0.5 + rot: 1.5707963267948966 rad + pos: -56.5,-53.5 parent: 2 - - uid: 15203 + - uid: 5888 components: - type: Transform - pos: 67.5,-0.5 + rot: 1.5707963267948966 rad + pos: -38.5,-50.5 parent: 2 - - uid: 15210 + - uid: 5892 components: - type: Transform - pos: 70.5,3.5 + rot: 1.5707963267948966 rad + pos: 52.5,-43.5 parent: 2 - - uid: 15213 + - uid: 5918 components: - type: Transform - pos: 67.5,3.5 + rot: 1.5707963267948966 rad + pos: 39.5,8.5 parent: 2 - - uid: 16085 + - uid: 5951 components: - type: Transform - pos: 59.5,26.5 + rot: 1.5707963267948966 rad + pos: 40.5,10.5 parent: 2 - - uid: 16150 + - uid: 5956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-28.5 + rot: 1.5707963267948966 rad + pos: 40.5,11.5 parent: 2 - - uid: 16164 + - uid: 5957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-8.5 + rot: 1.5707963267948966 rad + pos: 40.5,12.5 parent: 2 - - uid: 16186 + - uid: 5958 components: - type: Transform - pos: 51.5,19.5 + rot: 1.5707963267948966 rad + pos: -64.5,-20.5 parent: 2 - - uid: 16187 + - uid: 5961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-30.5 + rot: 1.5707963267948966 rad + pos: 40.5,14.5 parent: 2 - - uid: 16188 + - uid: 5962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-30.5 + rot: 1.5707963267948966 rad + pos: 12.5,38.5 parent: 2 - - uid: 16190 + - uid: 5972 components: - type: Transform - pos: 81.5,-26.5 + rot: 1.5707963267948966 rad + pos: 41.5,10.5 parent: 2 - - uid: 16345 + - uid: 5989 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-43.5 + pos: 47.5,10.5 parent: 2 - - uid: 16350 + - uid: 5995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-30.5 + rot: 1.5707963267948966 rad + pos: 48.5,10.5 parent: 2 - - uid: 16353 + - uid: 5999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-30.5 + rot: 1.5707963267948966 rad + pos: 45.5,17.5 parent: 2 - - uid: 16379 + - uid: 6001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-23.5 + rot: 1.5707963267948966 rad + pos: 46.5,17.5 parent: 2 - - uid: 16380 + - uid: 6002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-22.5 + rot: 1.5707963267948966 rad + pos: 48.5,17.5 parent: 2 - - uid: 16384 + - uid: 6004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-29.5 + rot: 1.5707963267948966 rad + pos: 48.5,16.5 parent: 2 - - uid: 16388 + - uid: 6005 components: - type: Transform - pos: 49.5,20.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - uid: 16514 + - uid: 6007 components: - type: Transform - pos: 15.5,33.5 + rot: 1.5707963267948966 rad + pos: 48.5,12.5 parent: 2 - - uid: 16516 + - uid: 6009 components: - type: Transform - pos: 13.5,33.5 + rot: 1.5707963267948966 rad + pos: 51.5,16.5 parent: 2 - - uid: 17065 + - uid: 6044 components: - type: Transform - pos: -23.5,-42.5 + rot: 1.5707963267948966 rad + pos: 52.5,16.5 parent: 2 - - uid: 17066 + - uid: 6051 components: - type: Transform - pos: -25.5,-42.5 + rot: 1.5707963267948966 rad + pos: 52.5,15.5 parent: 2 - - uid: 20110 + - uid: 6052 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-37.5 + pos: 45.5,19.5 parent: 2 - - uid: 20297 + - uid: 6053 components: - type: Transform - pos: 85.5,-21.5 + rot: 1.5707963267948966 rad + pos: -45.5,-38.5 parent: 2 - - uid: 20300 + - uid: 6076 components: - type: Transform - pos: 84.5,-22.5 + rot: 1.5707963267948966 rad + pos: 37.5,5.5 parent: 2 - - uid: 20791 + - uid: 6078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,15.5 + rot: 1.5707963267948966 rad + pos: -50.5,-37.5 parent: 2 - - uid: 20907 + - uid: 6079 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-38.5 + pos: -49.5,-37.5 parent: 2 - - uid: 20923 + - uid: 6081 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-42.5 + pos: -45.5,-41.5 parent: 2 - - uid: 21035 + - uid: 6097 components: - type: Transform - pos: 81.5,-32.5 + rot: 1.5707963267948966 rad + pos: -45.5,-43.5 parent: 2 - - uid: 21042 + - uid: 6108 components: - type: Transform - pos: 80.5,-32.5 + rot: 1.5707963267948966 rad + pos: -49.5,-43.5 parent: 2 - - uid: 21940 + - uid: 6110 components: - type: Transform - pos: -29.5,-4.5 + rot: 1.5707963267948966 rad + pos: -49.5,-42.5 parent: 2 -- proto: WallSolidRust - entities: - - uid: 757 + - uid: 6111 components: - type: Transform - pos: -27.5,-43.5 + rot: 1.5707963267948966 rad + pos: -55.5,-43.5 parent: 2 - - uid: 766 + - uid: 6144 components: - type: Transform - pos: -25.5,-41.5 + rot: 1.5707963267948966 rad + pos: -38.5,-53.5 parent: 2 - - uid: 2704 + - uid: 6146 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,10.5 + pos: -38.5,-44.5 parent: 2 - - uid: 2706 + - uid: 6147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,17.5 + pos: -39.5,-43.5 parent: 2 - - uid: 2708 + - uid: 6149 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,0.5 + pos: -42.5,-37.5 parent: 2 - - uid: 2709 + - uid: 6153 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,3.5 + pos: -19.5,37.5 parent: 2 - - uid: 2710 + - uid: 6154 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,5.5 + pos: -20.5,37.5 parent: 2 - - uid: 2714 + - uid: 6155 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,7.5 + pos: -37.5,-41.5 parent: 2 - - uid: 2717 + - uid: 6156 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,12.5 + pos: -39.5,-36.5 parent: 2 - - uid: 2720 + - uid: 6157 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,13.5 + pos: -37.5,-36.5 parent: 2 - - uid: 2721 + - uid: 6159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,15.5 + pos: -38.5,-47.5 parent: 2 - - uid: 2723 + - uid: 6162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,15.5 + pos: -38.5,-48.5 parent: 2 - - uid: 2727 + - uid: 6163 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,15.5 + pos: -56.5,-48.5 parent: 2 - - uid: 2735 + - uid: 6164 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,15.5 + pos: -38.5,-55.5 parent: 2 - - uid: 2739 + - uid: 6168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,15.5 + pos: -52.5,-57.5 parent: 2 - - uid: 2742 + - uid: 6169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,15.5 + pos: -42.5,-54.5 parent: 2 - - uid: 2745 + - uid: 6171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,15.5 + pos: -42.5,-48.5 parent: 2 - - uid: 2749 + - uid: 6172 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,15.5 + pos: -52.5,-49.5 parent: 2 - - uid: 2753 + - uid: 6175 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,15.5 + pos: -43.5,-49.5 parent: 2 - - uid: 2755 + - uid: 6176 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,15.5 + pos: -51.5,-49.5 parent: 2 - - uid: 2757 + - uid: 6177 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,13.5 + pos: -42.5,-50.5 parent: 2 - - uid: 2821 + - uid: 6202 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,10.5 + pos: -56.5,-55.5 parent: 2 - - uid: 2827 + - uid: 6210 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-5.5 + pos: -56.5,-54.5 parent: 2 - - uid: 2829 + - uid: 6211 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-10.5 + pos: -52.5,-54.5 parent: 2 - - uid: 2833 + - uid: 6213 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-17.5 + pos: -52.5,-52.5 parent: 2 - - uid: 2834 + - uid: 6216 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-18.5 + pos: -52.5,-53.5 parent: 2 - - uid: 2867 + - uid: 6217 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-21.5 + pos: -42.5,-53.5 parent: 2 - - uid: 2870 + - uid: 6220 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-21.5 + pos: -45.5,-44.5 parent: 2 - - uid: 2876 + - uid: 6226 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-25.5 + pos: -55.5,-44.5 parent: 2 - - uid: 2878 + - uid: 6229 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-27.5 + pos: -38.5,-51.5 parent: 2 - - uid: 2881 + - uid: 6239 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,0.5 + pos: -58.5,-54.5 parent: 2 - - uid: 2882 + - uid: 6240 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,0.5 + pos: -53.5,-57.5 parent: 2 - - uid: 2883 + - uid: 6242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,0.5 + pos: -60.5,-54.5 parent: 2 - - uid: 2887 + - uid: 6243 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,0.5 + pos: -37.5,-54.5 parent: 2 - - uid: 2891 + - uid: 6244 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,0.5 + pos: -36.5,-54.5 parent: 2 - - uid: 2893 + - uid: 6245 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,0.5 + pos: -34.5,-55.5 parent: 2 - - uid: 2897 + - uid: 6248 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-5.5 + pos: -34.5,-54.5 parent: 2 - - uid: 2909 + - uid: 6249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,6.5 + rot: 1.5707963267948966 rad + pos: -42.5,-56.5 parent: 2 - - uid: 2912 + - uid: 6250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 + rot: 1.5707963267948966 rad + pos: -41.5,-57.5 parent: 2 - - uid: 2914 + - uid: 6252 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-5.5 + pos: -52.5,-59.5 parent: 2 - - uid: 2916 + - uid: 6253 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-7.5 + pos: -60.5,-56.5 parent: 2 - - uid: 2920 + - uid: 6256 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,17.5 + pos: -34.5,-57.5 parent: 2 - - uid: 2922 + - uid: 6257 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,18.5 + pos: -42.5,-59.5 parent: 2 - - uid: 2923 + - uid: 6260 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-13.5 + pos: -54.5,-59.5 parent: 2 - - uid: 2924 + - uid: 6262 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,18.5 + pos: -42.5,-64.5 parent: 2 - - uid: 2929 + - uid: 6263 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,18.5 + pos: -41.5,-64.5 parent: 2 - - uid: 2930 + - uid: 6264 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,18.5 + pos: -52.5,-64.5 parent: 2 - - uid: 2965 + - uid: 6266 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,18.5 + pos: -52.5,-66.5 parent: 2 - - uid: 2970 + - uid: 6285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,18.5 + pos: -53.5,-66.5 parent: 2 - - uid: 2988 + - uid: 6286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,18.5 + rot: 1.5707963267948966 rad + pos: -42.5,-66.5 parent: 2 - - uid: 2990 + - uid: 6288 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,18.5 + pos: -40.5,-66.5 parent: 2 - - uid: 3024 + - uid: 6290 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-7.5 + pos: -55.5,-66.5 parent: 2 - - uid: 3025 + - uid: 6296 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,18.5 + pos: -56.5,-66.5 parent: 2 - - uid: 3026 + - uid: 6297 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-35.5 + pos: -58.5,-66.5 parent: 2 - - uid: 3036 + - uid: 6299 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-34.5 + pos: -60.5,-66.5 parent: 2 - - uid: 3038 + - uid: 6301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-34.5 + pos: -60.5,-65.5 parent: 2 - - uid: 3039 + - uid: 6302 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-34.5 + pos: -60.5,-63.5 parent: 2 - - uid: 3041 + - uid: 6304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-34.5 + pos: -60.5,-61.5 parent: 2 - - uid: 3046 + - uid: 6306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-32.5 + pos: -60.5,-58.5 parent: 2 - - uid: 3052 + - uid: 6308 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-32.5 + pos: -34.5,-62.5 parent: 2 - - uid: 3067 + - uid: 6313 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,10.5 + pos: -34.5,-59.5 parent: 2 - - uid: 3071 + - uid: 6314 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,16.5 + pos: -34.5,-65.5 parent: 2 - - uid: 3072 + - uid: 6317 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,16.5 + pos: -34.5,-66.5 parent: 2 - - uid: 3075 + - uid: 6318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,15.5 + pos: -36.5,-66.5 parent: 2 - - uid: 3077 + - uid: 6320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,10.5 + pos: -37.5,-66.5 parent: 2 - - uid: 3079 + - uid: 6321 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,15.5 + pos: 46.5,-8.5 parent: 2 - - uid: 3080 + - uid: 6324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,13.5 + pos: 21.5,-51.5 parent: 2 - - uid: 3082 + - uid: 6371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-16.5 + pos: 23.5,-72.5 parent: 2 - - uid: 3086 + - uid: 6487 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-7.5 + pos: 58.5,-8.5 parent: 2 - - uid: 3087 + - uid: 6488 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-7.5 + pos: 56.5,-8.5 parent: 2 - - uid: 3117 + - uid: 6495 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-24.5 + pos: 54.5,-8.5 parent: 2 - - uid: 3119 + - uid: 6502 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-24.5 + pos: 50.5,-8.5 parent: 2 - - uid: 3120 + - uid: 6510 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-24.5 + pos: 56.5,0.5 parent: 2 - - uid: 3125 + - uid: 6524 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-24.5 + pos: 52.5,12.5 parent: 2 - - uid: 3127 + - uid: 6527 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-28.5 + pos: 62.5,10.5 parent: 2 - - uid: 3128 + - uid: 6528 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-28.5 + pos: 54.5,-15.5 parent: 2 - - uid: 3130 + - uid: 6529 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-28.5 + pos: 56.5,-0.5 parent: 2 - - uid: 3132 + - uid: 6542 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-32.5 + pos: 52.5,13.5 parent: 2 - - uid: 3137 + - uid: 6563 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-32.5 + pos: 58.5,5.5 parent: 2 - - uid: 3138 + - uid: 6623 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-32.5 + pos: 58.5,0.5 parent: 2 - - uid: 3139 + - uid: 6628 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-7.5 + pos: 57.5,7.5 parent: 2 - - uid: 3142 + - uid: 6631 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-9.5 + pos: 57.5,9.5 parent: 2 - - uid: 3143 + - uid: 6633 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-10.5 + pos: 57.5,11.5 parent: 2 - - uid: 3145 + - uid: 6639 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-7.5 + pos: 57.5,13.5 parent: 2 - - uid: 3148 + - uid: 6641 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-16.5 + pos: 54.5,13.5 parent: 2 - - uid: 3151 + - uid: 6643 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-19.5 + pos: 59.5,9.5 parent: 2 - - uid: 3154 + - uid: 6647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-21.5 + pos: 60.5,9.5 parent: 2 - - uid: 3157 + - uid: 6648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-23.5 + pos: 60.5,11.5 parent: 2 - - uid: 3163 + - uid: 6650 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-36.5 + pos: 60.5,13.5 parent: 2 - - uid: 3164 + - uid: 6652 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-32.5 + pos: 59.5,13.5 parent: 2 - - uid: 3171 + - uid: 6653 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,21.5 + pos: 53.5,16.5 parent: 2 - - uid: 3196 + - uid: 6655 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,10.5 + pos: 55.5,16.5 parent: 2 - - uid: 3197 + - uid: 6657 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,22.5 + pos: 47.5,-11.5 parent: 2 - - uid: 3201 + - uid: 6667 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,22.5 + pos: 47.5,-13.5 parent: 2 - - uid: 3202 + - uid: 6669 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,22.5 + pos: 47.5,-14.5 parent: 2 - - uid: 3205 + - uid: 6671 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,22.5 + pos: 47.5,-15.5 parent: 2 - - uid: 3209 + - uid: 6672 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,22.5 + pos: 49.5,-15.5 parent: 2 - - uid: 3214 + - uid: 6673 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,22.5 + pos: 51.5,-15.5 parent: 2 - - uid: 3215 + - uid: 6675 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,22.5 + pos: -15.5,-40.5 parent: 2 - - uid: 3217 + - uid: 6677 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,22.5 + pos: 60.5,-24.5 parent: 2 - - uid: 3219 + - uid: 6728 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-5.5 + pos: 51.5,-22.5 parent: 2 - - uid: 3220 + - uid: 6759 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-7.5 + pos: 51.5,-24.5 parent: 2 - - uid: 3221 + - uid: 6776 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-11.5 + pos: 54.5,-13.5 parent: 2 - - uid: 3226 + - uid: 6778 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-5.5 + pos: 54.5,-11.5 parent: 2 - - uid: 3230 + - uid: 6786 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-5.5 + pos: 56.5,17.5 parent: 2 - - uid: 3233 + - uid: 6788 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-5.5 + pos: 56.5,19.5 parent: 2 - - uid: 3238 + - uid: 6830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,10.5 + pos: 57.5,20.5 parent: 2 - - uid: 3243 + - uid: 6838 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,10.5 + pos: 62.5,20.5 parent: 2 - - uid: 3248 + - uid: 6840 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,10.5 + pos: 62.5,19.5 parent: 2 - - uid: 3252 + - uid: 6842 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,8.5 + pos: 62.5,17.5 parent: 2 - - uid: 3261 + - uid: 6844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 + pos: 9.5,-45.5 parent: 2 - - uid: 3277 + - uid: 6846 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,13.5 + pos: 62.5,15.5 parent: 2 - - uid: 3299 + - uid: 6847 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,17.5 + pos: 62.5,13.5 parent: 2 - - uid: 3300 + - uid: 6850 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,18.5 + pos: 59.5,-0.5 parent: 2 - - uid: 3307 + - uid: 6852 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,18.5 + pos: 60.5,5.5 parent: 2 - - uid: 3311 + - uid: 6854 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,18.5 + pos: 62.5,5.5 parent: 2 - - uid: 3312 + - uid: 6858 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,18.5 + pos: 62.5,2.5 parent: 2 - - uid: 3317 + - uid: 6860 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,14.5 + pos: 62.5,-0.5 parent: 2 - - uid: 3320 + - uid: 6862 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,11.5 + pos: 63.5,-0.5 parent: 2 - - uid: 3327 + - uid: 6864 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,20.5 + pos: 64.5,-0.5 parent: 2 - - uid: 3332 + - uid: 6868 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-5.5 + pos: 64.5,4.5 parent: 2 - - uid: 3338 + - uid: 6871 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-7.5 + pos: 57.5,-2.5 parent: 2 - - uid: 3339 + - uid: 6872 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-7.5 + pos: 57.5,21.5 parent: 2 - - uid: 3343 + - uid: 6877 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-11.5 + pos: 61.5,21.5 parent: 2 - - uid: 3346 + - uid: 6902 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-9.5 + pos: -41.5,-37.5 parent: 2 - - uid: 3348 + - uid: 6934 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-9.5 + pos: -3.5,41.5 parent: 2 - - uid: 3353 + - uid: 6935 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-11.5 + pos: 0.5,43.5 parent: 2 - - uid: 3357 + - uid: 6941 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-7.5 + pos: -3.5,43.5 parent: 2 - - uid: 3362 + - uid: 6950 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-11.5 + pos: 37.5,7.5 parent: 2 - - uid: 3365 + - uid: 6954 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-13.5 + pos: 37.5,8.5 parent: 2 - - uid: 3368 + - uid: 6956 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-16.5 + pos: 56.5,-10.5 parent: 2 - - uid: 3370 + - uid: 6963 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-16.5 + pos: 56.5,-12.5 parent: 2 - - uid: 3372 + - uid: 6964 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-16.5 + pos: 56.5,-14.5 parent: 2 - - uid: 3373 + - uid: 6979 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-16.5 + pos: 64.5,7.5 parent: 2 - - uid: 3377 + - uid: 6981 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-18.5 + pos: 63.5,7.5 parent: 2 - - uid: 3380 + - uid: 6984 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-21.5 + pos: 62.5,7.5 parent: 2 - - uid: 3382 + - uid: 6999 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-18.5 + pos: 62.5,8.5 parent: 2 - - uid: 3384 + - uid: 7000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-21.5 + pos: 62.5,11.5 parent: 2 - - uid: 3388 + - uid: 7001 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-21.5 + pos: 64.5,11.5 parent: 2 - - uid: 3391 + - uid: 7006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-20.5 + pos: 64.5,12.5 parent: 2 - - uid: 3392 + - uid: 7010 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-21.5 + pos: 64.5,18.5 parent: 2 - - uid: 3396 + - uid: 7012 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-6.5 + pos: 64.5,22.5 parent: 2 - - uid: 3402 + - uid: 7016 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-13.5 + pos: 62.5,-8.5 parent: 2 - - uid: 3403 + - uid: 7030 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-15.5 + pos: 60.5,-10.5 parent: 2 - - uid: 3406 + - uid: 7031 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-17.5 + pos: 59.5,-10.5 parent: 2 - - uid: 3408 + - uid: 7034 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-19.5 + pos: 62.5,-10.5 parent: 2 - - uid: 3410 + - uid: 7068 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-21.5 + pos: 64.5,-10.5 parent: 2 - - uid: 3411 + - uid: 7069 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-23.5 + pos: 65.5,-10.5 parent: 2 - - uid: 3413 + - uid: 7070 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-23.5 + pos: 65.5,-7.5 parent: 2 - - uid: 3418 + - uid: 7071 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-23.5 + pos: 65.5,-6.5 parent: 2 - - uid: 3421 + - uid: 7072 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-23.5 + pos: -53.5,-37.5 parent: 2 - - uid: 3426 + - uid: 7075 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-23.5 + pos: 62.5,-20.5 parent: 2 - - uid: 3431 + - uid: 7076 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-34.5 + pos: 62.5,-21.5 parent: 2 - - uid: 3433 + - uid: 7078 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-34.5 + pos: 61.5,-21.5 parent: 2 - - uid: 3434 + - uid: 7083 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-34.5 + pos: 66.5,-14.5 parent: 2 - - uid: 3439 + - uid: 7085 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-34.5 + pos: 62.5,-14.5 parent: 2 - - uid: 3443 + - uid: 7087 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-34.5 + pos: 62.5,-16.5 parent: 2 - - uid: 3445 + - uid: 7088 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-34.5 + pos: 67.5,-21.5 parent: 2 - - uid: 3448 + - uid: 7090 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-40.5 + pos: 66.5,-21.5 parent: 2 - - uid: 3450 + - uid: 7093 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-40.5 + pos: 67.5,-22.5 parent: 2 - - uid: 3456 + - uid: 7107 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-40.5 + pos: 67.5,-24.5 parent: 2 - - uid: 3482 + - uid: 7108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-11.5 + rot: 1.5707963267948966 rad + pos: 67.5,-25.5 parent: 2 - - uid: 3492 + - uid: 7112 components: - type: Transform - pos: -21.5,-10.5 + rot: 1.5707963267948966 rad + pos: 66.5,-15.5 parent: 2 - - uid: 3573 + - uid: 7114 components: - type: Transform - pos: -20.5,-42.5 + rot: 1.5707963267948966 rad + pos: 63.5,-27.5 parent: 2 - - uid: 3618 + - uid: 7115 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-40.5 + pos: 66.5,-27.5 parent: 2 - - uid: 3687 + - uid: 7127 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-37.5 + pos: 61.5,-29.5 parent: 2 - - uid: 3691 + - uid: 7132 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-33.5 + pos: 67.5,-15.5 parent: 2 - - uid: 3692 + - uid: 7134 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-40.5 + pos: 69.5,-15.5 parent: 2 - - uid: 3750 + - uid: 7181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-40.5 + pos: 2.5,39.5 parent: 2 - - uid: 3754 + - uid: 7183 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-37.5 + pos: 71.5,-15.5 parent: 2 - - uid: 3756 + - uid: 7186 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-35.5 + pos: 72.5,-14.5 parent: 2 - - uid: 3766 + - uid: 7188 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-0.5 + pos: 72.5,-10.5 parent: 2 - - uid: 3767 + - uid: 7190 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-4.5 + pos: 73.5,-10.5 parent: 2 - - uid: 3769 + - uid: 7192 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-9.5 + pos: 75.5,-10.5 parent: 2 - - uid: 3783 + - uid: 7196 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-9.5 + pos: 75.5,-8.5 parent: 2 - - uid: 3839 + - uid: 7198 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-7.5 + pos: 75.5,-6.5 parent: 2 - - uid: 3841 + - uid: 7199 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-11.5 + pos: 73.5,-6.5 parent: 2 - - uid: 3843 + - uid: 7201 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-11.5 + pos: 71.5,-6.5 parent: 2 - - uid: 3844 + - uid: 7203 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,14.5 + pos: 70.5,-6.5 parent: 2 - - uid: 3846 + - uid: 7205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-11.5 + pos: 67.5,-6.5 parent: 2 - - uid: 3848 + - uid: 7207 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-13.5 + pos: 67.5,-19.5 parent: 2 - - uid: 3849 + - uid: 7208 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-12.5 + pos: 71.5,-19.5 parent: 2 - - uid: 4067 + - uid: 7211 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-17.5 + pos: 70.5,-19.5 parent: 2 - - uid: 4178 + - uid: 7270 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-14.5 + pos: 72.5,-19.5 parent: 2 - - uid: 4187 + - uid: 7278 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-32.5 + pos: 72.5,-21.5 parent: 2 - - uid: 4204 + - uid: 7279 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-32.5 + pos: 72.5,-22.5 parent: 2 - - uid: 4209 + - uid: 7280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-27.5 + pos: 72.5,-24.5 parent: 2 - - uid: 4211 + - uid: 7282 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-15.5 + pos: 68.5,-24.5 parent: 2 - - uid: 4224 + - uid: 7283 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-22.5 + pos: 72.5,-25.5 parent: 2 - - uid: 4234 + - uid: 7286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-17.5 + pos: 72.5,-26.5 parent: 2 - - uid: 4235 + - uid: 7290 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,18.5 + pos: 72.5,-29.5 parent: 2 - - uid: 4236 + - uid: 7291 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,18.5 + pos: 70.5,-30.5 parent: 2 - - uid: 4237 + - uid: 7292 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,18.5 + pos: 67.5,-28.5 parent: 2 - - uid: 4239 + - uid: 7295 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,1.5 + pos: 67.5,-29.5 parent: 2 - - uid: 4240 + - uid: 7298 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-32.5 + pos: 67.5,-30.5 parent: 2 - - uid: 4241 + - uid: 7301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,11.5 + pos: 75.5,-19.5 parent: 2 - - uid: 4262 + - uid: 7302 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,8.5 + pos: 77.5,-19.5 parent: 2 - - uid: 4298 + - uid: 7303 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,4.5 + pos: 78.5,-10.5 parent: 2 - - uid: 4304 + - uid: 7306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,20.5 + rot: 1.5707963267948966 rad + pos: 76.5,-10.5 parent: 2 - - uid: 4378 + - uid: 7308 components: - type: Transform - pos: -16.5,-11.5 + rot: 1.5707963267948966 rad + pos: 79.5,-11.5 parent: 2 - - uid: 4412 + - uid: 7318 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-7.5 + pos: 81.5,-11.5 parent: 2 - - uid: 4434 + - uid: 7320 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-10.5 + pos: 79.5,-19.5 parent: 2 - - uid: 4439 + - uid: 7325 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-10.5 + pos: 81.5,-19.5 parent: 2 - - uid: 4455 + - uid: 7327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-12.5 + pos: 83.5,-11.5 parent: 2 - - uid: 4456 + - uid: 7328 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-22.5 + pos: 84.5,-19.5 parent: 2 - - uid: 4458 + - uid: 7330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-24.5 + pos: 27.5,27.5 parent: 2 - - uid: 4469 + - uid: 7341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,20.5 + rot: 1.5707963267948966 rad + pos: 75.5,-4.5 parent: 2 - - uid: 4470 + - uid: 7349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,20.5 + rot: 1.5707963267948966 rad + pos: 74.5,-4.5 parent: 2 - - uid: 4487 + - uid: 7378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-26.5 + pos: 42.5,14.5 parent: 2 - - uid: 4496 + - uid: 7390 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-28.5 + pos: 77.5,-4.5 parent: 2 - - uid: 4628 + - uid: 7416 components: - type: Transform - pos: -21.5,16.5 + rot: -1.5707963267948966 rad + pos: 9.5,-50.5 parent: 2 - - uid: 4734 + - uid: 7445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-30.5 + pos: 86.5,-10.5 parent: 2 - - uid: 4740 + - uid: 7446 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-30.5 + pos: 74.5,-33.5 parent: 2 - - uid: 4810 + - uid: 7461 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,-23.5 + pos: 75.5,-33.5 parent: 2 - - uid: 4834 + - uid: 7462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,-23.5 + pos: 75.5,-32.5 parent: 2 - - uid: 4835 + - uid: 7464 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-23.5 + pos: 66.5,-31.5 parent: 2 - - uid: 4860 + - uid: 7479 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-27.5 + pos: 68.5,-31.5 parent: 2 - - uid: 4900 + - uid: 7503 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-29.5 + pos: 72.5,-31.5 parent: 2 - - uid: 4903 + - uid: 7513 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,-29.5 + pos: 73.5,-30.5 parent: 2 - - uid: 4923 + - uid: 7514 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,25.5 + pos: 73.5,-28.5 parent: 2 - - uid: 4924 + - uid: 7519 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,25.5 + pos: 73.5,-27.5 parent: 2 - - uid: 5023 + - uid: 7521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,14.5 + rot: 1.5707963267948966 rad + pos: 73.5,-26.5 parent: 2 - - uid: 5025 + - uid: 7525 components: - type: Transform - pos: -41.5,16.5 + rot: 1.5707963267948966 rad + pos: 73.5,-24.5 parent: 2 - - uid: 5123 + - uid: 7527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,14.5 + rot: 1.5707963267948966 rad + pos: 66.5,-33.5 parent: 2 - - uid: 5131 + - uid: 7529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,37.5 + rot: 1.5707963267948966 rad + pos: 64.5,-33.5 parent: 2 - - uid: 5138 + - uid: 7530 components: - type: Transform - pos: 0.5,36.5 + rot: 1.5707963267948966 rad + pos: 67.5,-33.5 parent: 2 - - uid: 5443 + - uid: 7531 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,27.5 + pos: 64.5,-30.5 parent: 2 - - uid: 5458 + - uid: 7533 components: - type: Transform - pos: -20.5,-41.5 + rot: 1.5707963267948966 rad + pos: 64.5,-29.5 parent: 2 - - uid: 5783 + - uid: 7540 components: - type: Transform - pos: -22.5,-42.5 + rot: 1.5707963267948966 rad + pos: 64.5,-32.5 parent: 2 - - uid: 5786 + - uid: 7542 components: - type: Transform - pos: -3.5,38.5 + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 parent: 2 - - uid: 5791 + - uid: 7543 components: - type: Transform - pos: -55.5,-32.5 + rot: 1.5707963267948966 rad + pos: 30.5,-39.5 parent: 2 - - uid: 5797 + - uid: 7545 components: - type: Transform - pos: -58.5,-32.5 + rot: 1.5707963267948966 rad + pos: 27.5,-37.5 parent: 2 - - uid: 5801 + - uid: 7546 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-42.5 + pos: 27.5,-35.5 parent: 2 - - uid: 5805 + - uid: 7547 components: - type: Transform - pos: -59.5,-32.5 + rot: 1.5707963267948966 rad + pos: 27.5,-39.5 parent: 2 - - uid: 5806 + - uid: 7553 components: - type: Transform - pos: -64.5,-26.5 + pos: 54.5,-24.5 parent: 2 - - uid: 5807 + - uid: 7567 components: - type: Transform - pos: -29.5,-42.5 + pos: 64.5,21.5 parent: 2 - - uid: 5912 + - uid: 7580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-39.5 parent: 2 - - uid: 5913 + - uid: 7587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,8.5 + rot: 1.5707963267948966 rad + pos: 24.5,-39.5 parent: 2 - - uid: 6061 + - uid: 7590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,38.5 + rot: 1.5707963267948966 rad + pos: 22.5,-39.5 parent: 2 - - uid: 6062 + - uid: 7593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,21.5 + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 parent: 2 - - uid: 6083 + - uid: 7595 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-33.5 + pos: 26.5,-40.5 parent: 2 - - uid: 6084 + - uid: 7596 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-34.5 + pos: 31.5,-41.5 parent: 2 - - uid: 6094 + - uid: 7598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,38.5 + rot: 1.5707963267948966 rad + pos: 23.5,-40.5 parent: 2 - - uid: 6139 + - uid: 7599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,38.5 + rot: 1.5707963267948966 rad + pos: 23.5,-42.5 parent: 2 - - uid: 6151 + - uid: 7601 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-35.5 + pos: 30.5,-41.5 parent: 2 - - uid: 6463 + - uid: 7631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,15.5 + rot: 1.5707963267948966 rad + pos: 31.5,-42.5 parent: 2 - - uid: 6483 + - uid: 7632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 + rot: -1.5707963267948966 rad + pos: 5.5,-50.5 parent: 2 - - uid: 6492 + - uid: 7636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,9.5 + rot: 1.5707963267948966 rad + pos: 22.5,-41.5 parent: 2 - - uid: 6497 + - uid: 7637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,11.5 + rot: 1.5707963267948966 rad + pos: 31.5,-44.5 parent: 2 - - uid: 6501 + - uid: 7639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,16.5 + rot: 1.5707963267948966 rad + pos: 30.5,-45.5 parent: 2 - - uid: 6504 + - uid: 7641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,24.5 + rot: 1.5707963267948966 rad + pos: 31.5,-46.5 parent: 2 - - uid: 6505 + - uid: 7645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,6.5 + rot: 1.5707963267948966 rad + pos: 31.5,-47.5 parent: 2 - - uid: 6519 + - uid: 7648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-35.5 + pos: 30.5,-47.5 parent: 2 - - uid: 6530 + - uid: 7649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.5,-44.5 parent: 2 - - uid: 6552 + - uid: 7651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-45.5 parent: 2 - - uid: 6570 + - uid: 7653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,0.5 + rot: 1.5707963267948966 rad + pos: 23.5,-45.5 parent: 2 - - uid: 6574 + - uid: 7654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,0.5 + rot: 1.5707963267948966 rad + pos: 23.5,-46.5 parent: 2 - - uid: 6610 + - uid: 7655 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-37.5 + pos: 22.5,-47.5 parent: 2 - - uid: 6621 + - uid: 7658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-5.5 + rot: 1.5707963267948966 rad + pos: 30.5,-49.5 parent: 2 - - uid: 6625 + - uid: 7660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 + rot: 1.5707963267948966 rad + pos: 23.5,-48.5 parent: 2 - - uid: 6636 + - uid: 7661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-2.5 + rot: 1.5707963267948966 rad + pos: 24.5,-49.5 parent: 2 - - uid: 6918 + - uid: 7662 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-13.5 + rot: 1.5707963267948966 rad + pos: 29.5,-48.5 parent: 2 - - uid: 6937 + - uid: 7664 components: - type: Transform - pos: 47.5,19.5 + rot: 1.5707963267948966 rad + pos: 23.5,-49.5 parent: 2 - - uid: 6939 + - uid: 7726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,29.5 + rot: 1.5707963267948966 rad + pos: 16.5,-41.5 parent: 2 - - uid: 6951 + - uid: 7730 components: - type: Transform - pos: 12.5,33.5 + rot: 1.5707963267948966 rad + pos: 21.5,-41.5 parent: 2 - - uid: 6957 + - uid: 7733 components: - type: Transform - pos: 3.5,44.5 + rot: 1.5707963267948966 rad + pos: 20.5,-49.5 parent: 2 - - uid: 6969 + - uid: 7735 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-35.5 + pos: 15.5,-41.5 parent: 2 - - uid: 6985 + - uid: 7736 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-17.5 + pos: 20.5,-45.5 parent: 2 - - uid: 6988 + - uid: 7741 components: - type: Transform - pos: -4.5,41.5 + rot: 1.5707963267948966 rad + pos: 21.5,-45.5 parent: 2 - - uid: 6992 + - uid: 7744 components: - type: Transform - pos: 2.5,49.5 + rot: 1.5707963267948966 rad + pos: 4.5,-36.5 parent: 2 - - uid: 7002 + - uid: 7746 components: - type: Transform - pos: 39.5,0.5 + rot: -1.5707963267948966 rad + pos: 7.5,-50.5 parent: 2 - - uid: 7003 + - uid: 7756 components: - type: Transform - pos: 40.5,-5.5 + rot: 1.5707963267948966 rad + pos: 4.5,-34.5 parent: 2 - - uid: 7004 + - uid: 7757 components: - type: Transform - pos: 35.5,-4.5 + rot: 1.5707963267948966 rad + pos: -6.5,-36.5 parent: 2 - - uid: 7079 + - uid: 7758 components: - type: Transform - pos: 12.5,37.5 + rot: 1.5707963267948966 rad + pos: -6.5,-37.5 parent: 2 - - uid: 7258 + - uid: 7762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-2.5 + rot: 1.5707963267948966 rad + pos: -6.5,-34.5 parent: 2 - - uid: 7272 + - uid: 7763 components: - type: Transform - pos: 56.5,24.5 + rot: 1.5707963267948966 rad + pos: 20.5,-47.5 parent: 2 - - uid: 7288 + - uid: 7764 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-16.5 + pos: 17.5,-49.5 parent: 2 - - uid: 7457 + - uid: 7767 components: - type: Transform - pos: 59.5,24.5 + rot: 1.5707963267948966 rad + pos: 15.5,-44.5 parent: 2 - - uid: 7458 + - uid: 7770 components: - type: Transform - pos: 60.5,24.5 + rot: 1.5707963267948966 rad + pos: 17.5,-50.5 parent: 2 - - uid: 7467 + - uid: 7772 components: - type: Transform - pos: 66.5,-0.5 + rot: 1.5707963267948966 rad + pos: 20.5,-50.5 parent: 2 - - uid: 7468 + - uid: 7782 components: - type: Transform - pos: 46.5,19.5 + rot: 1.5707963267948966 rad + pos: 20.5,-42.5 parent: 2 - - uid: 7470 + - uid: 7783 components: - type: Transform - pos: 50.5,19.5 + rot: 1.5707963267948966 rad + pos: 17.5,-42.5 parent: 2 - - uid: 7472 + - uid: 7794 components: - type: Transform - pos: 66.5,0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-50.5 parent: 2 - - uid: 7480 + - uid: 7804 components: - type: Transform - pos: -54.5,-34.5 + rot: 1.5707963267948966 rad + pos: 16.5,-50.5 parent: 2 - - uid: 7482 + - uid: 7806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-15.5 + rot: 1.5707963267948966 rad + pos: 14.5,-50.5 parent: 2 - - uid: 7483 + - uid: 7816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-12.5 + pos: 18.5,-55.5 parent: 2 - - uid: 7485 + - uid: 7817 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-18.5 + pos: 18.5,-61.5 parent: 2 - - uid: 7486 + - uid: 7818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-21.5 + pos: 22.5,-66.5 parent: 2 - - uid: 7487 + - uid: 7819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-19.5 + pos: 23.5,-61.5 parent: 2 - - uid: 7490 + - uid: 7820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-22.5 + rot: 1.5707963267948966 rad + pos: 22.5,-50.5 parent: 2 - - uid: 7491 + - uid: 7822 components: - type: Transform - pos: -33.5,-5.5 + rot: 1.5707963267948966 rad + pos: 23.5,-50.5 parent: 2 - - uid: 7492 + - uid: 7824 components: - type: Transform - pos: -40.5,8.5 + pos: 25.5,-67.5 parent: 2 - - uid: 7498 + - uid: 7826 components: - type: Transform - pos: 54.5,22.5 + pos: 14.5,-62.5 parent: 2 - - uid: 7500 + - uid: 7827 components: - type: Transform - pos: 54.5,20.5 + pos: 17.5,-51.5 parent: 2 - - uid: 7505 + - uid: 7828 components: - type: Transform - pos: 66.5,3.5 + pos: 17.5,-54.5 parent: 2 - - uid: 7511 + - uid: 7831 components: - type: Transform - pos: -53.5,-36.5 + pos: 13.5,-66.5 parent: 2 - - uid: 7535 + - uid: 7833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-8.5 + pos: 21.5,-55.5 parent: 2 - - uid: 7536 + - uid: 7834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-8.5 + pos: 20.5,-55.5 parent: 2 - - uid: 7538 + - uid: 7835 components: - type: Transform - pos: 53.5,19.5 + pos: 18.5,-66.5 parent: 2 - - uid: 7774 + - uid: 7845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-33.5 + pos: 12.5,-78.5 parent: 2 - - uid: 7909 + - uid: 7846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-35.5 + pos: 11.5,-65.5 parent: 2 - - uid: 7941 + - uid: 7848 components: - type: Transform - pos: 35.5,-5.5 + pos: 15.5,-61.5 parent: 2 - - uid: 7993 + - uid: 7849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-39.5 + pos: 17.5,-61.5 parent: 2 - - uid: 8172 + - uid: 7855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,6.5 + pos: 16.5,-52.5 parent: 2 - - uid: 8175 + - uid: 7856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,5.5 + pos: 16.5,-53.5 parent: 2 - - uid: 8177 + - uid: 7858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,5.5 + pos: 25.5,-61.5 parent: 2 - - uid: 8210 + - uid: 7859 components: - type: Transform - pos: 66.5,6.5 + pos: 23.5,-62.5 parent: 2 - - uid: 8224 + - uid: 7861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-21.5 + pos: 16.5,-63.5 parent: 2 - - uid: 8228 + - uid: 7862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,27.5 + pos: 24.5,-54.5 parent: 2 - - uid: 8232 + - uid: 7866 components: - type: Transform - pos: 67.5,-4.5 + pos: 22.5,-54.5 parent: 2 - - uid: 8236 + - uid: 7869 components: - type: Transform - pos: 36.5,-5.5 + rot: 1.5707963267948966 rad + pos: 7.5,-38.5 parent: 2 - - uid: 8244 + - uid: 7871 components: - type: Transform - pos: 38.5,-5.5 + pos: 23.5,-76.5 parent: 2 - - uid: 9140 + - uid: 7872 components: - type: Transform - pos: 69.5,-4.5 + rot: 1.5707963267948966 rad + pos: 7.5,-40.5 parent: 2 - - uid: 9149 + - uid: 7873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-21.5 + rot: 1.5707963267948966 rad + pos: 9.5,-41.5 parent: 2 - - uid: 9150 + - uid: 7874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,29.5 + pos: 22.5,-61.5 parent: 2 - - uid: 9151 + - uid: 7875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,28.5 + rot: 1.5707963267948966 rad + pos: 11.5,-41.5 parent: 2 - - uid: 9162 + - uid: 7878 components: - type: Transform - pos: -40.5,5.5 + pos: 16.5,-65.5 parent: 2 - - uid: 9170 + - uid: 7881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-21.5 + rot: 1.5707963267948966 rad + pos: 13.5,-41.5 parent: 2 - - uid: 9442 + - uid: 7883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,4.5 + rot: 1.5707963267948966 rad + pos: 12.5,-50.5 parent: 2 - - uid: 10585 + - uid: 7888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-24.5 + rot: 1.5707963267948966 rad + pos: 10.5,-45.5 parent: 2 - - uid: 11653 + - uid: 7893 components: - type: Transform - pos: 70.5,-4.5 + rot: 1.5707963267948966 rad + pos: 10.5,-46.5 parent: 2 - - uid: 11661 + - uid: 7894 components: - type: Transform - pos: 66.5,-3.5 + rot: 1.5707963267948966 rad + pos: 10.5,-49.5 parent: 2 - - uid: 11662 + - uid: 7896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-21.5 + rot: 1.5707963267948966 rad + pos: 10.5,-50.5 parent: 2 - - uid: 12110 + - uid: 7898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,4.5 + rot: 1.5707963267948966 rad + pos: 10.5,-43.5 parent: 2 - - uid: 12572 + - uid: 7907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,23.5 + rot: 1.5707963267948966 rad + pos: 13.5,-43.5 parent: 2 - - uid: 13175 + - uid: 7914 components: - type: Transform - pos: -32.5,-1.5 + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 parent: 2 - - uid: 13176 + - uid: 7962 components: - type: Transform - pos: -29.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 parent: 2 - - uid: 13238 + - uid: 7965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-5.5 + rot: 1.5707963267948966 rad + pos: -2.5,-36.5 parent: 2 - - uid: 14001 + - uid: 7966 components: - type: Transform - pos: -11.5,-35.5 + rot: 1.5707963267948966 rad + pos: 13.5,-39.5 parent: 2 - - uid: 14002 + - uid: 7968 components: - type: Transform - pos: -10.5,-35.5 + rot: 1.5707963267948966 rad + pos: 2.5,-41.5 parent: 2 - - uid: 14717 + - uid: 7972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-29.5 + rot: 1.5707963267948966 rad + pos: -1.5,-33.5 parent: 2 - - uid: 14871 + - uid: 7973 components: - type: Transform - pos: 6.5,18.5 + rot: 1.5707963267948966 rad + pos: 2.5,-33.5 parent: 2 - - uid: 14910 + - uid: 7995 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,12.5 + rot: 1.5707963267948966 rad + pos: -1.5,-32.5 parent: 2 - - uid: 15202 + - uid: 7998 components: - type: Transform - pos: 69.5,-0.5 + rot: 1.5707963267948966 rad + pos: -0.5,-38.5 parent: 2 - - uid: 15204 + - uid: 8001 components: - type: Transform - pos: 68.5,-0.5 + rot: 1.5707963267948966 rad + pos: 2.5,-38.5 parent: 2 - - uid: 15211 + - uid: 8023 components: - type: Transform - pos: 69.5,3.5 + rot: 1.5707963267948966 rad + pos: -3.5,-37.5 parent: 2 - - uid: 15212 + - uid: 8024 components: - type: Transform - pos: 68.5,3.5 + pos: 26.5,-66.5 parent: 2 - - uid: 16084 + - uid: 8025 components: - type: Transform - pos: 59.5,25.5 + rot: 1.5707963267948966 rad + pos: 4.5,-41.5 parent: 2 - - uid: 16086 + - uid: 8026 components: - type: Transform - pos: 59.5,27.5 + pos: 25.5,-78.5 parent: 2 - - uid: 16151 + - uid: 8027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-24.5 + rot: 1.5707963267948966 rad + pos: 4.5,-42.5 parent: 2 - - uid: 16163 + - uid: 8030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,32.5 + rot: 1.5707963267948966 rad + pos: 5.5,-43.5 parent: 2 - - uid: 16168 + - uid: 8031 components: - type: Transform - pos: -36.5,-42.5 + rot: 1.5707963267948966 rad + pos: 6.5,-43.5 parent: 2 - - uid: 16185 + - uid: 8035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-8.5 + rot: 1.5707963267948966 rad + pos: 9.5,-43.5 parent: 2 - - uid: 16189 + - uid: 8036 components: - type: Transform - pos: 75.5,-26.5 + rot: 1.5707963267948966 rad + pos: 13.5,-36.5 parent: 2 - - uid: 16313 + - uid: 8039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-45.5 + pos: 24.5,-71.5 parent: 2 - - uid: 16315 + - uid: 8047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-44.5 + pos: 24.5,-51.5 parent: 2 - - uid: 16349 + - uid: 8048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-30.5 + pos: 14.5,-69.5 parent: 2 - - uid: 16352 + - uid: 8053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-30.5 + pos: 15.5,-70.5 parent: 2 - - uid: 16377 + - uid: 8059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-24.5 + pos: 24.5,-52.5 parent: 2 - - uid: 16378 + - uid: 8065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-24.5 + pos: 18.5,-76.5 parent: 2 - - uid: 16382 + - uid: 8079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-27.5 + rot: 1.5707963267948966 rad + pos: 11.5,-36.5 parent: 2 - - uid: 16383 + - uid: 8120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-28.5 + rot: 1.5707963267948966 rad + pos: 7.5,-36.5 parent: 2 - - uid: 16387 + - uid: 8121 components: - type: Transform - pos: 49.5,21.5 + rot: 1.5707963267948966 rad + pos: 9.5,-36.5 parent: 2 - - uid: 16615 + - uid: 8123 components: - type: Transform - pos: -40.5,4.5 + rot: 1.5707963267948966 rad + pos: 6.5,-45.5 parent: 2 - - uid: 16750 + - uid: 8124 components: - type: Transform - pos: -29.5,8.5 + rot: 1.5707963267948966 rad + pos: 5.5,-46.5 parent: 2 - - uid: 16751 + - uid: 8126 components: - type: Transform - pos: -34.5,8.5 + rot: -1.5707963267948966 rad + pos: 8.5,-49.5 parent: 2 - - uid: 16752 + - uid: 8127 components: - type: Transform - pos: -35.5,8.5 + rot: 1.5707963267948966 rad + pos: 6.5,-47.5 parent: 2 - - uid: 17527 + - uid: 8128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,4.5 + rot: 1.5707963267948966 rad + pos: 5.5,-48.5 parent: 2 - - uid: 20291 + - uid: 8142 components: - type: Transform - pos: -24.5,-42.5 + rot: 1.5707963267948966 rad + pos: 15.5,-39.5 parent: 2 - - uid: 20298 + - uid: 8143 components: - type: Transform - pos: 84.5,-21.5 + rot: 1.5707963267948966 rad + pos: 54.5,9.5 parent: 2 - - uid: 20793 + - uid: 8145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,18.5 + rot: 1.5707963267948966 rad + pos: 53.5,9.5 parent: 2 - - uid: 20875 + - uid: 8147 components: - type: Transform - pos: 59.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-42.5 parent: 2 - - uid: 20888 + - uid: 8149 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,7.5 + pos: -2.5,-41.5 parent: 2 - - uid: 21036 + - uid: 8151 components: - type: Transform - pos: 83.5,-32.5 + rot: 1.5707963267948966 rad + pos: -7.5,-42.5 parent: 2 - - uid: 21388 + - uid: 8152 components: - type: Transform - pos: -19.5,-40.5 + rot: 1.5707963267948966 rad + pos: -8.5,-42.5 parent: 2 -- proto: WallWood - entities: - - uid: 3459 + - uid: 8157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-1.5 + rot: 1.5707963267948966 rad + pos: -36.5,-51.5 parent: 2 - - uid: 3460 + - uid: 8182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-1.5 + rot: 1.5707963267948966 rad + pos: -35.5,-51.5 parent: 2 - - uid: 3461 + - uid: 8183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 + rot: 1.5707963267948966 rad + pos: -35.5,-52.5 parent: 2 - - uid: 3462 + - uid: 8200 components: - type: Transform - pos: -26.5,-35.5 + rot: 1.5707963267948966 rad + pos: 63.5,-33.5 parent: 2 - - uid: 3493 + - uid: 8201 components: - type: Transform - pos: -19.5,-22.5 + rot: 1.5707963267948966 rad + pos: 65.5,11.5 parent: 2 - - uid: 3497 + - uid: 8207 components: - type: Transform - pos: -20.5,-11.5 + rot: 1.5707963267948966 rad + pos: 66.5,10.5 parent: 2 - - uid: 3498 + - uid: 8208 components: - type: Transform - pos: -19.5,-23.5 + rot: 1.5707963267948966 rad + pos: 66.5,9.5 parent: 2 - - uid: 4175 + - uid: 8520 components: - type: Transform - pos: -19.5,-21.5 + rot: 1.5707963267948966 rad + pos: -30.5,25.5 parent: 2 - - uid: 4261 + - uid: 8521 components: - type: Transform - pos: -21.5,-21.5 + rot: 1.5707963267948966 rad + pos: -30.5,26.5 parent: 2 - - uid: 4263 + - uid: 8522 components: - type: Transform - pos: -22.5,-11.5 + rot: 1.5707963267948966 rad + pos: -30.5,28.5 parent: 2 - - uid: 4264 + - uid: 8884 components: - type: Transform - pos: -17.5,-21.5 + rot: 1.5707963267948966 rad + pos: 68.5,18.5 parent: 2 - - uid: 4380 + - uid: 8974 components: - type: Transform - pos: -22.5,-16.5 + pos: 44.5,-30.5 parent: 2 - - uid: 4381 + - uid: 9096 components: - type: Transform - pos: -22.5,-22.5 + pos: 23.5,-73.5 parent: 2 - - uid: 4382 + - uid: 9097 components: - type: Transform - pos: -22.5,-20.5 + pos: 24.5,-75.5 parent: 2 - - uid: 4462 + - uid: 9105 components: - type: Transform - pos: -22.5,-21.5 + rot: 1.5707963267948966 rad + pos: -29.5,28.5 parent: 2 - - uid: 4576 + - uid: 9112 components: - type: Transform - pos: -17.5,-16.5 + rot: 1.5707963267948966 rad + pos: -27.5,29.5 parent: 2 - - uid: 4995 + - uid: 9114 components: - type: Transform - pos: -19.5,-16.5 + rot: 1.5707963267948966 rad + pos: -27.5,31.5 parent: 2 - - uid: 5029 + - uid: 9115 components: - type: Transform - pos: -17.5,-11.5 + rot: 1.5707963267948966 rad + pos: -25.5,31.5 parent: 2 - - uid: 5685 + - uid: 9124 components: - type: Transform - pos: -21.5,-11.5 + rot: 1.5707963267948966 rad + pos: -27.5,27.5 parent: 2 - - uid: 6088 + - uid: 9125 components: - type: Transform - pos: -19.5,-11.5 + rot: 1.5707963267948966 rad + pos: -29.5,30.5 parent: 2 - - uid: 6125 + - uid: 9127 components: - type: Transform - pos: -21.5,-16.5 + rot: 1.5707963267948966 rad + pos: -32.5,30.5 parent: 2 - - uid: 7420 + - uid: 9128 components: - type: Transform - pos: -22.5,-23.5 + rot: 1.5707963267948966 rad + pos: 86.5,-8.5 parent: 2 - - uid: 7550 + - uid: 9131 components: - type: Transform - pos: -22.5,-19.5 + rot: 1.5707963267948966 rad + pos: 83.5,-8.5 parent: 2 - - uid: 8348 + - uid: 9133 components: - type: Transform - pos: -20.5,-16.5 + rot: 1.5707963267948966 rad + pos: 85.5,-8.5 parent: 2 - - uid: 17092 + - uid: 9135 components: - type: Transform - pos: 68.5,-54.5 + rot: 1.5707963267948966 rad + pos: -26.5,33.5 parent: 2 - - uid: 17192 + - uid: 9137 components: - type: Transform - pos: 68.5,-55.5 + rot: 1.5707963267948966 rad + pos: -23.5,33.5 parent: 2 - - uid: 17193 + - uid: 9139 components: - type: Transform - pos: 68.5,-51.5 + rot: 1.5707963267948966 rad + pos: -22.5,33.5 parent: 2 - - uid: 17194 + - uid: 9143 components: - type: Transform - pos: 68.5,-50.5 + rot: 1.5707963267948966 rad + pos: -22.5,36.5 parent: 2 - - uid: 17214 + - uid: 9144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-51.5 + rot: 1.5707963267948966 rad + pos: -23.5,36.5 parent: 2 - - uid: 17226 + - uid: 9146 components: - type: Transform - pos: 64.5,-55.5 + rot: 1.5707963267948966 rad + pos: -23.5,35.5 parent: 2 - - uid: 17228 + - uid: 9148 components: - type: Transform - pos: 64.5,-50.5 + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 parent: 2 - - uid: 17233 + - uid: 9153 components: - type: Transform - pos: 67.5,-50.5 + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 parent: 2 - - uid: 17237 + - uid: 9156 components: - type: Transform - pos: 64.5,-54.5 + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 parent: 2 - - uid: 17239 + - uid: 9157 components: - type: Transform - pos: 68.5,-53.5 + rot: 1.5707963267948966 rad + pos: -62.5,-20.5 parent: 2 - - uid: 17240 + - uid: 9192 components: - type: Transform - pos: 65.5,-55.5 + rot: 1.5707963267948966 rad + pos: -62.5,-18.5 parent: 2 - - uid: 17241 + - uid: 9193 components: - type: Transform - pos: 66.5,-55.5 + rot: 1.5707963267948966 rad + pos: -61.5,-18.5 parent: 2 - - uid: 17244 + - uid: 9194 components: - type: Transform - pos: 67.5,-55.5 + rot: 1.5707963267948966 rad + pos: -59.5,-19.5 parent: 2 - - uid: 17245 + - uid: 9199 components: - type: Transform - pos: 68.5,-52.5 + rot: 1.5707963267948966 rad + pos: -39.5,-38.5 parent: 2 -- proto: WardrobeBlackFilled - entities: - - uid: 16465 + - uid: 9201 components: - type: Transform - pos: -59.5,-33.5 + rot: 1.5707963267948966 rad + pos: -38.5,-38.5 parent: 2 -- proto: WardrobeBotanistFilled - entities: - - uid: 14631 + - uid: 9202 components: - type: Transform - pos: -38.5,12.5 + rot: 1.5707963267948966 rad + pos: -37.5,-38.5 parent: 2 -- proto: WardrobeCargoFilled - entities: - - uid: 5748 + - uid: 9205 components: - type: Transform - pos: 25.5,17.5 + rot: 1.5707963267948966 rad + pos: 79.5,-32.5 parent: 2 -- proto: WardrobeGreyFilled - entities: - - uid: 16245 + - uid: 9207 components: - type: Transform - pos: 76.5,-29.5 + rot: 1.5707963267948966 rad + pos: 55.5,-38.5 parent: 2 - - uid: 16246 + - uid: 9208 components: - type: Transform - pos: 77.5,-29.5 + rot: 1.5707963267948966 rad + pos: 18.5,22.5 parent: 2 - - uid: 16247 + - uid: 9211 components: - type: Transform - pos: 79.5,-29.5 + rot: 1.5707963267948966 rad + pos: -60.5,-32.5 parent: 2 - - uid: 16248 + - uid: 9216 components: - type: Transform - pos: 80.5,-29.5 + rot: 1.5707963267948966 rad + pos: -23.5,39.5 parent: 2 -- proto: WardrobePrisonFilled - entities: - - uid: 1709 + - uid: 9217 components: - type: Transform - pos: -11.5,23.5 + rot: 1.5707963267948966 rad + pos: -33.5,30.5 parent: 2 - - uid: 4789 + - uid: 9218 components: - type: Transform - pos: -15.5,23.5 + rot: 1.5707963267948966 rad + pos: -38.5,22.5 parent: 2 - - uid: 4795 + - uid: 10288 components: - type: Transform - pos: -7.5,23.5 + rot: 1.5707963267948966 rad + pos: -38.5,20.5 parent: 2 - - uid: 5243 + - uid: 10499 components: - type: Transform - pos: -6.5,43.5 + rot: 1.5707963267948966 rad + pos: -64.5,-30.5 parent: 2 - - uid: 5244 + - uid: 10633 components: - type: Transform - pos: 3.5,43.5 + pos: 13.5,-79.5 parent: 2 -- proto: WardrobeWhiteFilled - entities: - - uid: 3464 + - uid: 10636 components: - type: Transform - pos: -27.5,-10.5 + pos: 13.5,-61.5 parent: 2 -- proto: WarningCO2 - entities: - - uid: 3465 + - uid: 10637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-1.5 + pos: 16.5,-77.5 parent: 2 -- proto: WarningN2 - entities: - - uid: 3466 + - uid: 10646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-1.5 + pos: 15.5,-71.5 parent: 2 -- proto: WarningO2 - entities: - - uid: 3467 + - uid: 10653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 + pos: 14.5,-75.5 parent: 2 -- proto: WarningPlasma - entities: - - uid: 3468 + - uid: 11666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-1.5 + rot: 1.5707963267948966 rad + pos: -30.5,39.5 parent: 2 -- proto: WarningWaste - entities: - - uid: 3469 + - uid: 12466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-1.5 + rot: 1.5707963267948966 rad + pos: -30.5,35.5 parent: 2 - - uid: 3470 + - uid: 12670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-1.5 + pos: 44.5,-28.5 parent: 2 -- proto: WarpPoint - entities: - - uid: 20936 + - uid: 12811 components: - type: Transform - pos: 8.5,-3.5 - parent: 21128 - - type: WarpPoint - location: Unknown shuttle -- proto: WarpPointBombing - entities: - - uid: 13731 + pos: 23.5,-69.5 + parent: 2 + - uid: 12812 components: - type: Transform - pos: -18.5,1.5 + pos: 27.5,-64.5 parent: 2 - - type: WarpPoint - location: Bar - - uid: 13732 + - uid: 12813 components: - type: Transform - pos: -2.5,24.5 + pos: 20.5,-60.5 parent: 2 - - type: WarpPoint - location: Security - - uid: 13733 + - uid: 12834 components: - type: Transform - pos: -1.5,47.5 + pos: 23.5,-77.5 parent: 2 - - type: WarpPoint - location: Perma - - uid: 13734 + - uid: 12837 components: - type: Transform - pos: 27.5,20.5 + pos: 20.5,-77.5 parent: 2 - - type: WarpPoint - location: Cargo - - uid: 13735 + - uid: 12838 components: - type: Transform - pos: 44.5,8.5 + pos: 16.5,-76.5 parent: 2 - - type: WarpPoint - location: Medical - - uid: 13736 + - uid: 14192 components: - type: Transform - pos: -1.5,-22.5 + rot: 1.5707963267948966 rad + pos: -20.5,39.5 parent: 2 - - type: WarpPoint - location: Engineering - - uid: 13737 + - uid: 14660 components: - type: Transform - pos: 40.5,-35.5 + pos: -62.5,-33.5 parent: 2 - - type: WarpPoint - location: Bridge - - uid: 13738 + - uid: 14674 components: - type: Transform - pos: -32.5,-13.5 + rot: 1.5707963267948966 rad + pos: -23.5,38.5 parent: 2 - - type: WarpPoint - location: Dorms - - uid: 13739 + - uid: 14814 components: - type: Transform - pos: -48.5,1.5 + rot: 1.5707963267948966 rad + pos: 18.5,26.5 parent: 2 - - type: WarpPoint - location: Evacuation -- proto: WaterCooler - entities: - - uid: 3471 + - uid: 14954 components: - type: Transform - pos: 4.5,-17.5 + rot: 1.5707963267948966 rad + pos: 18.5,23.5 parent: 2 - - uid: 3472 + - uid: 15011 components: - type: Transform - pos: 21.5,-18.5 + rot: 1.5707963267948966 rad + pos: -31.5,39.5 parent: 2 - - uid: 5603 + - uid: 15013 components: - type: Transform - pos: 31.5,10.5 + rot: 1.5707963267948966 rad + pos: -33.5,39.5 parent: 2 - - uid: 8266 + - uid: 15045 components: - type: Transform - pos: -3.5,21.5 + rot: 1.5707963267948966 rad + pos: 18.5,25.5 parent: 2 -- proto: WaterTankFull - entities: - - uid: 60 + - uid: 15047 components: - type: Transform - pos: 58.5,-25.5 + rot: 1.5707963267948966 rad + pos: -34.5,35.5 parent: 2 - - uid: 5162 + - uid: 15052 components: - type: Transform - anchored: True - pos: -3.5,50.5 + rot: 1.5707963267948966 rad + pos: -33.5,33.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 7619 + - uid: 15056 components: - type: Transform - pos: 19.5,-35.5 + rot: 1.5707963267948966 rad + pos: -31.5,33.5 parent: 2 - - uid: 14675 + - uid: 15060 components: - type: Transform - pos: -20.5,31.5 + rot: 1.5707963267948966 rad + pos: -24.5,36.5 parent: 2 - - uid: 14678 + - uid: 15062 components: - type: Transform - pos: 17.5,17.5 + rot: 1.5707963267948966 rad + pos: 71.5,0.5 parent: 2 - - uid: 14679 + - uid: 15066 components: - type: Transform - pos: -13.5,-10.5 + rot: 1.5707963267948966 rad + pos: 71.5,6.5 parent: 2 - - uid: 14681 + - uid: 15068 components: - type: Transform - pos: -14.5,-33.5 + rot: 1.5707963267948966 rad + pos: 71.5,7.5 parent: 2 - - uid: 14685 + - uid: 15072 components: - type: Transform - pos: 5.5,-41.5 + rot: 1.5707963267948966 rad + pos: 69.5,7.5 parent: 2 - - uid: 14686 + - uid: 15073 components: - type: Transform - pos: 73.5,-20.5 + rot: 1.5707963267948966 rad + pos: 67.5,7.5 parent: 2 - - uid: 14689 + - uid: 15076 components: - type: Transform - pos: 65.5,-3.5 + rot: 1.5707963267948966 rad + pos: 72.5,-3.5 parent: 2 - - uid: 14690 + - uid: 15078 components: - type: Transform - pos: 49.5,17.5 + rot: 1.5707963267948966 rad + pos: 73.5,-3.5 parent: 2 - - uid: 14693 + - uid: 15158 components: - type: Transform - pos: -11.5,17.5 + rot: 1.5707963267948966 rad + pos: 65.5,22.5 parent: 2 - - uid: 14694 + - uid: 15205 components: - type: Transform - pos: 3.5,38.5 + rot: 1.5707963267948966 rad + pos: 71.5,2.5 parent: 2 - - uid: 14718 + - uid: 15207 components: - type: Transform - pos: 45.5,-9.5 + rot: 1.5707963267948966 rad + pos: 71.5,-1.5 parent: 2 - - uid: 14735 + - uid: 15216 components: - type: Transform - pos: 39.5,-6.5 + rot: 1.5707963267948966 rad + pos: 71.5,4.5 parent: 2 - - uid: 15758 + - uid: 15218 components: - type: Transform - pos: 67.5,0.5 + rot: 1.5707963267948966 rad + pos: -52.5,-67.5 parent: 2 - - uid: 21571 + - uid: 15220 components: - type: Transform - pos: 34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -42.5,-70.5 parent: 2 -- proto: WaterTankHighCapacity - entities: - - uid: 3475 + - uid: 15223 components: - type: Transform - pos: -13.5,-22.5 + rot: 1.5707963267948966 rad + pos: -52.5,-69.5 parent: 2 - - uid: 15394 + - uid: 15224 components: - type: Transform - pos: -28.5,17.5 + rot: 1.5707963267948966 rad + pos: -42.5,-68.5 parent: 2 -- proto: WaterVaporCanister - entities: - - uid: 3477 + - uid: 15246 components: - type: Transform - pos: 22.5,-2.5 + rot: 1.5707963267948966 rad + pos: -17.5,38.5 parent: 2 - - uid: 3478 + - uid: 15247 components: - type: Transform - pos: 24.5,-17.5 + rot: 1.5707963267948966 rad + pos: -17.5,42.5 parent: 2 -- proto: WeaponCapacitorRecharger - entities: - - uid: 4590 + - uid: 15248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-28.5 + rot: 1.5707963267948966 rad + pos: -16.5,42.5 parent: 2 - - uid: 4972 + - uid: 15249 components: - type: Transform - pos: 5.5,25.5 + rot: 1.5707963267948966 rad + pos: -10.5,42.5 parent: 2 - - uid: 5294 + - uid: 15591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,31.5 + rot: 1.5707963267948966 rad + pos: -10.5,40.5 parent: 2 - - uid: 7621 + - uid: 15623 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-38.5 + pos: -10.5,38.5 parent: 2 - - uid: 13590 + - uid: 15624 components: - type: Transform - pos: 37.5,-32.5 + rot: 1.5707963267948966 rad + pos: -42.5,18.5 parent: 2 -- proto: WeaponDisabler - entities: - - uid: 5154 + - uid: 15846 components: - type: Transform - pos: -8.829058,31.720768 + rot: 1.5707963267948966 rad + pos: -44.5,18.5 parent: 2 -- proto: WeaponLaserCarbine - entities: - - uid: 5093 + - uid: 15849 components: - type: Transform - pos: 3.539238,33.610504 + rot: 1.5707963267948966 rad + pos: -44.5,17.5 parent: 2 - - uid: 5094 + - uid: 15851 components: - type: Transform - pos: 3.539238,33.43863 + rot: 1.5707963267948966 rad + pos: -44.5,16.5 parent: 2 - - uid: 20341 + - uid: 15858 components: - type: Transform - pos: 3.53751,33.53506 + rot: 1.5707963267948966 rad + pos: -23.5,-45.5 parent: 2 -- proto: WeaponShotgunEnforcer - entities: - - uid: 1957 + - uid: 15874 components: - type: Transform - pos: 2.550524,33.364468 + rot: 1.5707963267948966 rad + pos: -24.5,-44.5 parent: 2 -- proto: WeaponShotgunKammerer - entities: - - uid: 5091 + - uid: 15877 components: - type: Transform - pos: 2.523613,33.586533 + rot: 1.5707963267948966 rad + pos: -25.5,-44.5 parent: 2 - - uid: 7564 + - uid: 15878 components: - type: Transform - pos: 2.5417395,33.683712 + rot: 1.5707963267948966 rad + pos: 68.5,22.5 parent: 2 - - uid: 20305 + - uid: 15888 components: - type: Transform - pos: 2.553135,33.488186 + rot: 1.5707963267948966 rad + pos: 59.5,28.5 parent: 2 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 5081 + - uid: 15941 components: - type: Transform - pos: -11.600864,32.694817 + rot: 1.5707963267948966 rad + pos: 61.5,28.5 parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 853 + - uid: 15944 components: - type: Transform - pos: 9.5,-44.5 + rot: 1.5707963267948966 rad + pos: 63.5,26.5 parent: 2 - - uid: 8171 + - uid: 15945 components: - type: Transform - pos: 7.5,-44.5 + rot: 1.5707963267948966 rad + pos: 63.5,25.5 parent: 2 - - uid: 20391 + - uid: 15995 components: - type: Transform - pos: 16.5,42.5 + rot: 1.5707963267948966 rad + pos: 57.5,28.5 parent: 2 - - uid: 20392 + - uid: 16024 components: - type: Transform - pos: 16.5,39.5 + rot: 1.5707963267948966 rad + pos: 55.5,28.5 parent: 2 - - uid: 21060 + - uid: 16027 components: - type: Transform - pos: -34.5,-45.5 + rot: 1.5707963267948966 rad + pos: 55.5,26.5 parent: 2 - - uid: 22109 + - uid: 16056 components: - type: Transform - pos: 16.5,-67.5 + rot: 1.5707963267948966 rad + pos: 55.5,25.5 parent: 2 - - uid: 22140 + - uid: 16060 components: - type: Transform - pos: 22.5,-67.5 + rot: 1.5707963267948966 rad + pos: 73.5,-36.5 parent: 2 - - uid: 22145 + - uid: 16061 components: - type: Transform - pos: 22.5,-74.5 + rot: 1.5707963267948966 rad + pos: 78.5,-32.5 parent: 2 - - uid: 22170 + - uid: 16073 components: - type: Transform - pos: 16.5,-74.5 + pos: 55.5,-22.5 parent: 2 -- proto: WeaponWaterPistol - entities: - - uid: 20287 + - uid: 16087 components: - type: Transform - pos: 57.375835,-1.3271363 + rot: 1.5707963267948966 rad + pos: 84.5,-32.5 parent: 2 - - uid: 20288 + - uid: 16088 components: - type: Transform - pos: 57.594585,-1.5146363 + rot: 1.5707963267948966 rad + pos: 84.5,-30.5 parent: 2 -- proto: Welder - entities: - - uid: 3479 + - uid: 16092 components: - type: Transform - pos: -7.5141225,-25.4744 + rot: 1.5707963267948966 rad + pos: 84.5,-23.5 parent: 2 -- proto: WelderIndustrial - entities: - - uid: 17640 + - uid: 16093 components: - type: Transform - pos: 17.592184,-17.644693 + rot: 1.5707963267948966 rad + pos: 49.5,-43.5 parent: 2 -- proto: WeldingFuelTankFull - entities: - - uid: 3481 + - uid: 16094 components: - type: Transform - pos: 16.5,-13.5 + rot: 1.5707963267948966 rad + pos: 79.5,-4.5 parent: 2 - - uid: 7618 + - uid: 16096 components: - type: Transform - pos: 19.5,-36.5 + rot: 1.5707963267948966 rad + pos: 83.5,-4.5 parent: 2 - - uid: 8161 + - uid: 16098 components: - type: Transform - pos: 33.5,-2.5 + rot: 1.5707963267948966 rad + pos: 83.5,-6.5 parent: 2 - - uid: 12468 + - uid: 16100 components: - type: Transform - pos: 58.5,-26.5 + rot: 1.5707963267948966 rad + pos: 52.5,25.5 parent: 2 - - uid: 13648 + - uid: 16101 components: - type: Transform - pos: -13.5,-11.5 + rot: 1.5707963267948966 rad + pos: 51.5,25.5 parent: 2 - - uid: 14676 + - uid: 16153 components: - type: Transform - pos: -19.5,31.5 + rot: 1.5707963267948966 rad + pos: 50.5,25.5 parent: 2 - - uid: 14677 + - uid: 16160 components: - type: Transform - pos: 17.5,1.5 + rot: 1.5707963267948966 rad + pos: 49.5,22.5 parent: 2 - - uid: 14682 + - uid: 16165 components: - type: Transform - pos: -13.5,-33.5 + rot: 1.5707963267948966 rad + pos: 16.5,27.5 parent: 2 - - uid: 14683 + - uid: 16169 components: - type: Transform - pos: 21.5,-40.5 + rot: 1.5707963267948966 rad + pos: 16.5,26.5 parent: 2 - - uid: 14684 + - uid: 16171 components: - type: Transform - pos: 5.5,-42.5 + rot: 1.5707963267948966 rad + pos: -27.5,-46.5 parent: 2 - - uid: 14687 + - uid: 16178 components: - type: Transform - pos: 73.5,-21.5 + rot: 1.5707963267948966 rad + pos: -28.5,-46.5 parent: 2 - - uid: 14688 + - uid: 16179 components: - type: Transform - pos: 65.5,-4.5 + rot: 1.5707963267948966 rad + pos: -32.5,-46.5 parent: 2 - - uid: 14691 + - uid: 16309 components: - type: Transform - pos: 50.5,17.5 + rot: 1.5707963267948966 rad + pos: -33.5,-46.5 parent: 2 - - uid: 14692 + - uid: 16347 components: - type: Transform - pos: -12.5,17.5 + rot: 1.5707963267948966 rad + pos: -60.5,-33.5 parent: 2 - - uid: 14719 + - uid: 16348 components: - type: Transform - pos: 45.5,-10.5 + rot: 1.5707963267948966 rad + pos: -60.5,-36.5 parent: 2 - - uid: 14734 + - uid: 16351 components: - type: Transform - pos: 39.5,-7.5 + rot: 1.5707963267948966 rad + pos: -60.5,-37.5 parent: 2 - - uid: 15853 + - uid: 16374 components: - type: Transform - pos: 69.5,6.5 + rot: 1.5707963267948966 rad + pos: -57.5,-37.5 parent: 2 - - uid: 16753 + - uid: 16389 components: - type: Transform - pos: -3.5,-21.5 + rot: 1.5707963267948966 rad + pos: -55.5,-37.5 parent: 2 -- proto: Windoor - entities: - - uid: 3483 + - uid: 16427 components: - type: Transform - pos: -6.5,-28.5 + rot: 1.5707963267948966 rad + pos: -68.5,-27.5 parent: 2 - - uid: 3484 + - uid: 16431 components: - type: Transform - pos: -5.5,-28.5 + rot: 1.5707963267948966 rad + pos: -68.5,-25.5 parent: 2 - - uid: 3485 + - uid: 16432 components: - type: Transform - pos: 20.5,-23.5 + rot: 1.5707963267948966 rad + pos: -68.5,-23.5 parent: 2 - - uid: 3486 + - uid: 16433 components: - type: Transform - pos: 21.5,-23.5 + rot: 1.5707963267948966 rad + pos: -68.5,-22.5 parent: 2 - - uid: 3487 + - uid: 16434 components: - type: Transform - pos: 39.5,-20.5 + rot: 1.5707963267948966 rad + pos: -66.5,-22.5 parent: 2 - - uid: 3488 + - uid: 16435 components: - type: Transform - pos: 45.5,-20.5 + rot: 1.5707963267948966 rad + pos: 16.5,29.5 parent: 2 - - uid: 3489 + - uid: 16452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-22.5 + rot: 1.5707963267948966 rad + pos: 16.5,32.5 parent: 2 - - uid: 3494 + - uid: 16455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-9.5 + pos: 16.5,33.5 parent: 2 - - uid: 3495 + - uid: 16456 components: - type: Transform - pos: -16.5,-28.5 + rot: 1.5707963267948966 rad + pos: -57.5,-18.5 parent: 2 - - uid: 3496 + - uid: 16459 components: - type: Transform - pos: -15.5,-28.5 + rot: 1.5707963267948966 rad + pos: 47.5,22.5 parent: 2 - - uid: 4764 + - uid: 16461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,23.5 + rot: 1.5707963267948966 rad + pos: 45.5,22.5 parent: 2 - - uid: 4765 + - uid: 16484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,24.5 + rot: 1.5707963267948966 rad + pos: 45.5,21.5 parent: 2 - - uid: 5149 + - uid: 16485 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,44.5 + rot: 1.5707963267948966 rad + pos: 45.5,20.5 parent: 2 - - uid: 5150 + - uid: 16487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,44.5 + rot: 1.5707963267948966 rad + pos: 71.5,-33.5 parent: 2 - - uid: 5448 + - uid: 16489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 + rot: 1.5707963267948966 rad + pos: 10.5,39.5 parent: 2 - - uid: 5449 + - uid: 16491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,14.5 + rot: 1.5707963267948966 rad + pos: 10.5,42.5 parent: 2 - - uid: 6034 + - uid: 16492 components: - type: Transform - pos: 42.5,10.5 + rot: 1.5707963267948966 rad + pos: 9.5,43.5 parent: 2 - - uid: 6035 + - uid: 16493 components: - type: Transform - pos: 46.5,10.5 + rot: 1.5707963267948966 rad + pos: 7.5,43.5 parent: 2 - - uid: 7152 + - uid: 16509 components: - type: Transform - pos: 58.5,-15.5 + rot: 1.5707963267948966 rad + pos: 5.5,43.5 parent: 2 - - uid: 7153 + - uid: 16512 components: - type: Transform - pos: 59.5,-15.5 + rot: 1.5707963267948966 rad + pos: 86.5,-23.5 parent: 2 - - uid: 7154 + - uid: 16513 components: - type: Transform - pos: 60.5,-15.5 + rot: 1.5707963267948966 rad + pos: 17.5,38.5 parent: 2 - - uid: 15022 + - uid: 16517 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,21.5 + pos: 17.5,36.5 parent: 2 - - uid: 16397 + - uid: 16519 components: - type: Transform - pos: 53.5,22.5 + rot: 1.5707963267948966 rad + pos: 17.5,33.5 parent: 2 - - uid: 16912 + - uid: 16521 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,37.5 + pos: 93.5,-11.5 parent: 2 - - uid: 16941 + - uid: 16522 components: - - type: MetaData - name: Theatre windoor - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,4.5 + pos: 93.5,-10.5 parent: 2 - - uid: 18471 + - uid: 16523 components: - - type: MetaData - name: Theatre windoor - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,4.5 + rot: 1.5707963267948966 rad + pos: 55.5,-40.5 parent: 2 - - uid: 20921 + - uid: 16552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-17.5 + rot: 1.5707963267948966 rad + pos: 5.5,55.5 parent: 2 - - uid: 20922 + - uid: 16566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-17.5 + rot: 1.5707963267948966 rad + pos: -5.5,56.5 parent: 2 -- proto: WindoorHydroponicsLocked - entities: - - uid: 3499 + - uid: 16569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,13.5 + rot: 1.5707963267948966 rad + pos: -6.5,55.5 parent: 2 - - uid: 3500 + - uid: 16571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,14.5 + rot: 1.5707963267948966 rad + pos: -8.5,51.5 parent: 2 -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 14242 + - uid: 16573 components: - type: Transform - pos: -19.5,10.5 + rot: 1.5707963267948966 rad + pos: -9.5,50.5 parent: 2 -- proto: WindoorKitchenLocked - entities: - - uid: 3501 + - uid: 16575 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,13.5 + pos: -7.5,51.5 parent: 2 - - uid: 3502 + - uid: 16614 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,14.5 + pos: -38.5,24.5 parent: 2 -- proto: WindoorSecure - entities: - - uid: 3505 + - uid: 16621 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-29.5 + pos: 23.5,-34.5 parent: 2 - - uid: 3506 + - uid: 16623 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-28.5 + pos: 53.5,-29.5 parent: 2 - - uid: 7933 + - uid: 16625 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-38.5 + pos: 54.5,-27.5 parent: 2 - - uid: 16324 + - uid: 16660 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,-6.5 + pos: 53.5,-43.5 parent: 2 - - uid: 17182 + - uid: 16730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-50.5 + pos: 15.5,-66.5 parent: 2 - - uid: 17229 + - uid: 16754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-50.5 + rot: 1.5707963267948966 rad + pos: 14.5,38.5 parent: 2 - - uid: 17258 + - uid: 16755 components: - type: Transform - pos: -33.5,-2.5 + rot: 1.5707963267948966 rad + pos: 16.5,38.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 21184: - - DoorStatus: DoorBolt - - uid: 21184 + - uid: 16782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-1.5 + pos: 63.5,-37.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 17258: - - DoorStatus: DoorBolt - - uid: 21321 + - uid: 16787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-24.5 + pos: 61.5,-37.5 parent: 2 - - uid: 22489 + - uid: 16827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-35.5 + pos: 15.5,-76.5 parent: 2 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 4751 + - uid: 16834 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,24.5 + pos: 12.5,43.5 parent: 2 - - uid: 4763 + - uid: 16847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 + pos: 65.5,-37.5 parent: 2 - - uid: 5082 + - uid: 16853 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,32.5 + pos: 13.5,43.5 parent: 2 - - uid: 5083 + - uid: 16855 components: - type: Transform - pos: 3.5,33.5 + rot: 1.5707963267948966 rad + pos: 15.5,43.5 parent: 2 - - uid: 5084 + - uid: 16857 components: - type: Transform - pos: 4.5,33.5 + rot: 1.5707963267948966 rad + pos: 17.5,43.5 parent: 2 - - uid: 5085 + - uid: 16858 components: - type: Transform - pos: 5.5,33.5 + rot: 1.5707963267948966 rad + pos: 17.5,40.5 parent: 2 -- proto: WindoorSecureAtmosphericsLocked - entities: - - uid: 3507 + - uid: 16860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-23.5 + rot: 1.5707963267948966 rad + pos: 17.5,41.5 parent: 2 - - uid: 3508 + - uid: 16861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-23.5 + rot: 1.5707963267948966 rad + pos: 84.5,-36.5 parent: 2 - - uid: 3509 + - uid: 16913 components: - type: Transform - pos: 19.5,-22.5 + rot: 1.5707963267948966 rad + pos: 84.5,-34.5 parent: 2 -- proto: WindoorSecureBrigLocked - entities: - - uid: 4421 + - uid: 17238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-15.5 + rot: 1.5707963267948966 rad + pos: 79.5,-35.5 parent: 2 - - uid: 4497 + - uid: 17328 components: - type: Transform - pos: -47.5,-15.5 + rot: 1.5707963267948966 rad + pos: 81.5,-36.5 parent: 2 -- proto: WindoorSecureCargoLocked - entities: - - uid: 5445 + - uid: 17362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,13.5 + pos: 67.5,18.5 parent: 2 - - uid: 5447 + - uid: 17434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,14.5 + rot: -1.5707963267948966 rad + pos: 6.5,-48.5 parent: 2 - - uid: 5450 + - uid: 17558 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,12.5 + pos: 62.5,-3.5 parent: 2 -- proto: WindoorSecureChapelLocked - entities: - - uid: 3510 + - uid: 18472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-39.5 + rot: -1.5707963267948966 rad + pos: 62.5,-5.5 parent: 2 - - uid: 3511 + - uid: 18473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-6.5 + parent: 2 + - uid: 19807 components: - type: Transform - pos: -32.5,-37.5 + rot: 1.5707963267948966 rad + pos: -42.5,22.5 parent: 2 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 6036 + - uid: 19809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,10.5 + rot: 1.5707963267948966 rad + pos: -44.5,21.5 parent: 2 - - uid: 6037 + - uid: 20302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,10.5 + rot: 1.5707963267948966 rad + pos: -45.5,22.5 parent: 2 - - uid: 8862 + - uid: 20304 components: - type: Transform - pos: 46.5,15.5 + rot: 1.5707963267948966 rad + pos: -45.5,24.5 parent: 2 - - uid: 18993 + - uid: 20309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,10.5 + rot: 1.5707963267948966 rad + pos: -44.5,25.5 parent: 2 -- proto: WindoorSecureCommandLocked - entities: - - uid: 1943 + - uid: 20310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-64.5 + pos: -42.5,25.5 parent: 2 - - uid: 1945 + - uid: 20331 components: - type: Transform - pos: 8.5,-47.5 + pos: 14.5,-72.5 parent: 2 - - uid: 4571 + - uid: 20358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-29.5 + rot: 1.5707963267948966 rad + pos: -42.5,24.5 parent: 2 - - uid: 7436 + - uid: 20359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-27.5 + rot: 1.5707963267948966 rad + pos: -41.5,24.5 parent: 2 - - uid: 7437 + - uid: 20361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-27.5 + rot: 1.5707963267948966 rad + pos: -17.5,-45.5 parent: 2 - - uid: 7974 + - uid: 20363 components: - type: Transform - pos: 12.5,-45.5 + rot: 1.5707963267948966 rad + pos: 88.5,-10.5 parent: 2 - - uid: 7975 + - uid: 20365 components: - type: Transform - pos: 13.5,-45.5 + rot: 1.5707963267948966 rad + pos: 90.5,-10.5 parent: 2 - - uid: 20900 + - uid: 20366 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-65.5 + pos: 92.5,-10.5 parent: 2 - - uid: 20901 + - uid: 20399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-53.5 + rot: 1.5707963267948966 rad + pos: 93.5,-17.5 parent: 2 - - uid: 22049 + - uid: 20401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-72.5 + rot: 1.5707963267948966 rad + pos: 93.5,-18.5 parent: 2 - - uid: 22050 + - uid: 20404 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-72.5 + pos: 93.5,-19.5 parent: 2 -- proto: WindoorSecureDetectiveLocked - entities: - - uid: 17488 + - uid: 20414 components: - type: Transform - pos: -24.5,28.5 + rot: 1.5707963267948966 rad + pos: 93.5,-20.5 parent: 2 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 3512 + - uid: 20530 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-22.5 + pos: 92.5,-21.5 parent: 2 - - uid: 3513 + - uid: 20532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-28.5 + rot: 1.5707963267948966 rad + pos: 90.5,-21.5 parent: 2 - - uid: 3514 + - uid: 20534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-28.5 + rot: 1.5707963267948966 rad + pos: 88.5,-21.5 parent: 2 - - uid: 3515 + - uid: 20535 components: - type: Transform - pos: -7.5,-27.5 + rot: 1.5707963267948966 rad + pos: 90.5,-22.5 parent: 2 - - uid: 15163 + - uid: 20537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,34.5 + rot: 1.5707963267948966 rad + pos: 89.5,-23.5 parent: 2 - - uid: 15164 + - uid: 20538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,35.5 + rot: 1.5707963267948966 rad + pos: 88.5,-23.5 parent: 2 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 3516 + - uid: 20539 components: - type: Transform - pos: 43.5,-22.5 + rot: 1.5707963267948966 rad + pos: 50.5,-39.5 parent: 2 - - uid: 7603 + - uid: 20540 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-37.5 + pos: -27.5,-44.5 parent: 2 - - uid: 7604 + - uid: 20795 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-36.5 + pos: -23.5,-48.5 parent: 2 -- proto: WindoorSecureJanitorLocked - entities: - - uid: 3517 + - uid: 20804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-28.5 + pos: 14.5,-68.5 parent: 2 - - uid: 3518 + - uid: 20880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-28.5 + rot: 1.5707963267948966 rad + pos: -19.5,-48.5 parent: 2 - - uid: 4460 + - uid: 20882 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-27.5 + pos: -17.5,-48.5 parent: 2 - - uid: 20314 + - uid: 20908 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-26.5 + pos: 16.5,-39.5 parent: 2 - - uid: 20315 + - uid: 20909 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-25.5 + pos: 60.5,7.5 parent: 2 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 4676 + - uid: 21401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,1.5 + pos: 15.5,-73.5 parent: 2 - - uid: 5773 + - uid: 21462 components: - type: Transform - pos: 46.5,3.5 + pos: 24.5,-69.5 parent: 2 - - uid: 5979 + - uid: 21523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,2.5 + pos: 21.5,-76.5 parent: 2 - - uid: 5980 + - uid: 21524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,3.5 + pos: 18.5,-77.5 parent: 2 - - uid: 5981 + - uid: 21527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,1.5 + pos: 23.5,-68.5 parent: 2 - - uid: 6905 + - uid: 21647 components: - type: Transform - pos: 59.5,18.5 + pos: 42.5,17.5 parent: 2 - - uid: 6960 + - uid: 21969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,19.5 + pos: -68.5,-33.5 parent: 2 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 5542 + - uid: 21981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,20.5 + pos: -68.5,-29.5 parent: 2 - - uid: 5543 + - uid: 22007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,21.5 + pos: 22.5,-59.5 parent: 2 -- proto: WindoorSecureScienceLocked - entities: - - uid: 7147 + - uid: 22017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-15.5 + pos: 23.5,-66.5 parent: 2 - - uid: 7150 +- proto: WallShuttle + entities: + - uid: 21142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-15.5 - parent: 2 - - uid: 7151 + pos: 6.5,3.5 + parent: 21128 + - uid: 21143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-15.5 - parent: 2 - - uid: 7259 + pos: 6.5,2.5 + parent: 21128 + - uid: 21144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 2 - - uid: 7260 + pos: 6.5,1.5 + parent: 21128 + - uid: 21145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-7.5 - parent: 2 - - uid: 7263 + pos: 6.5,0.5 + parent: 21128 + - uid: 21146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-9.5 - parent: 2 - - uid: 8184 + pos: 6.5,-0.5 + parent: 21128 + - uid: 21147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-8.5 - parent: 2 -- proto: WindoorServiceLocked - entities: - - uid: 3716 + pos: 6.5,-1.5 + parent: 21128 + - uid: 21148 components: - type: Transform - pos: -43.5,11.5 - parent: 2 - - uid: 4528 + pos: 6.5,-2.5 + parent: 21128 + - uid: 21149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-28.5 - parent: 2 - - uid: 4637 + pos: 6.5,-4.5 + parent: 21128 + - uid: 21150 components: - type: Transform - pos: -53.5,-26.5 - parent: 2 -- proto: WindoorTheatreLocked - entities: - - uid: 3519 + pos: 8.5,-6.5 + parent: 21128 + - uid: 21151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,4.5 - parent: 2 -- proto: WindowDirectional - entities: - - uid: 3527 + pos: 9.5,-6.5 + parent: 21128 + - uid: 21152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-8.5 - parent: 2 - - uid: 3528 + pos: 10.5,-6.5 + parent: 21128 + - uid: 21153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 2 - - uid: 15004 + pos: 10.5,-5.5 + parent: 21128 + - uid: 21154 components: - type: Transform - pos: -34.5,22.5 - parent: 2 - - uid: 16198 + pos: 7.5,-0.5 + parent: 21128 + - uid: 21155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-24.5 - parent: 2 - - uid: 16401 + pos: 4.5,-0.5 + parent: 21128 + - uid: 21156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,22.5 - parent: 2 - - uid: 16647 + pos: 4.5,-2.5 + parent: 21128 + - uid: 21157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 2 -- proto: WindowFrostedDirectional - entities: - - uid: 1965 + pos: 4.5,-4.5 + parent: 21128 + - uid: 21158 components: - type: Transform - pos: -22.5,-41.5 - parent: 2 - - uid: 3733 + pos: 4.5,-5.5 + parent: 21128 + - uid: 21159 components: - type: Transform - pos: -44.5,11.5 - parent: 2 - - uid: 3734 + pos: 4.5,-6.5 + parent: 21128 + - uid: 21160 components: - type: Transform - pos: -42.5,11.5 - parent: 2 - - uid: 3736 + pos: 4.5,-7.5 + parent: 21128 + - uid: 21161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,9.5 - parent: 2 - - uid: 21590 + pos: 4.5,-8.5 + parent: 21128 + - uid: 21162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 2 - - uid: 21591 + pos: 3.5,-8.5 + parent: 21128 + - uid: 21163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-1.5 - parent: 2 - - uid: 21592 + pos: 3.5,-9.5 + parent: 21128 + - uid: 21164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 2 - - uid: 21593 + pos: 2.5,-9.5 + parent: 21128 + - uid: 21165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 2 - - uid: 21594 + pos: 1.5,-9.5 + parent: 21128 + - uid: 21166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-7.5 - parent: 2 - - uid: 21595 + pos: 0.5,-9.5 + parent: 21128 + - uid: 21167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 2 - - uid: 22875 + pos: 0.5,-8.5 + parent: 21128 + - uid: 21168 components: - type: Transform - pos: 47.5,-4.5 - parent: 2 - - uid: 22876 + pos: -0.5,-8.5 + parent: 21128 + - uid: 21169 components: - type: Transform - pos: 47.5,-1.5 - parent: 2 - - uid: 22877 + pos: -0.5,-7.5 + parent: 21128 + - uid: 21170 components: - type: Transform - pos: 53.5,-1.5 - parent: 2 - - uid: 22878 + pos: -0.5,-6.5 + parent: 21128 + - uid: 21171 components: - type: Transform - pos: 53.5,-7.5 - parent: 2 - - uid: 22879 + pos: -0.5,-5.5 + parent: 21128 + - uid: 21172 components: - type: Transform - pos: 47.5,-7.5 - parent: 2 - - uid: 22880 + pos: -0.5,-1.5 + parent: 21128 + - uid: 21173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 2 - - uid: 22881 + pos: -0.5,-0.5 + parent: 21128 + - uid: 21174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 2 - - uid: 22882 + pos: 10.5,3.5 + parent: 21128 + - uid: 21175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 2 - - uid: 22883 + pos: 10.5,1.5 + parent: 21128 +- proto: WallSolid + entities: + - uid: 2702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-1.5 + pos: -41.5,3.5 parent: 2 - - uid: 22884 + - uid: 2703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-1.5 + pos: 16.5,17.5 parent: 2 - - uid: 22885 + - uid: 2705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-1.5 + pos: -18.5,10.5 parent: 2 - - uid: 22886 + - uid: 2707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-4.5 + pos: 15.5,-0.5 parent: 2 - - uid: 22887 + - uid: 2711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-7.5 + pos: 16.5,6.5 parent: 2 - - uid: 22888 + - uid: 2712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 + pos: 16.5,8.5 parent: 2 - - uid: 22889 + - uid: 2713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-7.5 + pos: 16.5,4.5 parent: 2 - - uid: 23311 + - uid: 2715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-41.5 + pos: 16.5,9.5 parent: 2 - - uid: 23312 + - uid: 2716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-41.5 + pos: 16.5,11.5 parent: 2 -- proto: WindowReinforcedDirectional - entities: - - uid: 1944 + - uid: 2718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,43.5 + pos: 15.5,12.5 parent: 2 - - uid: 1952 + - uid: 2719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-5.5 + pos: 16.5,10.5 parent: 2 - - uid: 1955 + - uid: 2722 components: - type: Transform - pos: -48.5,-30.5 + pos: 14.5,15.5 parent: 2 - - uid: 2008 + - uid: 2724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-46.5 + pos: 12.5,15.5 parent: 2 - - uid: 2009 + - uid: 2725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-46.5 + pos: 11.5,15.5 parent: 2 - - uid: 2010 + - uid: 2733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 + pos: 9.5,15.5 parent: 2 - - uid: 2011 + - uid: 2743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-10.5 + pos: 3.5,15.5 parent: 2 - - uid: 2013 + - uid: 2744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-10.5 + pos: 2.5,15.5 parent: 2 - - uid: 2018 + - uid: 2746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-10.5 + pos: 0.5,15.5 parent: 2 - - uid: 2019 + - uid: 2747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 + pos: -5.5,15.5 parent: 2 - - uid: 2020 + - uid: 2748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 + pos: -6.5,15.5 parent: 2 - - uid: 2021 + - uid: 2750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-10.5 + pos: -8.5,15.5 parent: 2 - - uid: 2022 + - uid: 2751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 + pos: -10.5,15.5 parent: 2 - - uid: 2023 + - uid: 2752 components: - type: Transform - pos: 2.5,-10.5 + pos: -11.5,15.5 parent: 2 - - uid: 2024 + - uid: 2754 components: - type: Transform - pos: -9.5,-20.5 + pos: -13.5,15.5 parent: 2 - - uid: 2025 + - uid: 2756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-20.5 + pos: -14.5,14.5 parent: 2 - - uid: 2026 + - uid: 2758 components: - type: Transform - pos: -8.5,-20.5 + pos: -14.5,12.5 parent: 2 - - uid: 2027 + - uid: 2826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-20.5 + pos: 10.5,-34.5 parent: 2 - - uid: 2028 + - uid: 2830 components: - type: Transform - pos: 0.5,-24.5 + pos: -16.5,-12.5 parent: 2 - - uid: 2029 + - uid: 2831 components: - type: Transform - pos: -0.5,-24.5 + pos: -16.5,-15.5 parent: 2 - - uid: 2030 + - uid: 2832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-28.5 + pos: -16.5,-16.5 parent: 2 - - uid: 2031 + - uid: 2835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 + pos: -16.5,-19.5 parent: 2 - - uid: 2032 + - uid: 2836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-16.5 + pos: -16.5,-20.5 parent: 2 - - uid: 2033 + - uid: 2868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 + pos: -15.5,-21.5 parent: 2 - - uid: 2034 + - uid: 2869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 + pos: -13.5,-21.5 parent: 2 - - uid: 2036 + - uid: 2873 components: - type: Transform - pos: 24.5,-7.5 + pos: -12.5,-22.5 parent: 2 - - uid: 2038 + - uid: 2874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 + pos: -12.5,-23.5 parent: 2 - - uid: 2039 + - uid: 2875 components: - type: Transform - pos: 28.5,-8.5 + pos: -12.5,-24.5 parent: 2 - - uid: 2040 + - uid: 2877 components: - type: Transform - pos: 22.5,-7.5 + pos: -12.5,-26.5 parent: 2 - - uid: 2042 + - uid: 2879 components: - type: Transform - pos: 29.5,-9.5 + pos: -12.5,-28.5 parent: 2 - - uid: 2044 + - uid: 2880 components: - type: Transform - pos: 23.5,-7.5 + pos: 27.5,-0.5 parent: 2 - - uid: 2045 + - uid: 2884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-13.5 + pos: 24.5,0.5 parent: 2 - - uid: 2046 + - uid: 2885 components: - type: Transform - pos: 21.5,-7.5 + pos: 23.5,0.5 parent: 2 - - uid: 2047 + - uid: 2886 components: - type: Transform - pos: 20.5,-7.5 + pos: 22.5,0.5 parent: 2 - - uid: 2048 + - uid: 2888 components: - type: Transform - pos: 19.5,-7.5 + pos: 20.5,0.5 parent: 2 - - uid: 2090 + - uid: 2892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-30.5 + pos: 18.5,0.5 parent: 2 - - uid: 2144 + - uid: 2894 components: - type: Transform - pos: 27.5,-44.5 + pos: 16.5,0.5 parent: 2 - - uid: 2280 + - uid: 2895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-37.5 + pos: -15.5,-5.5 parent: 2 - - uid: 2695 + - uid: 2896 components: - type: Transform - pos: 18.5,-7.5 + pos: 16.5,1.5 parent: 2 - - uid: 2957 + - uid: 2898 components: - type: Transform - pos: 17.5,-7.5 + pos: -56.5,-22.5 parent: 2 - - uid: 2982 + - uid: 2899 components: - type: Transform - pos: 16.5,-7.5 + pos: -18.5,-5.5 parent: 2 - - uid: 2983 + - uid: 2900 components: - type: Transform - pos: 25.5,-7.5 + pos: -17.5,-5.5 parent: 2 - - uid: 2984 + - uid: 2903 components: - type: Transform - pos: 26.5,-7.5 + pos: -16.5,8.5 parent: 2 - - uid: 3053 + - uid: 2905 components: - type: Transform - pos: 27.5,-7.5 + pos: -17.5,8.5 parent: 2 - - uid: 3159 + - uid: 2906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-16.5 + pos: -18.5,7.5 parent: 2 - - uid: 3160 + - uid: 2910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 + pos: -16.5,4.5 parent: 2 - - uid: 3161 + - uid: 2911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 + pos: -17.5,4.5 parent: 2 - - uid: 3182 + - uid: 2913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-22.5 + pos: -18.5,5.5 parent: 2 - - uid: 3186 + - uid: 2915 components: - type: Transform - pos: 24.5,-27.5 + pos: -35.5,-7.5 parent: 2 - - uid: 3187 + - uid: 2917 components: - type: Transform - pos: 25.5,-27.5 + pos: -21.5,-5.5 parent: 2 - - uid: 3188 + - uid: 2918 components: - type: Transform - pos: 26.5,-27.5 + pos: -17.5,12.5 parent: 2 - - uid: 3190 + - uid: 2919 components: - type: Transform - pos: 23.5,-27.5 + pos: -17.5,16.5 parent: 2 - - uid: 3191 + - uid: 2921 components: - type: Transform - pos: 27.5,-27.5 + pos: -17.5,18.5 parent: 2 - - uid: 3192 + - uid: 2925 components: - type: Transform - pos: 28.5,-27.5 + pos: -16.5,18.5 parent: 2 - - uid: 3193 + - uid: 2926 components: - type: Transform - pos: 29.5,-27.5 + pos: -11.5,18.5 parent: 2 - - uid: 3301 + - uid: 2927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-22.5 + pos: -13.5,18.5 parent: 2 - - uid: 3304 + - uid: 2928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-22.5 + pos: -10.5,18.5 parent: 2 - - uid: 3375 + - uid: 2931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 + pos: -9.5,18.5 parent: 2 - - uid: 3376 + - uid: 2960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -7.5,18.5 parent: 2 - - uid: 3474 + - uid: 2961 components: - type: Transform - pos: -21.5,10.5 + pos: -4.5,18.5 parent: 2 - - uid: 3529 + - uid: 2962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-12.5 + pos: -2.5,18.5 parent: 2 - - uid: 3530 + - uid: 2963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-12.5 + pos: -5.5,18.5 parent: 2 - - uid: 3531 + - uid: 2964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-17.5 + pos: -1.5,18.5 parent: 2 - - uid: 3532 + - uid: 2966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-17.5 + pos: -3.5,18.5 parent: 2 - - uid: 3533 + - uid: 2967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-21.5 + pos: 0.5,18.5 parent: 2 - - uid: 3534 + - uid: 2968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-23.5 + pos: 1.5,18.5 parent: 2 - - uid: 3535 + - uid: 2969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-23.5 + pos: 3.5,18.5 parent: 2 - - uid: 3536 + - uid: 2971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-24.5 + pos: 2.5,18.5 parent: 2 - - uid: 3537 + - uid: 2972 components: - type: Transform - pos: -38.5,5.5 + pos: 5.5,18.5 parent: 2 - - uid: 3538 + - uid: 2991 components: - type: Transform - pos: -37.5,5.5 + pos: 13.5,18.5 parent: 2 - - uid: 3539 + - uid: 3023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,6.5 + pos: -33.5,-7.5 parent: 2 - - uid: 3540 + - uid: 3027 components: - type: Transform - pos: -27.5,5.5 + pos: 16.5,-34.5 parent: 2 - - uid: 3541 + - uid: 3037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,5.5 + pos: 14.5,-34.5 parent: 2 - - uid: 3542 + - uid: 3040 components: - type: Transform - pos: -28.5,5.5 + pos: 9.5,-34.5 parent: 2 - - uid: 3543 + - uid: 3042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,7.5 + pos: 7.5,-34.5 parent: 2 - - uid: 3544 + - uid: 3043 components: - type: Transform - pos: -29.5,5.5 + pos: 13.5,-34.5 parent: 2 - - uid: 3545 + - uid: 3044 components: - type: Transform - pos: -39.5,5.5 + pos: 6.5,-34.5 parent: 2 - - uid: 3546 + - uid: 3045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,4.5 + pos: 6.5,-33.5 parent: 2 - - uid: 3547 + - uid: 3050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,5.5 + pos: -8.5,-32.5 parent: 2 - - uid: 3548 + - uid: 3051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,6.5 + pos: -9.5,-32.5 parent: 2 - - uid: 3549 + - uid: 3060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,7.5 + pos: -11.5,-32.5 parent: 2 - - uid: 3550 + - uid: 3061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-33.5 + pos: -12.5,-32.5 parent: 2 - - uid: 3551 + - uid: 3062 components: - type: Transform - pos: -26.5,-38.5 + pos: 44.5,-14.5 parent: 2 - - uid: 3552 + - uid: 3063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-36.5 + pos: 45.5,-17.5 parent: 2 - - uid: 3553 + - uid: 3064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,4.5 + pos: 44.5,-17.5 parent: 2 - - uid: 3554 + - uid: 3065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,4.5 + pos: 47.5,-17.5 parent: 2 - - uid: 3555 + - uid: 3066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-1.5 + pos: 46.5,-17.5 parent: 2 - - uid: 3556 + - uid: 3068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-1.5 + pos: 44.5,-15.5 parent: 2 - - uid: 3568 + - uid: 3069 components: - type: Transform - pos: -17.5,-28.5 + pos: -19.5,-5.5 parent: 2 - - uid: 3569 + - uid: 3070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-29.5 + pos: -21.5,-8.5 parent: 2 - - uid: 3571 + - uid: 3073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-29.5 + pos: -17.5,15.5 parent: 2 - - uid: 3574 + - uid: 3074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-31.5 + pos: -23.5,16.5 parent: 2 - - uid: 3582 + - uid: 3076 components: - type: Transform - pos: -26.5,-31.5 + pos: -16.5,10.5 parent: 2 - - uid: 3583 + - uid: 3078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 + pos: -15.5,15.5 parent: 2 - - uid: 3584 + - uid: 3081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,12.5 + pos: -17.5,14.5 parent: 2 - - uid: 3585 + - uid: 3083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-29.5 + pos: 44.5,-13.5 parent: 2 - - uid: 3586 + - uid: 3084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-30.5 + pos: -16.5,-7.5 parent: 2 - - uid: 3649 + - uid: 3085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-31.5 + pos: -17.5,-7.5 parent: 2 - - uid: 3672 + - uid: 3088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-26.5 + pos: -19.5,-7.5 parent: 2 - - uid: 3673 + - uid: 3089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-25.5 + pos: -21.5,-7.5 parent: 2 - - uid: 3674 + - uid: 3090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-24.5 + pos: -21.5,-9.5 parent: 2 - - uid: 3675 + - uid: 3092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-37.5 + pos: -16.5,-10.5 parent: 2 - - uid: 3676 + - uid: 3093 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-0.5 + pos: -15.5,-9.5 parent: 2 - - uid: 3682 + - uid: 3094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,5.5 + pos: -15.5,-8.5 parent: 2 - - uid: 3695 + - uid: 3113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,5.5 + pos: -16.5,-22.5 parent: 2 - - uid: 3753 + - uid: 3115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,5.5 + pos: -16.5,-23.5 parent: 2 - - uid: 3773 + - uid: 3116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,3.5 + pos: -16.5,-24.5 parent: 2 - - uid: 3774 + - uid: 3118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-2.5 + pos: -18.5,-24.5 parent: 2 - - uid: 3779 + - uid: 3126 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,3.5 + pos: -21.5,-24.5 parent: 2 - - uid: 3807 + - uid: 3129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,3.5 + pos: -19.5,-28.5 parent: 2 - - uid: 3822 + - uid: 3131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,2.5 + pos: -13.5,-32.5 parent: 2 - - uid: 3823 + - uid: 3133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-2.5 + pos: -15.5,-32.5 parent: 2 - - uid: 3824 + - uid: 3134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-0.5 + pos: -17.5,-32.5 parent: 2 - - uid: 3825 + - uid: 3135 components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-39.5 + - type: Transform + pos: -18.5,-32.5 parent: 2 - - uid: 3828 + - uid: 3136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-34.5 + pos: -19.5,-32.5 parent: 2 - - uid: 3835 + - uid: 3140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-32.5 + pos: -26.5,-8.5 parent: 2 - - uid: 3851 + - uid: 3141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-32.5 + pos: -25.5,-7.5 parent: 2 - - uid: 3905 + - uid: 3144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-32.5 + pos: -26.5,-11.5 parent: 2 - - uid: 3918 + - uid: 3146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-44.5 + pos: -29.5,-7.5 parent: 2 - - uid: 3922 + - uid: 3147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,25.5 + pos: -32.5,-7.5 parent: 2 - - uid: 3952 + - uid: 3149 components: - type: Transform - pos: -10.5,25.5 + pos: -30.5,-7.5 parent: 2 - - uid: 3963 + - uid: 3150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,25.5 + pos: -26.5,-17.5 parent: 2 - - uid: 3974 + - uid: 3152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,22.5 + pos: -26.5,-18.5 parent: 2 - - uid: 3975 + - uid: 3153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,25.5 + pos: -26.5,-20.5 parent: 2 - - uid: 3976 + - uid: 3156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,25.5 + pos: -27.5,-7.5 parent: 2 - - uid: 3977 + - uid: 3165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,25.5 + pos: -25.5,-32.5 parent: 2 - - uid: 3978 + - uid: 3166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,25.5 + pos: -29.5,-35.5 parent: 2 - - uid: 3979 + - uid: 3167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,25.5 + pos: -26.5,-33.5 parent: 2 - - uid: 3980 + - uid: 3168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,25.5 + pos: -25.5,-5.5 parent: 2 - - uid: 3981 + - uid: 3169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,22.5 + pos: -26.5,-5.5 parent: 2 - - uid: 3982 + - uid: 3170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,8.5 + pos: -27.5,22.5 parent: 2 - - uid: 3983 + - uid: 3172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,8.5 + pos: -27.5,20.5 parent: 2 - - uid: 3984 + - uid: 3173 components: - type: Transform - pos: -50.5,-18.5 + pos: -27.5,18.5 parent: 2 - - uid: 3985 + - uid: 3174 components: - type: Transform - pos: -47.5,-18.5 + pos: -27.5,17.5 parent: 2 - - uid: 3986 + - uid: 3194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,8.5 + pos: -27.5,16.5 parent: 2 - - uid: 3987 + - uid: 3195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,8.5 + pos: -27.5,15.5 parent: 2 - - uid: 3988 + - uid: 3198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,8.5 + pos: -24.5,22.5 parent: 2 - - uid: 3989 + - uid: 3199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,8.5 + pos: -23.5,22.5 parent: 2 - - uid: 3990 + - uid: 3200 components: - type: Transform - pos: -47.5,-5.5 + pos: -25.5,22.5 parent: 2 - - uid: 4218 + - uid: 3203 components: - type: Transform - pos: -48.5,-5.5 + pos: -20.5,22.5 parent: 2 - - uid: 4219 + - uid: 3204 components: - type: Transform - pos: -44.5,-5.5 + pos: -18.5,22.5 parent: 2 - - uid: 4221 + - uid: 3208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-5.5 + pos: 17.5,22.5 parent: 2 - - uid: 4228 + - uid: 3210 components: - type: Transform - pos: -46.5,-5.5 + pos: 15.5,22.5 parent: 2 - - uid: 4230 + - uid: 3212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,14.5 + pos: 13.5,22.5 parent: 2 - - uid: 4231 + - uid: 3213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,14.5 + pos: 12.5,22.5 parent: 2 - - uid: 4232 + - uid: 3216 components: - type: Transform - pos: -45.5,14.5 + pos: 9.5,22.5 parent: 2 - - uid: 4246 + - uid: 3218 components: - type: Transform - pos: -46.5,14.5 + pos: 8.5,23.5 parent: 2 - - uid: 4249 + - uid: 3222 components: - type: Transform - pos: -47.5,14.5 + pos: -28.5,-5.5 parent: 2 - - uid: 4251 + - uid: 3223 components: - type: Transform - pos: -45.5,-5.5 + pos: -29.5,-5.5 parent: 2 - - uid: 4252 + - uid: 3224 components: - type: Transform - pos: -51.5,-17.5 + pos: -30.5,-5.5 parent: 2 - - uid: 4294 + - uid: 3225 components: - type: Transform - pos: -43.5,-18.5 + pos: -31.5,-5.5 parent: 2 - - uid: 4310 + - uid: 3229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-18.5 + pos: -35.5,-5.5 parent: 2 - - uid: 4311 + - uid: 3231 components: - type: Transform - pos: -44.5,-18.5 + pos: -38.5,-5.5 parent: 2 - - uid: 4312 + - uid: 3232 components: - type: Transform - pos: -46.5,-25.5 + pos: -39.5,-5.5 parent: 2 - - uid: 4313 + - uid: 3234 components: - type: Transform - pos: -47.5,-25.5 + pos: -40.5,-4.5 parent: 2 - - uid: 4344 + - uid: 3235 components: - type: Transform - pos: -48.5,-25.5 + pos: -40.5,-3.5 parent: 2 - - uid: 4346 + - uid: 3236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 + pos: -28.5,10.5 parent: 2 - - uid: 4359 + - uid: 3239 components: - type: Transform - pos: 39.5,-2.5 + pos: -30.5,10.5 parent: 2 - - uid: 4419 + - uid: 3240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-15.5 + pos: -31.5,10.5 parent: 2 - - uid: 4420 + - uid: 3241 components: - type: Transform - pos: -44.5,-17.5 + pos: -32.5,10.5 parent: 2 - - uid: 4428 + - uid: 3242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-15.5 + pos: -33.5,10.5 parent: 2 - - uid: 4430 + - uid: 3244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-15.5 + pos: -35.5,10.5 parent: 2 - - uid: 4524 + - uid: 3245 components: - type: Transform - pos: -59.5,-27.5 + pos: -36.5,10.5 parent: 2 - - uid: 4583 + - uid: 3246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-27.5 + pos: -38.5,10.5 parent: 2 - - uid: 4595 + - uid: 3247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-33.5 + pos: -39.5,10.5 parent: 2 - - uid: 4596 + - uid: 3254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-33.5 + pos: -40.5,7.5 parent: 2 - - uid: 4597 + - uid: 3255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-37.5 + pos: -40.5,6.5 parent: 2 - - uid: 4598 + - uid: 3258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-37.5 + pos: -40.5,3.5 parent: 2 - - uid: 4599 + - uid: 3259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-37.5 + pos: -40.5,-0.5 parent: 2 - - uid: 4600 + - uid: 3260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-32.5 + pos: -40.5,-2.5 parent: 2 - - uid: 4601 + - uid: 3262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-32.5 + pos: -31.5,8.5 parent: 2 - - uid: 4602 + - uid: 3263 components: - type: Transform - pos: 38.5,-38.5 + pos: -33.5,8.5 parent: 2 - - uid: 4603 + - uid: 3264 components: - type: Transform - pos: 42.5,-38.5 + pos: -30.5,8.5 parent: 2 - - uid: 4604 + - uid: 3266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-38.5 + pos: -28.5,8.5 parent: 2 - - uid: 4605 + - uid: 3267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-38.5 + pos: -27.5,8.5 parent: 2 - - uid: 4636 + - uid: 3268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-26.5 + pos: -38.5,8.5 parent: 2 - - uid: 4638 + - uid: 3269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-26.5 + pos: -39.5,8.5 parent: 2 - - uid: 4682 + - uid: 3273 components: - type: Transform - pos: -47.5,-30.5 + pos: -32.5,8.5 parent: 2 - - uid: 4704 + - uid: 3274 components: - type: Transform - pos: -46.5,-30.5 + pos: -37.5,8.5 parent: 2 - - uid: 4706 + - uid: 3275 components: - type: Transform - pos: -45.5,-18.5 + pos: -36.5,8.5 parent: 2 - - uid: 4752 + - uid: 3276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-29.5 + pos: -35.5,12.5 parent: 2 - - uid: 4761 + - uid: 3278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-22.5 + pos: -35.5,11.5 parent: 2 - - uid: 4778 + - uid: 3296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-30.5 + pos: -35.5,15.5 parent: 2 - - uid: 4783 + - uid: 3298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-29.5 + pos: -35.5,16.5 parent: 2 - - uid: 4805 + - uid: 3302 components: - type: Transform - pos: 37.5,-39.5 + pos: -34.5,18.5 parent: 2 - - uid: 4807 + - uid: 3303 components: - type: Transform - pos: 40.5,-39.5 + pos: -33.5,18.5 parent: 2 - - uid: 4931 + - uid: 3305 components: - type: Transform - pos: 42.5,-39.5 + pos: -32.5,18.5 parent: 2 - - uid: 4932 + - uid: 3308 components: - type: Transform - pos: 43.5,-39.5 + pos: -30.5,18.5 parent: 2 - - uid: 4966 + - uid: 3313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,25.5 + pos: -36.5,15.5 parent: 2 - - uid: 4967 + - uid: 3314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 + pos: -37.5,15.5 parent: 2 - - uid: 4991 + - uid: 3315 components: - type: Transform - pos: 32.5,-39.5 + pos: -38.5,15.5 parent: 2 - - uid: 4992 + - uid: 3316 components: - type: Transform - pos: 33.5,-39.5 + pos: -39.5,15.5 parent: 2 - - uid: 4994 + - uid: 3318 components: - type: Transform - pos: 34.5,-39.5 + pos: -39.5,13.5 parent: 2 - - uid: 5075 + - uid: 3319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,33.5 + pos: -39.5,12.5 parent: 2 - - uid: 5079 + - uid: 3321 components: - type: Transform - pos: 2.5,32.5 + pos: -42.5,9.5 parent: 2 - - uid: 5104 + - uid: 3322 components: - type: Transform - pos: 38.5,-39.5 + pos: -41.5,10.5 parent: 2 - - uid: 5105 + - uid: 3325 components: - type: Transform - pos: 39.5,-39.5 + pos: -41.5,13.5 parent: 2 - - uid: 5118 + - uid: 3326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,15.5 + pos: -29.5,20.5 parent: 2 - - uid: 5121 + - uid: 3328 components: - type: Transform - pos: 41.5,-39.5 + pos: -13.5,17.5 parent: 2 - - uid: 5122 + - uid: 3330 components: - type: Transform - pos: 45.5,-39.5 + pos: -43.5,7.5 parent: 2 - - uid: 5197 + - uid: 3331 components: - type: Transform - pos: 44.5,-39.5 + pos: -43.5,8.5 parent: 2 - - uid: 5198 + - uid: 3333 components: - type: Transform - pos: 46.5,-39.5 + pos: -43.5,-4.5 parent: 2 - - uid: 5199 + - uid: 3334 components: - type: Transform - pos: 47.5,-39.5 + pos: -51.5,-5.5 parent: 2 - - uid: 5200 + - uid: 3335 components: - type: Transform - pos: 48.5,-39.5 + pos: 18.5,15.5 parent: 2 - - uid: 5201 + - uid: 3336 components: - type: Transform - pos: 36.5,-39.5 + pos: 18.5,16.5 parent: 2 - - uid: 5202 + - uid: 3337 components: - type: Transform - pos: 35.5,-39.5 + pos: -36.5,-7.5 parent: 2 - - uid: 5203 + - uid: 3340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,1.5 + pos: -40.5,-7.5 parent: 2 - - uid: 5204 + - uid: 3341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,1.5 + pos: -38.5,-7.5 parent: 2 - - uid: 5205 + - uid: 3342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,1.5 + pos: -27.5,-11.5 parent: 2 - - uid: 5206 + - uid: 3344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,1.5 + pos: -30.5,-11.5 parent: 2 - - uid: 5208 + - uid: 3345 components: - type: Transform - pos: 34.5,1.5 + pos: -30.5,-10.5 parent: 2 - - uid: 5426 + - uid: 3347 components: - type: Transform - pos: 33.5,1.5 + pos: -30.5,-8.5 parent: 2 - - uid: 5453 + - uid: 3349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 + pos: -34.5,-8.5 parent: 2 - - uid: 5454 + - uid: 3350 components: - type: Transform - pos: 36.5,1.5 + pos: -34.5,-10.5 parent: 2 - - uid: 5462 + - uid: 3351 components: - type: Transform - pos: 37.5,1.5 + pos: -35.5,-11.5 parent: 2 - - uid: 5469 + - uid: 3352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-42.5 + pos: -37.5,-11.5 parent: 2 - - uid: 5480 + - uid: 3354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-42.5 + pos: -38.5,-10.5 parent: 2 - - uid: 5481 + - uid: 3355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-42.5 + pos: -38.5,-9.5 parent: 2 - - uid: 5482 + - uid: 3356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-42.5 + pos: -38.5,-8.5 parent: 2 - - uid: 5487 + - uid: 3358 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-42.5 + pos: -41.5,-8.5 parent: 2 - - uid: 5546 + - uid: 3359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,22.5 + pos: -41.5,-9.5 parent: 2 - - uid: 5547 + - uid: 3360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,22.5 + pos: -41.5,-10.5 parent: 2 - - uid: 5550 + - uid: 3361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,22.5 + pos: -41.5,-11.5 parent: 2 - - uid: 5636 + - uid: 3363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,22.5 + pos: -39.5,-11.5 parent: 2 - - uid: 5643 + - uid: 3364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 + pos: -39.5,-12.5 parent: 2 - - uid: 5654 + - uid: 3366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,30.5 + pos: -39.5,-14.5 parent: 2 - - uid: 5658 + - uid: 3367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,25.5 + pos: -39.5,-16.5 parent: 2 - - uid: 5662 + - uid: 3369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,25.5 + pos: -34.5,-16.5 parent: 2 - - uid: 5707 + - uid: 3371 components: - type: Transform - pos: -6.5,25.5 + pos: -36.5,-16.5 parent: 2 - - uid: 5708 + - uid: 3374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,25.5 + pos: -40.5,-17.5 parent: 2 - - uid: 5710 + - uid: 3378 components: - type: Transform - pos: -11.5,30.5 + pos: -40.5,-19.5 parent: 2 - - uid: 5712 + - uid: 3379 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,30.5 + pos: -40.5,-20.5 parent: 2 - - uid: 5713 + - uid: 3381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,25.5 + pos: -35.5,-17.5 parent: 2 - - uid: 5731 + - uid: 3383 components: - type: Transform - pos: -14.5,25.5 + pos: -35.5,-19.5 parent: 2 - - uid: 5734 + - uid: 3385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,17.5 + pos: -27.5,-21.5 parent: 2 - - uid: 5755 + - uid: 3386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,27.5 + pos: -29.5,-21.5 parent: 2 - - uid: 5903 + - uid: 3387 components: - type: Transform - pos: -23.5,27.5 + pos: -32.5,-21.5 parent: 2 - - uid: 5975 + - uid: 3389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,3.5 + pos: -33.5,-21.5 parent: 2 - - uid: 5976 + - uid: 3390 components: - type: Transform - pos: 44.5,1.5 + pos: -35.5,-21.5 parent: 2 - - uid: 5977 + - uid: 3393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,3.5 + pos: -37.5,-21.5 parent: 2 - - uid: 5978 + - uid: 3394 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,3.5 + pos: -39.5,-21.5 parent: 2 - - uid: 6030 + - uid: 3395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,36.5 + pos: -43.5,-5.5 parent: 2 - - uid: 6031 + - uid: 3397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,54.5 + pos: -43.5,-7.5 parent: 2 - - uid: 6059 + - uid: 3398 components: - type: Transform - pos: 2.5,54.5 + pos: -43.5,-8.5 parent: 2 - - uid: 6099 + - uid: 3399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,54.5 + pos: -43.5,-9.5 parent: 2 - - uid: 6103 + - uid: 3400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,54.5 + pos: -51.5,-12.5 parent: 2 - - uid: 6113 + - uid: 3401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,54.5 + pos: -43.5,-13.5 parent: 2 - - uid: 6122 + - uid: 3404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,49.5 + pos: -42.5,-16.5 parent: 2 - - uid: 6123 + - uid: 3405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,49.5 + pos: -42.5,-14.5 parent: 2 - - uid: 6130 + - uid: 3407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,49.5 + pos: -42.5,-18.5 parent: 2 - - uid: 6131 + - uid: 3409 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,54.5 + pos: -42.5,-20.5 parent: 2 - - uid: 6132 + - uid: 3412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,54.5 + pos: -40.5,-23.5 parent: 2 - - uid: 6133 + - uid: 3414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,54.5 + pos: -42.5,-22.5 parent: 2 - - uid: 6134 + - uid: 3415 components: - type: Transform - pos: -29.5,31.5 + pos: -41.5,-23.5 parent: 2 - - uid: 6143 + - uid: 3416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,42.5 + pos: -38.5,-23.5 parent: 2 - - uid: 6148 + - uid: 3417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,15.5 + pos: -37.5,-23.5 parent: 2 - - uid: 6178 + - uid: 3419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 + pos: -34.5,-23.5 parent: 2 - - uid: 6179 + - uid: 3420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,15.5 + pos: -33.5,-23.5 parent: 2 - - uid: 6180 + - uid: 3422 components: - type: Transform - pos: 35.5,23.5 + pos: -30.5,-23.5 parent: 2 - - uid: 6181 + - uid: 3423 components: - type: Transform - pos: 34.5,23.5 + pos: -29.5,-23.5 parent: 2 - - uid: 6182 + - uid: 3425 components: - type: Transform - pos: 36.5,23.5 + pos: -27.5,-23.5 parent: 2 - - uid: 6183 + - uid: 3427 components: - type: Transform - pos: 33.5,23.5 + pos: -35.5,-23.5 parent: 2 - - uid: 6184 + - uid: 3428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,19.5 + pos: -31.5,-23.5 parent: 2 - - uid: 6230 + - uid: 3429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,25.5 + pos: -26.5,-34.5 parent: 2 - - uid: 6231 + - uid: 3430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,26.5 + pos: -27.5,-34.5 parent: 2 - - uid: 6232 + - uid: 3432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,15.5 + pos: -29.5,-34.5 parent: 2 - - uid: 6233 + - uid: 3435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,25.5 + pos: -32.5,-34.5 parent: 2 - - uid: 6234 + - uid: 3436 components: - type: Transform - pos: 30.5,25.5 + pos: -33.5,-34.5 parent: 2 - - uid: 6235 + - uid: 3437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,23.5 + pos: -35.5,-34.5 parent: 2 - - uid: 6236 + - uid: 3438 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-31.5 + pos: -36.5,-34.5 parent: 2 - - uid: 6237 + - uid: 3440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-27.5 + pos: -38.5,-34.5 parent: 2 - - uid: 6269 + - uid: 3441 components: - type: Transform - pos: -68.5,-31.5 + pos: -41.5,-32.5 parent: 2 - - uid: 6270 + - uid: 3442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-27.5 + pos: -41.5,-33.5 parent: 2 - - uid: 6271 + - uid: 3444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-29.5 + pos: -40.5,-34.5 parent: 2 - - uid: 6272 + - uid: 3446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-31.5 + pos: -29.5,-37.5 parent: 2 - - uid: 6273 + - uid: 3447 components: - type: Transform - pos: 43.5,10.5 + pos: -29.5,-38.5 parent: 2 - - uid: 6274 + - uid: 3449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,10.5 + pos: -26.5,-40.5 parent: 2 - - uid: 6275 + - uid: 3455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-1.5 + pos: -28.5,-40.5 parent: 2 - - uid: 6276 + - uid: 3457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-44.5 + pos: -20.5,-40.5 parent: 2 - - uid: 6461 + - uid: 3458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-44.5 + rot: -1.5707963267948966 rad + pos: -36.5,20.5 parent: 2 - - uid: 6491 + - uid: 3567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-44.5 + pos: -22.5,-40.5 parent: 2 - - uid: 6523 + - uid: 3581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-44.5 + pos: -18.5,-40.5 parent: 2 - - uid: 6540 + - uid: 3685 components: - type: Transform - pos: 44.5,-1.5 + pos: -17.5,-39.5 parent: 2 - - uid: 6545 + - uid: 3686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-0.5 + pos: -17.5,-38.5 parent: 2 - - uid: 6554 + - uid: 3688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-0.5 + pos: -17.5,-36.5 parent: 2 - - uid: 6555 + - uid: 3689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-1.5 + pos: -17.5,-35.5 parent: 2 - - uid: 6572 + - uid: 3690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-0.5 + pos: -17.5,-34.5 parent: 2 - - uid: 6577 + - uid: 3693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-42.5 + pos: -31.5,-40.5 parent: 2 - - uid: 6699 + - uid: 3694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-5.5 + pos: -32.5,-40.5 parent: 2 - - uid: 6700 + - uid: 3751 components: - type: Transform - pos: 50.5,-3.5 + pos: -34.5,-36.5 parent: 2 - - uid: 6745 + - uid: 3757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 + pos: -33.5,-36.5 parent: 2 - - uid: 6894 + - uid: 3758 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-42.5 + pos: -34.5,-40.5 parent: 2 - - uid: 6907 + - uid: 3759 components: - type: Transform - pos: 57.5,18.5 + pos: -34.5,-39.5 parent: 2 - - uid: 6908 + - uid: 3764 components: - type: Transform - pos: 58.5,18.5 + pos: -34.5,-38.5 parent: 2 - - uid: 6910 + - uid: 3770 components: - type: Transform - pos: 60.5,18.5 + pos: -45.5,-9.5 parent: 2 - - uid: 6911 + - uid: 3772 components: - type: Transform - pos: 61.5,18.5 + pos: -46.5,-9.5 parent: 2 - - uid: 6959 + - uid: 3776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,18.5 + pos: -47.5,-9.5 parent: 2 - - uid: 6965 + - uid: 3778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-49.5 + pos: -48.5,-9.5 parent: 2 - - uid: 6971 + - uid: 3801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-49.5 + pos: -50.5,-9.5 parent: 2 - - uid: 6972 + - uid: 3809 components: - type: Transform - pos: -44.5,-49.5 + pos: -51.5,-9.5 parent: 2 - - uid: 7007 + - uid: 3838 components: - type: Transform - pos: -45.5,-49.5 + pos: -51.5,-8.5 parent: 2 - - uid: 7086 + - uid: 3840 components: - type: Transform - pos: -46.5,-49.5 + pos: -51.5,-6.5 parent: 2 - - uid: 7100 + - uid: 3842 components: - type: Transform - pos: -47.5,-49.5 + pos: -50.5,-11.5 parent: 2 - - uid: 7111 + - uid: 3845 components: - type: Transform - pos: -48.5,-49.5 + pos: -48.5,-11.5 parent: 2 - - uid: 7193 + - uid: 3850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-42.5 + pos: -46.5,-13.5 parent: 2 - - uid: 7194 + - uid: 3852 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-42.5 + pos: 18.5,13.5 parent: 2 - - uid: 7231 + - uid: 4065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-10.5 + pos: 18.5,12.5 parent: 2 - - uid: 7233 + - uid: 4066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-10.5 + pos: -46.5,-16.5 parent: 2 - - uid: 7234 + - uid: 4177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-8.5 + pos: -46.5,-18.5 parent: 2 - - uid: 7235 + - uid: 4179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-7.5 + pos: -51.5,-18.5 parent: 2 - - uid: 7289 + - uid: 4180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-28.5 + pos: -45.5,-12.5 parent: 2 - - uid: 7310 + - uid: 4185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-42.5 + pos: -51.5,-15.5 parent: 2 - - uid: 7313 + - uid: 4203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-44.5 + pos: -51.5,-32.5 parent: 2 - - uid: 7314 + - uid: 4205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-44.5 + pos: -52.5,-31.5 parent: 2 - - uid: 7315 + - uid: 4206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-44.5 + pos: -52.5,-30.5 parent: 2 - - uid: 7343 + - uid: 4207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-44.5 + pos: -52.5,-29.5 parent: 2 - - uid: 7344 + - uid: 4208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-44.5 + pos: -52.5,-28.5 parent: 2 - - uid: 7345 + - uid: 4210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-60.5 + pos: -52.5,-26.5 parent: 2 - - uid: 7346 + - uid: 4212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-63.5 + pos: -52.5,-23.5 parent: 2 - - uid: 7347 + - uid: 4220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-62.5 + pos: -52.5,-22.5 parent: 2 - - uid: 7348 + - uid: 4223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-61.5 + pos: -43.5,-12.5 parent: 2 - - uid: 7366 + - uid: 4229 components: - type: Transform - pos: -52.5,-63.5 + pos: 50.5,-17.5 parent: 2 - - uid: 7369 + - uid: 4233 components: - type: Transform - pos: -42.5,-63.5 + pos: 49.5,-17.5 parent: 2 - - uid: 7434 + - uid: 4238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-27.5 + pos: 18.5,17.5 parent: 2 - - uid: 7435 + - uid: 4242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-27.5 + pos: 18.5,10.5 parent: 2 - - uid: 7448 + - uid: 4243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-60.5 + pos: 18.5,9.5 parent: 2 - - uid: 7475 + - uid: 4289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-60.5 + pos: 18.5,7.5 parent: 2 - - uid: 7494 + - uid: 4290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-46.5 + pos: 18.5,6.5 parent: 2 - - uid: 7508 + - uid: 4297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,8.5 + pos: 18.5,5.5 parent: 2 - - uid: 7509 + - uid: 4299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,10.5 + pos: 18.5,3.5 parent: 2 - - uid: 7510 + - uid: 4300 components: - type: Transform - pos: 52.5,4.5 + pos: 18.5,2.5 parent: 2 - - uid: 7581 + - uid: 4301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-38.5 + pos: 18.5,1.5 parent: 2 - - uid: 7582 + - uid: 4303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-35.5 + pos: 39.5,1.5 parent: 2 - - uid: 7668 + - uid: 4308 components: - type: Transform - pos: 52.5,1.5 + pos: 40.5,0.5 parent: 2 - - uid: 7669 + - uid: 4350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-39.5 + pos: 40.5,-6.5 parent: 2 - - uid: 7670 + - uid: 4413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-39.5 + pos: 40.5,-8.5 parent: 2 - - uid: 7671 + - uid: 4433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-40.5 + pos: 40.5,-9.5 parent: 2 - - uid: 7700 + - uid: 4435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-44.5 + pos: 40.5,-11.5 parent: 2 - - uid: 7701 + - uid: 4436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-43.5 + pos: 39.5,-11.5 parent: 2 - - uid: 7702 + - uid: 4438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-41.5 + pos: 44.5,-11.5 parent: 2 - - uid: 7703 + - uid: 4440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-46.5 + pos: 44.5,-9.5 parent: 2 - - uid: 7721 + - uid: 4448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-13.5 + pos: 61.5,7.5 parent: 2 - - uid: 7722 + - uid: 4449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-15.5 + pos: 37.5,-5.5 parent: 2 - - uid: 7723 + - uid: 4451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-13.5 + pos: 39.5,-5.5 parent: 2 - - uid: 7724 + - uid: 4452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-21.5 + pos: -15.5,-33.5 parent: 2 - - uid: 7759 + - uid: 4453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-12.5 + pos: 51.5,-17.5 parent: 2 - - uid: 7790 + - uid: 4454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-13.5 + pos: 40.5,-4.5 parent: 2 - - uid: 7795 + - uid: 4457 components: - type: Transform - pos: 27.5,25.5 + pos: -57.5,-23.5 parent: 2 - - uid: 7839 + - uid: 4459 components: - type: Transform - pos: 24.5,25.5 + pos: -57.5,-25.5 parent: 2 - - uid: 7890 + - uid: 4468 components: - type: Transform - pos: -52.5,-37.5 + rot: -1.5707963267948966 rad + pos: -34.5,20.5 parent: 2 - - uid: 7899 + - uid: 4471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-33.5 + rot: -1.5707963267948966 rad + pos: -31.5,20.5 parent: 2 - - uid: 7932 + - uid: 4731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 + pos: -53.5,-30.5 parent: 2 - - uid: 7960 + - uid: 4736 components: - type: Transform - pos: 64.5,13.5 + pos: -55.5,-30.5 parent: 2 - - uid: 7991 + - uid: 4780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,16.5 + pos: -57.5,-30.5 parent: 2 - - uid: 7992 + - uid: 4793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,16.5 + pos: -57.5,-29.5 parent: 2 - - uid: 8005 + - uid: 4808 components: - type: Transform - pos: 25.5,-47.5 + pos: -58.5,-23.5 parent: 2 - - uid: 8006 + - uid: 4815 components: - type: Transform - pos: 26.5,-47.5 + pos: -60.5,-23.5 parent: 2 - - uid: 8009 + - uid: 4836 components: - type: Transform - pos: 27.5,-47.5 + pos: -62.5,-24.5 parent: 2 - - uid: 8017 + - uid: 4859 components: - type: Transform - pos: 28.5,-47.5 + pos: -62.5,-25.5 parent: 2 - - uid: 8087 + - uid: 4861 components: - type: Transform - pos: 26.5,-49.5 + pos: -62.5,-26.5 parent: 2 - - uid: 8163 + - uid: 4898 components: - type: Transform - pos: 25.5,-49.5 + pos: -62.5,-28.5 parent: 2 - - uid: 8199 + - uid: 4901 components: - type: Transform - pos: 28.5,-49.5 + pos: -61.5,-29.5 parent: 2 - - uid: 8204 + - uid: 4902 components: - type: Transform - pos: 27.5,-49.5 + pos: -60.5,-29.5 parent: 2 - - uid: 8205 + - uid: 4904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-45.5 + pos: -58.5,-29.5 parent: 2 - - uid: 8206 + - uid: 4916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-47.5 + pos: -47.5,-11.5 parent: 2 - - uid: 8230 + - uid: 4921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-48.5 + pos: 8.5,24.5 parent: 2 - - uid: 8426 + - uid: 4922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-61.5 + pos: 10.5,25.5 parent: 2 - - uid: 8435 + - uid: 5024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-30.5 + pos: -41.5,15.5 parent: 2 - - uid: 8492 + - uid: 5044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-63.5 + pos: -41.5,17.5 parent: 2 - - uid: 8923 + - uid: 5129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-41.5 + rot: 3.141592653589793 rad + pos: -43.5,14.5 parent: 2 - - uid: 8926 + - uid: 5130 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-45.5 + pos: -16.5,37.5 parent: 2 - - uid: 8927 + - uid: 5133 components: - type: Transform - pos: -6.5,0.5 + pos: -3.5,36.5 parent: 2 - - uid: 8928 + - uid: 5207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-39.5 + pos: 0.5,38.5 parent: 2 - - uid: 8931 + - uid: 5435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-39.5 + pos: 9.5,25.5 parent: 2 - - uid: 8935 + - uid: 5438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-40.5 + pos: 12.5,26.5 parent: 2 - - uid: 8978 + - uid: 5652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-65.5 + rot: 3.141592653589793 rad + pos: 28.5,16.5 parent: 2 - - uid: 8987 + - uid: 5766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-39.5 + pos: 12.5,25.5 parent: 2 - - uid: 9020 + - uid: 5781 components: - type: Transform - pos: -10.5,-41.5 + pos: -21.5,-42.5 parent: 2 - - uid: 9041 + - uid: 5782 components: - type: Transform - pos: -4.5,-42.5 + rot: 3.141592653589793 rad + pos: -11.5,37.5 parent: 2 - - uid: 9043 + - uid: 5790 components: - type: Transform - pos: -5.5,-42.5 + pos: -54.5,-32.5 parent: 2 - - uid: 9099 + - uid: 5792 components: - type: Transform - pos: -6.5,-42.5 + pos: -56.5,-32.5 parent: 2 - - uid: 9185 + - uid: 5798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,28.5 + pos: -27.5,-42.5 parent: 2 - - uid: 9271 + - uid: 5799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-17.5 + pos: -28.5,-42.5 parent: 2 - - uid: 9272 + - uid: 5800 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-17.5 + pos: -33.5,-42.5 parent: 2 - - uid: 10658 + - uid: 5808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,20.5 + pos: -31.5,-42.5 parent: 2 - - uid: 11658 + - uid: 5950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-41.5 + rot: 3.141592653589793 rad + pos: 25.5,16.5 parent: 2 - - uid: 11660 + - uid: 6050 components: - type: Transform - pos: -11.5,-41.5 + pos: -64.5,-23.5 parent: 2 - - uid: 12256 + - uid: 6064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-65.5 + rot: 3.141592653589793 rad + pos: 7.5,38.5 parent: 2 - - uid: 12257 + - uid: 6080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 + pos: -49.5,-33.5 parent: 2 - - uid: 12695 + - uid: 6082 components: - type: Transform - pos: 38.5,-28.5 + pos: -50.5,-35.5 parent: 2 - - uid: 12705 + - uid: 6085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-30.5 + pos: -45.5,-33.5 parent: 2 - - uid: 12805 + - uid: 6095 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-40.5 + pos: 5.5,38.5 parent: 2 - - uid: 12810 + - uid: 6098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-7.5 + pos: -45.5,-34.5 parent: 2 - - uid: 13490 + - uid: 6127 components: - type: Transform - pos: 39.5,-28.5 + pos: -50.5,-33.5 parent: 2 - - uid: 13741 + - uid: 6158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-7.5 + pos: -44.5,-32.5 parent: 2 - - uid: 13965 + - uid: 6484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,19.5 + rot: 3.141592653589793 rad + pos: 29.5,14.5 parent: 2 - - uid: 13981 + - uid: 6485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-64.5 + rot: 3.141592653589793 rad + pos: 29.5,12.5 parent: 2 - - uid: 14245 + - uid: 6489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,31.5 + rot: 3.141592653589793 rad + pos: 29.5,10.5 parent: 2 - - uid: 14260 + - uid: 6493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,16.5 + rot: 3.141592653589793 rad + pos: 32.5,17.5 parent: 2 - - uid: 14705 + - uid: 6496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,37.5 + rot: 3.141592653589793 rad + pos: 32.5,22.5 parent: 2 - - uid: 14786 + - uid: 6498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,12.5 + rot: 3.141592653589793 rad + pos: 31.5,11.5 parent: 2 - - uid: 14953 + - uid: 6499 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-46.5 + pos: 30.5,24.5 parent: 2 - - uid: 14955 + - uid: 6500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,27.5 + rot: 3.141592653589793 rad + pos: 24.5,24.5 parent: 2 - - uid: 14957 + - uid: 6525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,28.5 + rot: 3.141592653589793 rad + pos: 45.5,-2.5 parent: 2 - - uid: 14958 + - uid: 6544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,29.5 + pos: -15.5,-36.5 parent: 2 - - uid: 14961 + - uid: 6553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,32.5 + rot: 3.141592653589793 rad + pos: 46.5,-5.5 parent: 2 - - uid: 14968 + - uid: 6571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,32.5 + rot: 3.141592653589793 rad + pos: 53.5,0.5 parent: 2 - - uid: 14969 + - uid: 6618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,31.5 + rot: 3.141592653589793 rad + pos: 54.5,-2.5 parent: 2 - - uid: 15032 + - uid: 6619 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,32.5 + pos: 56.5,-5.5 parent: 2 - - uid: 15040 + - uid: 6620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,36.5 + rot: 3.141592653589793 rad + pos: 55.5,-5.5 parent: 2 - - uid: 15041 + - uid: 6624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,37.5 + rot: 3.141592653589793 rad + pos: 56.5,-6.5 parent: 2 - - uid: 15042 + - uid: 6627 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,37.5 + pos: 53.5,-5.5 parent: 2 - - uid: 15043 + - uid: 6635 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,39.5 + pos: 53.5,-2.5 parent: 2 - - uid: 15053 + - uid: 6802 components: - type: Transform - pos: -34.5,36.5 + pos: -19.5,16.5 parent: 2 - - uid: 15091 + - uid: 6899 components: - type: Transform - pos: 73.5,4.5 + pos: -20.5,16.5 parent: 2 - - uid: 15193 + - uid: 6936 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-1.5 + pos: 12.5,28.5 parent: 2 - - uid: 15215 + - uid: 6943 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-1.5 - parent: 2 - - uid: 15222 - components: - - type: Transform - pos: 72.5,0.5 + pos: 12.5,31.5 parent: 2 - - uid: 15226 + - uid: 6958 components: - type: Transform - pos: 72.5,-1.5 + pos: 1.5,41.5 parent: 2 - - uid: 15227 + - uid: 6973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-1.5 + pos: -44.5,-35.5 parent: 2 - - uid: 15231 + - uid: 6975 components: - type: Transform - pos: 72.5,4.5 + pos: 45.5,-11.5 parent: 2 - - uid: 15232 + - uid: 6986 components: - type: Transform - pos: 73.5,0.5 + pos: 54.5,-17.5 parent: 2 - - uid: 15233 + - uid: 6987 components: - type: Transform - pos: 73.5,-1.5 + pos: 3.5,41.5 parent: 2 - - uid: 15234 + - uid: 6989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-1.5 + pos: -6.5,41.5 parent: 2 - - uid: 15235 + - uid: 6990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-1.5 + pos: -6.5,44.5 parent: 2 - - uid: 15254 + - uid: 6991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 + pos: 1.5,49.5 parent: 2 - - uid: 15404 + - uid: 6993 components: - type: Transform - pos: -20.5,10.5 + pos: 3.5,49.5 parent: 2 - - uid: 15413 + - uid: 7005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,40.5 + pos: 45.5,-13.5 parent: 2 - - uid: 15602 + - uid: 7014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,1.5 + pos: 12.5,34.5 parent: 2 - - uid: 15843 + - uid: 7024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,34.5 + rot: 1.5707963267948966 rad + pos: 12.5,36.5 parent: 2 - - uid: 15844 + - uid: 7027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,35.5 + pos: 52.5,-17.5 parent: 2 - - uid: 15869 + - uid: 7184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,39.5 + pos: 55.5,-17.5 parent: 2 - - uid: 15875 + - uid: 7229 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,37.5 + pos: 55.5,0.5 parent: 2 - - uid: 15879 + - uid: 7444 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,42.5 + pos: 47.5,-5.5 parent: 2 - - uid: 15880 + - uid: 7456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,42.5 + pos: 58.5,24.5 parent: 2 - - uid: 15881 + - uid: 7465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,42.5 + pos: 62.5,24.5 parent: 2 - - uid: 15882 + - uid: 7469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,40.5 + pos: 49.5,19.5 parent: 2 - - uid: 15887 + - uid: 7471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-43.5 + pos: 48.5,19.5 parent: 2 - - uid: 15954 + - uid: 7473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-44.5 + pos: 66.5,-1.5 parent: 2 - - uid: 15993 + - uid: 7481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-21.5 + rot: 3.141592653589793 rad + pos: 86.5,-14.5 parent: 2 - - uid: 16005 + - uid: 7484 components: - type: Transform - pos: 62.5,28.5 + rot: 3.141592653589793 rad + pos: 86.5,-16.5 parent: 2 - - uid: 16074 + - uid: 7489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,28.5 + rot: 3.141592653589793 rad + pos: 86.5,-17.5 parent: 2 - - uid: 16089 + - uid: 7495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-36.5 + pos: -53.5,-34.5 parent: 2 - - uid: 16097 + - uid: 7496 components: - type: Transform - pos: 66.5,-36.5 + pos: 54.5,21.5 parent: 2 - - uid: 16125 + - uid: 7497 components: - type: Transform - pos: 66.5,-36.5 + pos: 66.5,2.5 parent: 2 - - uid: 16126 + - uid: 7499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-26.5 + pos: 55.5,22.5 parent: 2 - - uid: 16155 + - uid: 7501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-27.5 + pos: 54.5,19.5 parent: 2 - - uid: 16156 + - uid: 7502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-28.5 + pos: -53.5,-35.5 parent: 2 - - uid: 16162 + - uid: 7506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-29.5 + pos: 55.5,24.5 parent: 2 - - uid: 16172 + - uid: 7512 components: - type: Transform - pos: 84.5,-29.5 + rot: 3.141592653589793 rad + pos: 77.5,-8.5 parent: 2 - - uid: 16173 + - uid: 7515 components: - type: Transform - pos: 52.5,-21.5 + pos: 66.5,4.5 parent: 2 - - uid: 16174 + - uid: 7537 components: - type: Transform - pos: 77.5,-7.5 + rot: 3.141592653589793 rad + pos: 80.5,-8.5 parent: 2 - - uid: 16175 + - uid: 7539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-7.5 + rot: 3.141592653589793 rad + pos: 75.5,-23.5 parent: 2 - - uid: 16176 + - uid: 7750 components: - type: Transform - pos: 49.5,23.5 + pos: 56.5,-17.5 parent: 2 - - uid: 16192 + - uid: 7906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,23.5 + pos: -9.5,-35.5 parent: 2 - - uid: 16310 + - uid: 7910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-46.5 + pos: -14.5,-35.5 parent: 2 - - uid: 16311 + - uid: 7920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-46.5 + rot: 1.5707963267948966 rad + pos: -9.5,-37.5 parent: 2 - - uid: 16322 + - uid: 7931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-7.5 + pos: -12.5,-35.5 parent: 2 - - uid: 16323 + - uid: 7950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-5.5 + pos: -8.5,-38.5 parent: 2 - - uid: 16336 + - uid: 7994 components: - type: Transform - pos: -65.5,-33.5 + pos: -8.5,-40.5 parent: 2 - - uid: 16344 + - uid: 8173 components: - type: Transform - pos: -67.5,-33.5 + rot: 3.141592653589793 rad + pos: 52.5,5.5 parent: 2 - - uid: 16385 + - uid: 8176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,33.5 + rot: 3.141592653589793 rad + pos: 54.5,5.5 parent: 2 - - uid: 16386 + - uid: 8178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,41.5 + rot: 3.141592653589793 rad + pos: 56.5,5.5 parent: 2 - - uid: 16393 + - uid: 8179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,40.5 + rot: 3.141592653589793 rad + pos: 58.5,4.5 parent: 2 - - uid: 16404 + - uid: 8180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-34.5 + rot: 3.141592653589793 rad + pos: 58.5,3.5 parent: 2 - - uid: 16428 + - uid: 8181 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-34.5 + pos: 58.5,1.5 parent: 2 - - uid: 16443 + - uid: 8223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-34.5 + pos: 16.5,24.5 parent: 2 - - uid: 16453 + - uid: 8226 components: - type: Transform - pos: 66.5,-34.5 + rot: 3.141592653589793 rad + pos: 81.5,-21.5 parent: 2 - - uid: 16454 + - uid: 8227 components: - type: Transform - pos: -21.5,-47.5 + pos: 15.5,27.5 parent: 2 - - uid: 16474 + - uid: 8229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-63.5 + pos: 13.5,27.5 parent: 2 - - uid: 16515 + - uid: 8231 components: - type: Transform - pos: 19.5,-55.5 + pos: 66.5,-4.5 parent: 2 - - uid: 16528 + - uid: 8233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-36.5 + pos: 17.5,24.5 parent: 2 - - uid: 16536 + - uid: 8234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-3.5 + rot: 3.141592653589793 rad + pos: 80.5,-21.5 parent: 2 - - uid: 16567 + - uid: 8245 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,12.5 + pos: 78.5,-21.5 parent: 2 - - uid: 16568 + - uid: 9147 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,41.5 + pos: 76.5,-21.5 parent: 2 - - uid: 16590 + - uid: 9154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,41.5 + rot: -1.5707963267948966 rad + pos: -32.5,27.5 parent: 2 - - uid: 16638 + - uid: 10988 components: - type: Transform - pos: 80.5,-36.5 + rot: -1.5707963267948966 rad + pos: -32.5,26.5 parent: 2 - - uid: 16662 + - uid: 11059 components: - type: Transform - pos: 44.5,-20.5 + pos: -34.5,-4.5 parent: 2 - - uid: 16663 + - uid: 11655 components: - type: Transform - pos: 43.5,-20.5 + pos: 68.5,-4.5 parent: 2 - - uid: 16683 + - uid: 11656 components: - type: Transform - pos: 82.5,-36.5 + pos: 71.5,-4.5 parent: 2 - - uid: 16684 + - uid: 12571 components: - type: Transform - pos: -29.5,-3.5 + rot: -1.5707963267948966 rad + pos: -32.5,24.5 parent: 2 - - uid: 16685 + - uid: 12603 components: - type: Transform - pos: -23.5,-47.5 + rot: -1.5707963267948966 rad + pos: -32.5,22.5 parent: 2 - - uid: 16686 + - uid: 13177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-13.5 + pos: -34.5,-1.5 parent: 2 - - uid: 16916 + - uid: 13745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-14.5 + pos: -15.5,17.5 parent: 2 - - uid: 17015 + - uid: 13983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-15.5 + pos: -42.5,-32.5 parent: 2 - - uid: 17019 + - uid: 14402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-12.5 + rot: -1.5707963267948966 rad + pos: 10.5,18.5 parent: 2 - - uid: 17031 + - uid: 14695 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-36.5 + pos: 75.5,-30.5 parent: 2 - - uid: 17308 + - uid: 14704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,15.5 + rot: 3.141592653589793 rad + pos: 75.5,-27.5 parent: 2 - - uid: 17325 + - uid: 14862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-64.5 + rot: 3.141592653589793 rad + pos: 75.5,-22.5 parent: 2 - - uid: 17330 + - uid: 14870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,48.5 + rot: -1.5707963267948966 rad + pos: 7.5,18.5 parent: 2 - - uid: 17484 + - uid: 15165 components: - type: Transform - pos: 42.5,-20.5 + rot: 1.5707963267948966 rad + pos: -37.5,-5.5 parent: 2 - - uid: 17504 + - uid: 15173 components: - type: Transform - pos: -17.5,-47.5 + rot: -1.5707963267948966 rad + pos: 11.5,18.5 parent: 2 - - uid: 17513 + - uid: 15201 components: - type: Transform - pos: -19.5,-47.5 + pos: 70.5,-0.5 parent: 2 - - uid: 17537 + - uid: 15203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-27.5 + pos: 67.5,-0.5 parent: 2 - - uid: 17539 + - uid: 15210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-29.5 + pos: 70.5,3.5 parent: 2 - - uid: 18277 + - uid: 15213 components: - type: Transform - pos: -34.5,-3.5 + pos: 67.5,3.5 parent: 2 - - uid: 18992 + - uid: 16085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-27.5 + pos: 59.5,26.5 parent: 2 - - uid: 19740 + - uid: 16150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-31.5 + rot: 3.141592653589793 rad + pos: 75.5,-28.5 parent: 2 - - uid: 19757 + - uid: 16164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-28.5 + rot: 3.141592653589793 rad + pos: 82.5,-8.5 parent: 2 - - uid: 19794 + - uid: 16186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-71.5 + pos: 51.5,19.5 parent: 2 - - uid: 20306 + - uid: 16187 components: - type: Transform - pos: 41.5,-20.5 + rot: 3.141592653589793 rad + pos: 76.5,-30.5 parent: 2 - - uid: 20307 + - uid: 16188 components: - type: Transform - pos: 40.5,-20.5 + rot: 3.141592653589793 rad + pos: 77.5,-30.5 parent: 2 - - uid: 20354 + - uid: 16190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,0.5 + pos: 81.5,-26.5 parent: 2 - - uid: 20355 + - uid: 16345 components: - type: Transform - pos: -6.5,0.5 + rot: 1.5707963267948966 rad + pos: -33.5,-43.5 parent: 2 - - uid: 20395 + - uid: 16350 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,23.5 + pos: 79.5,-30.5 parent: 2 - - uid: 20396 + - uid: 16353 components: - type: Transform - pos: 0.5,25.5 + rot: 3.141592653589793 rad + pos: 81.5,-30.5 parent: 2 - - uid: 20397 + - uid: 16379 components: - type: Transform - pos: 24.5,15.5 + rot: 3.141592653589793 rad + pos: 82.5,-23.5 parent: 2 - - uid: 20515 + - uid: 16380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-39.5 + rot: 3.141592653589793 rad + pos: 82.5,-22.5 parent: 2 - - uid: 20881 + - uid: 16384 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-64.5 + pos: 81.5,-29.5 parent: 2 - - uid: 21185 + - uid: 16388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 + pos: 49.5,20.5 parent: 2 - - uid: 21402 + - uid: 16514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-53.5 + pos: 15.5,33.5 parent: 2 - - uid: 21416 + - uid: 16516 components: - type: Transform - pos: 9.5,-47.5 + pos: 13.5,33.5 parent: 2 - - uid: 21421 + - uid: 17065 components: - type: Transform - pos: 7.5,-47.5 + pos: -23.5,-42.5 parent: 2 - - uid: 21553 + - uid: 17066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-43.5 + pos: -25.5,-42.5 parent: 2 - - uid: 21561 + - uid: 20110 components: - type: Transform - pos: -1.5,-9.5 + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 parent: 2 - - uid: 21562 + - uid: 20297 components: - type: Transform - pos: -0.5,-9.5 + pos: 85.5,-21.5 parent: 2 - - uid: 21563 + - uid: 20300 components: - type: Transform - pos: 0.5,-9.5 + pos: 84.5,-22.5 parent: 2 - - uid: 21564 + - uid: 20791 components: - type: Transform - pos: 1.5,-9.5 + rot: -1.5707963267948966 rad + pos: 7.5,15.5 parent: 2 - - uid: 21565 + - uid: 20907 components: - type: Transform - pos: 2.5,-9.5 + rot: 1.5707963267948966 rad + pos: -15.5,-38.5 parent: 2 - - uid: 21646 + - uid: 20923 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,43.5 + pos: -32.5,-42.5 parent: 2 - - uid: 21752 + - uid: 21035 components: - type: Transform - pos: 47.5,15.5 + pos: 81.5,-32.5 parent: 2 - - uid: 21846 + - uid: 21042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,1.5 + pos: 80.5,-32.5 parent: 2 - - uid: 21847 + - uid: 21940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,1.5 + pos: -29.5,-4.5 parent: 2 - - uid: 21939 +- proto: WallSolidRust + entities: + - uid: 757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-1.5 + pos: -27.5,-43.5 parent: 2 - - uid: 21959 + - uid: 766 components: - type: Transform - pos: -49.5,-49.5 + pos: -25.5,-41.5 parent: 2 - - uid: 21960 + - uid: 2704 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,12.5 + pos: -17.5,10.5 parent: 2 - - uid: 21964 + - uid: 2706 components: - type: Transform - pos: -27.5,12.5 + rot: 1.5707963267948966 rad + pos: 14.5,17.5 parent: 2 - - uid: 21990 + - uid: 2708 components: - type: Transform - pos: -22.5,10.5 + rot: 1.5707963267948966 rad + pos: 15.5,0.5 parent: 2 - - uid: 22034 + - uid: 2709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,10.5 + rot: 1.5707963267948966 rad + pos: 16.5,3.5 parent: 2 - - uid: 22051 + - uid: 2710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,10.5 + rot: 1.5707963267948966 rad + pos: 16.5,5.5 parent: 2 - - uid: 22052 + - uid: 2714 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,10.5 + pos: 16.5,7.5 parent: 2 - - uid: 22053 + - uid: 2717 components: - type: Transform - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 16.5,12.5 parent: 2 - - uid: 22352 + - uid: 2720 components: - type: Transform - pos: 1.5,50.5 + rot: 1.5707963267948966 rad + pos: 15.5,13.5 parent: 2 - - uid: 22366 + - uid: 2721 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,40.5 + pos: 15.5,15.5 parent: 2 - - uid: 22367 + - uid: 2723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 13.5,15.5 parent: 2 - - uid: 22372 + - uid: 2727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 10.5,15.5 parent: 2 - - uid: 22410 + - uid: 2735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,40.5 + rot: 1.5707963267948966 rad + pos: 8.5,15.5 parent: 2 - - uid: 22468 + - uid: 2739 components: - type: Transform - pos: -11.5,22.5 + rot: 1.5707963267948966 rad + pos: 6.5,15.5 parent: 2 - - uid: 22487 + - uid: 2742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-34.5 + rot: 1.5707963267948966 rad + pos: 5.5,15.5 parent: 2 - - uid: 22488 + - uid: 2745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-36.5 + rot: 1.5707963267948966 rad + pos: 1.5,15.5 parent: 2 - - uid: 22502 + - uid: 2749 components: - type: Transform - pos: -10.5,22.5 + rot: 1.5707963267948966 rad + pos: -7.5,15.5 parent: 2 - - uid: 22503 + - uid: 2753 components: - type: Transform - pos: -9.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,15.5 parent: 2 - - uid: 22504 + - uid: 2755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,22.5 + rot: 1.5707963267948966 rad + pos: -14.5,15.5 parent: 2 - - uid: 22505 + - uid: 2757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,22.5 + rot: 1.5707963267948966 rad + pos: -14.5,13.5 parent: 2 - - uid: 22506 + - uid: 2821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,22.5 + rot: 1.5707963267948966 rad + pos: -14.5,10.5 parent: 2 - - uid: 22507 + - uid: 2827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,22.5 + pos: -13.5,-5.5 parent: 2 - - uid: 22508 + - uid: 2829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,22.5 + rot: 1.5707963267948966 rad + pos: -15.5,-10.5 parent: 2 - - uid: 22509 + - uid: 2833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,22.5 + rot: 1.5707963267948966 rad + pos: -16.5,-17.5 parent: 2 - - uid: 22510 + - uid: 2834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,22.5 + pos: -16.5,-18.5 parent: 2 - - uid: 22511 + - uid: 2867 components: - type: Transform - pos: -5.5,22.5 + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 parent: 2 - - uid: 22512 + - uid: 2870 components: - type: Transform - pos: -6.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,-21.5 parent: 2 - - uid: 22513 + - uid: 2876 components: - type: Transform - pos: -7.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,-25.5 parent: 2 - - uid: 22514 + - uid: 2878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,-27.5 parent: 2 - - uid: 22515 + - uid: 2881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,22.5 + rot: 1.5707963267948966 rad + pos: 27.5,0.5 parent: 2 - - uid: 22516 + - uid: 2882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,22.5 + rot: 1.5707963267948966 rad + pos: 26.5,0.5 parent: 2 - - uid: 22517 + - uid: 2883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,22.5 + rot: 1.5707963267948966 rad + pos: 25.5,0.5 parent: 2 - - uid: 22518 + - uid: 2887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,22.5 + rot: 1.5707963267948966 rad + pos: 21.5,0.5 parent: 2 - - uid: 22519 + - uid: 2891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,22.5 + rot: 1.5707963267948966 rad + pos: 19.5,0.5 parent: 2 - - uid: 22520 + - uid: 2893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,22.5 + pos: 17.5,0.5 parent: 2 - - uid: 22521 + - uid: 2897 components: - type: Transform - pos: -13.5,22.5 + rot: 1.5707963267948966 rad + pos: -16.5,-5.5 parent: 2 - - uid: 22522 + - uid: 2909 components: - type: Transform - pos: -14.5,22.5 + rot: -1.5707963267948966 rad + pos: -18.5,6.5 parent: 2 - - uid: 22523 + - uid: 2912 components: - type: Transform - pos: -15.5,22.5 + rot: -1.5707963267948966 rad + pos: -15.5,8.5 parent: 2 - - uid: 22524 + - uid: 2914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,22.5 + rot: 1.5707963267948966 rad + pos: -20.5,-5.5 parent: 2 - - uid: 22525 + - uid: 2916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,30.5 + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 parent: 2 - - uid: 22526 + - uid: 2920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,30.5 + rot: 1.5707963267948966 rad + pos: -17.5,17.5 parent: 2 - - uid: 22527 + - uid: 2922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,30.5 + rot: 1.5707963267948966 rad + pos: -15.5,18.5 parent: 2 - - uid: 22528 + - uid: 2923 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,30.5 + pos: -16.5,-13.5 parent: 2 - - uid: 22529 + - uid: 2924 components: - type: Transform - pos: -8.5,30.5 + rot: 1.5707963267948966 rad + pos: -12.5,18.5 parent: 2 - - uid: 22530 + - uid: 2929 components: - type: Transform - pos: -5.5,30.5 + rot: 1.5707963267948966 rad + pos: -8.5,18.5 parent: 2 - - uid: 22531 + - uid: 2930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,30.5 + rot: 1.5707963267948966 rad + pos: -6.5,18.5 parent: 2 - - uid: 22532 + - uid: 2965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,30.5 + rot: 1.5707963267948966 rad + pos: -0.5,18.5 parent: 2 - - uid: 22533 + - uid: 2970 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,30.5 + pos: 4.5,18.5 parent: 2 - - uid: 22534 + - uid: 2988 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,33.5 + pos: 9.5,18.5 parent: 2 - - uid: 22535 + - uid: 2990 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,33.5 + pos: 12.5,18.5 parent: 2 - - uid: 22536 + - uid: 3024 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,32.5 + pos: -34.5,-7.5 parent: 2 - - uid: 22537 + - uid: 3025 components: - type: Transform - pos: -3.5,32.5 + rot: 1.5707963267948966 rad + pos: 14.5,18.5 parent: 2 - - uid: 22538 + - uid: 3026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,32.5 + rot: 1.5707963267948966 rad + pos: 16.5,-35.5 parent: 2 - - uid: 22539 + - uid: 3036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,33.5 + rot: 1.5707963267948966 rad + pos: 15.5,-34.5 parent: 2 - - uid: 22540 + - uid: 3038 components: - type: Transform - pos: 1.5,54.5 + rot: 1.5707963267948966 rad + pos: 12.5,-34.5 parent: 2 - - uid: 22541 + - uid: 3039 components: - type: Transform - pos: 0.5,54.5 + rot: 1.5707963267948966 rad + pos: 11.5,-34.5 parent: 2 - - uid: 22542 + - uid: 3041 components: - type: Transform - pos: -0.5,54.5 + rot: 1.5707963267948966 rad + pos: 8.5,-34.5 parent: 2 - - uid: 22543 + - uid: 3046 components: - type: Transform - pos: -1.5,54.5 + rot: 1.5707963267948966 rad + pos: 6.5,-32.5 parent: 2 - - uid: 22544 + - uid: 3052 components: - type: Transform - pos: -2.5,54.5 + rot: 1.5707963267948966 rad + pos: -10.5,-32.5 parent: 2 - - uid: 22545 + - uid: 3067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,54.5 + rot: 1.5707963267948966 rad + pos: -23.5,10.5 parent: 2 - - uid: 22546 + - uid: 3071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,49.5 + rot: 1.5707963267948966 rad + pos: -18.5,16.5 parent: 2 - - uid: 22547 + - uid: 3072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,49.5 + pos: -22.5,16.5 parent: 2 - - uid: 22548 + - uid: 3075 components: - type: Transform - pos: 0.5,49.5 + rot: 1.5707963267948966 rad + pos: -23.5,15.5 parent: 2 - - uid: 22549 + - uid: 3077 components: - type: Transform - pos: -0.5,49.5 + rot: 1.5707963267948966 rad + pos: -15.5,10.5 parent: 2 - - uid: 22550 + - uid: 3079 components: - type: Transform - pos: -3.5,49.5 + rot: 1.5707963267948966 rad + pos: -16.5,15.5 parent: 2 - - uid: 22551 + - uid: 3080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,49.5 + rot: 1.5707963267948966 rad + pos: -17.5,13.5 parent: 2 - - uid: 22552 + - uid: 3082 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,49.5 + pos: 44.5,-16.5 parent: 2 - - uid: 22553 + - uid: 3086 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,44.5 + pos: -18.5,-7.5 parent: 2 - - uid: 22554 + - uid: 3087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,44.5 + pos: -20.5,-7.5 parent: 2 - - uid: 22555 + - uid: 3117 components: - type: Transform - pos: 1.5,44.5 + rot: 1.5707963267948966 rad + pos: -17.5,-24.5 parent: 2 - - uid: 22556 + - uid: 3119 components: - type: Transform - pos: -4.5,44.5 + rot: 1.5707963267948966 rad + pos: -20.5,-24.5 parent: 2 - - uid: 22557 + - uid: 3120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,44.5 + rot: 1.5707963267948966 rad + pos: -19.5,-24.5 parent: 2 - - uid: 22558 + - uid: 3125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,44.5 + rot: 1.5707963267948966 rad + pos: -22.5,-24.5 parent: 2 - - uid: 22559 + - uid: 3127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,44.5 + rot: 1.5707963267948966 rad + pos: -21.5,-28.5 parent: 2 - - uid: 22560 + - uid: 3128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,44.5 + rot: 1.5707963267948966 rad + pos: -20.5,-28.5 parent: 2 - - uid: 22561 + - uid: 3130 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,37.5 + pos: -18.5,-28.5 parent: 2 - - uid: 22562 + - uid: 3132 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,42.5 + pos: -14.5,-32.5 parent: 2 - - uid: 22563 + - uid: 3137 components: - type: Transform - pos: -12.5,42.5 + rot: 1.5707963267948966 rad + pos: -21.5,-32.5 parent: 2 - - uid: 22564 + - uid: 3138 components: - type: Transform - pos: -14.5,42.5 + rot: 1.5707963267948966 rad + pos: -20.5,-32.5 parent: 2 - - uid: 22565 + - uid: 3139 components: - type: Transform - pos: -13.5,42.5 + rot: 1.5707963267948966 rad + pos: -26.5,-7.5 parent: 2 - - uid: 22566 + - uid: 3142 components: - type: Transform - pos: -15.5,42.5 + rot: 1.5707963267948966 rad + pos: -26.5,-9.5 parent: 2 - - uid: 22567 + - uid: 3143 components: - type: Transform - pos: -13.5,37.5 + rot: 1.5707963267948966 rad + pos: -26.5,-10.5 parent: 2 - - uid: 22568 + - uid: 3145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,37.5 + rot: 1.5707963267948966 rad + pos: -31.5,-7.5 parent: 2 - - uid: 22569 + - uid: 3148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,42.5 + rot: 1.5707963267948966 rad + pos: -26.5,-16.5 parent: 2 - - uid: 22570 + - uid: 3151 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,40.5 + pos: -26.5,-19.5 parent: 2 - - uid: 22571 + - uid: 3154 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,39.5 + pos: -26.5,-21.5 parent: 2 - - uid: 22572 + - uid: 3157 components: - type: Transform - pos: -17.5,39.5 + rot: 1.5707963267948966 rad + pos: -26.5,-23.5 parent: 2 - - uid: 22573 + - uid: 3163 components: - type: Transform - pos: -9.5,41.5 + rot: 1.5707963267948966 rad + pos: -29.5,-36.5 parent: 2 - - uid: 22574 + - uid: 3164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,41.5 + rot: 1.5707963267948966 rad + pos: -26.5,-32.5 parent: 2 - - uid: 22575 + - uid: 3171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,41.5 + rot: 1.5707963267948966 rad + pos: -27.5,21.5 parent: 2 - - uid: 22576 + - uid: 3196 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,41.5 + pos: -27.5,10.5 parent: 2 - - uid: 22577 + - uid: 3197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,39.5 + rot: 1.5707963267948966 rad + pos: -26.5,22.5 parent: 2 - - uid: 22578 + - uid: 3201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,39.5 + rot: 1.5707963267948966 rad + pos: -22.5,22.5 parent: 2 - - uid: 22579 + - uid: 3202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,39.5 + rot: 1.5707963267948966 rad + pos: -21.5,22.5 parent: 2 - - uid: 22580 + - uid: 3205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,39.5 + pos: -17.5,22.5 parent: 2 - - uid: 22581 + - uid: 3209 components: - type: Transform - pos: -25.5,39.5 + rot: 1.5707963267948966 rad + pos: 16.5,22.5 parent: 2 - - uid: 22582 + - uid: 3214 components: - type: Transform - pos: -26.5,39.5 + rot: 1.5707963267948966 rad + pos: 11.5,22.5 parent: 2 - - uid: 22583 + - uid: 3215 components: - type: Transform - pos: -27.5,39.5 + rot: 1.5707963267948966 rad + pos: 10.5,22.5 parent: 2 - - uid: 22584 + - uid: 3217 components: - type: Transform - pos: -28.5,39.5 + rot: 1.5707963267948966 rad + pos: 8.5,22.5 parent: 2 - - uid: 22585 + - uid: 3219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,39.5 + rot: 1.5707963267948966 rad + pos: -27.5,-5.5 parent: 2 - - uid: 22586 + - uid: 3220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,39.5 + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 parent: 2 - - uid: 22587 + - uid: 3221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,39.5 + rot: 1.5707963267948966 rad + pos: -34.5,-11.5 parent: 2 - - uid: 22588 + - uid: 3226 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,39.5 + pos: -32.5,-5.5 parent: 2 - - uid: 22589 + - uid: 3230 components: - type: Transform - pos: -22.5,39.5 + rot: 1.5707963267948966 rad + pos: -36.5,-5.5 parent: 2 - - uid: 22590 + - uid: 3233 components: - type: Transform - pos: -34.5,30.5 + rot: 1.5707963267948966 rad + pos: -40.5,-5.5 parent: 2 - - uid: 22591 + - uid: 3238 components: - type: Transform - pos: -35.5,30.5 + rot: 1.5707963267948966 rad + pos: -29.5,10.5 parent: 2 - - uid: 22592 + - uid: 3243 components: - type: Transform - pos: -37.5,30.5 + rot: 1.5707963267948966 rad + pos: -34.5,10.5 parent: 2 - - uid: 22593 + - uid: 3248 components: - type: Transform - pos: -38.5,30.5 + rot: 1.5707963267948966 rad + pos: -42.5,10.5 parent: 2 - - uid: 22594 + - uid: 3252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,30.5 + rot: 1.5707963267948966 rad + pos: -42.5,8.5 parent: 2 - - uid: 22595 + - uid: 3261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,30.5 + rot: 1.5707963267948966 rad + pos: -40.5,-1.5 parent: 2 - - uid: 22596 + - uid: 3277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,30.5 + rot: 1.5707963267948966 rad + pos: -35.5,13.5 parent: 2 - - uid: 22597 + - uid: 3299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,30.5 + rot: 1.5707963267948966 rad + pos: -35.5,17.5 parent: 2 - - uid: 22598 + - uid: 3300 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,30.5 + pos: -35.5,18.5 parent: 2 - - uid: 22599 + - uid: 3307 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,30.5 + pos: -31.5,18.5 parent: 2 - - uid: 22600 + - uid: 3311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,30.5 + rot: 1.5707963267948966 rad + pos: -29.5,18.5 parent: 2 - - uid: 22601 + - uid: 3312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,30.5 + rot: 1.5707963267948966 rad + pos: -28.5,18.5 parent: 2 - - uid: 22602 + - uid: 3317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,29.5 + rot: 1.5707963267948966 rad + pos: -39.5,14.5 parent: 2 - - uid: 22603 + - uid: 3320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,29.5 + pos: -39.5,11.5 parent: 2 - - uid: 22604 + - uid: 3327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,28.5 + pos: -28.5,20.5 parent: 2 - - uid: 22605 + - uid: 3332 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,27.5 + pos: -42.5,-5.5 parent: 2 - - uid: 22606 + - uid: 3338 components: - type: Transform - pos: -40.5,27.5 + rot: 1.5707963267948966 rad + pos: -37.5,-7.5 parent: 2 - - uid: 22607 + - uid: 3339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-3.5 + rot: 1.5707963267948966 rad + pos: -39.5,-7.5 parent: 2 - - uid: 22608 + - uid: 3343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -29.5,-11.5 parent: 2 - - uid: 22609 + - uid: 3346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -30.5,-9.5 parent: 2 - - uid: 22610 + - uid: 3348 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-2.5 + pos: -34.5,-9.5 parent: 2 - - uid: 22611 + - uid: 3353 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-3.5 + pos: -38.5,-11.5 parent: 2 - - uid: 22612 + - uid: 3357 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-3.5 + pos: -41.5,-7.5 parent: 2 - - uid: 22613 + - uid: 3362 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-2.5 + pos: -40.5,-11.5 parent: 2 - - uid: 22614 + - uid: 3365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-2.5 + rot: 1.5707963267948966 rad + pos: -39.5,-13.5 parent: 2 - - uid: 22615 + - uid: 3368 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-0.5 + pos: -31.5,-16.5 parent: 2 - - uid: 22616 + - uid: 3370 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-2.5 + pos: -35.5,-16.5 parent: 2 - - uid: 22617 + - uid: 3372 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,0.5 + pos: -38.5,-16.5 parent: 2 - - uid: 22618 + - uid: 3373 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,1.5 + pos: -40.5,-16.5 parent: 2 - - uid: 22619 + - uid: 3377 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,2.5 + pos: -40.5,-18.5 parent: 2 - - uid: 22620 + - uid: 3380 components: - type: Transform - pos: -55.5,0.5 + rot: 1.5707963267948966 rad + pos: -40.5,-21.5 parent: 2 - - uid: 22621 + - uid: 3382 components: - type: Transform - pos: -56.5,-0.5 + rot: 1.5707963267948966 rad + pos: -35.5,-18.5 parent: 2 - - uid: 22622 + - uid: 3384 components: - type: Transform - pos: -57.5,-0.5 + rot: 1.5707963267948966 rad + pos: -30.5,-21.5 parent: 2 - - uid: 22623 + - uid: 3388 components: - type: Transform - pos: -56.5,-2.5 + rot: 1.5707963267948966 rad + pos: -34.5,-21.5 parent: 2 - - uid: 22624 + - uid: 3391 components: - type: Transform - pos: -57.5,-2.5 + rot: 1.5707963267948966 rad + pos: -35.5,-20.5 parent: 2 - - uid: 22625 + - uid: 3392 components: - type: Transform - pos: -56.5,3.5 + rot: 1.5707963267948966 rad + pos: -36.5,-21.5 parent: 2 - - uid: 22626 + - uid: 3396 components: - type: Transform - pos: -57.5,3.5 + rot: 1.5707963267948966 rad + pos: -43.5,-6.5 parent: 2 - - uid: 22627 + - uid: 3402 components: - type: Transform - pos: -56.5,5.5 + rot: 1.5707963267948966 rad + pos: -42.5,-13.5 parent: 2 - - uid: 22628 + - uid: 3403 components: - type: Transform - pos: -57.5,5.5 + rot: 1.5707963267948966 rad + pos: -42.5,-15.5 parent: 2 - - uid: 22629 + - uid: 3406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,3.5 + rot: 1.5707963267948966 rad + pos: -42.5,-17.5 parent: 2 - - uid: 22630 + - uid: 3408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,5.5 + rot: 1.5707963267948966 rad + pos: -42.5,-19.5 parent: 2 - - uid: 22631 + - uid: 3410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-0.5 + rot: 1.5707963267948966 rad + pos: -42.5,-21.5 parent: 2 - - uid: 22632 + - uid: 3411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-2.5 + rot: 1.5707963267948966 rad + pos: -42.5,-23.5 parent: 2 - - uid: 22633 + - uid: 3413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,0.5 + rot: 1.5707963267948966 rad + pos: -39.5,-23.5 parent: 2 - - uid: 22634 + - uid: 3418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,1.5 + rot: 1.5707963267948966 rad + pos: -36.5,-23.5 parent: 2 - - uid: 22635 + - uid: 3421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,2.5 + rot: 1.5707963267948966 rad + pos: -32.5,-23.5 parent: 2 - - uid: 22636 + - uid: 3426 components: - type: Transform - pos: -49.5,-5.5 + rot: 1.5707963267948966 rad + pos: -28.5,-23.5 parent: 2 - - uid: 22637 + - uid: 3431 components: - type: Transform - pos: -50.5,-5.5 + rot: 1.5707963267948966 rad + pos: -28.5,-34.5 parent: 2 - - uid: 22638 + - uid: 3433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-5.5 + rot: 1.5707963267948966 rad + pos: -30.5,-34.5 parent: 2 - - uid: 22639 + - uid: 3434 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-5.5 + rot: 1.5707963267948966 rad + pos: -31.5,-34.5 parent: 2 - - uid: 22640 + - uid: 3439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-5.5 + rot: 1.5707963267948966 rad + pos: -37.5,-34.5 parent: 2 - - uid: 22641 + - uid: 3443 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-5.5 + rot: 1.5707963267948966 rad + pos: -41.5,-34.5 parent: 2 - - uid: 22642 + - uid: 3445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-5.5 + rot: 1.5707963267948966 rad + pos: -39.5,-34.5 parent: 2 - - uid: 22643 + - uid: 3448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-5.5 + rot: 1.5707963267948966 rad + pos: -29.5,-40.5 parent: 2 - - uid: 22644 + - uid: 3450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-5.5 + rot: 1.5707963267948966 rad + pos: -25.5,-40.5 parent: 2 - - uid: 22645 + - uid: 3456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-18.5 + rot: 1.5707963267948966 rad + pos: -23.5,-40.5 parent: 2 - - uid: 22646 + - uid: 3482 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-18.5 + pos: 86.5,-11.5 parent: 2 - - uid: 22647 + - uid: 3492 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-18.5 + pos: -21.5,-10.5 parent: 2 - - uid: 22648 + - uid: 3573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-18.5 + pos: -20.5,-42.5 parent: 2 - - uid: 22649 + - uid: 3618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-16.5 + rot: 1.5707963267948966 rad + pos: -17.5,-40.5 parent: 2 - - uid: 22650 + - uid: 3687 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-16.5 + pos: -17.5,-37.5 parent: 2 - - uid: 22651 + - uid: 3691 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-17.5 + pos: -17.5,-33.5 parent: 2 - - uid: 22652 + - uid: 3692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-18.5 + pos: -30.5,-40.5 parent: 2 - - uid: 22653 + - uid: 3750 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-18.5 + pos: -33.5,-40.5 parent: 2 - - uid: 22654 + - uid: 3754 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-18.5 + pos: -34.5,-37.5 parent: 2 - - uid: 22655 + - uid: 3756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-18.5 + rot: 1.5707963267948966 rad + pos: -33.5,-35.5 parent: 2 - - uid: 22656 + - uid: 3766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-18.5 + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 parent: 2 - - uid: 22657 + - uid: 3767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-18.5 + rot: 1.5707963267948966 rad + pos: -51.5,-4.5 parent: 2 - - uid: 22658 + - uid: 3769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-17.5 + rot: 1.5707963267948966 rad + pos: -44.5,-9.5 parent: 2 - - uid: 22659 + - uid: 3783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-16.5 + rot: 1.5707963267948966 rad + pos: -49.5,-9.5 parent: 2 - - uid: 22660 + - uid: 3839 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,-29.5 + pos: -51.5,-7.5 parent: 2 - - uid: 22661 + - uid: 3841 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,-27.5 + pos: -51.5,-11.5 parent: 2 - - uid: 22662 + - uid: 3843 components: - type: Transform - pos: -66.5,-29.5 + rot: 1.5707963267948966 rad + pos: -46.5,-11.5 parent: 2 - - uid: 22663 + - uid: 3844 components: - type: Transform - pos: -65.5,-29.5 + rot: 1.5707963267948966 rad + pos: 18.5,14.5 parent: 2 - - uid: 22664 + - uid: 3846 components: - type: Transform - pos: -67.5,-29.5 + rot: 1.5707963267948966 rad + pos: -49.5,-11.5 parent: 2 - - uid: 22665 + - uid: 3848 components: - type: Transform - pos: -67.5,-27.5 + rot: 1.5707963267948966 rad + pos: -51.5,-13.5 parent: 2 - - uid: 22666 + - uid: 3849 components: - type: Transform - pos: -66.5,-27.5 + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 parent: 2 - - uid: 22667 + - uid: 4067 components: - type: Transform - pos: -65.5,-27.5 + rot: 1.5707963267948966 rad + pos: -46.5,-17.5 parent: 2 - - uid: 22668 + - uid: 4178 components: - type: Transform - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -51.5,-14.5 parent: 2 - - uid: 22669 + - uid: 4187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -43.5,-32.5 parent: 2 - - uid: 22670 + - uid: 4204 components: - type: Transform - pos: -53.5,-22.5 + rot: 1.5707963267948966 rad + pos: -52.5,-32.5 parent: 2 - - uid: 22671 + - uid: 4209 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -52.5,-27.5 parent: 2 - - uid: 22672 + - uid: 4211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-22.5 + rot: 1.5707963267948966 rad + pos: -46.5,-15.5 parent: 2 - - uid: 22673 + - uid: 4224 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-22.5 + pos: -55.5,-22.5 parent: 2 - - uid: 22674 + - uid: 4234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-30.5 + rot: 1.5707963267948966 rad + pos: 48.5,-17.5 parent: 2 - - uid: 22675 + - uid: 4235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-30.5 + rot: 1.5707963267948966 rad + pos: 16.5,18.5 parent: 2 - - uid: 22676 + - uid: 4236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-30.5 + rot: 1.5707963267948966 rad + pos: 17.5,18.5 parent: 2 - - uid: 22677 + - uid: 4237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-25.5 + rot: 1.5707963267948966 rad + pos: 18.5,18.5 parent: 2 - - uid: 22678 + - uid: 4239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-25.5 + rot: 1.5707963267948966 rad + pos: 27.5,1.5 parent: 2 - - uid: 22679 + - uid: 4240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-25.5 + rot: 1.5707963267948966 rad + pos: -50.5,-32.5 parent: 2 - - uid: 22680 + - uid: 4241 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-25.5 + pos: 18.5,11.5 parent: 2 - - uid: 22681 + - uid: 4262 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-30.5 + pos: 18.5,8.5 parent: 2 - - uid: 22682 + - uid: 4298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-30.5 + rot: 1.5707963267948966 rad + pos: 18.5,4.5 parent: 2 - - uid: 22683 + - uid: 4304 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-25.5 + pos: -35.5,20.5 parent: 2 - - uid: 22684 + - uid: 4378 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-29.5 + pos: -16.5,-11.5 parent: 2 - - uid: 22685 + - uid: 4412 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-29.5 + pos: 40.5,-7.5 parent: 2 - - uid: 22686 + - uid: 4434 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-30.5 + pos: 40.5,-10.5 parent: 2 - - uid: 22687 + - uid: 4439 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-31.5 + pos: 44.5,-10.5 parent: 2 - - uid: 22688 + - uid: 4455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-26.5 + pos: -44.5,-12.5 parent: 2 - - uid: 22689 + - uid: 4456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-24.5 + pos: -57.5,-22.5 parent: 2 - - uid: 22690 + - uid: 4458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-25.5 - parent: 2 - - uid: 22691 - components: - - type: Transform - pos: -41.5,-26.5 + pos: -57.5,-24.5 parent: 2 - - uid: 22692 + - uid: 4469 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-24.5 + rot: -1.5707963267948966 rad + pos: -33.5,20.5 parent: 2 - - uid: 22693 + - uid: 4470 components: - type: Transform - pos: -41.5,-31.5 + rot: -1.5707963267948966 rad + pos: -32.5,20.5 parent: 2 - - uid: 22694 + - uid: 4487 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-30.5 + pos: -57.5,-26.5 parent: 2 - - uid: 22695 + - uid: 4496 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-31.5 + pos: -57.5,-28.5 parent: 2 - - uid: 22696 + - uid: 4628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-26.5 + pos: -21.5,16.5 parent: 2 - - uid: 22697 + - uid: 4734 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-25.5 + pos: -54.5,-30.5 parent: 2 - - uid: 22698 + - uid: 4740 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 2 - - uid: 22699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-24.5 + pos: -56.5,-30.5 parent: 2 - - uid: 22700 + - uid: 4810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-24.5 + rot: 1.5707963267948966 rad + pos: -59.5,-23.5 parent: 2 - - uid: 22701 + - uid: 4834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-25.5 + rot: 1.5707963267948966 rad + pos: -61.5,-23.5 parent: 2 - - uid: 22702 + - uid: 4835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-26.5 + rot: 1.5707963267948966 rad + pos: -62.5,-23.5 parent: 2 - - uid: 22703 + - uid: 4860 components: - type: Transform - pos: -26.5,-26.5 + rot: 1.5707963267948966 rad + pos: -62.5,-27.5 parent: 2 - - uid: 22704 + - uid: 4900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-12.5 + rot: 1.5707963267948966 rad + pos: -62.5,-29.5 parent: 2 - - uid: 22705 + - uid: 4903 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -59.5,-29.5 parent: 2 - - uid: 22706 + - uid: 4923 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-13.5 + pos: 11.5,25.5 parent: 2 - - uid: 22707 + - uid: 4924 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-14.5 + pos: 8.5,25.5 parent: 2 - - uid: 22708 + - uid: 5023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-15.5 + rot: 3.141592653589793 rad + pos: -41.5,14.5 parent: 2 - - uid: 22709 + - uid: 5025 components: - type: Transform - pos: -22.5,-15.5 + pos: -41.5,16.5 parent: 2 - - uid: 22710 + - uid: 5123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-28.5 + rot: 3.141592653589793 rad + pos: -42.5,14.5 parent: 2 - - uid: 22711 + - uid: 5131 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-28.5 + pos: -15.5,37.5 parent: 2 - - uid: 22712 + - uid: 5138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-28.5 + pos: 0.5,36.5 parent: 2 - - uid: 22713 + - uid: 5443 components: - type: Transform - pos: -33.5,-37.5 + rot: 1.5707963267948966 rad + pos: 12.5,27.5 parent: 2 - - uid: 22714 + - uid: 5458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-37.5 + pos: -20.5,-41.5 parent: 2 - - uid: 22715 + - uid: 5783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-37.5 + pos: -22.5,-42.5 parent: 2 - - uid: 22716 + - uid: 5786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-46.5 + pos: -3.5,38.5 parent: 2 - - uid: 22717 + - uid: 5791 components: - type: Transform - pos: -29.5,-46.5 + pos: -55.5,-32.5 parent: 2 - - uid: 22718 + - uid: 5797 components: - type: Transform - pos: -30.5,-46.5 + pos: -58.5,-32.5 parent: 2 - - uid: 22719 + - uid: 5801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-46.5 + rot: 1.5707963267948966 rad + pos: -34.5,-42.5 parent: 2 - - uid: 22720 + - uid: 5805 components: - type: Transform - pos: -50.5,-49.5 + pos: -59.5,-32.5 parent: 2 - - uid: 22721 + - uid: 5806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-49.5 + pos: -64.5,-26.5 parent: 2 - - uid: 22722 + - uid: 5807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-49.5 + pos: -29.5,-42.5 parent: 2 - - uid: 22723 + - uid: 5912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-49.5 + rot: -1.5707963267948966 rad + pos: -18.5,8.5 parent: 2 - - uid: 22724 + - uid: 5913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-49.5 + rot: -1.5707963267948966 rad + pos: -13.5,8.5 parent: 2 - - uid: 22725 + - uid: 6061 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-49.5 + pos: 9.5,38.5 parent: 2 - - uid: 22726 + - uid: 6062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-49.5 + rot: -1.5707963267948966 rad + pos: -32.5,21.5 parent: 2 - - uid: 22727 + - uid: 6083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-49.5 + rot: 1.5707963267948966 rad + pos: -44.5,-33.5 parent: 2 - - uid: 22728 + - uid: 6084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-60.5 + pos: -49.5,-34.5 parent: 2 - - uid: 22729 + - uid: 6094 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-44.5 + pos: 6.5,38.5 parent: 2 - - uid: 22730 + - uid: 6139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-44.5 + rot: 3.141592653589793 rad + pos: 4.5,38.5 parent: 2 - - uid: 22731 + - uid: 6151 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-42.5 + pos: -45.5,-35.5 parent: 2 - - uid: 22732 + - uid: 6463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-42.5 + rot: 3.141592653589793 rad + pos: 29.5,15.5 parent: 2 - - uid: 22733 + - uid: 6483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-44.5 + rot: 3.141592653589793 rad + pos: 29.5,13.5 parent: 2 - - uid: 22734 + - uid: 6492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-44.5 + rot: 3.141592653589793 rad + pos: 29.5,9.5 parent: 2 - - uid: 22735 + - uid: 6497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-42.5 + rot: 3.141592653589793 rad + pos: 29.5,11.5 parent: 2 - - uid: 22736 + - uid: 6501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-42.5 + rot: 3.141592653589793 rad + pos: 29.5,16.5 parent: 2 - - uid: 22737 + - uid: 6504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-44.5 + rot: 3.141592653589793 rad + pos: 27.5,24.5 parent: 2 - - uid: 22738 + - uid: 6505 components: - type: Transform - pos: -50.5,-44.5 + rot: 3.141592653589793 rad + pos: 48.5,6.5 parent: 2 - - uid: 22739 + - uid: 6519 components: - type: Transform - pos: -51.5,-44.5 + rot: 1.5707963267948966 rad + pos: -15.5,-35.5 parent: 2 - - uid: 22740 + - uid: 6530 components: - type: Transform - pos: -52.5,-44.5 + rot: 3.141592653589793 rad + pos: 46.5,-2.5 parent: 2 - - uid: 22741 + - uid: 6552 components: - type: Transform - pos: -53.5,-44.5 + rot: 3.141592653589793 rad + pos: 45.5,-5.5 parent: 2 - - uid: 22742 + - uid: 6570 components: - type: Transform - pos: -54.5,-44.5 + rot: 3.141592653589793 rad + pos: 52.5,0.5 parent: 2 - - uid: 22743 + - uid: 6574 components: - type: Transform - pos: -54.5,-42.5 + rot: 3.141592653589793 rad + pos: 54.5,0.5 parent: 2 - - uid: 22744 + - uid: 6610 components: - type: Transform - pos: -53.5,-42.5 + rot: 1.5707963267948966 rad + pos: -15.5,-37.5 parent: 2 - - uid: 22745 + - uid: 6621 components: - type: Transform - pos: -52.5,-42.5 + rot: 3.141592653589793 rad + pos: 54.5,-5.5 parent: 2 - - uid: 22746 + - uid: 6625 components: - type: Transform - pos: -51.5,-42.5 + rot: 3.141592653589793 rad + pos: 56.5,-7.5 parent: 2 - - uid: 22747 + - uid: 6636 components: - type: Transform - pos: -50.5,-42.5 + rot: 3.141592653589793 rad + pos: 55.5,-2.5 parent: 2 - - uid: 22748 + - uid: 6918 components: - type: Transform - pos: -44.5,-42.5 + rot: 3.141592653589793 rad + pos: 86.5,-13.5 parent: 2 - - uid: 22749 + - uid: 6937 components: - type: Transform - pos: -43.5,-42.5 + pos: 47.5,19.5 parent: 2 - - uid: 22750 + - uid: 6939 components: - type: Transform - pos: -42.5,-42.5 + rot: 3.141592653589793 rad + pos: 12.5,29.5 parent: 2 - - uid: 22751 + - uid: 6951 components: - type: Transform - pos: -41.5,-42.5 + pos: 12.5,33.5 parent: 2 - - uid: 22752 + - uid: 6957 components: - type: Transform - pos: -40.5,-42.5 + pos: 3.5,44.5 parent: 2 - - uid: 22753 + - uid: 6969 components: - type: Transform - pos: -40.5,-44.5 + rot: 1.5707963267948966 rad + pos: -49.5,-35.5 parent: 2 - - uid: 22754 + - uid: 6985 components: - type: Transform - pos: -41.5,-44.5 + rot: 1.5707963267948966 rad + pos: 53.5,-17.5 parent: 2 - - uid: 22755 + - uid: 6988 components: - type: Transform - pos: -42.5,-44.5 + pos: -4.5,41.5 parent: 2 - - uid: 22756 + - uid: 6992 components: - type: Transform - pos: -43.5,-44.5 + pos: 2.5,49.5 parent: 2 - - uid: 22757 + - uid: 7002 components: - type: Transform - pos: -44.5,-44.5 + pos: 39.5,0.5 parent: 2 - - uid: 22758 + - uid: 7003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-61.5 + pos: 40.5,-5.5 parent: 2 - - uid: 22759 + - uid: 7004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-62.5 + pos: 35.5,-4.5 parent: 2 - - uid: 22760 + - uid: 7079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-63.5 + pos: 12.5,37.5 parent: 2 - - uid: 22761 + - uid: 7258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-63.5 + rot: 3.141592653589793 rad + pos: 47.5,-2.5 parent: 2 - - uid: 22762 + - uid: 7272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-62.5 + pos: 56.5,24.5 parent: 2 - - uid: 22763 + - uid: 7288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-61.5 + rot: 1.5707963267948966 rad + pos: 56.5,-16.5 parent: 2 - - uid: 22764 + - uid: 7457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-60.5 + pos: 59.5,24.5 parent: 2 - - uid: 22765 + - uid: 7458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-60.5 + pos: 60.5,24.5 parent: 2 - - uid: 22766 + - uid: 7467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-61.5 + pos: 66.5,-0.5 parent: 2 - - uid: 22767 + - uid: 7468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-62.5 + pos: 46.5,19.5 parent: 2 - - uid: 22768 + - uid: 7470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-63.5 + pos: 50.5,19.5 parent: 2 - - uid: 22769 + - uid: 7472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,0.5 + pos: 66.5,0.5 parent: 2 - - uid: 22770 + - uid: 7480 components: - type: Transform - pos: -66.5,-33.5 + pos: -54.5,-34.5 parent: 2 - - uid: 22771 + - uid: 7482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-33.5 + rot: 3.141592653589793 rad + pos: 86.5,-15.5 parent: 2 - - uid: 22772 + - uid: 7483 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-33.5 + pos: 86.5,-12.5 parent: 2 - - uid: 22773 + - uid: 7485 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-33.5 + pos: 86.5,-18.5 parent: 2 - - uid: 22774 + - uid: 7486 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-33.5 + pos: 86.5,-21.5 parent: 2 - - uid: 22775 + - uid: 7487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-33.5 + rot: 3.141592653589793 rad + pos: 86.5,-19.5 parent: 2 - - uid: 22776 + - uid: 7490 components: - type: Transform - pos: -60.5,-35.5 + rot: 3.141592653589793 rad + pos: 86.5,-22.5 parent: 2 - - uid: 22777 + - uid: 7491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-35.5 + pos: -33.5,-5.5 parent: 2 - - uid: 22778 + - uid: 7492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-34.5 + pos: -40.5,8.5 parent: 2 - - uid: 22779 + - uid: 7498 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-34.5 + pos: 54.5,22.5 parent: 2 - - uid: 22780 + - uid: 7500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-34.5 + pos: 54.5,20.5 parent: 2 - - uid: 22781 + - uid: 7505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-35.5 + pos: 66.5,3.5 parent: 2 - - uid: 22782 + - uid: 7511 components: - type: Transform - pos: -54.5,-33.5 + pos: -53.5,-36.5 parent: 2 - - uid: 22783 + - uid: 7535 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-33.5 + pos: 78.5,-8.5 parent: 2 - - uid: 22784 + - uid: 7536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-33.5 + rot: 3.141592653589793 rad + pos: 79.5,-8.5 parent: 2 - - uid: 22785 + - uid: 7538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,8.5 + pos: 53.5,19.5 parent: 2 - - uid: 22786 + - uid: 7774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,8.5 + rot: 1.5707963267948966 rad + pos: -8.5,-33.5 parent: 2 - - uid: 22787 + - uid: 7909 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,8.5 + pos: -13.5,-35.5 parent: 2 - - uid: 22788 + - uid: 7941 components: - type: Transform - pos: -48.5,8.5 + pos: 35.5,-5.5 parent: 2 - - uid: 22789 + - uid: 7993 components: - type: Transform - pos: -49.5,8.5 + rot: 1.5707963267948966 rad + pos: -8.5,-39.5 parent: 2 - - uid: 22790 + - uid: 8172 components: - type: Transform - pos: -50.5,8.5 + rot: 3.141592653589793 rad + pos: 52.5,6.5 parent: 2 - - uid: 22791 + - uid: 8175 components: - type: Transform - pos: -46.5,8.5 + rot: 3.141592653589793 rad + pos: 53.5,5.5 parent: 2 - - uid: 22792 + - uid: 8177 components: - type: Transform - pos: -45.5,8.5 + rot: 3.141592653589793 rad + pos: 55.5,5.5 parent: 2 - - uid: 22793 + - uid: 8210 components: - type: Transform - pos: -44.5,8.5 + pos: 66.5,6.5 parent: 2 - - uid: 22794 + - uid: 8224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,8.5 + rot: 3.141592653589793 rad + pos: 82.5,-21.5 parent: 2 - - uid: 22795 + - uid: 8228 components: - type: Transform - pos: -48.5,14.5 + rot: 1.5707963267948966 rad + pos: 14.5,27.5 parent: 2 - - uid: 22796 + - uid: 8232 components: - type: Transform - pos: -49.5,14.5 + pos: 67.5,-4.5 parent: 2 - - uid: 22797 + - uid: 8236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,14.5 + pos: 36.5,-5.5 parent: 2 - - uid: 22798 + - uid: 8244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,14.5 + pos: 38.5,-5.5 parent: 2 - - uid: 22799 + - uid: 9140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,14.5 + pos: 69.5,-4.5 parent: 2 - - uid: 22800 + - uid: 9149 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,14.5 + pos: 75.5,-21.5 parent: 2 - - uid: 22801 + - uid: 9150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,14.5 + rot: -1.5707963267948966 rad + pos: -32.5,29.5 parent: 2 - - uid: 22802 + - uid: 9151 components: - type: Transform - pos: 12.5,40.5 + rot: -1.5707963267948966 rad + pos: -32.5,28.5 parent: 2 - - uid: 22803 + - uid: 9162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,40.5 + pos: -40.5,5.5 parent: 2 - - uid: 22804 + - uid: 9170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,41.5 + rot: 3.141592653589793 rad + pos: 77.5,-21.5 parent: 2 - - uid: 22805 + - uid: 9442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,41.5 + pos: -13.5,4.5 parent: 2 - - uid: 22806 + - uid: 10585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,40.5 + rot: 3.141592653589793 rad + pos: 52.5,-24.5 parent: 2 - - uid: 22807 + - uid: 11653 components: - type: Transform - pos: 10.5,40.5 + pos: 70.5,-4.5 parent: 2 - - uid: 22808 + - uid: 11661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,40.5 + pos: 66.5,-3.5 parent: 2 - - uid: 22809 + - uid: 11662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,41.5 + rot: 3.141592653589793 rad + pos: 79.5,-21.5 parent: 2 - - uid: 22810 + - uid: 12110 components: - type: Transform - pos: 14.5,33.5 + rot: -1.5707963267948966 rad + pos: -15.5,4.5 parent: 2 - - uid: 22811 + - uid: 12572 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,33.5 + pos: -32.5,23.5 parent: 2 - - uid: 22812 + - uid: 13175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,33.5 + pos: -32.5,-1.5 parent: 2 - - uid: 22813 + - uid: 13176 components: - type: Transform - pos: 21.5,22.5 + pos: -29.5,-1.5 parent: 2 - - uid: 22814 + - uid: 13238 components: - type: Transform - pos: 20.5,22.5 + rot: 3.141592653589793 rad + pos: -34.5,-5.5 parent: 2 - - uid: 22815 + - uid: 14001 components: - type: Transform - pos: 19.5,22.5 + pos: -11.5,-35.5 parent: 2 - - uid: 22816 + - uid: 14002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,22.5 + pos: -10.5,-35.5 parent: 2 - - uid: 22817 + - uid: 14717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,20.5 + rot: 3.141592653589793 rad + pos: 75.5,-29.5 parent: 2 - - uid: 22818 + - uid: 14871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,19.5 + pos: 6.5,18.5 parent: 2 - - uid: 22819 + - uid: 14910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,20.5 + rot: 3.141592653589793 rad + pos: -41.5,12.5 parent: 2 - - uid: 22820 + - uid: 15202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,19.5 + pos: 69.5,-0.5 parent: 2 - - uid: 22821 + - uid: 15204 components: - type: Transform - pos: 22.5,19.5 + pos: 68.5,-0.5 parent: 2 - - uid: 22822 + - uid: 15211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,26.5 + pos: 69.5,3.5 parent: 2 - - uid: 22823 + - uid: 15212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,25.5 + pos: 68.5,3.5 parent: 2 - - uid: 22824 + - uid: 16084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,26.5 + pos: 59.5,25.5 parent: 2 - - uid: 22825 + - uid: 16086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,26.5 + pos: 59.5,27.5 parent: 2 - - uid: 22826 + - uid: 16151 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,26.5 + pos: 75.5,-24.5 parent: 2 - - uid: 22827 + - uid: 16163 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,26.5 + pos: 12.5,32.5 parent: 2 - - uid: 22828 + - uid: 16168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,26.5 + pos: -36.5,-42.5 parent: 2 - - uid: 22829 + - uid: 16185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,25.5 + rot: 3.141592653589793 rad + pos: 81.5,-8.5 parent: 2 - - uid: 22830 + - uid: 16189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,26.5 + pos: 75.5,-26.5 parent: 2 - - uid: 22831 + - uid: 16313 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,25.5 + pos: -33.5,-45.5 parent: 2 - - uid: 22832 + - uid: 16315 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,26.5 + pos: -33.5,-44.5 parent: 2 - - uid: 22833 + - uid: 16349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,25.5 + rot: 3.141592653589793 rad + pos: 78.5,-30.5 parent: 2 - - uid: 22834 + - uid: 16352 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,23.5 + pos: 80.5,-30.5 parent: 2 - - uid: 22835 + - uid: 16377 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,23.5 + pos: 81.5,-24.5 parent: 2 - - uid: 22836 + - uid: 16378 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,23.5 + pos: 82.5,-24.5 parent: 2 - - uid: 22837 + - uid: 16382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,23.5 + rot: 3.141592653589793 rad + pos: 81.5,-27.5 parent: 2 - - uid: 22838 + - uid: 16383 components: - type: Transform - pos: 38.5,19.5 + rot: 3.141592653589793 rad + pos: 81.5,-28.5 parent: 2 - - uid: 22839 + - uid: 16387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,19.5 + pos: 49.5,21.5 parent: 2 - - uid: 22840 + - uid: 16615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,19.5 + pos: -40.5,4.5 parent: 2 - - uid: 22841 + - uid: 16750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,19.5 + pos: -29.5,8.5 parent: 2 - - uid: 22842 + - uid: 16751 components: - type: Transform - pos: 32.5,19.5 + pos: -34.5,8.5 parent: 2 - - uid: 22843 + - uid: 16752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,19.5 + pos: -35.5,8.5 parent: 2 - - uid: 22844 + - uid: 17527 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,19.5 + rot: -1.5707963267948966 rad + pos: -18.5,4.5 parent: 2 - - uid: 22845 + - uid: 20291 components: - type: Transform - pos: 32.5,14.5 + pos: -24.5,-42.5 parent: 2 - - uid: 22846 + - uid: 20298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,14.5 + pos: 84.5,-21.5 parent: 2 - - uid: 22847 + - uid: 20793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,15.5 + rot: 3.141592653589793 rad + pos: 8.5,18.5 parent: 2 - - uid: 22848 + - uid: 20875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,15.5 + pos: 59.5,-1.5 parent: 2 - - uid: 22849 + - uid: 20888 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,15.5 + pos: -51.5,7.5 parent: 2 - - uid: 22850 + - uid: 21036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,14.5 + pos: 83.5,-32.5 parent: 2 - - uid: 22851 + - uid: 21388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,10.5 + pos: -19.5,-40.5 parent: 2 - - uid: 22852 +- proto: WallWood + entities: + - uid: 3459 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,10.5 + pos: -16.5,-1.5 parent: 2 - - uid: 22853 + - uid: 3460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,10.5 + rot: 3.141592653589793 rad + pos: -15.5,-1.5 parent: 2 - - uid: 22854 + - uid: 3461 components: - type: Transform - pos: 45.5,10.5 + rot: 3.141592653589793 rad + pos: -13.5,-1.5 parent: 2 - - uid: 22855 + - uid: 3462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,10.5 + pos: -26.5,-35.5 parent: 2 - - uid: 22856 + - uid: 3493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,10.5 + pos: -19.5,-22.5 parent: 2 - - uid: 22857 + - uid: 3497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,16.5 + pos: -20.5,-11.5 parent: 2 - - uid: 22858 + - uid: 3498 components: - type: Transform - pos: 27.5,16.5 + pos: -19.5,-23.5 parent: 2 - - uid: 22859 + - uid: 4175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,16.5 + pos: -19.5,-21.5 parent: 2 - - uid: 22863 + - uid: 4261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,8.5 + pos: -21.5,-21.5 parent: 2 - - uid: 22864 + - uid: 4263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,10.5 + pos: -22.5,-11.5 parent: 2 - - uid: 22865 + - uid: 4264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,10.5 + pos: -17.5,-21.5 parent: 2 - - uid: 22866 + - uid: 4380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,8.5 + pos: -22.5,-16.5 parent: 2 - - uid: 22867 + - uid: 4381 components: - type: Transform - pos: 52.5,8.5 + pos: -22.5,-22.5 parent: 2 - - uid: 22868 + - uid: 4382 components: - type: Transform - pos: 52.5,10.5 + pos: -22.5,-20.5 parent: 2 - - uid: 22869 + - uid: 4462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,1.5 + pos: -22.5,-21.5 parent: 2 - - uid: 22870 + - uid: 4576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,4.5 + pos: -17.5,-16.5 parent: 2 - - uid: 22871 + - uid: 4995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,4.5 + pos: -19.5,-16.5 parent: 2 - - uid: 22872 + - uid: 5029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,1.5 + pos: -17.5,-11.5 parent: 2 - - uid: 22873 + - uid: 5685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,1.5 + pos: -21.5,-11.5 parent: 2 - - uid: 22874 + - uid: 6088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,4.5 + pos: -19.5,-11.5 parent: 2 - - uid: 22890 + - uid: 6125 components: - type: Transform - pos: 38.5,1.5 + pos: -21.5,-16.5 parent: 2 - - uid: 22891 + - uid: 7420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-0.5 + pos: -22.5,-23.5 parent: 2 - - uid: 22892 + - uid: 7550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 + pos: -22.5,-19.5 parent: 2 - - uid: 22893 + - uid: 8348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-2.5 + pos: -20.5,-16.5 parent: 2 - - uid: 22894 + - uid: 17092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-0.5 + pos: 68.5,-54.5 parent: 2 - - uid: 22895 + - uid: 17192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 + pos: 68.5,-55.5 parent: 2 - - uid: 22896 + - uid: 17193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-1.5 + pos: 68.5,-51.5 parent: 2 - - uid: 22897 + - uid: 17194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-2.5 + pos: 68.5,-50.5 parent: 2 - - uid: 22898 + - uid: 17214 components: - type: Transform - pos: 40.5,-2.5 + rot: 3.141592653589793 rad + pos: 64.5,-51.5 parent: 2 - - uid: 22899 + - uid: 17226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,1.5 + pos: 64.5,-55.5 parent: 2 - - uid: 22900 + - uid: 17228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,1.5 + pos: 64.5,-50.5 parent: 2 - - uid: 22901 + - uid: 17233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,1.5 + pos: 67.5,-50.5 parent: 2 - - uid: 22902 + - uid: 17237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,1.5 + pos: 64.5,-54.5 parent: 2 - - uid: 22903 + - uid: 17239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,1.5 + pos: 68.5,-53.5 parent: 2 - - uid: 22910 + - uid: 17240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 65.5,-55.5 parent: 2 - - uid: 22911 + - uid: 17241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 + pos: 66.5,-55.5 parent: 2 - - uid: 22912 + - uid: 17244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 + pos: 67.5,-55.5 parent: 2 - - uid: 22913 + - uid: 17245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-7.5 + pos: 68.5,-52.5 parent: 2 - - uid: 22914 +- proto: WardrobeBlackFilled + entities: + - uid: 16465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-7.5 + pos: -59.5,-33.5 parent: 2 - - uid: 22915 +- proto: WardrobeBotanistFilled + entities: + - uid: 14631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 + pos: -38.5,12.5 parent: 2 - - uid: 22916 +- proto: WardrobeCargoFilled + entities: + - uid: 5748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-4.5 + pos: 25.5,17.5 parent: 2 - - uid: 22917 +- proto: WardrobeGreyFilled + entities: + - uid: 16245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 76.5,-29.5 parent: 2 - - uid: 22918 + - uid: 16246 components: - type: Transform - pos: 44.5,-4.5 + pos: 77.5,-29.5 parent: 2 - - uid: 22919 + - uid: 16247 components: - type: Transform - pos: 44.5,-7.5 + pos: 79.5,-29.5 parent: 2 - - uid: 22920 + - uid: 16248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-6.5 + pos: 80.5,-29.5 parent: 2 - - uid: 22921 +- proto: WardrobePrisonFilled + entities: + - uid: 1709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-3.5 + pos: -11.5,23.5 parent: 2 - - uid: 22922 + - uid: 4789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-15.5 + pos: -15.5,23.5 parent: 2 - - uid: 22923 + - uid: 4795 components: - type: Transform - pos: 57.5,-15.5 + pos: -7.5,23.5 parent: 2 - - uid: 22924 + - uid: 5243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-15.5 + pos: -6.5,43.5 parent: 2 - - uid: 22925 + - uid: 5244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-13.5 + pos: 3.5,43.5 parent: 2 - - uid: 22926 +- proto: WardrobeWhiteFilled + entities: + - uid: 3464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-13.5 + pos: -27.5,-10.5 parent: 2 - - uid: 22927 +- proto: WarningCO2 + entities: + - uid: 3465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-13.5 + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 parent: 2 - - uid: 22928 +- proto: WarningN2 + entities: + - uid: 3466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-13.5 + rot: -1.5707963267948966 rad + pos: 18.5,-1.5 parent: 2 - - uid: 22929 +- proto: WarningO2 + entities: + - uid: 3467 components: - type: Transform - pos: 62.5,-13.5 + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 parent: 2 - - uid: 22930 +- proto: WarningPlasma + entities: + - uid: 3468 components: - type: Transform - pos: 66.5,-13.5 + rot: -1.5707963267948966 rad + pos: 24.5,-1.5 parent: 2 - - uid: 22949 +- proto: WarningWaste + entities: + - uid: 3469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-12.5 + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 parent: 2 - - uid: 22950 + - uid: 3470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-12.5 + rot: -1.5707963267948966 rad + pos: 26.5,-1.5 parent: 2 - - uid: 22951 +- proto: WarpPoint + entities: + - uid: 20936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-13.5 - parent: 2 - - uid: 22952 + pos: 8.5,-3.5 + parent: 21128 + - type: WarpPoint + location: Unknown shuttle +- proto: WarpPointBombing + entities: + - uid: 13731 components: - type: Transform - pos: 72.5,-13.5 + pos: -18.5,1.5 parent: 2 - - uid: 22953 + - type: WarpPoint + location: Bar + - uid: 13732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-25.5 + pos: -2.5,24.5 parent: 2 - - uid: 22954 + - type: WarpPoint + location: Security + - uid: 13733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-25.5 + pos: -1.5,47.5 parent: 2 - - uid: 22955 + - type: WarpPoint + location: Perma + - uid: 13734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-25.5 + pos: 27.5,20.5 parent: 2 - - uid: 22956 + - type: WarpPoint + location: Cargo + - uid: 13735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-26.5 + pos: 44.5,8.5 parent: 2 - - uid: 22957 + - type: WarpPoint + location: Medical + - uid: 13736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-27.5 + pos: -1.5,-22.5 parent: 2 - - uid: 22958 + - type: WarpPoint + location: Engineering + - uid: 13737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-28.5 + pos: 40.5,-35.5 parent: 2 - - uid: 22959 + - type: WarpPoint + location: Bridge + - uid: 13738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-29.5 + pos: -32.5,-13.5 parent: 2 - - uid: 22960 + - type: WarpPoint + location: Dorms + - uid: 13739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-12.5 + pos: -48.5,1.5 parent: 2 - - uid: 22961 + - type: WarpPoint + location: Evacuation +- proto: WaterCooler + entities: + - uid: 3471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-12.5 + pos: 4.5,-17.5 parent: 2 - - uid: 22962 + - uid: 3472 components: - type: Transform - pos: 93.5,-15.5 + pos: 21.5,-18.5 parent: 2 - - uid: 22963 + - uid: 5603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-15.5 + pos: 31.5,10.5 parent: 2 - - uid: 22964 + - uid: 8266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-14.5 + pos: -3.5,21.5 parent: 2 - - uid: 22965 +- proto: WaterTankFull + entities: + - uid: 60 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-13.5 + pos: 58.5,-25.5 parent: 2 - - uid: 22966 + - uid: 5162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-21.5 + anchored: True + pos: -3.5,50.5 parent: 2 - - uid: 22967 + - type: Physics + bodyType: Static + - uid: 7619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-21.5 + pos: 19.5,-35.5 parent: 2 - - uid: 22968 + - uid: 14675 components: - type: Transform - pos: 64.5,-21.5 + pos: -20.5,31.5 parent: 2 - - uid: 22969 + - uid: 14678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-33.5 + pos: 17.5,17.5 parent: 2 - - uid: 22970 + - uid: 14679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-33.5 + pos: -13.5,-10.5 parent: 2 - - uid: 22971 + - uid: 14681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-33.5 + pos: -14.5,-33.5 parent: 2 - - uid: 22972 + - uid: 14685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-33.5 + pos: 5.5,-41.5 parent: 2 - - uid: 22973 + - uid: 14686 components: - type: Transform - pos: 70.5,-33.5 + pos: 73.5,-20.5 parent: 2 - - uid: 22974 + - uid: 14689 components: - type: Transform - pos: 69.5,-33.5 + pos: 65.5,-3.5 parent: 2 - - uid: 22975 + - uid: 14690 components: - type: Transform - pos: 68.5,-33.5 + pos: 49.5,17.5 parent: 2 - - uid: 22976 + - uid: 14693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-33.5 + pos: -11.5,17.5 parent: 2 - - uid: 22977 + - uid: 14694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-34.5 + pos: 3.5,38.5 parent: 2 - - uid: 22978 + - uid: 14718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-35.5 + pos: 45.5,-9.5 parent: 2 - - uid: 22979 + - uid: 14735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-34.5 + pos: 39.5,-6.5 parent: 2 - - uid: 22980 + - uid: 15758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-35.5 + pos: 67.5,0.5 parent: 2 - - uid: 22981 + - uid: 21571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-34.5 + pos: 34.5,-2.5 parent: 2 - - uid: 22982 +- proto: WaterTankHighCapacity + entities: + - uid: 3475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-34.5 + pos: -13.5,-22.5 parent: 2 - - uid: 22983 + - uid: 15394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-34.5 + pos: -28.5,17.5 parent: 2 - - uid: 22984 +- proto: WaterVaporCanister + entities: + - uid: 3477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-35.5 + pos: 22.5,-2.5 parent: 2 - - uid: 22985 + - uid: 3478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-34.5 + pos: 24.5,-17.5 parent: 2 - - uid: 22986 +- proto: WeaponCapacitorRecharger + entities: + - uid: 4590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-35.5 + rot: 3.141592653589793 rad + pos: 39.5,-28.5 parent: 2 - - uid: 22987 + - uid: 4972 components: - type: Transform - pos: 73.5,-35.5 + pos: 5.5,25.5 parent: 2 - - uid: 22988 + - uid: 5294 components: - type: Transform - pos: 71.5,-35.5 + rot: -1.5707963267948966 rad + pos: -8.5,31.5 parent: 2 - - uid: 22989 + - uid: 7621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-36.5 + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 parent: 2 - - uid: 22990 + - uid: 13590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-36.5 + pos: 37.5,-32.5 parent: 2 - - uid: 22991 +- proto: WeaponDisabler + entities: + - uid: 5154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-36.5 + pos: -8.829058,31.720768 parent: 2 - - uid: 22992 +- proto: WeaponLaserCarbine + entities: + - uid: 5093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-36.5 + pos: 3.539238,33.610504 parent: 2 - - uid: 22993 + - uid: 5094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-36.5 + pos: 3.539238,33.43863 parent: 2 - - uid: 22994 + - uid: 20341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-36.5 + pos: 3.53751,33.53506 parent: 2 - - uid: 22995 +- proto: WeaponShotgunEnforcer + entities: + - uid: 1957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-22.5 + pos: 2.550524,33.364468 parent: 2 - - uid: 22996 +- proto: WeaponShotgunKammerer + entities: + - uid: 5091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-22.5 + pos: 2.523613,33.586533 parent: 2 - - uid: 22997 + - uid: 7564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-22.5 + pos: 2.5417395,33.683712 parent: 2 - - uid: 22998 + - uid: 20305 components: - type: Transform - pos: 42.5,-22.5 + pos: 2.553135,33.488186 parent: 2 - - uid: 22999 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 5081 components: - type: Transform - pos: 41.5,-22.5 + pos: -11.600864,32.694817 parent: 2 - - uid: 23000 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 853 components: - type: Transform - pos: 40.5,-22.5 + pos: 9.5,-44.5 parent: 2 - - uid: 23001 + - uid: 8171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-22.5 + pos: 7.5,-44.5 parent: 2 - - uid: 23002 + - uid: 20391 components: - type: Transform - pos: 44.5,-22.5 + pos: 16.5,42.5 parent: 2 - - uid: 23003 + - uid: 20392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-27.5 + pos: 16.5,39.5 parent: 2 - - uid: 23004 + - uid: 21060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-27.5 + pos: -34.5,-45.5 parent: 2 - - uid: 23005 + - uid: 22109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-27.5 + pos: 16.5,-67.5 parent: 2 - - uid: 23006 + - uid: 22140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-27.5 + pos: 22.5,-67.5 parent: 2 - - uid: 23007 + - uid: 22145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-27.5 + pos: 22.5,-74.5 parent: 2 - - uid: 23008 + - uid: 22170 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-27.5 + pos: 16.5,-74.5 parent: 2 - - uid: 23009 +- proto: WeaponWaterPistol + entities: + - uid: 20287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-27.5 + pos: 57.375835,-1.3271363 parent: 2 - - uid: 23010 + - uid: 20288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-27.5 + pos: 57.594585,-1.5146363 parent: 2 - - uid: 23011 +- proto: Welder + entities: + - uid: 3479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-27.5 + pos: -7.5141225,-25.4744 parent: 2 - - uid: 23012 +- proto: WelderIndustrial + entities: + - uid: 17640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-30.5 + pos: 17.592184,-17.644693 parent: 2 - - uid: 23013 +- proto: WeldingFuelTankFull + entities: + - uid: 3481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-30.5 + pos: 16.5,-13.5 parent: 2 - - uid: 23014 + - uid: 7618 components: - type: Transform - pos: 30.5,-30.5 + pos: 19.5,-36.5 parent: 2 - - uid: 23015 + - uid: 8161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-39.5 + pos: 33.5,-2.5 parent: 2 - - uid: 23016 + - uid: 12468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-39.5 + pos: 58.5,-26.5 parent: 2 - - uid: 23017 + - uid: 13648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-39.5 + pos: -13.5,-11.5 parent: 2 - - uid: 23018 + - uid: 14676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-39.5 + pos: -19.5,31.5 parent: 2 - - uid: 23019 + - uid: 14677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-39.5 + pos: 17.5,1.5 parent: 2 - - uid: 23020 + - uid: 14682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-39.5 + pos: -13.5,-33.5 parent: 2 - - uid: 23021 + - uid: 14683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-39.5 + pos: 21.5,-40.5 parent: 2 - - uid: 23022 + - uid: 14684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-39.5 + pos: 5.5,-42.5 parent: 2 - - uid: 23023 + - uid: 14687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-39.5 + pos: 73.5,-21.5 parent: 2 - - uid: 23024 + - uid: 14688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-39.5 + pos: 65.5,-4.5 parent: 2 - - uid: 23025 + - uid: 14691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-39.5 + pos: 50.5,17.5 parent: 2 - - uid: 23026 + - uid: 14692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-39.5 + pos: -12.5,17.5 parent: 2 - - uid: 23027 + - uid: 14719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-39.5 + pos: 45.5,-10.5 parent: 2 - - uid: 23028 + - uid: 14734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-39.5 + pos: 39.5,-7.5 parent: 2 - - uid: 23029 + - uid: 15853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-39.5 + pos: 69.5,6.5 parent: 2 - - uid: 23030 + - uid: 16753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-39.5 + pos: -3.5,-21.5 parent: 2 - - uid: 23031 +- proto: Windoor + entities: + - uid: 3483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-39.5 + pos: -6.5,-28.5 parent: 2 - - uid: 23032 + - uid: 3484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-39.5 + pos: -5.5,-28.5 parent: 2 - - uid: 23033 + - uid: 3485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-39.5 + pos: 20.5,-23.5 parent: 2 - - uid: 23052 + - uid: 3486 components: - type: Transform - pos: 30.5,-13.5 + pos: 21.5,-23.5 parent: 2 - - uid: 23053 + - uid: 3487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 + pos: 39.5,-20.5 parent: 2 - - uid: 23054 + - uid: 3488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 + pos: 45.5,-20.5 parent: 2 - - uid: 23055 + - uid: 3489 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-7.5 + pos: 43.5,-22.5 parent: 2 - - uid: 23056 + - uid: 3494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-7.5 + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 parent: 2 - - uid: 23057 + - uid: 3495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 + pos: -16.5,-28.5 parent: 2 - - uid: 23058 + - uid: 3496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 + pos: -15.5,-28.5 parent: 2 - - uid: 23059 + - uid: 4764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-7.5 + rot: -1.5707963267948966 rad + pos: 0.5,23.5 parent: 2 - - uid: 23060 + - uid: 4765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-7.5 + rot: -1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - - uid: 23061 + - uid: 5149 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-7.5 + pos: -5.5,44.5 parent: 2 - - uid: 23062 + - uid: 5150 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-7.5 + pos: 2.5,44.5 parent: 2 - - uid: 23063 + - uid: 5448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 - - uid: 23064 + - uid: 5449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-7.5 + rot: -1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - - uid: 23065 + - uid: 6034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 + pos: 42.5,10.5 parent: 2 - - uid: 23066 + - uid: 6035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + pos: 46.5,10.5 parent: 2 - - uid: 23067 + - uid: 7152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 + pos: 58.5,-15.5 parent: 2 - - uid: 23068 + - uid: 7153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 + pos: 59.5,-15.5 parent: 2 - - uid: 23069 + - uid: 7154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-10.5 + pos: 60.5,-15.5 parent: 2 - - uid: 23070 + - uid: 15022 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-7.5 + pos: -34.5,21.5 parent: 2 - - uid: 23071 + - uid: 16397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-8.5 + pos: 53.5,22.5 parent: 2 - - uid: 23072 + - uid: 16912 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-9.5 + pos: 14.5,37.5 parent: 2 - - uid: 23073 + - uid: 16941 components: + - type: MetaData + name: Theatre windoor - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-10.5 + pos: -37.5,4.5 parent: 2 - - uid: 23074 + - uid: 18471 components: + - type: MetaData + name: Theatre windoor - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-11.5 + rot: -1.5707963267948966 rad + pos: -29.5,4.5 parent: 2 - - uid: 23075 + - uid: 20921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-12.5 + rot: 3.141592653589793 rad + pos: 89.5,-17.5 parent: 2 - - uid: 23076 + - uid: 20922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-13.5 + rot: 3.141592653589793 rad + pos: 90.5,-17.5 parent: 2 - - uid: 23077 +- proto: WindoorHydroponicsLocked + entities: + - uid: 3499 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-9.5 + pos: -27.5,13.5 parent: 2 - - uid: 23078 + - uid: 3500 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-16.5 + pos: -27.5,14.5 parent: 2 - - uid: 23079 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 14242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-16.5 + pos: -19.5,10.5 parent: 2 - - uid: 23080 +- proto: WindoorKitchenLocked + entities: + - uid: 3501 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-16.5 + pos: -23.5,13.5 parent: 2 - - uid: 23081 + - uid: 3502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-16.5 + pos: -23.5,14.5 parent: 2 - - uid: 23082 +- proto: WindoorSecure + entities: + - uid: 3505 components: - type: Transform - pos: 26.5,-16.5 + rot: 1.5707963267948966 rad + pos: -31.5,-29.5 parent: 2 - - uid: 23083 + - uid: 3506 components: - type: Transform - pos: 30.5,-16.5 + rot: 1.5707963267948966 rad + pos: -31.5,-28.5 parent: 2 - - uid: 23091 + - uid: 7933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-34.5 + rot: 1.5707963267948966 rad + pos: -10.5,-38.5 parent: 2 - - uid: 23092 + - uid: 16324 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-34.5 + pos: 80.5,-6.5 parent: 2 - - uid: 23093 + - uid: 17182 components: - type: Transform - pos: 19.5,-34.5 + rot: 3.141592653589793 rad + pos: 66.5,-50.5 parent: 2 - - uid: 23094 + - uid: 17229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-49.5 + rot: 3.141592653589793 rad + pos: 65.5,-50.5 parent: 2 - - uid: 23095 + - uid: 17258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-47.5 + pos: -33.5,-2.5 parent: 2 - - uid: 23096 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 21184: + - DoorStatus: DoorBolt + - uid: 21184 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-47.5 + pos: -33.5,-1.5 parent: 2 - - uid: 23097 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 17258: + - DoorStatus: DoorBolt + - uid: 21321 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-47.5 + pos: 80.5,-24.5 parent: 2 - - uid: 23098 + - uid: 22489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-47.5 + rot: -1.5707963267948966 rad + pos: 64.5,-35.5 parent: 2 - - uid: 23099 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 4751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-47.5 + rot: 1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - - uid: 23100 + - uid: 4763 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-47.5 + pos: 0.5,23.5 parent: 2 - - uid: 23101 + - uid: 5082 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-49.5 + pos: 2.5,32.5 parent: 2 - - uid: 23102 + - uid: 5083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-49.5 + pos: 3.5,33.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: 5.5,33.5 parent: 2 - - uid: 23103 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 3507 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-49.5 + pos: 20.5,-23.5 parent: 2 - - uid: 23104 + - uid: 3508 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-49.5 + pos: 21.5,-23.5 parent: 2 - - uid: 23105 + - uid: 3509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-45.5 + pos: 19.5,-22.5 parent: 2 - - uid: 23106 +- proto: WindoorSecureBrigLocked + entities: + - uid: 4421 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-49.5 + pos: -43.5,-15.5 parent: 2 - - uid: 23107 + - uid: 4497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-45.5 + pos: -47.5,-15.5 parent: 2 - - uid: 23108 +- proto: WindoorSecureCargoLocked + entities: + - uid: 5445 components: - type: Transform - pos: 11.5,-45.5 + rot: 1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 - - uid: 23109 + - uid: 5447 components: - type: Transform - pos: 14.5,-45.5 + rot: 1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - - uid: 23110 + - uid: 5450 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-45.5 + pos: 25.5,12.5 parent: 2 - - uid: 23111 +- proto: WindoorSecureChapelLocked + entities: + - uid: 3510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-45.5 + rot: 1.5707963267948966 rad + pos: -26.5,-39.5 parent: 2 - - uid: 23112 + - uid: 3511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-63.5 + pos: -32.5,-37.5 parent: 2 - - uid: 23113 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 6036 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-61.5 + pos: 42.5,10.5 parent: 2 - - uid: 23114 + - uid: 6037 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-63.5 + pos: 46.5,10.5 parent: 2 - - uid: 23115 + - uid: 8862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-63.5 + pos: 46.5,15.5 parent: 2 - - uid: 23116 + - uid: 18993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-64.5 + rot: 3.141592653589793 rad + pos: 44.5,10.5 parent: 2 - - uid: 23117 +- proto: WindoorSecureCommandLocked + entities: + - uid: 1943 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-65.5 + pos: 14.5,-64.5 parent: 2 - - uid: 23118 + - uid: 1945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-61.5 + pos: 8.5,-47.5 parent: 2 - - uid: 23119 + - uid: 4571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-63.5 + rot: -1.5707963267948966 rad + pos: 38.5,-29.5 parent: 2 - - uid: 23120 + - uid: 7436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-64.5 + rot: 3.141592653589793 rad + pos: 70.5,-27.5 parent: 2 - - uid: 23121 + - uid: 7437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-65.5 + rot: 3.141592653589793 rad + pos: 69.5,-27.5 parent: 2 - - uid: 23122 + - uid: 7974 components: - type: Transform - pos: 13.5,-65.5 + pos: 12.5,-45.5 parent: 2 - - uid: 23123 + - uid: 7975 components: - type: Transform - pos: 19.5,-61.5 + pos: 13.5,-45.5 parent: 2 - - uid: 23124 + - uid: 20900 components: - type: Transform - pos: 25.5,-65.5 + rot: 1.5707963267948966 rad + pos: 14.5,-65.5 parent: 2 - - uid: 23125 + - uid: 20901 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-55.5 + pos: 23.5,-53.5 parent: 2 - - uid: 23126 + - uid: 22049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-55.5 + rot: -1.5707963267948966 rad + pos: 18.5,-72.5 parent: 2 - - uid: 23127 + - uid: 22050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-55.5 + pos: 20.5,-72.5 parent: 2 - - uid: 23128 +- proto: WindoorSecureDetectiveLocked + entities: + - uid: 17488 components: - type: Transform - pos: 19.5,-71.5 + pos: -24.5,28.5 parent: 2 - - uid: 23129 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 3512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-71.5 + rot: 1.5707963267948966 rad + pos: -7.5,-22.5 parent: 2 - - uid: 23130 + - uid: 3513 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-71.5 - parent: 2 - - uid: 23131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-32.5 + pos: -5.5,-28.5 parent: 2 - - uid: 23132 + - uid: 3514 components: - type: Transform - pos: -3.5,-32.5 + rot: 3.141592653589793 rad + pos: -6.5,-28.5 parent: 2 - - uid: 23133 + - uid: 3515 components: - type: Transform - pos: -4.5,-32.5 + pos: -7.5,-27.5 parent: 2 - - uid: 23134 + - uid: 15163 components: - type: Transform - pos: -5.5,-32.5 + rot: -1.5707963267948966 rad + pos: -24.5,34.5 parent: 2 - - uid: 23135 + - uid: 15164 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-32.5 + pos: -24.5,35.5 parent: 2 - - uid: 23136 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 3516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-28.5 + pos: 43.5,-22.5 parent: 2 - - uid: 23137 + - uid: 7603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-28.5 - parent: 2 - - uid: 23138 - components: - - type: Transform - pos: 0.5,-28.5 + pos: 22.5,-37.5 parent: 2 - - uid: 23139 + - uid: 7604 components: - type: Transform - pos: -0.5,-28.5 + rot: 1.5707963267948966 rad + pos: 22.5,-36.5 parent: 2 - - uid: 23140 +- proto: WindoorSecureJanitorLocked + entities: + - uid: 3517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 + rot: 3.141592653589793 rad + pos: -16.5,-28.5 parent: 2 - - uid: 23141 + - uid: 3518 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-24.5 + pos: -15.5,-28.5 parent: 2 - - uid: 23142 + - uid: 4460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-24.5 + rot: 1.5707963267948966 rad + pos: -22.5,-27.5 parent: 2 - - uid: 23143 + - uid: 20314 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-24.5 + pos: -22.5,-26.5 parent: 2 - - uid: 23144 + - uid: 20315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-20.5 + rot: 1.5707963267948966 rad + pos: -22.5,-25.5 parent: 2 - - uid: 23145 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 4676 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-20.5 + pos: 54.5,1.5 parent: 2 - - uid: 23146 + - uid: 5773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-20.5 + pos: 46.5,3.5 parent: 2 - - uid: 23147 + - uid: 5979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-20.5 + rot: -1.5707963267948966 rad + pos: 44.5,2.5 parent: 2 - - uid: 23148 + - uid: 5980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-20.5 + rot: -1.5707963267948966 rad + pos: 44.5,3.5 parent: 2 - - uid: 23149 + - uid: 5981 components: - type: Transform - pos: -3.5,-20.5 + rot: -1.5707963267948966 rad + pos: 44.5,1.5 parent: 2 - - uid: 23150 + - uid: 6905 components: - type: Transform - pos: -4.5,-20.5 + pos: 59.5,18.5 parent: 2 - - uid: 23151 + - uid: 6960 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-20.5 + pos: 58.5,19.5 parent: 2 - - uid: 23152 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 5542 components: - type: Transform - pos: 1.5,-10.5 + rot: 1.5707963267948966 rad + pos: 32.5,20.5 parent: 2 - - uid: 23153 + - uid: 5543 components: - type: Transform - pos: 0.5,-10.5 + rot: 1.5707963267948966 rad + pos: 32.5,21.5 parent: 2 - - uid: 23154 +- proto: WindoorSecureScienceLocked + entities: + - uid: 7147 components: - type: Transform - pos: -0.5,-10.5 + rot: 3.141592653589793 rad + pos: 58.5,-15.5 parent: 2 - - uid: 23155 + - uid: 7150 components: - type: Transform - pos: -1.5,-10.5 + rot: 3.141592653589793 rad + pos: 59.5,-15.5 parent: 2 - - uid: 23156 + - uid: 7151 components: - type: Transform - pos: -0.5,-18.5 + rot: 3.141592653589793 rad + pos: 60.5,-15.5 parent: 2 - - uid: 23157 + - uid: 7259 components: - type: Transform - pos: 0.5,-18.5 + rot: -1.5707963267948966 rad + pos: 67.5,-9.5 parent: 2 - - uid: 23158 + - uid: 7260 components: - type: Transform - pos: 1.5,-18.5 + rot: -1.5707963267948966 rad + pos: 67.5,-7.5 parent: 2 - - uid: 23159 + - uid: 7263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 + rot: 1.5707963267948966 rad + pos: 71.5,-9.5 parent: 2 - - uid: 23160 + - uid: 8184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-18.5 + rot: -1.5707963267948966 rad + pos: 67.5,-8.5 parent: 2 - - uid: 23161 +- proto: WindoorServiceLocked + entities: + - uid: 3716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-18.5 + pos: -43.5,11.5 parent: 2 - - uid: 23162 + - uid: 4528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-18.5 + rot: -1.5707963267948966 rad + pos: -59.5,-28.5 parent: 2 - - uid: 23163 + - uid: 4637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 + pos: -53.5,-26.5 parent: 2 - - uid: 23164 +- proto: WindoorTheatreLocked + entities: + - uid: 3519 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,7.5 + pos: -19.5,4.5 parent: 2 - - uid: 23165 +- proto: WindowDirectional + entities: + - uid: 3527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,7.5 + pos: -19.5,-8.5 parent: 2 - - uid: 23166 + - uid: 3528 components: - type: Transform - pos: 0.5,7.5 + rot: 1.5707963267948966 rad + pos: -19.5,-10.5 parent: 2 - - uid: 23167 + - uid: 15004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,7.5 + pos: -34.5,22.5 parent: 2 - - uid: 23168 + - uid: 16198 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,14.5 + pos: 79.5,-24.5 parent: 2 - - uid: 23169 + - uid: 16401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 + rot: 1.5707963267948966 rad + pos: 52.5,22.5 parent: 2 - - uid: 23170 + - uid: 16647 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,0.5 - parent: 2 - - uid: 23171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: 14.5,36.5 parent: 2 - - uid: 23172 +- proto: WindowFrostedDirectional + entities: + - uid: 3733 components: - type: Transform - pos: 7.5,0.5 + pos: -44.5,11.5 parent: 2 - - uid: 23173 + - uid: 3734 components: - type: Transform - pos: 0.5,-6.5 + pos: -42.5,11.5 parent: 2 - - uid: 23174 + - uid: 3736 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-6.5 + pos: -45.5,9.5 parent: 2 - - uid: 23175 +- proto: WindowReinforcedDirectional + entities: + - uid: 2011 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-6.5 + pos: 1.5,48.5 parent: 2 - - uid: 23176 + - uid: 2090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + pos: 38.5,-30.5 parent: 2 - - uid: 23177 + - uid: 2144 components: - type: Transform - pos: -14.5,-41.5 + pos: 27.5,-44.5 parent: 2 - - uid: 23178 + - uid: 2280 components: - type: Transform - pos: -13.5,-41.5 + rot: 3.141592653589793 rad + pos: 34.5,-37.5 parent: 2 - - uid: 23179 + - uid: 3160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-41.5 + pos: -4.5,-11.5 parent: 2 - - uid: 23180 + - uid: 3474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-41.5 + pos: -21.5,10.5 parent: 2 - - uid: 23181 + - uid: 3531 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-41.5 + pos: -8.5,-17.5 parent: 2 - - uid: 23182 + - uid: 3532 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-41.5 + pos: -9.5,-17.5 parent: 2 - - uid: 23183 + - uid: 3533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-41.5 + rot: 1.5707963267948966 rad + pos: -7.5,-21.5 parent: 2 - - uid: 23184 + - uid: 3534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-41.5 + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 parent: 2 - - uid: 23185 + - uid: 3535 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-47.5 + pos: 42.5,-23.5 parent: 2 - - uid: 23186 + - uid: 3536 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-46.5 + pos: 42.5,-24.5 parent: 2 - - uid: 23187 + - uid: 3537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-47.5 + pos: -38.5,5.5 parent: 2 - - uid: 23188 + - uid: 3538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-46.5 + pos: -37.5,5.5 parent: 2 - - uid: 23189 + - uid: 3539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-47.5 + rot: 1.5707963267948966 rad + pos: -27.5,6.5 parent: 2 - - uid: 23190 + - uid: 3540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-46.5 + pos: -27.5,5.5 parent: 2 - - uid: 23191 + - uid: 3541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-47.5 + rot: 1.5707963267948966 rad + pos: -27.5,5.5 parent: 2 - - uid: 23192 + - uid: 3542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-46.5 + pos: -28.5,5.5 parent: 2 - - uid: 23193 + - uid: 3543 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-46.5 + pos: -27.5,7.5 parent: 2 - - uid: 23194 + - uid: 3544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-47.5 + pos: -29.5,5.5 parent: 2 - - uid: 23195 + - uid: 3545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-46.5 + pos: -39.5,5.5 parent: 2 - - uid: 23196 + - uid: 3546 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-47.5 + pos: -23.5,4.5 parent: 2 - - uid: 23197 + - uid: 3547 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-46.5 + pos: -23.5,5.5 parent: 2 - - uid: 23198 + - uid: 3548 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-47.5 + pos: -23.5,6.5 parent: 2 - - uid: 23199 + - uid: 3549 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-46.5 + pos: -23.5,7.5 parent: 2 - - uid: 23200 + - uid: 3550 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-47.5 + pos: -38.5,-33.5 parent: 2 - - uid: 23201 + - uid: 3551 components: - type: Transform - pos: -17.5,-44.5 + pos: -26.5,-38.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-36.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,4.5 parent: 2 - - uid: 23202 + - uid: 3554 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-44.5 + pos: -50.5,4.5 parent: 2 - - uid: 23203 + - uid: 3555 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-43.5 + pos: -50.5,-1.5 parent: 2 - - uid: 23204 + - uid: 3556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-43.5 + rot: 1.5707963267948966 rad + pos: -43.5,-1.5 parent: 2 - - uid: 23205 + - uid: 4346 components: - type: Transform - pos: -45.5,-40.5 + rot: 1.5707963267948966 rad + pos: 22.5,14.5 parent: 2 - - uid: 23206 + - uid: 4359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-40.5 + pos: 39.5,-2.5 parent: 2 - - uid: 23207 + - uid: 4419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-39.5 + rot: 3.141592653589793 rad + pos: -44.5,-15.5 parent: 2 - - uid: 23208 + - uid: 4420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-39.5 + pos: -44.5,-17.5 parent: 2 - - uid: 23209 + - uid: 4428 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-40.5 + pos: -50.5,-15.5 parent: 2 - - uid: 23210 + - uid: 4430 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-39.5 + pos: -48.5,-15.5 parent: 2 - - uid: 23211 + - uid: 4524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-40.5 + pos: -59.5,-27.5 parent: 2 - - uid: 23212 + - uid: 4583 components: - type: Transform - pos: -49.5,-40.5 + rot: 1.5707963267948966 rad + pos: 40.5,-27.5 parent: 2 - - uid: 23213 + - uid: 4595 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-37.5 + pos: 46.5,-33.5 parent: 2 - - uid: 23214 + - uid: 4596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-37.5 + rot: 1.5707963267948966 rad + pos: 34.5,-33.5 parent: 2 - - uid: 23215 + - uid: 4597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-37.5 + rot: 3.141592653589793 rad + pos: 46.5,-37.5 parent: 2 - - uid: 23238 + - uid: 4598 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,19.5 + pos: 42.5,-37.5 parent: 2 - - uid: 23239 + - uid: 4599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,19.5 + rot: 3.141592653589793 rad + pos: 38.5,-37.5 parent: 2 - - uid: 23240 + - uid: 4600 components: - type: Transform - pos: 41.5,19.5 + rot: 1.5707963267948966 rad + pos: 37.5,-32.5 parent: 2 - - uid: 23241 + - uid: 4601 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,24.5 + pos: 43.5,-32.5 parent: 2 - - uid: 23242 + - uid: 4602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,24.5 + pos: 38.5,-38.5 parent: 2 - - uid: 23243 + - uid: 4603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,24.5 + pos: 42.5,-38.5 parent: 2 - - uid: 23244 + - uid: 4604 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,23.5 + pos: 48.5,-38.5 parent: 2 - - uid: 23245 + - uid: 4605 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,28.5 + pos: 32.5,-38.5 parent: 2 - - uid: 23246 + - uid: 4636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,28.5 + rot: 1.5707963267948966 rad + pos: -54.5,-26.5 parent: 2 - - uid: 23247 + - uid: 4638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,28.5 + rot: -1.5707963267948966 rad + pos: -56.5,-26.5 parent: 2 - - uid: 23248 + - uid: 4966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,28.5 + rot: -1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - - uid: 23249 + - uid: 4967 components: - type: Transform - pos: 56.5,28.5 + rot: -1.5707963267948966 rad + pos: 3.5,26.5 parent: 2 - - uid: 23250 + - uid: 5075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,28.5 + rot: 1.5707963267948966 rad + pos: 5.5,33.5 parent: 2 - - uid: 23251 + - uid: 5079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,20.5 + pos: 2.5,32.5 parent: 2 - - uid: 23252 + - uid: 5118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,20.5 + rot: -1.5707963267948966 rad + pos: 46.5,15.5 parent: 2 - - uid: 23253 + - uid: 5453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,20.5 + pos: 22.5,13.5 parent: 2 - - uid: 23254 + - uid: 5654 components: - type: Transform - pos: 68.5,20.5 + pos: 1.5,50.5 parent: 2 - - uid: 23255 + - uid: 5734 components: - type: Transform - pos: 68.5,20.5 + rot: -1.5707963267948966 rad + pos: 34.5,17.5 parent: 2 - - uid: 23256 + - uid: 5975 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,13.5 - parent: 2 - - uid: 23257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,13.5 + pos: 45.5,3.5 parent: 2 - - uid: 23258 + - uid: 5976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,14.5 + pos: 44.5,1.5 parent: 2 - - uid: 23259 + - uid: 5977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,15.5 + rot: 3.141592653589793 rad + pos: 45.5,3.5 parent: 2 - - uid: 23260 + - uid: 5978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,16.5 + rot: 3.141592653589793 rad + pos: 44.5,3.5 parent: 2 - - uid: 23261 + - uid: 6699 components: - type: Transform - pos: 73.5,2.5 + rot: 3.141592653589793 rad + pos: 50.5,-5.5 parent: 2 - - uid: 23262 + - uid: 6700 components: - type: Transform - pos: 72.5,2.5 + pos: 50.5,-3.5 parent: 2 - - uid: 23263 + - uid: 6745 components: - type: Transform - pos: 73.5,6.5 + rot: 3.141592653589793 rad + pos: 54.5,11.5 parent: 2 - - uid: 23264 + - uid: 6907 components: - type: Transform - pos: 72.5,6.5 + pos: 57.5,18.5 parent: 2 - - uid: 23265 + - uid: 6908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,6.5 + pos: 58.5,18.5 parent: 2 - - uid: 23266 + - uid: 6910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,4.5 + pos: 60.5,18.5 parent: 2 - - uid: 23267 + - uid: 6911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,2.5 + pos: 61.5,18.5 parent: 2 - - uid: 23268 + - uid: 6959 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,0.5 + pos: 58.5,18.5 parent: 2 - - uid: 23269 + - uid: 7231 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,2.5 + pos: 67.5,-10.5 parent: 2 - - uid: 23270 + - uid: 7233 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,2.5 + pos: 71.5,-10.5 parent: 2 - - uid: 23271 + - uid: 7234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,4.5 + rot: 1.5707963267948966 rad + pos: 71.5,-8.5 parent: 2 - - uid: 23272 + - uid: 7235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,4.5 + rot: 1.5707963267948966 rad + pos: 71.5,-7.5 parent: 2 - - uid: 23273 + - uid: 7289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,6.5 + rot: 1.5707963267948966 rad + pos: 38.5,-28.5 parent: 2 - - uid: 23274 + - uid: 7345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,6.5 + pos: -3.5,-11.5 parent: 2 - - uid: 23275 + - uid: 7434 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,0.5 + pos: 68.5,-27.5 parent: 2 - - uid: 23276 + - uid: 7435 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,0.5 - parent: 2 - - uid: 23277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,0.5 + pos: 71.5,-27.5 parent: 2 - - uid: 23278 + - uid: 7581 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,2.5 + pos: 22.5,-38.5 parent: 2 - - uid: 23279 + - uid: 7582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,4.5 + pos: 22.5,-35.5 parent: 2 - - uid: 23280 + - uid: 7700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,6.5 + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 parent: 2 - - uid: 23281 + - uid: 7701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-5.5 + rot: -1.5707963267948966 rad + pos: 26.5,-43.5 parent: 2 - - uid: 23282 + - uid: 7702 components: - type: Transform - pos: 77.5,-5.5 + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 parent: 2 - - uid: 23283 + - uid: 7703 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-5.5 + pos: 26.5,-46.5 parent: 2 - - uid: 23284 + - uid: 7932 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-5.5 + pos: -11.5,-40.5 parent: 2 - - uid: 23285 + - uid: 8006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-4.5 + rot: -1.5707963267948966 rad + pos: -6.5,43.5 parent: 2 - - uid: 23286 + - uid: 8435 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-4.5 + pos: 38.5,-30.5 parent: 2 - - uid: 23287 + - uid: 9185 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-4.5 + pos: -25.5,28.5 parent: 2 - - uid: 23288 + - uid: 9271 components: - type: Transform - pos: 82.5,-4.5 + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 parent: 2 - - uid: 23289 + - uid: 9272 components: - type: Transform - pos: 81.5,-4.5 + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: 38.5,-28.5 parent: 2 - - uid: 23290 + - uid: 12705 components: - type: Transform rot: -1.5707963267948966 rad - pos: 81.5,-4.5 + pos: 38.5,-30.5 parent: 2 - - uid: 23295 + - uid: 12805 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-21.5 + pos: -10.5,-40.5 parent: 2 - - uid: 23296 + - uid: 13490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-21.5 + pos: 39.5,-28.5 parent: 2 - - uid: 23297 + - uid: 14260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-21.5 + rot: -1.5707963267948966 rad + pos: 46.5,16.5 parent: 2 - - uid: 23298 + - uid: 15193 components: - type: Transform - pos: 54.5,-21.5 + rot: 3.141592653589793 rad + pos: -30.5,-1.5 parent: 2 - - uid: 23299 + - uid: 15404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-21.5 + pos: -20.5,10.5 parent: 2 - - uid: 23300 + - uid: 15602 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-21.5 + pos: 53.5,1.5 parent: 2 - - uid: 23301 + - uid: 15843 components: - type: Transform - pos: -3.5,22.5 + rot: -1.5707963267948966 rad + pos: -27.5,34.5 parent: 2 - - uid: 23302 + - uid: 15844 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,22.5 + pos: -27.5,35.5 parent: 2 - - uid: 23303 + - uid: 16322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,22.5 + rot: 1.5707963267948966 rad + pos: 80.5,-7.5 parent: 2 - - uid: 23304 + - uid: 16323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,22.5 + rot: 1.5707963267948966 rad + pos: 80.5,-5.5 parent: 2 - - uid: 23305 + - uid: 16662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,22.5 + pos: 44.5,-20.5 parent: 2 - - uid: 23306 + - uid: 16663 components: - type: Transform - pos: -0.5,22.5 + pos: 43.5,-20.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + pos: 42.5,-20.5 parent: 2 - - uid: 23307 + - uid: 19757 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,28.5 + pos: 38.5,-28.5 parent: 2 - - uid: 23308 + - uid: 20306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,28.5 + pos: 41.5,-20.5 parent: 2 - - uid: 23309 + - uid: 20307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,28.5 + pos: 40.5,-20.5 parent: 2 - - uid: 23310 + - uid: 20515 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,27.5 + pos: -10.5,-39.5 parent: 2 - - uid: 23313 + - uid: 20881 components: - type: Transform - pos: 17.5,-48.5 + rot: 3.141592653589793 rad + pos: 14.5,-64.5 parent: 2 - - uid: 23314 + - uid: 21185 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-48.5 + pos: -32.5,-2.5 parent: 2 - - uid: 23315 + - uid: 21402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-47.5 + rot: 3.141592653589793 rad + pos: 23.5,-53.5 parent: 2 - - uid: 23316 + - uid: 21416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-47.5 + pos: 9.5,-47.5 parent: 2 - - uid: 23317 + - uid: 21421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-39.5 + pos: 7.5,-47.5 parent: 2 - - uid: 23318 + - uid: 21553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-40.5 + rot: 3.141592653589793 rad + pos: 27.5,-43.5 parent: 2 - - uid: 23319 + - uid: 21561 components: - type: Transform - pos: -0.5,-40.5 + pos: -1.5,-9.5 parent: 2 - - uid: 23320 + - uid: 21562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-40.5 + pos: -0.5,-9.5 parent: 2 - - uid: 23321 + - uid: 21563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-39.5 + pos: 0.5,-9.5 parent: 2 - - uid: 23322 + - uid: 21564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-39.5 + pos: 1.5,-9.5 parent: 2 - - uid: 23323 + - uid: 21565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-40.5 + pos: 2.5,-9.5 parent: 2 - - uid: 23324 + - uid: 21646 components: - type: Transform - pos: 2.5,-40.5 + rot: 1.5707963267948966 rad + pos: 3.5,43.5 parent: 2 - - uid: 23325 + - uid: 21752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-42.5 + pos: 47.5,15.5 parent: 2 - - uid: 23326 + - uid: 21846 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-42.5 + pos: 55.5,1.5 parent: 2 - - uid: 23327 + - uid: 21847 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 + rot: 1.5707963267948966 rad + pos: 55.5,1.5 parent: 2 - - uid: 23328 + - uid: 21939 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-42.5 + pos: -31.5,-1.5 parent: 2 - - uid: 23329 + - uid: 22366 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-42.5 + pos: -4.5,40.5 + parent: 2 + - uid: 22410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 2 + - uid: 22487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-34.5 + parent: 2 + - uid: 22488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-36.5 parent: 2 - proto: WoodDoor entities: diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index b3d09487ade6e1..b6ccea098677b1 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -50444,12 +50444,12 @@ entities: - uid: 30017 components: - type: Transform - pos: 97.5,49.5 + pos: 101.5,44.5 parent: 13329 - uid: 30018 components: - type: Transform - pos: 98.5,49.5 + pos: 101.5,45.5 parent: 13329 - uid: 30019 components: @@ -78864,6 +78864,13 @@ entities: - type: Transform pos: 62.3291,-2.5415568 parent: 13329 +- proto: CaptainIDCard + entities: + - uid: 35821 + components: + - type: Transform + pos: 81.9281,44.575443 + parent: 13329 - proto: CarbonDioxideCanister entities: - uid: 15424 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index f2109b05be9118..0028793798915a 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -174,7 +174,7 @@ entities: version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAABHwAAAAAA + tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAABHwAAAAAA version: 6 1,1: ind: 1,1 @@ -27213,6 +27213,21 @@ entities: - type: Transform pos: 13.5,11.5 parent: 30 + - uid: 17777 + components: + - type: Transform + pos: -5.5,83.5 + parent: 30 + - uid: 17778 + components: + - type: Transform + pos: 4.5,83.5 + parent: 30 + - uid: 17779 + components: + - type: Transform + pos: -0.5,88.5 + parent: 30 - uid: 17811 components: - type: Transform @@ -52056,6 +52071,18 @@ entities: - type: Transform pos: -39.575058,56.668564 parent: 30 +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 17784 + components: + - type: Transform + pos: -44.636612,58.69058 + parent: 30 + - uid: 17786 + components: + - type: Transform + pos: -44.478813,58.559113 + parent: 30 - proto: ClothingHeadHelmetTemplar entities: - uid: 16772 @@ -60264,6 +60291,11 @@ entities: - type: Transform pos: 32.5,39.5 parent: 30 + - uid: 17783 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 30 - uid: 19407 components: - type: Transform @@ -96877,6 +96909,24 @@ entities: parent: 30 - proto: IntercomAll entities: + - uid: 17780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,82.5 + parent: 30 + - uid: 17781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,82.5 + parent: 30 + - uid: 17782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,81.5 + parent: 30 - uid: 22231 components: - type: Transform @@ -118343,6 +118393,14 @@ entities: - SurveillanceCameraCommand nameSet: True id: Bridge Airlock + - uid: 16403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,88.5 + parent: 30 + - type: SurveillanceCamera + id: AI Core Core North - uid: 20280 components: - type: Transform @@ -118353,7 +118411,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: AI Core Core + id: AI Core Core South - uid: 20283 components: - type: Transform @@ -118750,16 +118808,13 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchor Room - - uid: 16403 + - uid: 17774 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-27.5 + pos: -10.5,-27.5 parent: 30 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True id: Telecomms - uid: 21211 components: diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 8cde5f558c2a76..15a719bb532b5b 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -14470,7 +14470,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75908.84 + secondsUntilStateChange: -76151.9 state: Opening - uid: 6934 components: @@ -14482,7 +14482,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75911.48 + secondsUntilStateChange: -76154.53 state: Opening - uid: 6935 components: @@ -14494,7 +14494,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75910.33 + secondsUntilStateChange: -76153.38 state: Opening - uid: 6936 components: @@ -14505,7 +14505,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75909.55 + secondsUntilStateChange: -76152.6 state: Opening - proto: AirlockTheatreLocked entities: @@ -15707,12 +15707,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 2 - - uid: 2421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-18.5 - parent: 2 - uid: 2763 components: - type: Transform @@ -15885,6 +15879,30 @@ entities: rot: 3.141592653589793 rad pos: 25.5,35.5 parent: 2 + - uid: 29578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-13.5 + parent: 2 + - uid: 29579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 2 + - uid: 29580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + - uid: 29581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-17.5 + parent: 2 - proto: APCElectronics entities: - uid: 5818 @@ -42197,27 +42215,27 @@ entities: - uid: 4624 components: - type: Transform - pos: 38.5,-17.5 + pos: 54.5,-17.5 parent: 2 - uid: 4625 components: - type: Transform - pos: 39.5,-17.5 + pos: 34.5,-13.5 parent: 2 - uid: 4626 components: - type: Transform - pos: 40.5,-17.5 + pos: 39.5,-11.5 parent: 2 - uid: 4627 components: - type: Transform - pos: 41.5,-17.5 + pos: 55.5,-17.5 parent: 2 - uid: 4628 components: - type: Transform - pos: 41.5,-18.5 + pos: 53.5,-14.5 parent: 2 - uid: 4629 components: @@ -42292,7 +42310,7 @@ entities: - uid: 4643 components: - type: Transform - pos: 38.5,-16.5 + pos: 47.5,-14.5 parent: 2 - uid: 4644 components: @@ -42404,11 +42422,6 @@ entities: - type: Transform pos: 31.5,-15.5 parent: 2 - - uid: 4666 - components: - - type: Transform - pos: 41.5,-17.5 - parent: 2 - uid: 4667 components: - type: Transform @@ -42652,12 +42665,7 @@ entities: - uid: 4823 components: - type: Transform - pos: 50.5,-16.5 - parent: 2 - - uid: 4824 - components: - - type: Transform - pos: 50.5,-15.5 + pos: 60.5,18.5 parent: 2 - uid: 4825 components: @@ -43042,7 +43050,7 @@ entities: - uid: 5414 components: - type: Transform - pos: 39.5,-18.5 + pos: 46.5,-8.5 parent: 2 - uid: 5463 components: @@ -50027,7 +50035,7 @@ entities: - uid: 13051 components: - type: Transform - pos: 56.5,16.5 + pos: 45.5,-8.5 parent: 2 - uid: 13052 components: @@ -56209,6 +56217,46 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 2 + - uid: 29575 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 29576 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 29577 + components: + - type: Transform + pos: 60.5,21.5 + parent: 2 + - uid: 29582 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 29583 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 29584 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 29585 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 29586 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 - proto: CableApcStack1 entities: - uid: 23589 @@ -63885,7 +63933,7 @@ entities: - uid: 418 components: - type: Transform - pos: 39.5,-18.5 + pos: 46.5,-8.5 parent: 2 - uid: 867 components: @@ -63927,6 +63975,11 @@ entities: - type: Transform pos: -25.5,0.5 parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 - uid: 3299 components: - type: Transform @@ -64200,12 +64253,17 @@ entities: - uid: 4564 components: - type: Transform - pos: 40.5,-17.5 + pos: 54.5,-17.5 parent: 2 - uid: 4565 components: - type: Transform - pos: 39.5,-17.5 + pos: 55.5,-17.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: 47.5,-8.5 parent: 2 - uid: 4686 components: @@ -64657,6 +64715,11 @@ entities: - type: Transform pos: 43.5,-37.5 parent: 2 + - uid: 4824 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 - uid: 4855 components: - type: Transform @@ -69467,6 +69530,146 @@ entities: - type: Transform pos: 25.5,35.5 parent: 2 + - uid: 29587 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 29588 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - uid: 29589 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - uid: 29590 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 29591 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 29592 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 29593 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 29594 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 29595 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - uid: 29596 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 29597 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 29598 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 29599 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 29600 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 29601 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 29602 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 29603 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 29604 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 29605 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 29606 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 29607 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 29608 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 29609 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 29610 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 29611 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 29612 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 29613 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 29614 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 - proto: CableTerminal entities: - uid: 6405 @@ -94055,7 +94258,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -67232.83 + secondsUntilStateChange: -67475.88 - type: DeviceNetwork deviceLists: - 18275 @@ -138604,7 +138807,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -104064.67 + secondsUntilStateChange: -104307.73 state: Opening - uid: 5211 components: @@ -189959,7 +190162,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -449269.3 + secondsUntilStateChange: -449512.38 state: Opening - uid: 28863 components: diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index d2d35c7d928f96..5ad509170ddcc1 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -9,6 +9,7 @@ tilemap: 17: FloorBlueCircuit 21: FloorCarpetOffice 29: FloorDark + 1: FloorDarkDiagonal 34: FloorDarkMono 41: FloorEighties 44: FloorFreezer @@ -25,6 +26,7 @@ tilemap: 98: FloorSteelDirty 100: FloorSteelLime 101: FloorSteelMini + 2: FloorSteelMono 106: FloorTechMaint 107: FloorTechMaint2 110: FloorWhite @@ -45,31 +47,31 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAAAeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABHQAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAABWwAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAAAeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABHQAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAAC version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAADewAAAAAAIgAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAA version: 6 0,0: ind: 0,0 - tiles: WwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADewAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADeAAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADewAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAACeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAeAAAAAABeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAACeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAALAAAAAAAUAAAAAAALAAAAAAAUAAAAAAALAAAAAAAewAAAAAAeAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACewAAAAAALAAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAeAAAAAAAeAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAeAAAAAADeAAAAAAA + tiles: WwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABegAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADewAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADeAAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADewAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAACeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAeAAAAAABeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAACeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAALAAAAAAAUAAAAAAALAAAAAAAUAAAAAAALAAAAAAAewAAAAAAeAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACewAAAAAALAAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAeAAAAAAAeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAeAAAAAADeAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: ewAAAAAAewAAAAAAawAAAAAATQAAAAAATQAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAHQAAAAACHQAAAAAAawAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAHQAAAAABHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAABWwAAAAACWwAAAAABewAAAAAAHQAAAAABHQAAAAADewAAAAAAWwAAAAADWwAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADewAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAB + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAHQAAAAACHQAAAAAAawAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAHQAAAAABHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAABWwAAAAACWwAAAAABewAAAAAAHQAAAAABHQAAAAADewAAAAAAWwAAAAADWwAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADewAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA version: 6 0,1: ind: 0,1 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAewAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAewAAAAAAewAAAAAA version: 6 1,0: ind: 1,0 @@ -81,27 +83,27 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: awAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACewAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADHQAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAADewAAAAAAWwAAAAAAWwAAAAACWwAAAAACHQAAAAACHQAAAAAAWwAAAAADWwAAAAADWwAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAAA + tiles: awAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAWwAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAWwAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADHQAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAADewAAAAAAWwAAAAAAWwAAAAACWwAAAAACHQAAAAACHQAAAAAAWwAAAAADWwAAAAADWwAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHQAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAWwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHQAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: egAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAAAWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAHQAAAAACewAAAAAAHQAAAAADWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAHQAAAAADHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAABewAAAAAAHQAAAAACWwAAAAACewAAAAAAWwAAAAADWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAHQAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAHQAAAAABewAAAAAAHQAAAAABWwAAAAABWwAAAAACWwAAAAACWwAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAACWwAAAAABWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACWwAAAAAAWwAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAAAWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAHQAAAAACewAAAAAAHQAAAAADWwAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAABewAAAAAAHQAAAAACWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAHQAAAAACWwAAAAADWwAAAAADHQAAAAAAWwAAAAAAHQAAAAABewAAAAAAHQAAAAABWwAAAAABHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAHQAAAAACWwAAAAABWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAADewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAADewAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: ZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAADTQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAA + tiles: ZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAADTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: ewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAAHQAAAAABawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAABewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA + tiles: ewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAACewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAAHQAAAAABawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAABewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA version: 6 1,1: ind: 1,1 - tiles: eAAAAAAAewAAAAAAZQAAAAADewAAAAAAewAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAADHQAAAAACHQAAAAADHQAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAAAewAAAAAAeAAAAAABeAAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAHQAAAAAAHQAAAAACHQAAAAADewAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAACeAAAAAAAewAAAAAAeAAAAAAAeAAAAAABWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAABeAAAAAABeAAAAAACeAAAAAADeAAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: eAAAAAAAewAAAAAAZQAAAAADewAAAAAAewAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAACewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAADHQAAAAACHQAAAAADHQAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAAAewAAAAAAeAAAAAABeAAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAHQAAAAAAHQAAAAACHQAAAAADewAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAACeAAAAAAAewAAAAAAeAAAAAAAeAAAAAABWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAABeAAAAAABeAAAAAACeAAAAAADeAAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,0: ind: 2,0 @@ -109,19 +111,19 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: WwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADTQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAACHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAWwAAAAADOgAAAAAAWwAAAAAAWwAAAAACWwAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAWwAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWwAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAA + tiles: WwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAACHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAWwAAAAADOgAAAAAAWwAAAAAAWwAAAAACWwAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAWwAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWwAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -133,27 +135,27 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: ewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAADewAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAACewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABbgAAAAABewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAABbgAAAAACewAAAAAA + tiles: ewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAADewAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAACewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAACewAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: TQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADewAAAAAAeAAAAAAA + tiles: TQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAADewAAAAAAeAAAAAAA version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAADAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 1,2: ind: 1,2 - tiles: ewAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAACeAAAAAACewAAAAAAeAAAAAAAeAAAAAABWwAAAAACWwAAAAACWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAACeAAAAAABeAAAAAADewAAAAAAeAAAAAADeAAAAAACWwAAAAADWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAANgAAAAAANgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAAHQAAAAAAHQAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACHQAAAAACHQAAAAACHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAAHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAHQAAAAABeAAAAAACewAAAAAAHQAAAAABHQAAAAACHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAABewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADewAAAAAAHQAAAAABeAAAAAACewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAHQAAAAADeAAAAAABAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAADHQAAAAABHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAC + tiles: ewAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAACeAAAAAACewAAAAAAeAAAAAAAeAAAAAABWwAAAAACWwAAAAACWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAACeAAAAAABeAAAAAADewAAAAAAeAAAAAADeAAAAAACWwAAAAADWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAADewAAAAAANgAAAAAANgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABewAAAAAANgAAAAAANgAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACHQAAAAACHQAAAAACHQAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAAHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAHQAAAAABeAAAAAACewAAAAAAHQAAAAABHQAAAAACHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAABewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADewAAAAAAHQAAAAABeAAAAAACewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAHQAAAAADeAAAAAABAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAADHQAAAAABHQAAAAABewAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAC version: 6 2,1: ind: 2,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABewAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADewAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAHQAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAHQAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADewAAAAAATQAAAAAAHQAAAAACHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAABewAAAAAATQAAAAAAHQAAAAAAHQAAAAADTQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAYgAAAAAAWwAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABewAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAATQAAAAAAHQAAAAABHQAAAAACTQAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAHQAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAHQAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADewAAAAAATQAAAAAAHQAAAAACHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAABewAAAAAATQAAAAAAHQAAAAAAHQAAAAADTQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAagAAAAAAewAAAAAA version: 6 2,2: ind: 2,2 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAWwAAAAABWwAAAAABYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAWwAAAAADYgAAAAAAWwAAAAABYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAYgAAAAAAWwAAAAABWwAAAAADYgAAAAAAUAAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAeAAAAAAAeAAAAAACeAAAAAACewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAeAAAAAACeAAAAAADeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAACeAAAAAACewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAACeAAAAAADeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,3: ind: 1,3 @@ -165,43 +167,43 @@ entities: version: 6 4,-1: ind: 4,-1 - tiles: ewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAbgAAAAABagAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAbgAAAAABagAAAAAAewAAAAAA + tiles: ewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAawAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABewAAAAAAbgAAAAABagAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAbgAAAAABagAAAAAAewAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA version: 6 3,0: ind: 3,0 - tiles: bgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAbgAAAAABbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABewAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAADHQAAAAAAHQAAAAAAHQAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADewAAAAAAbgAAAAACWwAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABWwAAAAADewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADWwAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAD + tiles: bgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAABbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAACewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAACewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABewAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAADHQAAAAAAHQAAAAAAHQAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADewAAAAAAbgAAAAACWwAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABWwAAAAADewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAACWwAAAAADewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADWwAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAD version: 6 4,0: ind: 4,0 - tiles: bgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABewAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAACWwAAAAACbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADHQAAAAADHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAbgAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAACWwAAAAACbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAADHQAAAAADHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAbgAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAADEQAAAAAAHQAAAAADEQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABbgAAAAACbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAABbgAAAAACbgAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAADbgAAAAACewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAACewAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAADewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAANgAAAAAANgAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAANgAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAANgAAAAAANgAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATQAAAAAANgAAAAAANgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAANgAAAAAANgAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAANgAAAAAANgAAAAAAewAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAADbgAAAAABewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAADEQAAAAAAHQAAAAADEQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABbgAAAAACbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAABbgAAAAACbgAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAADbgAAAAACewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAACewAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAADewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 3,3: ind: 3,3 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAEQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 4,1: ind: 4,1 - tiles: bgAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAABewAAAAAAWwAAAAABWwAAAAACWwAAAAADHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWwAAAAAAWwAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAbgAAAAACewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAABewAAAAAAewAAAAAAYgAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAbgAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAAA + tiles: AAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAACegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAAA version: 6 4,3: ind: 4,3 @@ -209,7 +211,7 @@ entities: version: 6 5,-1: ind: 5,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABbgAAAAABewAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABbgAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 @@ -217,7 +219,7 @@ entities: version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAATAAAAAABegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABAAAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAHQAAAAAAewAAAAAAewAAAAAATQAAAAAANgAAAAAATQAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAATAAAAAABegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABegAAAAAATAAAAAADegAAAAAATAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAABAAAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 @@ -245,7 +247,7 @@ entities: version: 6 5,1: ind: 5,1 - tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAEQAAAAAANgAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAEQAAAAAAewAAAAAAewAAAAAANgAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 3,-4: ind: 3,-4 @@ -253,31 +255,31 @@ entities: version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAIgAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 6,1: + ind: 6,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,2: + ind: 6,2 + tiles: NgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -297,31 +299,42 @@ entities: version: 2 data: tiles: - -4,-4: - 0: 65520 - -4,-5: - 1: 63626 - -5,-4: - 0: 65520 - -4,-3: - 0: 136 + -4,-1: + 0: 65280 + -5,-1: + 0: 65280 + -4,0: + 0: 2191 + 1: 768 + -3,-1: + 0: 65280 + 1: 8 + -3,0: + 0: 558 + 1: 2048 -3,-4: - 0: 65520 + 1: 17472 -3,-5: - 1: 61442 + 0: 49152 + 1: 136 + -3,-3: + 1: 4 + 0: 3072 -2,-4: - 0: 30580 - -2,-5: - 1: 4096 - 0: 17472 + 0: 30582 -2,-3: - 0: 26214 + 0: 26471 + -3,-2: + 1: 34952 + -2,-1: + 0: 65382 + -2,-5: + 0: 30310 -2,-2: 0: 26222 - -2,-1: - 0: 61030 -2,0: - 0: 2190 + 0: 2191 + 1: 768 -1,-4: 1: 17 0: 28672 @@ -332,9 +345,10 @@ entities: -1,-1: 0: 65455 -1,-5: - 1: 28944 + 1: 30481 -1,0: 0: 558 + 1: 2048 0,-4: 0: 47935 0,-3: @@ -343,35 +357,33 @@ entities: 0: 48802 0,-1: 0: 65322 + -5,0: + 0: 15 + 1: 3840 -4,3: - 1: 61440 - -4,4: - 1: 15 - -5,3: - 1: 57344 + 1: 32768 -3,3: - 1: 61440 - -3,4: + 1: 768 + -4,4: 1: 15 -2,3: - 1: 61440 + 1: 17152 -2,4: 1: 15 -1,3: - 1: 61440 - -1,4: - 1: 15 + 1: 36352 0,0: 0: 34959 - 0,3: - 1: 61440 - 0: 136 - 0,4: + 1: 768 + -1,4: 1: 15 0,1: 0: 34952 0,2: 0: 34952 + 0,3: + 0: 136 + 1: 32768 1,0: 0: 30719 1,1: @@ -379,11 +391,13 @@ entities: 1,2: 0: 32759 1,3: - 0: 32887 + 0: 24695 + 0,4: + 1: 143 1,-1: 0: 65303 1,4: - 0: 43775 + 0: 60966 2,0: 0: 61695 2,1: @@ -395,7 +409,7 @@ entities: 2,-1: 0: 65467 2,4: - 0: 64443 + 0: 15247 3,0: 0: 45311 3,1: @@ -415,8 +429,8 @@ entities: 4,3: 0: 65021 0,-5: - 0: 45056 - 1: 70 + 0: 45859 + 1: 200 1,-4: 0: 65295 1,-3: @@ -454,30 +468,43 @@ entities: 0: 4 -5,-8: 1: 34944 - -5,-5: - 1: 61713 + -4,-7: + 1: 112 + 0: 29184 -4,-6: - 0: 57344 + 0: 242 + -5,-6: + 0: 240 -4,-9: 0: 17408 1: 35807 -3,-8: 0: 69 1: 61624 + -3,-7: + 1: 3840 -3,-6: - 0: 12288 + 0: 255 + 1: 32768 -3,-9: 0: 21760 1: 43759 -2,-8: 0: 21 1: 61674 + -2,-7: + 1: 768 + -2,-6: + 0: 20087 -2,-9: 0: 21760 1: 35471 -1,-8: 0: 34953 1: 12848 + -1,-6: + 0: 3840 + 1: 8 -1,-9: 0: 4360 1: 119 @@ -488,10 +515,9 @@ entities: 0: 65535 0,-7: 1: 30576 - -1,-6: - 1: 2184 0,-6: - 1: 17477 + 1: 34821 + 0: 13056 0,-9: 0: 57551 1,-8: @@ -525,37 +551,40 @@ entities: 0: 3855 4,-5: 0: 22288 + 0,6: + 0: 2056 1,6: - 0: 36751 - 1,7: - 0: 52232 + 0: 53199 1,5: - 0: 34944 + 1: 16 + 0: 52416 + 1,7: + 1: 16 + 0: 60428 1,8: - 0: 12 - 1: 8704 + 0: 15086 2,5: - 0: 65523 + 0: 65529 2,6: 0: 65535 2,7: - 0: 47935 + 0: 48063 2,8: - 0: 34947 + 0: 35763 3,5: - 0: 65534 + 0: 65535 3,6: 0: 46079 3,7: - 0: 48031 + 0: 48063 4,4: 0: 3845 4,5: - 0: 61423 + 0: 61183 4,6: 0: 65038 3,8: - 0: 49656 + 0: 57592 4,1: 0: 61152 5,0: @@ -699,8 +728,8 @@ entities: 0: 61047 1: 136 3,-10: - 1: 118 - 0: 45056 + 1: 50 + 0: 45192 3,-9: 0: 3067 3,-13: @@ -778,10 +807,12 @@ entities: 0: 8191 10,-5: 0: 12543 + 1: 32768 10,-9: 0: 65535 10,-4: 0: 61491 + 1: 136 11,-8: 0: 4369 1: 17476 @@ -792,10 +823,14 @@ entities: 0: 273 1: 3140 11,-5: - 0: 35071 + 0: 51455 + 1: 4096 11,-9: 0: 4369 1: 17484 + 11,-4: + 1: 17 + 0: 63692 12,-8: 3: 7 4: 1792 @@ -808,8 +843,6 @@ entities: 0: 49152 12,-5: 0: 43263 - 11,-4: - 0: 63624 8,-13: 0: 53519 1: 240 @@ -881,7 +914,7 @@ entities: 7,7: 0: 3822 7,8: - 0: 56591 + 0: 53703 8,4: 0: 65520 8,5: @@ -889,7 +922,7 @@ entities: 8,6: 0: 65535 8,7: - 0: 12159 + 0: 65407 9,0: 0: 20735 9,1: @@ -911,7 +944,7 @@ entities: 10,-1: 0: 65167 10,4: - 0: 61412 + 0: 61156 11,0: 0: 65327 11,1: @@ -945,7 +978,7 @@ entities: 11,-2: 0: 65535 12,-4: - 0: 65418 + 0: 32650 12,-2: 0: 61167 12,-1: @@ -1125,21 +1158,27 @@ entities: 1: 65280 16,-5: 0: 65295 + 0,8: + 1: 9728 + 0,9: + 1: 9826 + 0: 2176 + 0,10: + 1: 59938 1,9: - 1: 58094 + 0: 32754 1,10: - 1: 11810 - 1,11: - 1: 57890 + 0: 7 + 1: 63488 2,9: - 1: 65075 - 0: 136 + 1: 13298 + 0: 8 2,10: - 1: 3840 + 1: 15906 2,11: - 1: 61440 + 1: 58082 3,11: - 1: 61440 + 1: 61680 3,9: 0: 61166 3,10: @@ -1147,7 +1186,7 @@ entities: 4,9: 0: 57583 4,11: - 1: 12288 + 1: 12850 0: 2184 4,10: 0: 1262 @@ -1179,9 +1218,9 @@ entities: 0: 15 1: 61440 8,8: - 0: 21831 + 0: 21746 8,9: - 0: 14549 + 0: 14557 8,10: 0: 30591 8,11: @@ -1189,64 +1228,76 @@ entities: 9,4: 0: 65520 9,5: - 0: 57297 + 0: 57296 9,6: 0: 56733 9,7: - 0: 48909 + 0: 65293 10,5: - 0: 64270 + 0: 64302 10,6: - 0: 45979 + 0: 13211 10,7: - 0: 13067 - 1: 34816 - 9,8: - 0: 65528 + 0: 65283 10,8: - 0: 13107 - 1: 34952 + 0: 13105 + 1: 34944 11,5: 0: 48010 11,6: - 0: 59579 + 0: 63675 11,7: - 0: 26215 + 0: 30575 11,8: - 0: 26214 + 0: 61030 12,4: 0: 61408 12,5: 0: 57598 12,6: 0: 28910 + 12,7: + 1: 36608 + 0: 6 8,12: 0: 1 1: 12800 + 9,8: + 0: 35760 9,9: - 0: 36622 + 0: 36795 9,10: 0: 15291 9,11: 1: 57344 + 10,9: + 0: 3 + 1: 3720 10,10: 0: 36848 10,11: 1: 12561 0: 2184 - 10,9: - 0: 34 - 1: 136 10,12: 1: 50244 - 11,9: - 0: 30310 11,10: - 0: 4915 + 0: 4914 + 1: 34944 11,11: 0: 53009 + 1: 12 + 11,9: + 0: 26214 + 12,8: + 1: 15 + 0: 65392 + 12,9: + 1: 17648 + 12,10: + 1: 53188 12,11: 0: 13056 + 1: 2052 5,13: 1: 3298 6,13: @@ -1275,11 +1326,11 @@ entities: 16,0: 0: 65535 17,-3: - 0: 61422 + 0: 61322 17,-5: 0: 65263 17,-4: - 0: 36494 + 0: 60046 17,-2: 0: 61070 17,-1: @@ -1431,66 +1482,80 @@ entities: 0: 60447 13,6: 0: 239 - 1: 16384 + 1: 61440 13,7: - 0: 65520 + 1: 305 + 0: 49152 + 13,8: + 0: 65518 14,5: 0: 65487 14,6: - 0: 4607 - 1: 16384 + 0: 255 + 1: 61440 14,7: - 0: 65520 + 0: 28672 + 1: 128 + 14,8: + 0: 47935 15,5: 0: 64789 15,6: 0: 50431 + 1: 4096 15,7: - 0: 4380 + 1: 61201 + 0: 12 + 15,8: + 1: 25668 16,5: 0: 56783 16,6: 0: 56541 16,7: 0: 50381 + 1: 4352 13,12: - 0: 15 + 0: 34959 + 1: 768 + 13,11: + 0: 49152 + 1: 303 14,12: - 0: 4383 + 0: 8751 + 1: 2048 + 14,11: + 0: 28672 + 1: 143 15,12: 0: 15 + 1: 256 15,11: 0: 34816 - 12,8: - 0: 17476 - 12,9: - 0: 50244 - 13,8: - 0: 32752 - 13,9: - 0: 3183 - 12,10: - 0: 8 + 1: 773 13,10: - 0: 227 - 14,8: - 0: 57328 + 1: 12544 + 0: 206 + 13,9: + 0: 61166 14,9: - 0: 1998 + 0: 15295 14,10: - 0: 248 - 15,8: - 0: 21844 - 15,9: - 0: 25669 + 0: 127 + 1: 32768 15,10: - 0: 3 + 1: 8165 + 15,9: + 1: 17510 + 16,10: + 1: 272 + 0: 56524 16,11: - 0: 32652 + 0: 32669 16,8: 0: 52428 17,5: - 0: 63726 + 0: 47790 17,7: 0: 61167 17,6: @@ -1499,22 +1564,31 @@ entities: 17,8: 0: 3823 18,5: - 0: 4113 - 1: 1100 + 0: 30495 18,6: - 1: 8828 + 1: 57360 + 0: 3584 18,7: - 1: 8738 - 18,8: - 1: 8738 + 1: 57568 + 0: 3584 19,5: - 1: 4369 + 1: 3955 + 0: 61440 19,6: - 1: 15 + 1: 28679 + 0: 36744 + 19,7: + 1: 12336 + 0: 35712 + 20,5: + 1: 12544 + 20,6: + 0: 25123 + 1: 92 + 20,7: + 0: 30578 16,9: 0: 52428 - 16,10: - 0: 52428 17,9: 0: 61679 17,10: @@ -1524,14 +1598,20 @@ entities: 18,11: 0: 112 1: 2176 + 18,8: + 1: 57568 + 0: 3584 18,9: 1: 11810 18,10: 1: 14 18,12: 1: 61713 + 19,8: + 1: 12336 + 0: 2944 19,9: - 1: 3840 + 1: 3852 19,10: 1: 17487 0: 43680 @@ -1541,8 +1621,10 @@ entities: 19,12: 0: 170 1: 65092 + 20,8: + 0: 1906 20,9: - 1: 3840 + 1: 3855 20,11: 1: 19964 0: 40960 @@ -1583,25 +1665,41 @@ entities: 20,10: 0: 43690 1: 17476 + 21,8: + 0: 7 + 1: 24576 21,9: - 1: 3840 + 1: 3843 21,10: 1: 21831 0: 43680 21,11: 1: 18429 0: 40960 + 21,7: + 0: 30583 21,12: 0: 170 1: 64325 22,9: - 1: 30464 + 1: 30472 22,10: 1: 65126 22,11: 1: 39611 + 22,7: + 0: 65534 + 22,8: + 0: 24590 + 23,8: + 0: 255 22,12: 1: 14190 + 23,7: + 0: 7455 + 24,8: + 0: 17 + 1: 18440 13,-11: 1: 4096 13,-10: @@ -1672,76 +1770,98 @@ entities: 1: 50 29,-3: 1: 273 - -8,-5: - 1: 32768 - -8,-4: + 21,6: + 1: 99 + 22,6: + 0: 96 + 1: 8 + 23,6: + 0: 61440 + 24,6: + 0: 4096 + 1: 2114 + 24,7: + 0: 4369 1: 8 - 0: 2048 - -7,-5: - 1: 64267 - 0: 1092 - -7,-4: - 1: 20507 - 0: 3908 -7,-6: - 0: 16384 + 0: 63728 + -7,-5: + 1: 8736 + 0: 34952 + -7,-7: + 1: 32768 + -6,-7: + 1: 45056 + -6,-6: + 0: 13296 + 1: 32768 -6,-5: - 1: 61697 + 0: 62259 + 1: 136 + -7,-4: + 0: 52424 -6,-4: - 1: 4113 - 0: 52672 - -6,-6: - 0: 3072 - 1: 16384 - -5,-6: - 0: 1792 - 1: 20480 - -8,-3: - 1: 12040 - -9,-3: - 1: 44544 - -8,-2: - 1: 12066 - -9,-2: - 1: 44714 - -8,-1: - 1: 3874 - -9,-1: - 1: 3754 + 0: 30579 + -5,-7: + 1: 28672 + -5,-5: + 0: 4096 -7,-1: - 0: 256 + 0: 36744 + 1: 2 + -7,0: + 0: 15 + 1: 17408 -7,-3: - 0: 18 + 0: 34956 + 1: 8704 -7,-2: - 0: 4096 - -7,0: - 0: 257 + 1: 8738 + 0: 34952 + -6,-3: + 0: 16183 + -6,-2: + 0: 13107 + 1: 34952 + -6,-1: + 0: 65331 + 1: 8 + -6,0: + 0: 15 + 1: 22784 + -5,-4: + 1: 4368 -5,-3: - 0: 17 - -8,0: - 1: 35056 - -9,0: - 1: 43744 - -8,2: - 1: 36744 - -9,2: - 1: 44714 - -8,1: - 1: 35016 - -7,1: + 1: 1 0: 256 + -7,1: + 1: 17604 -7,2: - 0: 17 - -8,3: - 1: 2184 + 1: 19524 -7,3: - 0: 1 + 1: 3140 + -6,1: + 1: 21877 + -6,2: + 1: 22357 + -6,3: + 1: 17173 + -6,4: + 1: 12 + -5,3: + 1: 17152 -5,4: - 1: 3822 - -9,1: - 1: 43754 - -9,3: - 1: 170 + 1: 15 + -3,4: + 1: 15 + 25,6: + 1: 12832 + 25,7: + 1: 8994 + 25,8: + 1: 8754 + 24,9: + 1: 2 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1853,13 +1973,6 @@ entities: chunkCollection: version: 2 nodes: - - node: - angle: -4.71238898038469 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1028: -12,-14 - 1029: -19,-14 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -1868,30 +1981,45 @@ entities: 1114: -5,0 1115: -3,0 1474: 24,23 - 2376: 58,-2 - 2377: 60,-2 + 3394: 11.968304,28.74898 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 2727: -22,-17 + 2728: -22,-10 - node: color: '#FFFFFFFF' id: Arrows decals: 753: 21,-16 - 1026: -13,-12 - 1027: -20,-12 - 2624: 20,-46 - 2625: 22,-46 + 2729: -15,-2 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1584: 36,18 + 2725: -8,-10 + 2726: -8,-17 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 2626: 20,-58 - 2627: 22,-58 + 2645: -13,0 + 2646: -11,0 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 3122: -23.030256,-10.18695 + 3123: -23.030256,-17.187887 + 3124: -7.0305576,-17.187887 + 3125: -7.0305576,-10.187422 + 3854: 57.969326,-2.0004528 + 3855: 59.969025,-2.0004528 - node: color: '#FED83DFF' id: Bot @@ -1921,23 +2049,11 @@ entities: 1173: 15,-2 1174: 14,-2 1175: 13,-2 - 1222: 13,26 - 1223: 11,26 - 1224: 10,26 - 1225: 11,24 - 1226: 12,24 - 1227: 13,24 - 1228: 7,25 - 1323: 12,26 1466: 22,22 1467: 22,23 1468: 22,24 1469: 22,25 1470: 23,25 - 1581: 37,17 - 1582: 38,17 - 1583: 39,17 - 1795: 10,24 2085: 52,17 2086: 52,18 2199: 68,13 @@ -1954,6 +2070,27 @@ entities: 2577: 41,-43 2578: 38,-43 2579: 37,-43 + 2835: 38,24 + 2836: 41,24 + 2845: 38,21 + 3094: 96,30 + 3148: 26,-39 + 3167: 15,-39 + 3179: 11,31 + 3180: 12,31 + 3181: 13,31 + 3185: 9,26 + 3186: 10,26 + 3187: 11,26 + 3188: 12,26 + 3189: 12,24 + 3190: 11,24 + 3191: 10,24 + 3192: 9,24 + 3910: 16,-45 + 3911: 17,-45 + 3912: 25,-45 + 3913: 26,-45 - node: cleanable: True color: '#FFFFFFFF' @@ -1999,6 +2136,17 @@ entities: 2196: 68,16 2197: 67,16 2198: 66,16 + 3143: 25,-42 + 3144: 26,-42 + 3145: 26,-43 + 3146: 25,-43 + 3151: 14,-51 + 3152: 14,-52 + 3153: 14,-53 + 3154: 28,-51 + 3155: 28,-52 + 3156: 28,-53 + 3168: 16,-39 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -2032,20 +2180,27 @@ entities: color: '#FFFFFFFF' id: BoxGreyscale decals: - 759: 16,-43 - 760: 17,-43 - 761: 25,-43 - 762: 26,-43 1552: 14,40 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: BoxGreyscale + id: BrickTileDarkCornerNe + decals: + 3076: 74,23 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 3075: 73,23 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 3078: 74,22 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw decals: - 2638: 12,-50 - 2639: 12,-49 - 2640: 12,-48 - 2641: 12,-47 + 3077: 73,22 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -2054,6 +2209,11 @@ entities: 1782: 22,-12 1783: 22,-11 1784: 22,-10 + 2885: 56,39 + 2889: 56,40 + 2969: 56,36 + 2970: 56,37 + 2971: 56,38 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -2088,11 +2248,6 @@ entities: id: BrickTileWhiteCornerNe decals: 1447: 20,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 1574: 39,19 - node: color: '#EFCC4193' id: BrickTileWhiteCornerNe @@ -2109,11 +2264,6 @@ entities: id: BrickTileWhiteCornerNw decals: 1446: 17,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 1573: 36,19 - node: color: '#EFCC4193' id: BrickTileWhiteCornerNw @@ -2136,10 +2286,10 @@ entities: decals: 1451: 20,20 - node: - color: '#DE3A3A96' + color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1576: 39,17 + 3175: 17,-43 - node: color: '#EFCC4193' id: BrickTileWhiteCornerSe @@ -2162,10 +2312,10 @@ entities: decals: 1452: 17,20 - node: - color: '#DE3A3A96' + color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 1575: 36,17 + 3165: 16,-43 - node: color: '#EFCC4193' id: BrickTileWhiteCornerSw @@ -2222,11 +2372,22 @@ entities: id: BrickTileWhiteInnerSw decals: 2083: 54,19 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSw + decals: + 3163: 16,-40 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: 1846: 17,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 2687: -23,-10 + 2688: -23,-17 - node: color: '#9FED583B' id: BrickTileWhiteLineE @@ -2257,16 +2418,18 @@ entities: 2077: 50,18 2090: 51,21 - node: - color: '#EFCC4193' + color: '#EFB34196' id: BrickTileWhiteLineE decals: - 388: 13,-36 + 3172: 17,-39 + 3173: 17,-41 + 3174: 17,-42 + 3176: 26,-40 - node: - color: '#EFCC4582' + color: '#EFCC4193' id: BrickTileWhiteLineE decals: - 472: 26,-42 - 473: 26,-41 + 388: 13,-36 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -2277,9 +2440,8 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1118: -13,-12 - 1119: -20,-12 - 1944: 32,36 + 2741: 32,36 + 3117: -3,1 - node: color: '#9FED5847' id: BrickTileWhiteLineN @@ -2304,12 +2466,12 @@ entities: decals: 1458: 18,24 1459: 19,24 - 1946: 30,36 + 2739: 30,36 + 3121: -11,1 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1945: 31,36 2056: 52,14 2057: 51,14 2058: 50,14 @@ -2319,14 +2481,13 @@ entities: 2182: 66,15 2183: 67,15 2184: 68,15 + 2740: 31,36 + 3120: -13,1 - node: - color: '#DE3A3A96' + color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1116: -3,1 - 1117: -5,1 - 1577: 38,19 - 1578: 37,19 + 3118: -5,1 - node: color: '#EFCC4193' id: BrickTileWhiteLineN @@ -2355,7 +2516,11 @@ entities: decals: 1851: 16,-6 1852: 15,-6 - 1941: 32,35 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineS + decals: + 2736: 32,36 - node: color: '#9FED583B' id: BrickTileWhiteLineS @@ -2399,14 +2564,13 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1579: 38,17 - 1580: 37,17 - 1942: 31,35 + 2737: 31,36 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 1943: 30,35 + 2738: 30,36 + 3162: 15,-40 - node: color: '#EFCC4193' id: BrickTileWhiteLineS @@ -2426,6 +2590,12 @@ entities: id: BrickTileWhiteLineW decals: 1850: 14,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 2689: -7,-17 + 2690: -7,-10 - node: color: '#9FED583B' id: BrickTileWhiteLineW @@ -2466,37 +2636,22 @@ entities: 2081: 54,17 2082: 54,18 - node: - color: '#EFCC4193' + color: '#EFB34196' id: BrickTileWhiteLineW decals: - 395: 10,-36 - 396: 10,-35 + 3161: 16,-41 - node: - color: '#EFCC4582' + color: '#EFCC4193' id: BrickTileWhiteLineW decals: - 470: 25,-42 - 471: 25,-41 - 474: 16,-41 - 475: 16,-40 + 395: 10,-36 + 396: 10,-35 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: 2224: 78,-2 2225: 78,-1 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 1093: -6,-18 - 1364: 9,27 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Caution - decals: - 1363: 9,27 - node: color: '#52B4E996' id: CheckerNESW @@ -2610,16 +2765,6 @@ entities: decals: 2222: 77,-2 2223: 77,-1 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 1211: 13,30 - 1212: 13,31 - 1213: 12,31 - 1214: 12,30 - 1215: 11,30 - 1216: 11,31 - node: color: '#D381C996' id: CheckerNWSE @@ -2628,11 +2773,12 @@ entities: 2037: 58,10 2038: 58,11 - node: - color: '#EFCC4593' + color: '#EFB34196' id: CheckerNWSE decals: - 757: 18,-18 - 758: 18,-17 + 3921: 18,-19 + 3922: 18,-18 + 3923: 18,-17 - node: color: '#FFFFFF93' id: CheckerNWSE @@ -2674,9 +2820,6 @@ entities: 414: 46,-38 415: 39,-41 416: 41,-41 - 445: 16,-39 - 446: 17,-39 - 447: 25,-39 1004: 25,-3 1005: 26,-3 1006: 27,-3 @@ -2689,9 +2832,6 @@ entities: 1023: 27,16 1024: 33,-2 1025: 35,-2 - 1097: -8,-15 - 1098: -8,-14 - 1099: -8,-13 1120: 2,-2 1121: 2,-1 1122: 2,0 @@ -2699,8 +2839,6 @@ entities: 1180: 17,-1 1181: 17,0 1182: 17,1 - 1229: 7,24 - 1230: 7,26 1694: 40,12 1695: 41,12 1696: 42,12 @@ -2724,8 +2862,10 @@ entities: 2099: 58,21 2100: 59,21 2101: 60,21 - 2599: 26,-39 2614: 28,-6 + 3182: 11,30 + 3183: 12,30 + 3184: 13,30 - node: cleanable: True color: '#FFFFFFFF' @@ -2749,6 +2889,14 @@ entities: decals: 2064: 52,14 2065: 48,14 + - node: + color: '#334E6DC8' + id: DiagonalCheckerBOverlay + decals: + 3061: 73,22 + 3062: 73,23 + 3063: 74,23 + 3064: 74,22 - node: cleanable: True color: '#FFFFFFFF' @@ -2789,35 +2937,7 @@ entities: 1152: -4,-5 1153: -4,-4 1154: -4,-5 - 1234: 6,30 - 1235: 7,31 - 1236: 6,32 - 1237: 9,30 - 1238: 9,29 - 1346: 15,20 - 1347: 14,20 - 1348: 13,23 - 1349: 12,23 - 1350: 11,23 - 1351: 7,22 - 1352: 7,21 - 1353: 10,25 - 1354: 9,27 - 1355: 7,28 - 1356: 13,28 - 1357: 11,28 - 1358: 15,24 - 1359: 12,24 - 1360: 7,24 1361: 5,24 - 1362: 7,23 - 1371: 8,17 - 1372: 7,16 - 1373: 5,16 - 1374: 8,18 - 1439: 11,24 - 1440: 10,26 - 1441: 7,25 1481: 17,21 1482: 18,22 1483: 18,23 @@ -2830,17 +2950,6 @@ entities: 1524: 23,22 1525: 23,23 1526: 23,21 - 1527: 15,23 - 1528: 14,23 - 1529: 13,24 - 1553: 39,30 - 1554: 40,31 - 1555: 39,33 - 1556: 38,33 - 1557: 37,35 - 1558: 39,35 - 1559: 41,33 - 1560: 40,33 1623: 32,17 1624: 32,18 1625: 33,17 @@ -2849,8 +2958,6 @@ entities: 1628: 33,23 1629: 34,24 1630: 33,27 - 1631: 32,29 - 1632: 32,30 1633: 30,23 1634: 30,18 1635: 29,17 @@ -2867,14 +2974,6 @@ entities: 1661: 27,23 1662: 25,25 1663: 27,26 - 1799: 8,21 - 1800: 9,21 - 1801: 9,22 - 1802: 9,23 - 1803: 10,23 - 1804: 10,22 - 1805: 8,24 - 1806: 9,24 2256: 55,-16 2257: 55,-16 2258: 56,-16 @@ -2886,6 +2985,65 @@ entities: 2306: 33,-17 2307: 31,-16 2308: 29,-17 + 3031: 36,31 + 3128: 56,35 + 3129: 57,40 + 3288: 12,28 + 3289: 11,27 + 3290: 13,27 + 3297: 8,20 + 3298: 6,22 + 3299: 6,24 + 3300: 7,23 + 3301: 7,27 + 3302: 10,24 + 3303: 10,26 + 3304: 12,26 + 3305: 12,22 + 3306: 11,23 + 3307: 14,20 + 3308: 15,23 + 3309: 14,22 + 3310: 13,24 + 3311: 12,25 + 3312: 9,22 + 3313: 8,27 + 3315: 10,25 + 3316: 9,23 + 3317: 8,24 + 3318: 6,26 + 3319: 12,23 + 3320: 10,22 + 3325: 11,20 + 3328: 12,24 + 3438: 7,31 + 3439: 7,30 + 3440: 9,32 + 3441: 8,32 + 3442: 7,32 + 3443: 5,32 + 3444: 5,31 + 3445: 9,34 + 3446: 8,34 + 3447: 9,29 + 3448: 5,35 + 3455: 7,28 + 3456: 6,27 + 3538: 6,33 + 3539: 8,33 + 3601: 4,37 + 3602: 6,38 + 3603: 4,39 + 3604: 5,40 + 3907: 29,-27 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2895: 41,34 + 2901: 39,34 + 2906: 46,27 + 2922: 49,33 - node: cleanable: True color: '#FFFFFFFF' @@ -2904,17 +3062,150 @@ entities: 484: 31,-36 618: 18,-31 619: 19,-29 - 1239: 8,29 - 1240: 8,31 - 1324: 12,22 - 1325: 8,20 - 1375: 7,17 - 1376: 8,16 - 1377: 9,19 1485: 18,21 1507: 23,23 - 1561: 39,32 2260: 55,-15 + 2995: 54,32 + 2996: 53,37 + 2997: 58,36 + 3009: 58,32 + 3029: 38,22 + 3041: 54,47 + 3132: 58,31 + 3251: 7,22 + 3252: 6,25 + 3253: 8,26 + 3254: 11,28 + 3256: 13,30 + 3257: 14,23 + 3258: 15,21 + 3259: 10,23 + 3260: 13,21 + 3261: 11,25 + 3262: 7,24 + 3263: 13,26 + 3264: 11,21 + 3265: 16,20 + 3330: 11,29 + 3418: 8,29 + 3419: 6,28 + 3433: 9,29 + 3526: 7,34 + 3540: 7,33 + 3605: 5,37 + 3606: 6,39 + 3607: 4,40 + 3613: 5,35 + 3615: 7,37 + 3616: 7,38 + 3654: 6,38 + 3856: 72,-1 + 3857: 73,-3 + 3858: 70,-5 + 3859: 72,-6 + 3860: 70,-3 + 3861: 69,-4 + 3862: 75,-2 + 3863: 72,-1 + 3864: 72,-4 + 3892: 29,-29 + 3898: 4,38 + 3909: 30,-27 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3010: 59,32 + 3011: 59,40 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3007: 59,34 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3008: 59,38 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2894: 39,33 + 2904: 40,35 + 2932: 37,19 + 2933: 38,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3000: 55,34 + 3024: 37,31 + 3025: 40,30 + 3033: 59,36 + 3039: 50,34 + 3044: 58,47 + 3131: 58,31 + 3268: 7,26 + 3269: 13,25 + 3271: 9,21 + 3272: 14,21 + 3273: 6,23 + 3274: 6,26 + 3275: 9,25 + 3276: 13,28 + 3277: 12,29 + 3278: 8,21 + 3321: 9,26 + 3322: 9,24 + 3323: 15,22 + 3324: 12,20 + 3421: 8,28 + 3435: 6,31 + 3437: 8,30 + 3457: 6,23 + 3608: 4,38 + 3609: 6,37 + 3865: 70,-2 + 3866: 70,-4 + 3867: 71,-6 + 3868: 70,-6 + 3869: 74,-3 + 3870: 72,-3 + 3891: 29,-28 + 3897: 30,-28 + 3899: 6,37 + 3900: 5,39 + 3904: 6,32 + 3905: 8,30 + 3908: 29,-27 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3001: 54,35 + 3002: 56,38 + 3003: 54,39 + 3592: 4,40 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 2896: 39,35 + 2897: 41,36 + 2900: 41,33 + 2902: 39,36 + 2903: 40,34 + 2908: 49,35 - node: cleanable: True color: '#FFFFFFFF' @@ -2974,39 +3265,6 @@ entities: 641: 15,-37 642: 16,-37 643: 15,-34 - 1245: 9,31 - 1246: 7,32 - 1247: 9,32 - 1248: 6,31 - 1249: 8,29 - 1250: 9,28 - 1251: 10,27 - 1252: 10,28 - 1332: 13,25 - 1333: 11,25 - 1334: 12,27 - 1335: 11,26 - 1336: 12,22 - 1337: 13,23 - 1338: 14,24 - 1339: 15,23 - 1340: 15,22 - 1341: 15,21 - 1342: 14,22 - 1343: 15,21 - 1344: 15,20 - 1345: 14,21 - 1380: 7,16 - 1381: 9,17 - 1382: 9,16 - 1383: 9,15 - 1384: 7,15 - 1385: 9,18 - 1386: 7,19 - 1387: 7,19 - 1388: 8,18 - 1389: 9,17 - 1390: 9,16 1492: 18,24 1493: 17,23 1494: 19,23 @@ -3016,8 +3274,6 @@ entities: 1498: 17,20 1499: 17,21 1500: 18,20 - 1501: 16,20 - 1502: 16,22 1503: 20,20 1504: 21,21 1505: 22,20 @@ -3032,13 +3288,6 @@ entities: 1516: 23,23 1517: 23,22 1518: 22,25 - 1566: 38,35 - 1567: 36,35 - 1568: 38,36 - 1569: 37,34 - 1570: 40,32 - 1571: 40,31 - 1572: 40,30 1638: 30,17 1639: 30,21 1640: 33,18 @@ -3050,9 +3299,7 @@ entities: 1646: 29,23 1647: 35,28 1648: 34,27 - 1649: 33,30 1650: 33,29 - 1651: 37,30 1652: 36,22 1664: 25,21 1665: 26,22 @@ -3067,11 +3314,6 @@ entities: 1792: 25,33 1793: 26,34 1794: 27,34 - 1807: 9,21 - 1808: 10,22 - 1809: 7,21 - 1810: 8,22 - 1811: 8,24 2263: 55,-15 2264: 55,-14 2265: 54,-14 @@ -3079,6 +3321,76 @@ entities: 2267: 57,-16 2268: 57,-15 2269: 57,-14 + 2935: 39,18 + 2982: 54,34 + 2983: 55,37 + 2984: 55,40 + 2985: 53,40 + 2986: 57,37 + 2987: 56,33 + 2988: 54,33 + 2989: 58,36 + 2990: 58,40 + 2991: 55,41 + 2992: 54,40 + 2993: 53,34 + 2994: 53,33 + 2999: 55,35 + 3012: 55,38 + 3013: 46,33 + 3015: 36,30 + 3016: 39,31 + 3017: 41,30 + 3018: 43,31 + 3027: 40,27 + 3028: 40,22 + 3030: 39,24 + 3040: 51,35 + 3042: 57,47 + 3133: 55,39 + 3279: 7,25 + 3280: 8,23 + 3281: 12,21 + 3282: 14,24 + 3283: 10,27 + 3284: 10,28 + 3286: 15,20 + 3287: 12,27 + 3326: 13,22 + 3327: 11,24 + 3329: 9,27 + 3420: 7,28 + 3429: 7,34 + 3432: 9,30 + 3611: 5,39 + 3612: 4,38 + 3614: 4,35 + 3883: 72,-5 + 3884: 71,-3 + 3885: 71,-1 + 3886: 74,-1 + 3887: 74,-3 + 3896: 30,-25 + 3901: 4,37 + 3902: 4,37 + 3903: 5,33 + 3906: 8,32 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 3004: 57,39 + 3006: 55,32 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2891: 33,30 + 2898: 40,33 + 2899: 39,35 + 2918: 58,40 - node: cleanable: True color: '#FFFFFFFF' @@ -3100,18 +3412,6 @@ entities: 615: 14,-26 616: 13,-25 617: 25,-29 - 1241: 8,30 - 1242: 7,30 - 1243: 7,31 - 1244: 8,32 - 1326: 13,22 - 1327: 13,21 - 1328: 11,22 - 1329: 8,26 - 1330: 12,25 - 1331: 11,27 - 1378: 7,18 - 1379: 8,19 1486: 18,20 1487: 19,21 1488: 19,22 @@ -3119,12 +3419,68 @@ entities: 1490: 19,23 1491: 17,24 1506: 23,21 - 1562: 39,30 - 1563: 37,33 - 1564: 37,34 - 1565: 39,34 2261: 56,-14 2262: 55,-16 + 2936: 37,18 + 2975: 53,32 + 2976: 56,34 + 2977: 54,37 + 2978: 58,40 + 2979: 56,32 + 2981: 55,31 + 3019: 37,30 + 3023: 42,31 + 3026: 39,26 + 3043: 56,47 + 3291: 8,25 + 3292: 8,22 + 3293: 7,21 + 3294: 10,21 + 3295: 13,23 + 3331: 13,29 + 3422: 9,28 + 3423: 6,32 + 3424: 5,33 + 3426: 7,34 + 3427: 8,31 + 3428: 6,30 + 3458: 6,21 + 3541: 9,33 + 3610: 5,38 + 3871: 71,-3 + 3872: 71,-4 + 3873: 69,-5 + 3874: 69,-3 + 3875: 74,-2 + 3876: 73,-1 + 3877: 75,-1 + 3878: 72,-2 + 3879: 73,-4 + 3880: 71,-6 + 3882: 74,-4 + 3894: 30,-24 + 3895: 30,-29 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3020: 39,30 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3021: 43,30 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3022: 38,31 - node: color: '#FFFFFFFF' id: FlowersBRThree @@ -3161,6 +3517,16 @@ entities: 1531: 24,17 1532: 24,18 1533: 24,18 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 3756: 68,3 + 3757: 68,4 + 3758: 68,5 + 3759: 68,6 + 3763: 53,-2 + 3764: 53,0 - node: color: '#9FED581F' id: FullTileOverlayGreyscale @@ -3180,26 +3546,14 @@ entities: 842: 43,-11 843: 44,-11 844: 44,-10 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 2299: 53,-2 - 2300: 53,0 - 2337: 68,5 - 2338: 68,6 - 2400: 68,4 - 2401: 68,3 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 1232: 8,29 - 1233: 9,29 - 1442: 16,20 - 1443: 16,22 1444: 21,20 1445: 21,21 + 3266: 16,21 + 3267: 16,20 - node: color: '#D4D4D40C' id: FullTileOverlayGreyscale @@ -3218,7 +3572,6 @@ entities: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 35: 36,20 46: 36,28 47: 36,27 48: 36,26 @@ -3327,6 +3680,14 @@ entities: 2451: 73,8 2452: 71,8 2453: 72,8 + 3655: 48,0 + 3656: 49,0 + 3657: 50,0 + 3658: 51,0 + 3690: 54,3 + 3691: 55,3 + 3692: 57,3 + 3839: 68,2 - node: color: '#9FED5847' id: HalfTileOverlayGreyscale @@ -3339,47 +3700,15 @@ entities: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 1759: 48,0 - 1760: 49,0 - 1761: 50,0 - 1762: 51,0 2204: 78,-4 2205: 79,-4 2206: 81,-4 - 2313: 77,5 - 2318: 79,2 - 2319: 80,2 - 2320: 81,2 - 2331: 75,2 - 2332: 74,2 - 2333: 73,2 - 2334: 72,2 - 2335: 70,2 - 2336: 69,2 - 2402: 68,2 - 2404: 57,3 - 2405: 55,3 - 2406: 54,3 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 187: 7,19 - 188: 9,19 - 1195: 10,28 - 1196: 9,28 - 1197: 8,28 - 1204: 14,25 - 1208: 11,28 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale - decals: - 118: 53,-4 - 120: 52,-4 - 125: 49,-5 - 126: 50,-5 - 127: 51,-5 + 3210: 14,25 + 3214: 10,28 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -3414,16 +3743,21 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 60: 33,30 73: 32,24 74: 31,24 75: 30,24 76: 29,24 77: 28,24 - 94: 36,31 - 95: 37,31 178: 36,24 1149: -2,-4 + 2744: 33,31 + 2808: 34,31 + 2823: 36,19 + 2824: 37,19 + 2825: 38,19 + 2826: 39,19 + 2939: 36,31 + 2940: 43,31 - node: color: '#EFB34128' id: HalfTileOverlayGreyscale @@ -3462,8 +3796,11 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale decals: - 2602: 49,-11 - 2603: 50,-11 + 3667: 52,-4 + 3673: 49,-11 + 3674: 50,-11 + 3677: 50,-5 + 3678: 51,-5 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -3479,6 +3816,13 @@ entities: 2437: 71,4 2446: 73,4 2447: 72,4 + 3687: 53,2 + 3710: 63,0 + 3711: 64,0 + 3712: 66,0 + 3713: 67,0 + 3714: 68,0 + 3722: 60,-8 - node: color: '#9FED5834' id: HalfTileOverlayGreyscale180 @@ -3502,40 +3846,15 @@ entities: 2212: 81,-8 2213: 80,-8 2214: 79,-8 - 2303: 53,2 - 2321: 81,1 - 2322: 80,1 - 2323: 79,1 - 2324: 78,1 - 2325: 76,1 - 2326: 75,1 - 2327: 74,1 - 2328: 73,1 - 2329: 70,1 - 2330: 71,1 - 2343: 68,0 - 2344: 67,0 - 2345: 66,0 - 2346: 64,0 - 2347: 63,0 - 2359: 60,-8 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 183: 8,15 - 184: 7,15 - 192: 9,15 - 1205: 12,21 - 1206: 11,21 - 1207: 10,21 - 1797: 9,21 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale180 - decals: - 116: 50,-3 - 117: 49,-3 + 3197: 7,21 + 3198: 9,21 + 3199: 10,21 + 3202: 12,20 + 3203: 13,20 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -3561,9 +3880,13 @@ entities: 81: 31,23 90: 33,17 91: 34,17 - 96: 36,30 - 99: 37,30 1150: -2,-6 + 2819: 36,17 + 2820: 37,17 + 2821: 38,17 + 2822: 39,17 + 2937: 36,30 + 2938: 43,30 - node: color: '#EFCC4193' id: HalfTileOverlayGreyscale180 @@ -3589,6 +3912,12 @@ entities: 460: 20,-44 461: 21,-44 462: 22,-44 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale180 + decals: + 3675: 49,-3 + 3676: 50,-3 - node: color: '#34A2C0B2' id: HalfTileOverlayGreyscale270 @@ -3602,53 +3931,34 @@ entities: decals: 102: 49,3 103: 49,2 - 2391: 55,-6 - 2396: 55,-4 2439: 70,5 2440: 70,6 2441: 70,7 + 3679: 54,-2 + 3680: 54,-1 + 3681: 54,0 + 3682: 54,1 + 3683: 52,3 + 3694: 59,3 + 3695: 59,4 + 3696: 65,3 + 3697: 65,4 + 3698: 62,3 + 3699: 62,4 + 3719: 59,-4 + 3720: 59,-5 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: 2203: 76,-5 2217: 78,-7 - 2295: 52,3 - 2296: 54,-2 - 2297: 54,-1 - 2298: 54,0 - 2301: 54,1 - 2311: 76,3 - 2312: 76,4 - 2357: 59,-5 - 2358: 59,-4 - 2419: 65,3 - 2420: 65,4 - 2421: 62,3 - 2422: 62,4 - 2423: 59,3 - 2424: 59,4 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 185: 7,16 - 186: 7,17 - 197: 7,18 - 1183: 7,22 - 1184: 7,23 - 1185: 7,24 - 1186: 7,25 - 1187: 7,26 - 1188: 7,27 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale270 - decals: - 128: 49,-9 - 129: 49,-8 - 130: 49,-7 - 131: 49,-6 + 3219: 6,22 + 3220: 6,25 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3667,8 +3977,6 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 62: 32,30 - 63: 32,29 65: 32,28 67: 33,27 68: 33,26 @@ -3680,6 +3988,16 @@ entities: 87: 32,18 88: 32,17 1148: -3,-5 + 2745: 32,30 + 2815: 32,29 + 2816: 29,28 + 2817: 29,29 + 2818: 29,30 + 2829: 35,23 + 2830: 35,22 + 2840: 38,23 + 2841: 38,22 + 2842: 38,21 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -3704,6 +4022,18 @@ entities: id: HalfTileOverlayGreyscale270 decals: 459: 19,-43 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale270 + decals: + 3669: 49,-6 + 3670: 49,-7 + 3671: 49,-8 + 3672: 49,-9 + 3775: 55,-6 + 3784: 55,-8 + 3824: 55,-5 + 3825: 55,-4 - node: color: '#34A2C0B2' id: HalfTileOverlayGreyscale90 @@ -3727,6 +4057,22 @@ entities: 2395: 57,-4 2448: 74,5 2449: 74,6 + 3660: 52,-1 + 3661: 52,-2 + 3700: 61,4 + 3701: 61,3 + 3702: 64,4 + 3703: 64,3 + 3704: 62,-7 + 3705: 62,-5 + 3706: 62,-4 + 3707: 62,-3 + 3708: 62,-2 + 3709: 62,-1 + 3754: 67,3 + 3755: 67,4 + 3785: 57,-8 + 3786: 69,1 - node: color: '#5A5A5AFF' id: HalfTileOverlayGreyscale90 @@ -3737,46 +4083,19 @@ entities: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 1764: 52,-1 - 1765: 52,-2 2208: 82,-6 2209: 82,-5 2210: 82,-7 - 2309: 78,3 - 2310: 78,4 - 2348: 62,-1 - 2349: 62,-2 - 2350: 62,-3 - 2351: 62,-4 - 2352: 62,-5 - 2353: 62,-7 - 2413: 67,3 - 2414: 67,4 - 2415: 64,3 - 2416: 64,4 - 2417: 61,3 - 2418: 61,4 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 189: 9,18 - 190: 9,17 - 191: 9,16 - 1198: 13,27 - 1199: 13,26 - 1200: 15,24 - 1201: 15,23 - 1202: 15,22 - 1203: 15,21 - - node: - color: '#D0B78BFF' - id: HalfTileOverlayGreyscale90 - decals: - 121: 53,-5 - 122: 53,-6 - 123: 53,-7 - 124: 53,-8 + 3205: 15,21 + 3206: 15,22 + 3207: 15,23 + 3208: 15,24 + 3212: 13,26 + 3213: 13,27 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -3802,7 +4121,6 @@ entities: 52: 35,27 53: 35,28 56: 34,29 - 57: 34,30 179: 36,23 1147: -1,-5 1600: 27,17 @@ -3812,10 +4130,14 @@ entities: 1604: 27,21 1605: 27,26 1606: 27,27 - 1607: 27,28 - 1608: 27,29 1609: 27,30 1610: 27,31 + 2813: 27,29 + 2814: 27,28 + 2827: 33,23 + 2828: 33,22 + 2843: 41,23 + 2844: 41,22 - node: color: '#EFCC4193' id: HalfTileOverlayGreyscale90 @@ -3836,22 +4158,21 @@ entities: 457: 23,-42 458: 23,-41 - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea + color: '#FA750096' + id: HalfTileOverlayGreyscale90 decals: - 1598: 39,24 - 1599: 40,24 + 3662: 53,-8 + 3664: 53,-6 + 3665: 53,-5 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1231: 9,26 1473: 23,25 1621: 31,18 1622: 31,20 - 2294: 52,0 + 3235: 8,26 - node: color: '#FFFFFFFF' id: LoadingArea @@ -3866,19 +4187,21 @@ entities: 1176: 13,-2 1177: 14,-2 1178: 15,-2 - 1796: 9,24 - 2293: 52,-2 + 3096: 82,30 + 3236: 8,24 - node: - angle: 4.71238898038469 rad + angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 70: 32,25 + 2838: 39,24 + 2839: 40,24 - node: + angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: North + id: LoadingArea decals: - 1155: -17,-14 + 70: 32,25 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -3906,6 +4229,25 @@ entities: 2508: 104,-18 2509: 108,-18 2510: 108,-16 + 2707: -7,-4 + 2708: -7,-5 + 2709: -7,-6 + 2710: -7,-7 + 2711: -7,-8 + 2712: -7,-9 + 2713: -7,-11 + 2714: -7,-12 + 2715: -8,-12 + 2716: -8,-13 + 2717: -8,-14 + 2718: -8,-15 + 2719: -7,-16 + 2720: -7,-18 + 2721: -7,-19 + 2722: -7,-20 + 3837: 62,2 + 3838: 65,2 + 3840: 59,2 - node: color: '#797C8250' id: QuarterTileOverlayGreyscale @@ -3929,32 +4271,16 @@ entities: 2548: 103,-16 2549: 102,-20 - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 2317: 76,2 - - node: - color: '#A4610696' + color: '#8D1C9996' id: QuarterTileOverlayGreyscale decals: - 193: 7,15 + 3401: 6,28 + 3402: 7,28 + 3403: 9,28 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1064: -22,-13 - 1065: -21,-13 - 1066: -19,-13 - 1067: -18,-13 - 1068: -17,-13 - 1069: -16,-13 - 1070: -15,-13 - 1071: -14,-13 - 1072: -12,-13 - 1073: -11,-13 - 1074: -10,-13 - 1075: -9,-13 - 1076: -8,-13 1077: -7,-13 1078: -7,-12 1079: -7,-11 @@ -4022,6 +4348,11 @@ entities: 2024: 40,5 2025: 40,4 2026: 40,3 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 2684: -22,-12 - node: color: '#D5188DFF' id: QuarterTileOverlayGreyscale @@ -4035,10 +4366,7 @@ entities: id: QuarterTileOverlayGreyscale decals: 54: 35,28 - 58: 34,30 - 61: 32,30 72: 33,24 - 100: 36,30 739: 24,-25 740: 24,-24 955: 27,5 @@ -4072,8 +4400,19 @@ entities: 1111: 0,0 1112: 1,0 1113: 2,0 - 1589: 38,24 - 1590: 38,23 + 2768: 48,35 + 2769: 49,35 + 2770: 50,35 + 2771: 51,35 + 2780: 39,36 + 2781: 40,36 + 2788: 41,36 + 2941: 37,31 + 2942: 38,31 + 2943: 39,31 + 2944: 40,31 + 2945: 41,31 + 2946: 42,31 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -4112,6 +4451,9 @@ entities: 741: 28,-25 742: 28,-24 2454: 74,7 + 2723: -8,-15 + 2730: -7,-20 + 3723: 62,0 - node: color: '#797979AB' id: QuarterTileOverlayGreyscale180 @@ -4168,6 +4510,16 @@ entities: decals: 2550: 108,-20 2551: 103,-21 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale180 + decals: + 3398: 6,30 + 3399: 7,30 + 3400: 9,30 + 3412: 9,31 + 3413: 9,32 + 3535: 9,33 - node: color: '#951710FF' id: QuarterTileOverlayGreyscale180 @@ -4182,21 +4534,9 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 2341: 69,1 - 2355: 62,0 2479: 105,-17 2480: 106,-18 2481: 103,-19 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 196: 9,19 - - node: - color: '#D0B78BFF' - id: QuarterTileOverlayGreyscale180 - decals: - 119: 53,-4 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 @@ -4264,23 +4604,25 @@ entities: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 1030: -22,-15 - 1031: -21,-15 - 1032: -20,-15 - 1033: -19,-15 - 1034: -18,-15 - 1035: -17,-15 - 1036: -16,-15 - 1037: -15,-15 - 1038: -14,-15 - 1039: -13,-15 - 1040: -12,-15 - 1041: -11,-15 - 1042: -10,-15 - 1043: -9,-15 - 1044: -8,-15 - 1045: -7,-15 - 1046: -6,-15 + 2665: -23,-21 + 2666: -23,-20 + 2667: -23,-19 + 2668: -23,-18 + 2669: -23,-16 + 2670: -22,-15 + 2671: -22,-14 + 2672: -22,-13 + 2673: -22,-12 + 2674: -23,-11 + 2675: -23,-9 + 2676: -23,-8 + 2677: -23,-7 + 2678: -23,-6 + 2679: -23,-5 + 2680: -23,-4 + 2681: -23,-3 + 2682: -23,-22 + 2683: -23,-15 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -4288,7 +4630,6 @@ entities: 40: 35,21 66: 32,28 89: 32,17 - 97: 37,31 180: 36,24 2471: 105,-19 2472: 104,-18 @@ -4298,6 +4639,20 @@ entities: 2476: 103,-17 2477: 102,-18 2478: 103,-20 + 2764: 48,34 + 2765: 49,34 + 2766: 50,34 + 2767: 51,34 + 2778: 40,33 + 2779: 41,33 + 2787: 39,33 + 2807: 34,30 + 2947: 37,30 + 2948: 38,30 + 2949: 39,30 + 2950: 40,30 + 2951: 41,30 + 2952: 42,30 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 @@ -4335,6 +4690,19 @@ entities: 750: 22,-18 751: 22,-17 752: 22,-16 + - node: + color: '#FA750096' + id: QuarterTileOverlayGreyscale180 + decals: + 2955: 57,40 + 2956: 57,39 + 2957: 57,38 + 2958: 57,37 + 2959: 57,36 + 2960: 57,35 + 2965: 57,32 + 2967: 57,34 + 2968: 57,33 - node: color: '#FED83DFF' id: QuarterTileOverlayGreyscale180 @@ -4349,6 +4717,18 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 1914: 8,-2 + 3065: 69,20 + 3066: 70,20 + 3067: 71,20 + 3068: 72,20 + 3072: 71,21 + 3073: 71,22 + 3074: 71,23 + 3081: 79,29 + 3082: 79,30 + 3083: 79,31 + 3089: 80,29 + 3090: 81,29 - node: color: '#3C44AAFF' id: QuarterTileOverlayGreyscale270 @@ -4361,23 +4741,8 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1047: -22,-15 - 1048: -21,-15 - 1049: -20,-15 - 1050: -19,-15 - 1051: -18,-15 - 1052: -17,-15 - 1053: -16,-15 - 1054: -15,-15 - 1055: -14,-15 - 1056: -13,-15 - 1057: -12,-15 - 1058: -11,-15 - 1059: -10,-15 - 1060: -9,-15 - 1061: -8,-15 - 1062: -7,-15 - 1063: -6,-15 + 2685: -22,-15 + 3688: 54,2 - node: color: '#797C8250' id: QuarterTileOverlayGreyscale270 @@ -4425,7 +4790,6 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 2216: 78,-6 - 2302: 54,2 2482: 106,-19 2483: 105,-18 2484: 103,-16 @@ -4435,8 +4799,11 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 195: 7,19 - 1209: 13,21 + 3200: 11,21 + 3395: 6,30 + 3396: 7,30 + 3397: 9,30 + 3407: 6,28 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 @@ -4532,6 +4899,22 @@ entities: decals: 735: 24,-25 736: 24,-24 + 2691: -7,-20 + 2692: -7,-19 + 2693: -7,-18 + 2694: -7,-16 + 2695: -7,-15 + 2696: -8,-15 + 2697: -8,-14 + 2698: -8,-13 + 2699: -8,-12 + 2700: -7,-11 + 2701: -7,-9 + 2702: -7,-8 + 2703: -7,-7 + 2704: -7,-6 + 2705: -7,-5 + 2706: -7,-4 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4540,7 +4923,7 @@ entities: 43: 35,17 69: 33,28 82: 32,23 - 101: 36,31 + 2831: 34,23 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale270 @@ -4587,6 +4970,11 @@ entities: 222: 26,40 223: 26,41 224: 26,42 + 3079: 69,22 + 3080: 69,23 + 3084: 79,31 + 3085: 80,31 + 3086: 81,31 - node: color: '#3EB38896' id: QuarterTileOverlayGreyscale90 @@ -4598,6 +4986,34 @@ entities: 2608: 27,-25 2609: 27,-24 2610: 27,-23 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 2647: -23,-3 + 2648: -23,-4 + 2649: -23,-5 + 2650: -23,-6 + 2651: -23,-7 + 2652: -23,-8 + 2653: -23,-9 + 2654: -23,-11 + 2655: -22,-12 + 2656: -22,-13 + 2657: -22,-14 + 2658: -22,-15 + 2659: -23,-16 + 2660: -23,-18 + 2661: -23,-19 + 2662: -23,-20 + 2663: -23,-21 + 2664: -23,-22 + 2686: -23,-12 + 3689: 53,3 + 3834: 61,2 + 3835: 64,2 + 3836: 67,2 + 3841: 58,2 - node: color: '#797C8250' id: QuarterTileOverlayGreyscale90 @@ -4630,19 +5046,18 @@ entities: 2526: 102,-16 2527: 107,-18 2528: 105,-18 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 2316: 78,2 - 2407: 53,3 - 2425: 67,2 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 194: 9,15 - 1210: 13,25 + 3211: 13,25 + 3404: 6,28 + 3405: 7,28 + 3406: 9,28 + 3408: 9,30 + 3409: 9,31 + 3410: 9,32 + 3536: 9,33 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 @@ -4751,16 +5166,15 @@ entities: 1104: 0,0 1105: 1,0 1106: 2,0 + 2724: -8,-12 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: 45: 36,21 55: 34,28 - 59: 32,30 - 98: 37,30 177: 35,24 - 1591: 41,24 + 2832: 34,22 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -4828,19 +5242,13 @@ entities: decals: 9: 12,-28 10: 12,-27 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 1092: -6,-17 - 1369: 8,29 - 1370: 9,29 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: 2410: 49,4 2442: 70,8 + 3684: 52,4 - node: color: '#9FED5847' id: ThreeQuarterTileOverlayGreyscale @@ -4851,13 +5259,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 2218: 76,-4 - 2315: 76,5 - 2409: 52,4 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1189: 7,28 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale @@ -4878,6 +5279,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 1144: -3,-4 + 2743: 32,31 - node: color: '#EFB34128' id: ThreeQuarterTileOverlayGreyscale @@ -4895,6 +5297,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 468: 19,-39 + - node: + color: '#FA750096' + id: ThreeQuarterTileOverlayGreyscale + decals: + 3668: 49,-5 - node: color: '#34A2C0B2' id: ThreeQuarterTileOverlayGreyscale180 @@ -4905,21 +5312,20 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 1768: 51,1 - 2389: 57,-8 2444: 75,7 2445: 74,4 + 3715: 69,0 + 3716: 62,-8 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: 2211: 82,-8 - 2342: 69,0 - 2354: 62,-8 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1192: 15,20 + 3204: 15,20 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale180 @@ -4956,22 +5362,21 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 1766: 49,1 - 2388: 55,-8 2438: 70,4 + 3686: 52,2 + 3721: 59,-8 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: 2202: 76,-6 2215: 78,-8 - 2304: 52,2 - 2356: 59,-8 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1190: 7,21 - 1191: 13,20 + 3196: 6,21 + 3201: 11,20 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale270 @@ -5004,6 +5409,10 @@ entities: decals: 2411: 51,4 2443: 75,8 + 3659: 52,0 + 3685: 53,4 + 3693: 58,3 + 3808: 69,2 - node: color: '#9FED5847' id: ThreeQuarterTileOverlayGreyscale90 @@ -5014,17 +5423,12 @@ entities: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1763: 52,0 2207: 82,-4 - 2314: 78,5 - 2403: 58,3 - 2408: 53,4 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1193: 15,25 - 1194: 13,28 + 3209: 15,25 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale90 @@ -5053,6 +5457,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 467: 23,-39 + - node: + color: '#FA750096' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 3666: 53,-4 - node: color: '#FFFFFFFF' id: VentSmall @@ -5084,12 +5493,33 @@ entities: id: WarnCornerFlipped decals: 207: 2,-33 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleNE + decals: + 3843: 61,0 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleNW + decals: + 3842: 57,0 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSE + decals: + 3844: 61,-2 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSW + decals: + 3845: 57,-2 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: 1587: 40,27 2249: 57,-14 + 3101: 92,27 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -5099,23 +5529,39 @@ entities: 1586: 39,27 2248: 54,-14 2580: 36,-44 + 3098: 82,29 + 3102: 96,27 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 1585: 40,26 2246: 57,-16 + 3104: 92,33 + 3108: 80,33 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 1588: 39,26 2247: 54,-16 + 3097: 82,31 + 3103: 96,33 + - node: + color: '#334E6DC8' + id: WarnCornerSmallGreyscaleNE + decals: + 3116: 67,22 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: 1890: 9,-7 + - node: + color: '#334E6DC8' + id: WarnCornerSmallGreyscaleSE + decals: + 3115: 67,24 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE @@ -5125,30 +5571,33 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1368: 7,28 - 1597: 38,24 1620: 27,21 2561: 39,-49 + 3014: 46,33 + 3533: 6,33 + 3919: 18,-46 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 237: 55,9 - 1367: 10,28 - 1596: 41,24 2560: 41,-49 + 2974: 53,33 + 3920: 24,-46 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1091: -7,-15 1619: 27,26 2563: 39,-45 + 2848: 46,36 + 3653: 6,39 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 2562: 41,-45 + 2852: 53,36 - node: color: '#FFFFFFFF' id: WarnFull @@ -5162,6 +5611,8 @@ entities: id: WarnFullGreyscale decals: 2436: 71,3 + 3832: 70,2 + 3833: 70,1 - node: color: '#FFFFFFFF' id: WarnFullGreyscale @@ -5176,8 +5627,6 @@ entities: 1011: 26,-35 1012: 21,-34 1013: 21,-30 - 1217: 12,29 - 1221: 8,20 2426: 61,-9 - node: color: '#FFFFFFFF' @@ -5194,11 +5643,28 @@ entities: 2642: 40,-17 2643: 40,-16 2644: 40,-15 + 2731: -23,-23 + 2846: 46,35 + 2847: 46,34 + 3110: 80,34 + 3651: 6,38 + 3652: 6,37 - node: - color: '#9FED5896' + color: '#334E6DC8' + id: WarnLineGreyscaleE + decals: + 3114: 67,23 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 3770: 62,-6 + 3849: 61,-1 + - node: + color: '#FA750096' id: WarnLineGreyscaleE decals: - 2361: 62,-6 + 3767: 53,-7 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -5216,15 +5682,16 @@ entities: 1887: 9,-6 1888: 9,-5 1889: 9,-4 + 3170: 23,-40 + 3171: 17,-40 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2367: 61,0 - 2368: 60,0 - 2369: 58,0 - 2370: 57,0 - 2435: 71,2 + 3771: 56,3 + 3850: 58,0 + 3851: 59,0 + 3852: 60,0 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -5236,36 +5703,29 @@ entities: 443: 32,-39 444: 31,-39 469: 21,-39 - 1218: 12,28 - 1220: 8,19 1879: 10,-7 1880: 11,-7 1881: 12,-7 - 2363: 59,-4 - 2364: 60,-4 - 2365: 61,-4 - 2366: 62,-4 2397: 57,-4 - 2398: 56,-4 - 2399: 55,-4 + 3231: 11,28 + 3232: 12,28 + 3234: 13,28 + 3415: 8,28 + 3417: 5,33 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2371: 61,-2 - 2372: 60,-2 - 2373: 58,-2 - 2374: 57,-2 - 2375: 59,-2 - 2394: 56,-8 + 3762: 61,-8 + 3769: 65,0 + 3846: 58,-2 + 3847: 59,-2 + 3848: 60,-2 - node: - color: '#9FED5896' + color: '#FA750096' id: WarnLineGreyscaleS decals: - 2339: 77,1 - 2340: 72,1 - 2360: 61,-8 - 2362: 65,0 + 3768: 50,-9 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -5277,17 +5737,22 @@ entities: 689: 39,-37 690: 40,-37 813: 42,-8 - 1219: 14,20 - 1798: 8,21 1882: 12,-8 1883: 11,-8 1884: 10,-8 + 3226: 8,21 + 3227: 14,20 + 3416: 8,30 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2392: 55,-7 - 2393: 55,-5 + 3853: 57,-1 + - node: + color: '#FA750096' + id: WarnLineGreyscaleW + decals: + 3766: 55,-7 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW @@ -5305,14 +5770,12 @@ entities: 1896: 8,-8 1897: 8,-9 1898: 8,-10 - 2455: 69,0 - 2456: 69,1 - 2457: 69,2 + 3169: 19,-40 + 3177: 25,-40 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1090: -6,-15 2045: 51,13 2046: 50,13 2047: 49,13 @@ -5320,14 +5783,13 @@ entities: 2244: 77,-2 2252: 56,-16 2253: 55,-16 - 2378: 61,-2 - 2379: 60,-2 - 2380: 59,-2 - 2381: 58,-2 - 2382: 57,-2 2552: 40,-45 2600: 49,-12 2601: 50,-12 + 2732: -6,-20 + 3099: 84,32 + 3100: 86,32 + 3109: 79,33 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5346,6 +5808,12 @@ entities: 2591: 36,-47 2592: 36,-46 2593: 36,-45 + 2972: 53,34 + 2973: 53,35 + 3221: 6,27 + 3222: 6,26 + 3223: 6,24 + 3224: 6,23 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5364,10 +5832,6 @@ entities: 754: 22,-16 755: 21,-16 756: 20,-16 - 1365: 8,28 - 1366: 9,28 - 1592: 40,24 - 1593: 39,24 2048: 51,15 2049: 50,15 2050: 49,15 @@ -5375,11 +5839,6 @@ entities: 2241: 78,-1 2254: 56,-14 2255: 55,-14 - 2383: 61,0 - 2384: 60,0 - 2385: 59,0 - 2386: 58,0 - 2387: 57,0 2556: 40,-49 2581: 37,-44 2582: 38,-44 @@ -5389,6 +5848,17 @@ entities: 2586: 42,-44 2587: 44,-44 2588: 43,-44 + 2854: 48,33 + 2855: 49,33 + 2856: 50,33 + 3530: 7,33 + 3531: 8,33 + 3537: 9,33 + 3914: 19,-46 + 3915: 20,-46 + 3916: 21,-46 + 3917: 22,-46 + 3918: 23,-46 - node: color: '#FED83DFF' id: WarningLine @@ -5423,21 +5893,29 @@ entities: id: WoodTrimThinCornerNe decals: 1858: 20,-3 + 3240: 9,19 + 3249: 6,16 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 1856: 18,-3 + 3237: 5,19 + 3250: 5,16 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 1861: 20,-6 + 3239: 9,18 + 3248: 6,15 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 1853: 18,-6 + 3238: 5,18 + 3247: 5,15 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5456,12 +5934,18 @@ entities: 1095: -3,-11 1096: -4,-11 1857: 19,-3 + 3241: 8,19 + 3242: 7,19 + 3243: 6,19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: 1862: 19,-6 2598: 36,43 + 3244: 6,18 + 3245: 7,18 + 3246: 8,18 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -5470,231 +5954,242 @@ entities: 1855: 18,-4 - node: cleanable: True - angle: -4.71238898038469 rad - color: '#00000060' + angle: -1.5707963267948966 rad + color: '#1206120F' id: footprint decals: - 1274: 8.005591,29.808443 - 1275: 8.443091,30.551498 - 1276: 7.7903137,30.363998 - 1277: 7.5403137,30.107054 - 1278: 6.6653137,30.752888 - 1279: 7.7486477,31.218166 - 1280: 7.929203,31.732056 - 1281: 8.665314,31.08622 - 1282: 7.4153137,31.32233 - 1283: 8.116703,30.454277 - 1284: 8.651425,31.044556 - 1294: 7.8406677,26.12399 - 1295: 8.559418,25.93649 - 1296: 8.918793,26.452114 - 1297: 7.8875427,25.56149 + 3038: 37.85091,30.216513 - node: cleanable: True - angle: -3.141592653589793 rad - color: '#00000060' - id: footprint - decals: - 1285: 7.9222584,30.25727 - 1286: 8.206981,29.875326 - 1287: 8.054203,29.31977 - 1288: 8.387536,28.916994 - 1289: 8.068091,28.375326 - 1290: 8.401425,28.000326 - 1291: 8.165314,27.666994 - 1292: 8.540314,27.41005 - 1293: 9.262536,27.312826 - - node: angle: -1.5707963267948966 rad - color: '#00000060' + color: '#12061228' id: footprint decals: - 1410: 8.091304,16.603054 - 1411: 8.320471,16.964165 - 1412: 7.820471,17.39472 - 1413: 8.362137,16.922499 - 1414: 8.091304,17.797499 - 1415: 8.132971,18.061386 - 1416: 7.834359,18.25583 - 1417: 8.382971,18.450275 - 1418: 8.445471,17.83222 + 3037: 37.455074,30.584824 - node: cleanable: True angle: -1.5707963267948966 rad - color: '#00000060' + color: '#12061247' id: footprint decals: - 1263: 6.5194807,30.009832 - 1264: 6.887536,30.565388 - 1265: 7.1514254,30.093164 - 1266: 7.5194807,30.676498 - 1267: 8.200036,30.113998 - 1268: 8.422258,30.940388 - 1269: 9.026425,30.315388 - 1270: 6.450036,31.676498 - 1271: 7.241703,31.891777 - 1272: 8.130591,31.03761 - 1273: 7.026425,31.35011 - 1298: 11.25042,22.296373 - 1299: 12.234795,21.765123 - 1300: 12.703545,22.343248 - 1301: 13.734795,21.671373 - 1302: 14.53167,22.202623 - 1303: 14.93792,21.390123 + 3034: 36.107853,30.160917 + 3035: 36.482853,30.550077 + 3036: 37.08702,30.258207 - node: - color: '#00000060' + cleanable: True + angle: -1.5707963267948966 rad + color: '#3C323266' id: footprint decals: - 1427: 8.546305,22.79264 - 1428: 10.350877,23.736956 + 3622: 5.1542163,36.791412 + 3623: 5.80005,37.222267 + 3624: 6.230605,36.791412 + 3625: 5.11255,38.11872 + 3626: 4.480605,38.41754 + 3627: 3.9042163,38.007534 + 3636: 3.7167163,37.118027 + 3637: 4.2514386,36.791412 + 3638: 4.633383,37.229214 + 3639: 5.480605,36.881752 + 3640: 6.098661,37.26396 + 3641: 5.959772,36.819206 + 3642: 5.5778275,37.701763 - node: cleanable: True - color: '#00000060' + color: '#3C323266' id: footprint decals: - 1253: 8.831981,27.987852 - 1254: 9.005591,28.265629 - 1255: 8.769481,28.494795 - 1256: 9.054203,28.842018 - 1257: 8.755591,29.147573 - 1258: 9.109758,29.473963 - 1259: 8.762536,29.828129 - 1260: 9.088925,30.078129 - 1261: 8.755591,30.522573 - 1262: 9.081981,30.522573 - 1312: 13.708358,19.952623 - 1313: 14.145858,20.890123 - 1314: 13.630233,21.452623 - 1315: 13.739608,20.593248 - 1316: 14.130233,20.265123 - 1317: 13.661483,21.890123 - 1318: 14.036483,22.343248 - 1319: 13.458358,23.327623 - 1320: 14.020858,23.452623 - 1321: 14.005233,24.218248 - 1322: 13.645858,22.858873 - 1391: 7.237137,16.09611 - 1392: 7.7232485,16.464165 - 1393: 7.362137,16.915554 - 1394: 7.917693,17.665554 - 1395: 7.521859,18.13083 - 1396: 7.980193,18.56833 - 1397: 7.882971,19.109999 - 1429: 10.046046,23.44008 - 1430: 7.2491713,26.34633 - 1431: 8.389796,26.674456 - 1432: 13.452296,20.69008 - 1433: 13.467921,21.31508 - 1434: 8.999171,26.4967 - 1435: 8.046046,27.90295 - 1436: 8.624171,27.59045 - 1437: 8.983546,28.09045 - 1438: 8.608546,29.3092 + 3617: 4.7514386,36.826157 + 3618: 5.133383,37.236164 + 3619: 4.7653275,37.92414 + 3620: 5.168105,38.33415 + 3621: 4.7653275,38.869244 - node: + cleanable: True angle: 1.5707963267948966 rad - color: '#00000060' + color: '#3C323266' id: footprint decals: - 1419: 7.966304,16.290554 - 1420: 7.626026,15.89472 - 1421: 6.952415,16.39472 - 1422: 6.9801927,15.866943 - 1423: 6.834359,17.01972 - 1424: 6.876026,17.748886 - 1425: 7.542693,18.01972 - 1426: 7.709359,19.228054 + 3628: 5.11255,38.737206 + 3629: 4.848661,38.49398 + 3630: 4.5361605,37.86855 + 3631: 4.05005,37.395996 + 3632: 3.6681051,37.792107 + 3633: 3.9736605,37.708714 + 3634: 3.6958828,37.395996 + 3635: 4.3139386,37.722614 - node: cleanable: True - angle: 1.5707963267948966 rad - color: '#00000060' + angle: -3.141592653589793 rad + color: '#3C323270' id: footprint decals: - 1304: 14.972425,21.077623 - 1305: 14.316175,21.655748 - 1306: 13.8318,21.202623 - 1307: 13.003675,21.843248 - 1308: 12.534925,21.390123 - 1309: 11.6443,21.843248 - 1310: 10.972425,21.468248 + 3643: 5.152672,32.323315 + 3644: 4.850589,31.760422 - node: cleanable: True - angle: 3.141592653589793 rad - color: '#00000060' + color: '#3C323270' id: footprint decals: - 1398: 6.8551927,16.728054 - 1399: 7.570471,17.200275 - 1400: 7.1607485,17.623886 - 1401: 8.2649145,17.76972 - 1402: 7.7857485,18.45722 - 1403: 8.2440815,18.929443 - 1404: 8.2232485,18.65861 - 1405: 8.132971,18.03361 - 1406: 7.292692,18.554443 - 1407: 7.8274145,17.075275 - 1408: 7.167692,16.964165 - 1409: 7.4732485,16.31833 + 3645: 12.683783,26.23768 + 3646: 13.173366,26.82142 + 3647: 12.777533,27.290495 + 3648: 13.204616,27.884659 + 3649: 12.767116,28.270344 + 3650: 13.121283,28.781115 - node: cleanable: True - angle: 6.283185307179586 rad - color: '#00000060' + angle: -3.141592653589793 rad + color: '#4632327F' id: footprint decals: - 1311: 7.894642,22.655748 + 3459: 7.786436,27.447971 + 3460: 8.098936,28.059507 + 3461: 7.765602,28.810028 + 3462: 8.182269,29.303427 + 3463: 7.8003244,29.914963 + 3464: 8.182269,30.58904 + 3465: 7.79338,31.068169 + 3466: 4.765602,32.756844 + 3468: 4.7794914,34.091103 + 3469: 5.1614356,34.854633 + 3470: 4.807269,35.605152 + 3471: 5.203102,36.20974 - node: cleanable: True - color: '#0000065D' + angle: -1.5707963267948966 rad + color: '#4632327F' id: footprint decals: - 1812: 8.153207,20.861673 - 1813: 8.434457,21.127298 - 1814: 8.215707,21.486673 - 1815: 8.512582,21.892923 - 1816: 8.309457,22.142923 - 1817: 8.731332,22.627298 - 1818: 8.496957,23.517923 - 1819: 8.262582,24.096048 + 3339: 9.7551565,23.26556 + 3340: 10.199601,22.820807 + 3341: 10.789879,23.24471 + 3342: 11.282934,22.862501 + 3343: 12.08849,23.272509 + 3344: 12.560712,22.834705 + 3363: 8.78505,22.233381 + 3364: 9.298939,21.941511 + 3365: 9.979495,22.309822 + 3366: 8.208661,22.017954 + 3367: 7.4447727,22.268127 + 3500: 8.125149,30.19862 + 3501: 8.625149,29.872005 + 3502: 9.069593,30.177773 + 3511: 7.786661,28.240509 + 3512: 8.321383,27.74711 + 3513: 8.92555,28.205763 + 3514: 9.258883,27.802704 + 3515: 9.904717,28.212711 - node: cleanable: True - angle: 1.5707963267948966 rad - color: '#0000065D' + color: '#4632327F' id: footprint decals: - 1834: 9.684457,21.892923 - 1835: 8.856332,22.736673 - 1836: 8.856332,22.721048 - 1837: 10.309457,22.674173 - 1838: 11.246957,22.017923 - 1839: 10.028207,22.033548 - 1840: 10.215707,22.627298 - 1841: 9.262582,22.174173 - 1842: 9.106332,22.221048 + 3332: 13.713909,20.02025 + 3333: 14.151409,20.360764 + 3334: 13.706546,20.923655 + 3335: 14.095434,21.389256 + 3336: 13.6926565,21.959097 + 3337: 14.116268,22.640125 + 3338: 13.706546,23.293356 + 3358: 8.194773,20.90607 + 3359: 7.8475504,21.302177 + 3360: 8.173939,21.823374 + 3361: 7.7850504,22.497452 + 3362: 8.132273,23.053394 + 3478: 5.7794914,30.754562 + 3479: 6.140602,31.234062 + 3480: 5.79338,31.73441 + 3481: 6.1753244,32.332047 + 3496: 8.590913,31.748306 + 3497: 8.292302,32.345943 + 3503: 7.8585606,27.74704 + 3504: 8.150227,28.435019 + 3505: 7.7196712,29.053503 + 3506: 8.198838,29.574697 + 3507: 7.7405043,30.297422 + 3508: 7.976616,30.756943 + 3509: 8.210273,27.260662 + 3510: 7.793606,26.725567 + 3542: 5.813014,32.55113 + 3543: 6.104681,33.051476 + 3544: 8.569844,32.77003 + 3545: 8.246928,33.09317 - node: cleanable: True - angle: 3.141592653589793 rad - color: '#0000065D' + angle: 1.5707963267948966 rad + color: '#4632327F' id: footprint decals: - 1820: 7.856332,21.033548 - 1821: 8.215707,21.408548 - 1822: 7.950082,21.892923 - 1823: 8.762582,22.283548 - 1824: 8.293832,23.142923 - 1825: 8.965707,23.392923 + 3345: 15.178768,21.34061 + 3346: 14.782934,20.916706 + 3347: 14.282934,21.24332 + 3348: 13.5051565,20.902807 + 3349: 13.178768,21.305864 + 3350: 12.532934,20.937553 + 3351: 11.914879,21.333662 + 3352: 11.345434,20.923655 + 3353: 10.748212,21.326712 + 3354: 10.074601,20.909756 + 3355: 13.1926565,25.221567 + 3356: 12.595434,24.818508 + 3357: 11.762101,25.263262 + 3368: 6.7781057,25.172922 + 3369: 7.125328,24.776814 + 3370: 7.7642174,25.20072 + 3385: 13.443252,22.368464 + 3386: 13.033529,22.01405 + 3387: 12.686307,22.340666 + 3388: 12.221029,21.979303 + 3389: 11.734919,22.410158 + 3390: 11.387696,21.951508 + 3391: 11.109919,22.431005 + 3392: 10.630752,21.951508 + 3393: 15.878498,20.976871 + 3483: 8.112824,31.657967 + 3484: 7.432269,31.331352 + 3485: 6.703102,31.748306 + 3486: 6.3767133,31.366096 + 3487: 5.633658,31.922039 + 3490: 5.0989356,32.749004 + 3492: 7.6128244,30.712868 + 3493: 7.1336575,31.178467 + 3494: 6.6128244,30.733715 + 3495: 5.994769,31.122875 + 3516: 15.162565,20.48974 + 3517: 14.683398,20.187449 + 3518: 14.183398,20.656523 + 3519: 13.641731,20.27084 + 3520: 8.2431135,24.784645 + 3521: 8.8368635,25.201601 + 3522: 17.269722,20.829908 + 3523: 16.759306,20.339985 + 3524: 16.155138,20.871605 + 3525: 15.665556,20.29829 + 3546: 5.6948442,33.072323 + 3547: 6.580261,32.77003 + 3548: 7.2885942,33.08275 + 3549: 7.799011,32.811726 - node: cleanable: True - angle: 4.71238898038469 rad - color: '#0000065D' + angle: 3.141592653589793 rad + color: '#4632327F' id: footprint decals: - 1826: 8.762582,21.236673 - 1827: 9.184457,21.986673 - 1828: 9.731332,21.486673 - 1829: 9.762582,22.346048 - 1830: 10.543832,21.799173 - 1831: 10.918832,22.111673 - 1832: 11.606332,21.705423 - 1833: 12.215707,22.096048 + 3371: 11.68782,23.220688 + 3372: 11.993376,22.81763 + 3373: 11.666986,22.206095 + 3374: 12.06282,21.664051 + 3375: 11.701709,21.122007 + 3376: 12.076709,20.593864 + 3377: 9.729486,25.284622 + 3378: 10.076709,24.82597 + 3379: 9.722542,24.283926 + 3380: 10.104486,23.436115 + 3381: 9.743376,22.748137 + 3382: 10.194764,22.185247 + 3383: 9.790189,21.868116 + 3384: 10.158244,21.353868 - node: cleanable: True angle: -4.71238898038469 rad @@ -5785,10 +6280,7 @@ entities: 517: 21.085358,-39.21534 518: 20.606192,-39.21534 519: 16.110773,-41.92628 - 520: 16.312162,-40.836002 - 521: 15.944107,-40.405445 522: 16.124662,-41.55128 - 523: 16.194107,-40.780445 527: 21.153759,-38.723778 528: 20.771816,-38.58489 529: 21.077372,-38.26544 @@ -5905,7 +6397,6 @@ entities: decals: 505: 16.144655,-41.73583 506: 16.436321,-41.476566 - 507: 16.311321,-41.008976 - node: color: '#FFFFFFFF' id: ghost @@ -5997,8 +6488,47 @@ entities: - type: Transform pos: 48.345963,-21.521229 parent: 2 +- proto: ActionToggleInternals + entities: + - uid: 5500 + components: + - type: Transform + parent: 5530 + - type: InstantAction + container: 5530 + - uid: 6197 + components: + - type: Transform + parent: 10847 + - type: InstantAction + container: 10847 +- proto: ActionToggleLight + entities: + - uid: 13568 + components: + - type: Transform + parent: 13567 + - type: InstantAction + container: 13567 - proto: AirAlarm entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 8106 + - 14672 + - 29 + - 8238 + - 371 + - 14735 + - 14736 + - 429 + - 8203 - uid: 138 components: - type: Transform @@ -6124,22 +6654,14 @@ entities: parent: 2 - type: DeviceList devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - 7837 - 7838 + - 13985 + - 13980 + - 193 + - 241 + - 14065 + - 14064 - uid: 2296 components: - type: Transform @@ -6246,23 +6768,19 @@ entities: - 6684 - 6570 - 6571 - - uid: 7839 + - uid: 7962 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-15.5 + pos: 7.5,17.5 parent: 2 - type: DeviceList devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 7843 - - 7472 - - 7469 + - 8106 + - 6908 + - 12833 + - 6911 + - 14960 - uid: 8011 components: - type: Transform @@ -6291,18 +6809,6 @@ entities: - 8009 - 6778 - 7708 - - uid: 8239 - components: - - type: Transform - pos: 14.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 12522 - - 8237 - - 8238 - - 8222 - - 8229 - uid: 8922 components: - type: Transform @@ -6336,6 +6842,8 @@ entities: - 9589 - 9570 - 9569 + - 9236 + - 13510 - uid: 9637 components: - type: Transform @@ -6434,6 +6942,18 @@ entities: - type: DeviceList devices: - 8659 + - uid: 10988 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 6774 + - 9456 + - 7760 + - 2301 + - 1812 - uid: 11165 components: - type: Transform @@ -6493,6 +7013,9 @@ entities: - 6568 - 6640 - 6628 + - 14994 + - 14992 + - 12161 - uid: 11730 components: - type: Transform @@ -6553,12 +7076,12 @@ entities: - 5190 - 11332 - 11355 - - 12158 - - 12159 - - 12161 - 12162 - 11938 - 11945 + - 9896 + - 9897 + - 9858 - uid: 12163 components: - type: Transform @@ -6568,9 +7091,8 @@ entities: devices: - 11366 - 11367 - - 12158 - - 12159 - - 12161 + - 9896 + - 9897 - uid: 12416 components: - type: Transform @@ -6729,19 +7251,6 @@ entities: devices: - 11957 - 11956 - - uid: 12520 - components: - - type: Transform - pos: 19.5,25.5 - parent: 2 - - type: DeviceList - devices: - - 12519 - - 12086 - - 8237 - - 8238 - - 8236 - - 8235 - uid: 12528 components: - type: Transform @@ -6754,6 +7263,9 @@ entities: - 8575 - 8629 - 8630 + - 2263 + - 10452 + - 2265 - uid: 12530 components: - type: Transform @@ -6817,6 +7329,129 @@ entities: - 12563 - 10346 - 10401 + - uid: 13512 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 8349 + - 13511 + - 4414 + - 13515 + - 13517 + - 3152 + - 13523 + - 13514 + - 13507 + - uid: 13984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 14063 + - 14061 + - 14062 + - 13974 + - 13975 + - 13976 + - 13979 + - 13978 + - 13977 + - 13983 + - 13982 + - 13981 + - 14014 + - 14015 + - 14029 + - 14031 + - 14030 + - 14032 + - uid: 14067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 13967 + - 13894 + - 13973 + - 14066 + - 2125 + - 192 + - 1317 + - 1336 + - 7469 + - 1232 + - 1161 + - 7895 + - 6854 + - 7663 + - uid: 14247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 14547 + - 14385 + - 14373 + - 14377 + - 14384 + - 14420 + - 14421 + - 14433 + - 14432 + - 14549 + - 14552 + - 14551 + - 14553 + - uid: 14615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 14614 + - 14613 + - 14616 + - 14622 + - uid: 14670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 14671 + - 14669 + - 14667 + - 14672 + - uid: 14754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 30 + - 8238 + - 29 + - 12086 + - 8236 + - 8235 - proto: AirCanister entities: - uid: 2078 @@ -6839,35 +7474,40 @@ entities: - type: Transform pos: 85.5,-1.5 parent: 2 - - uid: 5747 + - uid: 8337 components: - type: Transform - pos: 48.5,-13.5 + pos: 46.5,38.5 parent: 2 - - uid: 7858 + - uid: 9900 components: - type: Transform - pos: 70.5,-19.5 + pos: 46.5,-14.5 parent: 2 - uid: 10794 components: - type: Transform pos: 78.5,-16.5 parent: 2 - - uid: 10842 + - uid: 11521 components: - type: Transform - pos: 46.5,36.5 + pos: 71.5,-18.5 parent: 2 - - uid: 10843 + - uid: 12802 components: - type: Transform - pos: 46.5,35.5 + pos: 14.5,-9.5 parent: 2 - - uid: 12802 + - uid: 13571 components: - type: Transform - pos: 14.5,-9.5 + pos: 46.5,37.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: 81.5,34.5 parent: 2 - proto: Airlock entities: @@ -6891,11 +7531,6 @@ entities: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 2290 - components: - - type: Transform - pos: 41.5,36.5 - parent: 2 - uid: 8842 components: - type: Transform @@ -7000,22 +7635,22 @@ entities: parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 2081 + - uid: 41 components: - type: Transform - pos: 16.5,22.5 + pos: 16.5,21.5 parent: 2 - - uid: 2082 + - uid: 7015 components: - type: Transform - pos: 16.5,20.5 + pos: 21.5,20.5 parent: 2 - - uid: 2083 + - uid: 7168 components: - type: Transform - pos: 21.5,20.5 + pos: 16.5,20.5 parent: 2 - - uid: 11094 + - uid: 7880 components: - type: Transform pos: 21.5,21.5 @@ -7082,6 +7717,12 @@ entities: - type: Transform pos: 25.5,41.5 parent: 2 + - uid: 14095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,21.5 + parent: 2 - proto: AirlockCommandLocked entities: - uid: 2788 @@ -7096,6 +7737,18 @@ entities: - type: Transform pos: 29.5,36.5 parent: 2 + - uid: 14087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,23.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,32.5 + parent: 2 - proto: AirlockDetectiveGlassLocked entities: - uid: 2004 @@ -7105,10 +7758,11 @@ entities: parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 2131 + - uid: 11279 components: - type: Transform - pos: 40.5,18.5 + rot: 1.5707963267948966 rad + pos: 41.5,21.5 parent: 2 - proto: AirlockEngineering entities: @@ -7168,15 +7822,16 @@ entities: parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 118 + - uid: 70 components: - type: Transform - pos: 3.5,-9.5 + rot: -1.5707963267948966 rad + pos: 24.5,-39.5 parent: 2 - - uid: 128 + - uid: 118 components: - type: Transform - pos: 14.5,33.5 + pos: 3.5,-9.5 parent: 2 - uid: 596 components: @@ -7203,62 +7858,59 @@ entities: - type: Transform pos: 34.5,-16.5 parent: 2 - - uid: 3408 - components: - - type: Transform - pos: 69.5,43.5 - parent: 2 - - uid: 3490 + - uid: 2046 components: - type: Transform - pos: 48.5,27.5 + rot: -1.5707963267948966 rad + pos: 18.5,-39.5 parent: 2 - - uid: 4637 + - uid: 3208 components: - type: Transform - pos: 18.5,-39.5 + pos: 35.5,33.5 parent: 2 - - uid: 4643 + - uid: 3267 components: - type: Transform - pos: 24.5,-39.5 + rot: -1.5707963267948966 rad + pos: 70.5,-12.5 parent: 2 - - type: Door - secondsUntilStateChange: -5888.925 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 4744 + - uid: 3408 components: - type: Transform - pos: 44.5,28.5 + pos: 69.5,43.5 parent: 2 - - uid: 5726 + - uid: 3490 components: - type: Transform - pos: 52.5,-11.5 + pos: 48.5,27.5 parent: 2 - uid: 5824 components: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 6198 + - uid: 6899 components: - type: Transform - pos: 70.5,-13.5 + pos: 16.5,-12.5 parent: 2 - - uid: 6899 + - uid: 11212 components: - type: Transform - pos: 16.5,-12.5 + pos: 10.5,16.5 parent: 2 - uid: 13715 components: - type: Transform pos: 6.5,-22.5 parent: 2 + - uid: 15005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-12.5 + parent: 2 - proto: AirlockExternal entities: - uid: 1889 @@ -7327,55 +7979,17 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - - uid: 69 - components: - - type: Transform - pos: 11.5,37.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 70: - - DoorStatus: DoorBolt - - uid: 70 - components: - - type: Transform - pos: 11.5,35.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 69: - - DoorStatus: DoorBolt - - uid: 171 - components: - - type: Transform - pos: 15.5,-41.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 173: - - DoorStatus: DoorBolt - uid: 173 components: - type: Transform pos: 13.5,-43.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 171: + 225: - DoorStatus: DoorBolt - - uid: 225 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 2 - uid: 226 components: - type: Transform @@ -7441,107 +8055,194 @@ entities: linkedPorts: 12931: - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,49.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,49.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-20.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-16.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-22.5 + parent: 2 - proto: AirlockExternalGlassCargoLocked entities: - - uid: 258 + - uid: 411 components: - type: Transform - pos: 6.5,24.5 + pos: 5.5,24.5 parent: 2 - - uid: 2001 + - uid: 428 components: - type: Transform - pos: 6.5,26.5 + rot: -1.5707963267948966 rad + pos: 5.5,26.5 parent: 2 - - uid: 6863 + - uid: 974 components: - type: Transform - pos: 6.5,16.5 + pos: 5.5,34.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7886: + 975: - DoorStatus: DoorBolt - 7881: - - DoorStatus: DoorBolt - - uid: 7674 + - uid: 975 components: - type: Transform - pos: 6.5,17.5 + pos: 5.5,36.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7886: + 974: - DoorStatus: DoorBolt - 7881: - - DoorStatus: DoorBolt - - uid: 7881 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 225 components: - type: Transform - pos: 4.5,17.5 + rot: -1.5707963267948966 rad + pos: 15.5,-41.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 6863: - - DoorStatus: DoorBolt - 7674: + 173: - DoorStatus: DoorBolt - - uid: 7886 + - uid: 662 components: - type: Transform - pos: 4.5,16.5 + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 941 + components: + - type: Transform + pos: -14.5,-23.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7674: + 13780: - DoorStatus: DoorBolt - 6863: + - uid: 4556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4517: - DoorStatus: DoorBolt -- proto: AirlockExternalGlassLocked - entities: - - uid: 2734 + - uid: 8930 components: - type: Transform - pos: -5.5,-18.5 + pos: 73.5,20.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 6839: + 2333: - DoorStatus: DoorBolt - - uid: 6839 + - uid: 14224 components: - type: Transform - pos: -5.5,-15.5 + pos: 81.5,28.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2734: + 14221: - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 1332 + - uid: 13727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-10.5 + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 parent: 2 - - uid: 1334 + - uid: 13730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-10.5 + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-16.5 parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: @@ -7551,12 +8252,24 @@ entities: rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - - uid: 193 + - uid: 7544 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 + - uid: 7985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - uid: 8327 @@ -7565,6 +8278,44 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,4.5 parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,51.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,51.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 - proto: AirlockExternalLocked entities: - uid: 1369 @@ -7589,17 +8340,42 @@ entities: linkedPorts: 1369: - DoorStatus: DoorBolt - - uid: 3202 + - uid: 2333 components: - type: Transform - pos: 56.5,49.5 + rot: 3.141592653589793 rad + pos: 75.5,20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8930: + - DoorStatus: DoorBolt + - uid: 4517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4556: + - DoorStatus: DoorBolt + - uid: 7759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,45.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2167: - - DoorStatus: Close + 13556: + - DoorStatus: DoorBolt - uid: 8728 components: - type: Transform @@ -7622,20 +8398,40 @@ entities: linkedPorts: 8728: - DoorStatus: DoorBolt -- proto: AirlockExternalShuttleLocked - entities: - - uid: 2167 + - uid: 13556 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,51.5 + pos: 64.5,43.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7759: + - DoorStatus: DoorBolt + - uid: 13780 + components: + - type: Transform + pos: -14.5,-25.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 3202: - - DoorStatus: Close + 941: + - DoorStatus: DoorBolt + - uid: 14221 + components: + - type: Transform + pos: 81.5,26.5 + parent: 2 - type: DeviceLinkSink invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14224: + - DoorStatus: DoorBolt - proto: AirlockFreezer entities: - uid: 10 @@ -7648,6 +8444,18 @@ entities: - type: Transform pos: 9.5,12.5 parent: 2 + - uid: 6066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,35.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,37.5 + parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 559 @@ -7665,6 +8473,27 @@ entities: parent: 2 - proto: AirlockGlass entities: + - uid: 49 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 - uid: 377 components: - type: Transform @@ -7800,12 +8629,6 @@ entities: - type: Transform pos: 2.5,0.5 parent: 2 - - uid: 7764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 2 - uid: 7766 components: - type: Transform @@ -7816,18 +8639,6 @@ entities: - type: Transform pos: 23.5,43.5 parent: 2 - - uid: 7769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 2 - - uid: 7779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - uid: 7870 components: - type: Transform @@ -7863,19 +8674,24 @@ entities: - type: Transform pos: 106.5,-20.5 parent: 2 + - uid: 12452 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 2002 + - uid: 7965 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,26.5 + pos: 3.5,24.5 parent: 2 - - uid: 2003 + - uid: 8030 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,24.5 + pos: 3.5,26.5 parent: 2 - proto: AirlockHeadOfPersonnelGlassLocked entities: @@ -7978,15 +8794,15 @@ entities: parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 1062 + - uid: 2115 components: - type: Transform - pos: 14.5,19.5 + pos: 14.5,28.5 parent: 2 - - uid: 2115 + - uid: 4811 components: - type: Transform - pos: 14.5,28.5 + pos: 14.5,19.5 parent: 2 - proto: AirlockMaintChapelLocked entities: @@ -8220,10 +9036,23 @@ entities: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 11018 + - uid: 13323 components: - type: Transform - pos: 71.5,22.5 + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-22.5 parent: 2 - proto: AirlockMaintMedLocked entities: @@ -8281,19 +9110,18 @@ entities: - type: Transform pos: 56.5,4.5 parent: 2 -- proto: AirlockMaintSalvageLocked +- proto: AirlockMaintSecLocked entities: - - uid: 7972 + - uid: 365 components: - type: Transform - pos: 10.5,19.5 + pos: 39.5,37.5 parent: 2 -- proto: AirlockMaintSecLocked - entities: - - uid: 2491 + - uid: 3206 components: - type: Transform - pos: 33.5,31.5 + rot: 3.141592653589793 rad + pos: 33.5,32.5 parent: 2 - uid: 7737 components: @@ -8315,6 +9143,26 @@ entities: parent: 2 - proto: AirlockMedicalGlassLocked entities: + - uid: 599 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 2 - uid: 5011 components: - type: Transform @@ -8337,6 +9185,11 @@ entities: parent: 2 - proto: AirlockMedicalLocked entities: + - uid: 1146 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 2 - uid: 11898 components: - type: Transform @@ -8344,6 +9197,11 @@ entities: parent: 2 - proto: AirlockMedicalMorgueLocked entities: + - uid: 1025 + components: + - type: Transform + pos: 72.5,0.5 + parent: 2 - uid: 11848 components: - type: Transform @@ -8351,31 +9209,39 @@ entities: parent: 2 - proto: AirlockQuartermasterGlassLocked entities: - - uid: 2084 + - uid: 191 components: - type: Transform - pos: 12.5,29.5 + pos: 8.5,20.5 parent: 2 -- proto: AirlockResearchDirectorGlassLocked +- proto: AirlockQuartermasterLocked entities: - - uid: 5232 + - uid: 2136 components: - type: Transform - pos: 62.5,12.5 + rot: 3.141592653589793 rad + pos: 5.5,17.5 parent: 2 -- proto: AirlockResearchDirectorLocked +- proto: AirlockResearchDirectorGlassLocked entities: - - uid: 5253 + - uid: 907 components: - type: Transform + rot: 1.5707963267948966 rad pos: 52.5,24.5 parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 62.5,12.5 + parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 437 + - uid: 7836 components: - type: Transform - pos: 8.5,20.5 + rot: -1.5707963267948966 rad + pos: 8.5,29.5 parent: 2 - proto: AirlockScienceGlassLocked entities: @@ -8408,28 +9274,64 @@ entities: parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 2323 + - uid: 2402 components: - type: Transform - pos: 38.5,30.5 + pos: 37.5,22.5 parent: 2 - - uid: 2324 + - uid: 3215 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 7774 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 2402 + - uid: 8408 components: - type: Transform - pos: 37.5,22.5 + rot: 3.141592653589793 rad + pos: 35.5,31.5 parent: 2 - proto: AirlockSecurityLocked entities: + - uid: 1831 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 - uid: 7736 components: - type: Transform pos: -0.5,-2.5 parent: 2 + - uid: 8430 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 13572 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 - proto: AirlockServiceLocked entities: - uid: 555 @@ -8451,21 +9353,6 @@ entities: parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 575 - components: - - type: Transform - pos: 53.5,-1.5 - parent: 2 - - uid: 576 - components: - - type: Transform - pos: 53.5,0.5 - parent: 2 - - uid: 598 - components: - - type: Transform - pos: 65.5,-0.5 - parent: 2 - uid: 2910 components: - type: Transform @@ -8476,35 +9363,57 @@ entities: - type: Transform pos: 77.5,-2.5 parent: 2 -- proto: AirlockVirologyLocked +- proto: AirSensor entities: - - uid: 599 + - uid: 30 components: - type: Transform - pos: 66.5,-7.5 + pos: 18.5,20.5 parent: 2 - - uid: 600 + - type: DeviceNetwork + deviceLists: + - 7013 + - 14754 + - uid: 185 components: - type: Transform - pos: 63.5,-5.5 + pos: 59.5,18.5 parent: 2 - - uid: 601 + - uid: 371 components: - type: Transform - pos: 72.5,0.5 + rot: 3.141592653589793 rad + pos: 11.5,25.5 parent: 2 -- proto: AirSensor - entities: - - uid: 185 + - type: DeviceNetwork + deviceLists: + - 14737 + - 5 + - uid: 1812 components: - type: Transform - pos: 59.5,18.5 + rot: -1.5707963267948966 rad + pos: 39.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - uid: 2125 components: - type: Transform pos: -3.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - uid: 2265 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 - uid: 4554 components: - type: Transform @@ -8535,11 +9444,6 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 7843 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 2 - uid: 8008 components: - type: Transform @@ -8560,6 +9464,15 @@ entities: - type: Transform pos: 26.5,-5.5 parent: 2 + - uid: 9456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - uid: 9589 components: - type: Transform @@ -8670,11 +9583,6 @@ entities: - type: Transform pos: 18.5,23.5 parent: 2 - - uid: 12522 - components: - - type: Transform - pos: 15.5,23.5 - parent: 2 - uid: 12529 components: - type: Transform @@ -8735,6 +9643,132 @@ entities: - type: Transform pos: 67.5,13.5 parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 + - uid: 13511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13515 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 14061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 14065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 14066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 14547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,30.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14614 + components: + - type: Transform + pos: 72.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 + - uid: 14671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 - proto: AltarSpawner entities: - uid: 2526 @@ -8800,11 +9834,13 @@ entities: rot: 3.141592653589793 rad pos: 10.5,11.5 parent: 2 - - uid: 671 + - uid: 598 components: + - type: MetaData + name: Service/Chem Maint APC - type: Transform rot: 3.141592653589793 rad - pos: 55.5,37.5 + pos: 49.5,-14.5 parent: 2 - uid: 681 components: @@ -8838,6 +9874,22 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 + - uid: 1177 + components: + - type: MetaData + name: Singulo APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 2 + - uid: 1316 + components: + - type: MetaData + name: Departures APC + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 2 - uid: 1539 components: - type: MetaData @@ -8872,21 +9924,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-15.5 parent: 2 - - uid: 1815 - components: - - type: MetaData - name: Detective's Office APC - - type: Transform - pos: 41.5,21.5 - parent: 2 - - uid: 1948 - components: - - type: MetaData - name: Perma Brig APC - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,29.5 - parent: 2 - uid: 2378 components: - type: MetaData @@ -8930,21 +9967,36 @@ entities: - type: Transform pos: 69.5,47.5 parent: 2 - - uid: 3407 + - uid: 3221 components: - type: MetaData - name: Maint West APC + name: Perma APC + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 3250 + components: + - type: MetaData + name: Detective APC - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-8.5 + pos: 40.5,20.5 parent: 2 - - uid: 4113 + - uid: 3333 components: - type: MetaData - name: Departures APC + name: Visitor Dock APC - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 + rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 2 + - uid: 3407 + components: + - type: MetaData + name: Maint West APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 parent: 2 - uid: 4116 components: @@ -8985,22 +10037,6 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 4815 - components: - - type: MetaData - name: Cargo Desk APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,23.5 - parent: 2 - - uid: 4829 - components: - - type: MetaData - name: Grav Gen APC - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,35.5 - parent: 2 - uid: 4877 components: - type: MetaData @@ -9133,14 +10169,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - - uid: 5577 - components: - - type: MetaData - name: Singulo APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 - parent: 2 - uid: 5648 components: - type: MetaData @@ -9215,14 +10243,6 @@ entities: - type: Transform pos: 54.5,4.5 parent: 2 - - uid: 6358 - components: - - type: MetaData - name: Maint South APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 2 - uid: 6522 components: - type: MetaData @@ -9260,13 +10280,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 2 - - uid: 6873 - components: - - type: MetaData - name: Maint North APC - - type: Transform - pos: 47.5,28.5 - parent: 2 - uid: 6954 components: - type: MetaData @@ -9282,20 +10295,21 @@ entities: - type: Transform pos: 22.5,-22.5 parent: 2 - - uid: 7473 + - uid: 8061 components: - type: MetaData - name: Arrivals APC + name: Camera Server APC - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-15.5 + rot: -1.5707963267948966 rad + pos: 33.5,36.5 parent: 2 - - uid: 8585 + - uid: 8228 components: - type: MetaData - name: Camera Server Room APC + name: Cargo Desk APC - type: Transform - pos: 30.5,38.5 + rot: 3.141592653589793 rad + pos: 18.5,19.5 parent: 2 - uid: 9020 components: @@ -9348,6 +10362,13 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,6.5 parent: 2 + - uid: 10970 + components: + - type: MetaData + name: Interrogation APC + - type: Transform + pos: 42.5,32.5 + parent: 2 - uid: 12151 components: - type: MetaData @@ -9356,6 +10377,14 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,23.5 parent: 2 + - uid: 12522 + components: + - type: MetaData + name: Grav Gen APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 - uid: 12934 components: - type: MetaData @@ -9363,10 +10392,50 @@ entities: - type: Transform pos: 37.5,-41.5 parent: 2 - - uid: 13609 + - uid: 12937 components: + - type: MetaData + name: Arrivals APC - type: Transform - pos: 58.5,32.5 + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 13497 + components: + - type: MetaData + name: North Maint APC + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 14150 + components: + - type: MetaData + name: AI Access APC + - type: Transform + pos: 72.5,24.5 + parent: 2 + - uid: 14405 + components: + - type: MetaData + name: AI Core Entrance APC + - type: Transform + pos: 80.5,32.5 + parent: 2 + - uid: 14434 + components: + - type: MetaData + name: AI Core Inner APC + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,28.5 + parent: 2 + - uid: 14691 + components: + - type: MetaData + name: Quartermaster APC + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 parent: 2 - proto: APCElectronics entities: @@ -9423,24 +10492,24 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 323 + - uid: 8254 components: - type: MetaData - name: Cargo Bay APC + name: Salvage APC - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,25.5 + pos: 10.5,33.5 parent: 2 -- proto: APCSuperCapacity - entities: - - uid: 2333 + - uid: 13690 components: - type: MetaData - name: Security APC + name: Cargo Bay APC - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,25.5 + rot: 3.141592653589793 rad + pos: 13.5,19.5 parent: 2 +- proto: APCSuperCapacity + entities: - uid: 4928 components: - type: MetaData @@ -9448,39 +10517,76 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 2 + - uid: 14639 + components: + - type: MetaData + name: Security APC + - type: Transform + pos: 35.5,29.5 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 13576 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 - proto: ArtistCircuitBoard entities: - - uid: 12661 + - uid: 14277 components: - type: Transform - pos: 52.427402,31.810074 + pos: 84.42593,28.765135 parent: 2 - proto: AsimovCircuitBoard entities: - - uid: 13649 + - uid: 14276 components: - type: Transform - pos: 52.427402,31.622574 + pos: 85.47454,28.607038 parent: 2 - proto: AtmosDeviceFanDirectional entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 - uid: 136 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 - - uid: 373 + - uid: 258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-10.5 + rot: -1.5707963267948966 rad + pos: 3.5,26.5 parent: 2 - - uid: 608 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 1854 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-10.5 + pos: -10.5,2.5 parent: 2 - uid: 2027 components: @@ -9488,6 +10594,24 @@ entities: rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 + - uid: 2609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 2 - uid: 5262 components: - type: Transform @@ -9500,23 +10624,35 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-10.5 parent: 2 - - uid: 6592 + - uid: 6876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 + rot: 1.5707963267948966 rad + pos: 87.5,4.5 parent: 2 - - uid: 6874 + - uid: 10982 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,24.5 + pos: 3.5,27.5 parent: 2 - - uid: 6876 + - uid: 14979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,4.5 + rot: 3.141592653589793 rad + pos: 55.5,51.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,51.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,23.5 parent: 2 - proto: AtmosFixBlockerMarker entities: @@ -9690,18 +10826,11 @@ entities: - type: Transform pos: 15.5,-23.5 parent: 2 - - uid: 2120 + - uid: 6910 components: - type: Transform - pos: 12.5,21.5 + pos: 13.5,20.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - proto: BananaPhoneInstrument entities: - uid: 9600 @@ -9772,11 +10901,6 @@ entities: parent: 2 - proto: Beaker entities: - - uid: 366 - components: - - type: Transform - pos: 37.43033,35.332123 - parent: 2 - uid: 4247 components: - type: Transform @@ -9809,10 +10933,10 @@ entities: - type: Transform pos: 36.5,42.5 parent: 2 - - uid: 411 + - uid: 2014 components: - type: Transform - pos: 13.5,31.5 + pos: 6.5,15.5 parent: 2 - uid: 2250 components: @@ -9824,15 +10948,10 @@ entities: - type: Transform pos: 29.5,20.5 parent: 2 - - uid: 2309 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - - uid: 2310 + - uid: 4365 components: - type: Transform - pos: 41.5,31.5 + pos: 59.5,40.5 parent: 2 - uid: 5445 components: @@ -9849,15 +10968,20 @@ entities: - type: Transform pos: 77.5,-12.5 parent: 2 + - uid: 6873 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 - uid: 9623 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 11840 + - uid: 10765 components: - type: Transform - pos: 59.5,-4.5 + pos: 63.5,4.5 parent: 2 - uid: 12245 components: @@ -9919,10 +11043,10 @@ entities: - type: Transform pos: 107.5,-23.5 parent: 2 - - uid: 13111 + - uid: 13114 components: - type: Transform - pos: 62.5,-4.5 + pos: 66.5,4.5 parent: 2 - uid: 13470 components: @@ -10009,22 +11133,22 @@ entities: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 11822 + - uid: 11299 components: - type: Transform - pos: 66.5,4.5 + pos: 63.5,4.5 parent: 2 - - uid: 11826 + - uid: 11822 components: - type: Transform - pos: 60.5,4.5 + pos: 66.5,4.5 parent: 2 - uid: 11847 components: - type: Transform pos: 59.5,-4.5 parent: 2 - - uid: 13114 + - uid: 14659 components: - type: Transform pos: 62.5,-4.5 @@ -10038,22 +11162,36 @@ entities: parent: 2 - proto: BedsheetOrange entities: - - uid: 2312 + - uid: 5253 components: - type: Transform - pos: 41.5,32.5 + rot: -1.5707963267948966 rad + pos: 59.5,32.5 parent: 2 - - uid: 2313 + - uid: 6333 components: - type: Transform - pos: 41.5,31.5 + rot: -1.5707963267948966 rad + pos: 59.5,40.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,18.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,20.5 parent: 2 - proto: BedsheetQM entities: - - uid: 252 + - uid: 2012 components: - type: Transform - pos: 13.5,31.5 + pos: 6.5,15.5 parent: 2 - proto: BedsheetRainbow entities: @@ -10146,10 +11284,10 @@ entities: parent: 2 - proto: Biogenerator entities: - - uid: 6672 + - uid: 13612 components: - type: Transform - pos: 36.5,35.5 + pos: 57.5,41.5 parent: 2 - uid: 13653 components: @@ -10168,10 +11306,10 @@ entities: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 384 + - uid: 895 components: - type: Transform - pos: 5.5,23.5 + pos: 7.5,36.5 parent: 2 - uid: 4257 components: @@ -10198,15 +11336,15 @@ entities: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 7462 + - uid: 8067 components: - type: Transform - pos: 5.5,27.5 + pos: 4.5,23.5 parent: 2 - - uid: 7618 + - uid: 8103 components: - type: Transform - pos: 5.5,15.5 + pos: 4.5,27.5 parent: 2 - uid: 12890 components: @@ -10232,14 +11370,6 @@ entities: parent: 2 - proto: BlockGameArcade entities: - - uid: 1812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,30.5 - parent: 2 - - type: SpamEmitSound - enabled: False - uid: 6617 components: - type: Transform @@ -10248,6 +11378,12 @@ entities: parent: 2 - type: SpamEmitSound enabled: False + - uid: 14655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,39.5 + parent: 2 - proto: Bonfire entities: - uid: 12709 @@ -10294,11 +11430,21 @@ entities: - type: Transform pos: 10.5,7.5 parent: 2 + - uid: 3193 + components: + - type: Transform + pos: 57.5,34.5 + parent: 2 - uid: 5100 components: - type: Transform pos: 29.5,6.5 parent: 2 + - uid: 13607 + components: + - type: Transform + pos: 57.5,33.5 + parent: 2 - proto: BoozeDispenser entities: - uid: 2921 @@ -10345,15 +11491,10 @@ entities: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 13607 + - uid: 14630 components: - type: Transform - pos: 59.5,31.5 - parent: 2 - - uid: 13608 - components: - - type: Transform - pos: 60.5,31.5 + pos: 82.5,31.5 parent: 2 - proto: BoxBeaker entities: @@ -10367,7 +11508,7 @@ entities: - uid: 8432 components: - type: Transform - pos: 41.499786,24.789263 + pos: 39.509068,21.682957 parent: 2 - proto: BoxBodyBag entities: @@ -10378,6 +11519,11 @@ entities: parent: 2 - proto: BoxFlare entities: + - uid: 7714 + components: + - type: Transform + pos: 4.504114,40.66977 + parent: 2 - uid: 8690 components: - type: Transform @@ -10385,10 +11531,10 @@ entities: parent: 2 - proto: BoxFlashbang entities: - - uid: 8433 + - uid: 6340 components: - type: Transform - pos: 40.45291,22.492388 + pos: 36.349575,28.40067 parent: 2 - uid: 8689 components: @@ -10424,8 +11570,27 @@ entities: - type: Transform pos: -1.3771312,-12.370462 parent: 2 +- proto: BoxFolderGreen + entities: + - uid: 14568 + components: + - type: Transform + pos: 89.77968,28.605122 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 14155 + components: + - type: Transform + pos: 71.5,23.5 + parent: 2 - proto: BoxFolderRed entities: + - uid: 3138 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 - uid: 6900 components: - type: Transform @@ -10453,6 +11618,11 @@ entities: - type: Transform pos: 55.05479,-10.418922 parent: 2 + - uid: 14999 + components: + - type: Transform + pos: 51.652344,4.5527577 + parent: 2 - proto: BoxFolderYellow entities: - uid: 50 @@ -10470,12 +11640,17 @@ entities: - type: Transform pos: 19.48426,-2.579442 parent: 2 + - uid: 14766 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 - proto: BoxHandcuff entities: - - uid: 8434 + - uid: 12242 components: - type: Transform - pos: 40.562286,22.648638 + pos: 36.634296,28.185242 parent: 2 - proto: BoxHeadset entities: @@ -10498,10 +11673,10 @@ entities: - type: Transform pos: 6.475267,-3.36308 parent: 2 - - uid: 2151 + - uid: 403 components: - type: Transform - pos: 10.494422,21.679125 + pos: 11.492475,20.667053 parent: 2 - uid: 5733 components: @@ -10529,10 +11704,10 @@ entities: parent: 2 - proto: BoxSechud entities: - - uid: 8691 + - uid: 7681 components: - type: Transform - pos: 41.4396,22.65098 + pos: 36.641243,28.595247 parent: 2 - proto: BoxSterileMask entities: @@ -10550,10 +11725,10 @@ entities: parent: 2 - proto: BoxZiptie entities: - - uid: 8435 + - uid: 2131 components: - type: Transform - pos: 41.124786,22.492388 + pos: 36.363464,27.983711 parent: 2 - proto: BrbSign entities: @@ -10565,7 +11740,7 @@ entities: - uid: 12269 components: - type: Transform - pos: 17.562185,24.7009 + pos: 20.494055,24.776628 parent: 2 - proto: BriefcaseBrown entities: @@ -10632,19 +11807,70 @@ entities: - uid: 2382 components: - type: Transform - pos: 47.47656,-6.4677296 + pos: 46.49411,-7.5341444 parent: 2 -- proto: CableApcExtension +- proto: ButtonFrameCaution entities: - - uid: 42 + - uid: 2045 components: - type: Transform - pos: 11.5,2.5 + rot: 1.5707963267948966 rad + pos: 52.5,33.5 parent: 2 - - uid: 51 + - uid: 8428 components: - type: Transform - pos: 6.5,15.5 + pos: 31.77084,21.463516 + parent: 2 + - uid: 8429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.777786,17.53082 + parent: 2 + - uid: 10991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 6862 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 42 + components: + - type: Transform + pos: 11.5,2.5 parent: 2 - uid: 59 components: @@ -10656,16 +11882,66 @@ entities: - type: Transform pos: 9.5,-26.5 parent: 2 + - uid: 78 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 - uid: 92 components: - type: Transform pos: 19.5,-14.5 parent: 2 + - uid: 130 + components: + - type: Transform + pos: 55.5,49.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 55.5,50.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 2 - uid: 255 components: - type: Transform pos: 59.5,-3.5 parent: 2 + - uid: 349 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 2 - uid: 420 components: - type: Transform @@ -10676,6 +11952,16 @@ entities: - type: Transform pos: 20.5,-14.5 parent: 2 + - uid: 482 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 52.5,-11.5 + parent: 2 - uid: 675 components: - type: Transform @@ -10711,60 +11997,195 @@ entities: - type: Transform pos: 37.5,-42.5 parent: 2 + - uid: 953 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 2 - uid: 1009 components: - type: Transform pos: 11.5,-38.5 parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 19.5,-57.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 13.5,-56.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 25.5,-57.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 26.5,-57.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 - uid: 1173 components: - type: Transform pos: 19.5,-13.5 parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 - uid: 1194 components: - type: Transform - pos: -15.5,15.5 + pos: 19.5,24.5 parent: 2 - - uid: 1307 + - uid: 1208 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 1319 components: - type: Transform - pos: -7.5,15.5 + pos: 9.5,24.5 parent: 2 - uid: 1323 components: - type: Transform - pos: -11.5,15.5 + pos: 6.5,16.5 parent: 2 - - uid: 1327 + - uid: 1699 components: - type: Transform - pos: -12.5,15.5 + pos: 52.5,-12.5 parent: 2 - - uid: 1328 + - uid: 1738 components: - type: Transform - pos: -13.5,15.5 + pos: 38.5,-12.5 parent: 2 - - uid: 1329 + - uid: 1739 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 1815 components: - type: Transform - pos: -14.5,15.5 + pos: 41.5,31.5 parent: 2 - uid: 1940 components: - type: Transform pos: 45.5,-28.5 parent: 2 + - uid: 1946 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: 13.5,-52.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: 13.5,-51.5 + parent: 2 - uid: 2074 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 2135 + - uid: 2087 components: - type: Transform - pos: 12.5,18.5 + pos: 9.5,23.5 parent: 2 - uid: 2140 components: @@ -10776,6 +12197,51 @@ entities: - type: Transform pos: 13.5,18.5 parent: 2 + - uid: 2154 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 70.5,-12.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 2 - uid: 2389 components: - type: Transform @@ -10796,6 +12262,11 @@ entities: - type: Transform pos: 52.5,-9.5 parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 - uid: 2438 components: - type: Transform @@ -10806,6 +12277,31 @@ entities: - type: Transform pos: 45.5,-26.5 parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 24.5,-57.5 + parent: 2 - uid: 2610 components: - type: Transform @@ -10816,6 +12312,246 @@ entities: - type: Transform pos: 45.5,-27.5 parent: 2 + - uid: 2729 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: 21.5,-57.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: 13.5,-55.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 51.5,-19.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: 40.5,36.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: 54.5,35.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 56.5,33.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 56.5,36.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 57.5,36.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 56.5,38.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 - uid: 3284 components: - type: Transform @@ -10841,15 +12577,25 @@ entities: - type: Transform pos: 45.5,-32.5 parent: 2 + - uid: 3319 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 - uid: 3404 components: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 3461 + - uid: 3428 components: - type: Transform - pos: -17.5,16.5 + pos: 69.5,29.5 parent: 2 - uid: 3515 components: @@ -10886,11 +12632,6 @@ entities: - type: Transform pos: 47.5,-29.5 parent: 2 - - uid: 4001 - components: - - type: Transform - pos: -9.5,15.5 - parent: 2 - uid: 4005 components: - type: Transform @@ -10906,15 +12647,15 @@ entities: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 4026 + - uid: 4040 components: - type: Transform - pos: -8.5,15.5 + pos: 46.5,-25.5 parent: 2 - - uid: 4040 + - uid: 4113 components: - type: Transform - pos: 46.5,-25.5 + pos: -6.5,-7.5 parent: 2 - uid: 4190 components: @@ -10951,6 +12692,11 @@ entities: - type: Transform pos: 47.5,-33.5 parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 - uid: 4294 components: - type: Transform @@ -10961,6 +12707,31 @@ entities: - type: Transform pos: 16.5,-39.5 parent: 2 + - uid: 4335 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 - uid: 4677 components: - type: Transform @@ -11216,6 +12987,11 @@ entities: - type: Transform pos: 11.5,-34.5 parent: 2 + - uid: 4745 + components: + - type: Transform + pos: 57.5,49.5 + parent: 2 - uid: 4746 components: - type: Transform @@ -11321,15 +13097,10 @@ entities: - type: Transform pos: 18.5,-24.5 parent: 2 - - uid: 4767 - components: - - type: Transform - pos: -16.5,15.5 - parent: 2 - - uid: 4827 + - uid: 4791 components: - type: Transform - pos: -17.5,15.5 + pos: 8.5,16.5 parent: 2 - uid: 4882 components: @@ -11626,10 +13397,10 @@ entities: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 5105 + - uid: 5045 components: - type: Transform - pos: 38.5,-10.5 + pos: 5.5,40.5 parent: 2 - uid: 5121 components: @@ -11686,20 +13457,15 @@ entities: - type: Transform pos: 60.5,-3.5 parent: 2 - - uid: 5283 - components: - - type: Transform - pos: -17.5,17.5 - parent: 2 - - uid: 5286 + - uid: 5287 components: - type: Transform - pos: -6.5,15.5 + pos: 9.5,16.5 parent: 2 - - uid: 5296 + - uid: 5297 components: - type: Transform - pos: -10.5,15.5 + pos: 57.5,50.5 parent: 2 - uid: 5315 components: @@ -11796,16 +13562,6 @@ entities: - type: Transform pos: 17.5,-39.5 parent: 2 - - uid: 5580 - components: - - type: Transform - pos: 17.5,-40.5 - parent: 2 - - uid: 5581 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - uid: 5582 components: - type: Transform @@ -11976,6 +13732,36 @@ entities: - type: Transform pos: 8.5,-23.5 parent: 2 + - uid: 6024 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 - uid: 6460 components: - type: Transform @@ -12041,6 +13827,11 @@ entities: - type: Transform pos: 22.5,-17.5 parent: 2 + - uid: 6592 + components: + - type: Transform + pos: 29.5,-51.5 + parent: 2 - uid: 6687 components: - type: Transform @@ -12321,60 +14112,45 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 2 - - uid: 6829 - components: - - type: Transform - pos: -4.5,15.5 - parent: 2 - - uid: 6830 + - uid: 6781 components: - type: Transform - pos: 3.5,15.5 + pos: 29.5,-52.5 parent: 2 - - uid: 6831 + - uid: 6816 components: - type: Transform - pos: -2.5,15.5 + pos: -20.5,-16.5 parent: 2 - - uid: 6836 + - uid: 6825 components: - type: Transform - pos: -0.5,15.5 + pos: 29.5,-50.5 parent: 2 - - uid: 6837 + - uid: 6829 components: - type: Transform - pos: -1.5,15.5 + pos: 29.5,-48.5 parent: 2 - - uid: 6853 + - uid: 6841 components: - type: Transform - pos: -3.5,15.5 + pos: -23.5,-13.5 parent: 2 - uid: 6855 components: - type: Transform - pos: -5.5,15.5 - parent: 2 - - uid: 6861 - components: - - type: Transform - pos: 8.5,17.5 - parent: 2 - - uid: 6862 - components: - - type: Transform - pos: 8.5,15.5 + pos: 29.5,-55.5 parent: 2 - uid: 6869 components: - type: Transform pos: 10.5,18.5 parent: 2 - - uid: 6870 + - uid: 6904 components: - type: Transform - pos: 9.5,18.5 + pos: 20.5,-57.5 parent: 2 - uid: 6920 components: @@ -12936,6 +14712,36 @@ entities: - type: Transform pos: 35.5,9.5 parent: 2 + - uid: 7237 + components: + - type: Transform + pos: 17.5,-57.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: 18.5,-57.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 2 - uid: 7273 components: - type: Transform @@ -12991,141 +14797,86 @@ entities: - type: Transform pos: 24.5,-27.5 parent: 2 - - uid: 7346 - components: - - type: Transform - pos: 8.5,18.5 - parent: 2 - uid: 7376 components: - type: Transform pos: 41.5,-24.5 parent: 2 - - uid: 7452 - components: - - type: Transform - pos: 13.5,16.5 - parent: 2 - - uid: 7453 - components: - - type: Transform - pos: 12.5,16.5 - parent: 2 - - uid: 7454 - components: - - type: Transform - pos: 12.5,17.5 - parent: 2 - - uid: 7588 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 2 - - uid: 7589 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 2 - - uid: 7590 - components: - - type: Transform - pos: -15.5,-13.5 - parent: 2 - - uid: 7592 + - uid: 7435 components: - type: Transform - pos: -16.5,-13.5 + pos: -17.5,-0.5 parent: 2 - - uid: 7593 + - uid: 7436 components: - type: Transform - pos: -17.5,-13.5 + pos: -21.5,-0.5 parent: 2 - - uid: 7594 + - uid: 7437 components: - type: Transform - pos: -18.5,-13.5 + pos: -12.5,1.5 parent: 2 - - uid: 7596 + - uid: 7438 components: - type: Transform - pos: -19.5,-13.5 + pos: -23.5,-2.5 parent: 2 - - uid: 7597 + - uid: 7439 components: - type: Transform - pos: -20.5,-13.5 + pos: -19.5,-0.5 parent: 2 - - uid: 7598 + - uid: 7440 components: - type: Transform - pos: -19.5,-12.5 + pos: -23.5,-5.5 parent: 2 - - uid: 7599 + - uid: 7442 components: - type: Transform - pos: -14.5,-13.5 + pos: -23.5,-6.5 parent: 2 - - uid: 7600 + - uid: 7443 components: - type: Transform - pos: -13.5,-13.5 + pos: -21.5,-16.5 parent: 2 - - uid: 7601 + - uid: 7449 components: - type: Transform - pos: -12.5,-13.5 + pos: -22.5,-3.5 parent: 2 - - uid: 7602 + - uid: 7452 components: - type: Transform - pos: -11.5,-13.5 + pos: 13.5,16.5 parent: 2 - - uid: 7603 + - uid: 7453 components: - type: Transform - pos: -10.5,-13.5 + pos: 12.5,16.5 parent: 2 - - uid: 7604 + - uid: 7454 components: - type: Transform - pos: -9.5,-13.5 + pos: 12.5,17.5 parent: 2 - - uid: 7605 + - uid: 7551 components: - type: Transform - pos: -8.5,-13.5 + pos: -11.5,-0.5 parent: 2 - - uid: 7606 + - uid: 7589 components: - type: Transform - pos: -7.5,-13.5 + pos: -8.5,-0.5 parent: 2 - uid: 7607 components: - type: Transform pos: -6.5,-13.5 parent: 2 - - uid: 7608 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 2 - - uid: 7609 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 2 - - uid: 7610 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 2 - - uid: 7613 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - uid: 7614 components: - type: Transform @@ -13351,31 +15102,6 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 2 - - uid: 7661 - components: - - type: Transform - pos: 2.5,15.5 - parent: 2 - - uid: 7665 - components: - - type: Transform - pos: 0.5,15.5 - parent: 2 - - uid: 7673 - components: - - type: Transform - pos: 5.5,15.5 - parent: 2 - - uid: 7677 - components: - - type: Transform - pos: 8.5,16.5 - parent: 2 - - uid: 7680 - components: - - type: Transform - pos: 1.5,15.5 - parent: 2 - uid: 7682 components: - type: Transform @@ -13481,85 +15207,100 @@ entities: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 7714 + - uid: 7713 components: - type: Transform - pos: 7.5,15.5 + pos: -13.5,-0.5 parent: 2 - - uid: 7823 + - uid: 7719 components: - type: Transform - pos: 11.5,-39.5 + pos: -12.5,-0.5 parent: 2 - - uid: 7885 + - uid: 7723 components: - type: Transform - pos: 4.5,15.5 + pos: -10.5,0.5 parent: 2 - - uid: 7964 + - uid: 7724 components: - type: Transform - pos: 7.5,17.5 + pos: -14.5,-0.5 parent: 2 - - uid: 7965 + - uid: 7727 components: - type: Transform - pos: 6.5,17.5 + pos: 7.5,21.5 parent: 2 - - uid: 7966 + - uid: 7742 components: - type: Transform - pos: 5.5,17.5 + pos: -10.5,-0.5 parent: 2 - - uid: 7967 + - uid: 7746 components: - type: Transform - pos: 5.5,18.5 + pos: -9.5,-0.5 parent: 2 - - uid: 8024 + - uid: 7748 components: - type: Transform - pos: 14.5,18.5 + pos: -15.5,-0.5 parent: 2 - - uid: 8025 + - uid: 7823 components: - type: Transform - pos: 15.5,18.5 + pos: 11.5,-39.5 parent: 2 - - uid: 8026 + - uid: 7824 components: - type: Transform - pos: 16.5,18.5 + pos: -23.5,-10.5 parent: 2 - - uid: 8027 + - uid: 7841 components: - type: Transform - pos: 17.5,18.5 + pos: 4.5,26.5 parent: 2 - - uid: 8028 + - uid: 7876 components: - type: Transform - pos: 16.5,23.5 + pos: 15.5,36.5 parent: 2 - - uid: 8029 + - uid: 7888 components: - type: Transform - pos: 17.5,23.5 + pos: 13.5,-50.5 parent: 2 - - uid: 8030 + - uid: 7942 components: - type: Transform - pos: 18.5,23.5 + pos: -23.5,-12.5 parent: 2 - - uid: 8031 + - uid: 7972 components: - type: Transform - pos: 19.5,23.5 + pos: 7.5,38.5 parent: 2 - - uid: 8032 + - uid: 8024 components: - type: Transform - pos: 19.5,22.5 + pos: 14.5,18.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: 17.5,18.5 parent: 2 - uid: 8033 components: @@ -13616,26 +15357,11 @@ entities: - type: Transform pos: 22.5,24.5 parent: 2 - - uid: 8044 - components: - - type: Transform - pos: 16.5,25.5 - parent: 2 - - uid: 8045 - components: - - type: Transform - pos: 15.5,25.5 - parent: 2 - uid: 8046 components: - type: Transform pos: 14.5,25.5 parent: 2 - - uid: 8047 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - uid: 8048 components: - type: Transform @@ -13656,11 +15382,6 @@ entities: - type: Transform pos: 9.5,25.5 parent: 2 - - uid: 8052 - components: - - type: Transform - pos: 8.5,25.5 - parent: 2 - uid: 8053 components: - type: Transform @@ -13696,25 +15417,10 @@ entities: - type: Transform pos: 5.5,26.5 parent: 2 - - uid: 8060 - components: - - type: Transform - pos: 8.5,24.5 - parent: 2 - - uid: 8061 - components: - - type: Transform - pos: 8.5,23.5 - parent: 2 - uid: 8062 components: - type: Transform - pos: 8.5,22.5 - parent: 2 - - uid: 8063 - components: - - type: Transform - pos: 8.5,21.5 + pos: 39.5,41.5 parent: 2 - uid: 8064 components: @@ -13731,11 +15437,6 @@ entities: - type: Transform pos: 12.5,22.5 parent: 2 - - uid: 8067 - components: - - type: Transform - pos: 12.5,21.5 - parent: 2 - uid: 8068 components: - type: Transform @@ -13766,20 +15467,10 @@ entities: - type: Transform pos: 12.5,28.5 parent: 2 - - uid: 8074 - components: - - type: Transform - pos: 12.5,29.5 - parent: 2 - uid: 8075 components: - type: Transform - pos: 12.5,30.5 - parent: 2 - - uid: 8076 - components: - - type: Transform - pos: 12.5,31.5 + pos: 4.5,24.5 parent: 2 - uid: 8077 components: @@ -13796,35 +15487,10 @@ entities: - type: Transform pos: 9.5,28.5 parent: 2 - - uid: 8080 - components: - - type: Transform - pos: 9.5,29.5 - parent: 2 - - uid: 8081 - components: - - type: Transform - pos: 9.5,30.5 - parent: 2 - uid: 8082 components: - type: Transform - pos: 9.5,31.5 - parent: 2 - - uid: 8083 - components: - - type: Transform - pos: 8.5,31.5 - parent: 2 - - uid: 8084 - components: - - type: Transform - pos: 7.5,31.5 - parent: 2 - - uid: 8085 - components: - - type: Transform - pos: 6.5,31.5 + pos: 13.5,-48.5 parent: 2 - uid: 8086 components: @@ -13901,61 +15567,11 @@ entities: - type: Transform pos: 22.5,27.5 parent: 2 - - uid: 8101 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - - uid: 8102 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 8103 - components: - - type: Transform - pos: 12.5,33.5 - parent: 2 - - uid: 8104 - components: - - type: Transform - pos: 11.5,33.5 - parent: 2 - - uid: 8105 - components: - - type: Transform - pos: 11.5,34.5 - parent: 2 - - uid: 8106 - components: - - type: Transform - pos: 11.5,35.5 - parent: 2 - - uid: 8107 - components: - - type: Transform - pos: 11.5,36.5 - parent: 2 - - uid: 8108 - components: - - type: Transform - pos: 13.5,35.5 - parent: 2 - uid: 8109 components: - type: Transform pos: 13.5,36.5 parent: 2 - - uid: 8110 - components: - - type: Transform - pos: 13.5,37.5 - parent: 2 - - uid: 8111 - components: - - type: Transform - pos: 13.5,38.5 - parent: 2 - uid: 8112 components: - type: Transform @@ -14131,125 +15747,90 @@ entities: - type: Transform pos: 6.5,10.5 parent: 2 - - uid: 8178 - components: - - type: Transform - pos: 11.5,-40.5 - parent: 2 - - uid: 8285 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - - uid: 8305 - components: - - type: Transform - pos: 52.5,-8.5 - parent: 2 - - uid: 8347 - components: - - type: Transform - pos: 63.5,48.5 - parent: 2 - - uid: 8389 - components: - - type: Transform - pos: 36.5,29.5 - parent: 2 - - uid: 8391 + - uid: 8164 components: - type: Transform - pos: 36.5,30.5 + pos: 16.5,-40.5 parent: 2 - - uid: 8392 + - uid: 8174 components: - type: Transform - pos: 37.5,30.5 + pos: 29.5,-49.5 parent: 2 - - uid: 8393 + - uid: 8178 components: - type: Transform - pos: 38.5,30.5 + pos: 11.5,-40.5 parent: 2 - - uid: 8394 + - uid: 8189 components: - type: Transform - pos: 40.5,30.5 + pos: 3.5,26.5 parent: 2 - - uid: 8395 + - uid: 8220 components: - type: Transform - pos: 40.5,31.5 + pos: 13.5,-46.5 parent: 2 - - uid: 8396 + - uid: 8221 components: - type: Transform - pos: 39.5,30.5 + pos: 13.5,-47.5 parent: 2 - - uid: 8397 + - uid: 8222 components: - type: Transform - pos: 40.5,32.5 + pos: 13.5,-45.5 parent: 2 - - uid: 8398 + - uid: 8285 components: - type: Transform - pos: 40.5,33.5 + pos: 41.5,21.5 parent: 2 - - uid: 8399 + - uid: 8305 components: - type: Transform - pos: 40.5,34.5 + pos: 52.5,-8.5 parent: 2 - - uid: 8400 + - uid: 8347 components: - type: Transform - pos: 39.5,34.5 + pos: 63.5,48.5 parent: 2 - - uid: 8401 + - uid: 8358 components: - type: Transform - pos: 38.5,34.5 + pos: 37.5,18.5 parent: 2 - - uid: 8402 + - uid: 8385 components: - type: Transform - pos: 37.5,34.5 + pos: 35.5,28.5 parent: 2 - - uid: 8403 + - uid: 8386 components: - type: Transform - pos: 40.5,35.5 + pos: 35.5,24.5 parent: 2 - - uid: 8404 + - uid: 8387 components: - type: Transform - pos: 41.5,35.5 + pos: 35.5,25.5 parent: 2 - - uid: 8405 + - uid: 8388 components: - type: Transform - pos: 41.5,36.5 + pos: 35.5,26.5 parent: 2 - - uid: 8406 + - uid: 8394 components: - type: Transform - pos: 41.5,32.5 + pos: 36.5,18.5 parent: 2 - uid: 8407 components: - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 8408 - components: - - type: Transform - pos: 42.5,31.5 - parent: 2 - - uid: 8409 - components: - - type: Transform - pos: 42.5,33.5 + pos: 59.5,36.5 parent: 2 - uid: 8448 components: @@ -14294,22 +15875,7 @@ entities: - uid: 8472 components: - type: Transform - pos: 37.5,25.5 - parent: 2 - - uid: 8473 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 8474 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8475 - components: - - type: Transform - pos: 34.5,25.5 + pos: 35.5,27.5 parent: 2 - uid: 8476 components: @@ -14346,11 +15912,6 @@ entities: - type: Transform pos: 31.5,29.5 parent: 2 - - uid: 8483 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - uid: 8484 components: - type: Transform @@ -14411,21 +15972,11 @@ entities: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 8496 - components: - - type: Transform - pos: 40.5,18.5 - parent: 2 - uid: 8497 components: - type: Transform pos: 39.5,18.5 parent: 2 - - uid: 8498 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2 - uid: 8499 components: - type: Transform @@ -14586,10 +16137,15 @@ entities: - type: Transform pos: 39.5,26.5 parent: 2 - - uid: 8703 + - uid: 8661 components: - type: Transform - pos: 47.5,28.5 + pos: 55.5,32.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: 56.5,37.5 parent: 2 - uid: 8704 components: @@ -14621,11 +16177,6 @@ entities: - type: Transform pos: 47.5,22.5 parent: 2 - - uid: 8713 - components: - - type: Transform - pos: 46.5,27.5 - parent: 2 - uid: 8714 components: - type: Transform @@ -14701,6 +16252,11 @@ entities: - type: Transform pos: 45.5,41.5 parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 - uid: 9131 components: - type: Transform @@ -14906,11 +16462,6 @@ entities: - type: Transform pos: 26.5,26.5 parent: 2 - - uid: 9175 - components: - - type: Transform - pos: 30.5,38.5 - parent: 2 - uid: 9176 components: - type: Transform @@ -14929,7 +16480,7 @@ entities: - uid: 9179 components: - type: Transform - pos: 30.5,34.5 + pos: 54.5,39.5 parent: 2 - uid: 9180 components: @@ -15161,11 +16712,6 @@ entities: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 9233 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - uid: 9234 components: - type: Transform @@ -15176,25 +16722,10 @@ entities: - type: Transform pos: 30.5,32.5 parent: 2 - - uid: 9236 - components: - - type: Transform - pos: 31.5,32.5 - parent: 2 - uid: 9237 components: - type: Transform - pos: 32.5,32.5 - parent: 2 - - uid: 9238 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 9239 - components: - - type: Transform - pos: 34.5,32.5 + pos: 58.5,32.5 parent: 2 - uid: 9240 components: @@ -15211,11 +16742,6 @@ entities: - type: Transform pos: 34.5,35.5 parent: 2 - - uid: 9243 - components: - - type: Transform - pos: 34.5,36.5 - parent: 2 - uid: 9244 components: - type: Transform @@ -15406,16 +16932,6 @@ entities: - type: Transform pos: 49.5,48.5 parent: 2 - - uid: 9296 - components: - - type: Transform - pos: 56.5,49.5 - parent: 2 - - uid: 9297 - components: - - type: Transform - pos: 56.5,50.5 - parent: 2 - uid: 9298 components: - type: Transform @@ -15571,16 +17087,6 @@ entities: - type: Transform pos: 69.5,28.5 parent: 2 - - uid: 9333 - components: - - type: Transform - pos: 69.5,29.5 - parent: 2 - - uid: 9334 - components: - - type: Transform - pos: 69.5,30.5 - parent: 2 - uid: 9335 components: - type: Transform @@ -15646,6 +17152,11 @@ entities: - type: Transform pos: 70.5,39.5 parent: 2 + - uid: 9454 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 - uid: 9694 components: - type: Transform @@ -15711,21 +17222,6 @@ entities: - type: Transform pos: 50.5,-12.5 parent: 2 - - uid: 9707 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 2 - - uid: 9708 - components: - - type: Transform - pos: 52.5,-12.5 - parent: 2 - - uid: 9709 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 2 - uid: 9710 components: - type: Transform @@ -16211,21 +17707,6 @@ entities: - type: Transform pos: 50.5,-18.5 parent: 2 - - uid: 9956 - components: - - type: Transform - pos: 51.5,-18.5 - parent: 2 - - uid: 9957 - components: - - type: Transform - pos: 52.5,-18.5 - parent: 2 - - uid: 9958 - components: - - type: Transform - pos: 53.5,-18.5 - parent: 2 - uid: 9959 components: - type: Transform @@ -16646,6 +18127,11 @@ entities: - type: Transform pos: 61.5,-2.5 parent: 2 + - uid: 10084 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 - uid: 10103 components: - type: Transform @@ -17336,6 +18822,11 @@ entities: - type: Transform pos: 41.5,6.5 parent: 2 + - uid: 10928 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 - uid: 10932 components: - type: Transform @@ -18021,6 +19512,16 @@ entities: - type: Transform pos: 61.5,0.5 parent: 2 + - uid: 11473 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 11632 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 - uid: 11750 components: - type: Transform @@ -18621,6 +20122,21 @@ entities: - type: Transform pos: 70.5,-17.5 parent: 2 + - uid: 12229 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 - uid: 12500 components: - type: Transform @@ -18911,6 +20427,36 @@ entities: - type: Transform pos: 114.5,-16.5 parent: 2 + - uid: 12666 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 - uid: 12949 components: - type: Transform @@ -19051,3323 +20597,3758 @@ entities: - type: Transform pos: 43.5,-48.5 parent: 2 - - uid: 13438 + - uid: 13140 components: - type: Transform - pos: 11.5,-41.5 + pos: 18.5,19.5 parent: 2 - - uid: 13449 + - uid: 13146 components: - type: Transform - pos: 11.5,-42.5 + pos: -18.5,-0.5 parent: 2 - - uid: 13466 + - uid: 13147 components: - type: Transform - pos: 10.5,-42.5 + pos: -20.5,-0.5 parent: 2 - - uid: 13530 + - uid: 13148 components: - type: Transform - pos: 55.5,37.5 + pos: -23.5,-0.5 parent: 2 - - uid: 13531 + - uid: 13149 components: - type: Transform - pos: 54.5,37.5 + pos: -23.5,-1.5 parent: 2 - - uid: 13532 + - uid: 13150 components: - type: Transform - pos: 54.5,36.5 + pos: -23.5,-4.5 parent: 2 - - uid: 13533 + - uid: 13152 components: - type: Transform - pos: 54.5,35.5 + pos: -23.5,-3.5 parent: 2 - - uid: 13534 + - uid: 13181 components: - type: Transform - pos: 54.5,34.5 + pos: -23.5,-8.5 parent: 2 - - uid: 13535 + - uid: 13182 components: - type: Transform - pos: 55.5,34.5 + pos: -23.5,-7.5 parent: 2 - - uid: 13536 + - uid: 13244 components: - type: Transform - pos: 56.5,34.5 + pos: -22.5,-16.5 parent: 2 - - uid: 13537 + - uid: 13247 components: - type: Transform - pos: 57.5,34.5 + pos: -23.5,-18.5 parent: 2 - - uid: 13538 + - uid: 13252 components: - type: Transform - pos: 58.5,34.5 + pos: -6.5,-17.5 parent: 2 - - uid: 13539 + - uid: 13253 components: - type: Transform - pos: 56.5,35.5 + pos: -6.5,-16.5 parent: 2 - - uid: 13543 + - uid: 13254 components: - type: Transform - pos: 56.5,30.5 + pos: -6.5,-15.5 parent: 2 - - uid: 13544 + - uid: 13256 components: - type: Transform - pos: 56.5,29.5 + pos: -6.5,-14.5 parent: 2 - - uid: 13545 + - uid: 13262 components: - type: Transform - pos: 56.5,28.5 + pos: -20.5,-9.5 parent: 2 - - uid: 13546 + - uid: 13272 components: - type: Transform - pos: 55.5,30.5 + pos: -8.5,-16.5 parent: 2 - - uid: 13547 + - uid: 13278 components: - type: Transform - pos: 54.5,30.5 + pos: -10.5,1.5 parent: 2 - - uid: 13548 + - uid: 13280 components: - type: Transform - pos: 53.5,30.5 + pos: -12.5,0.5 parent: 2 - - uid: 13549 + - uid: 13304 components: - type: Transform - pos: 52.5,30.5 + pos: -21.5,-9.5 parent: 2 - - uid: 13550 + - uid: 13438 components: - type: Transform - pos: 57.5,30.5 + pos: 11.5,-41.5 parent: 2 - - uid: 13551 + - uid: 13449 components: - type: Transform - pos: 58.5,30.5 + pos: 11.5,-42.5 parent: 2 - - uid: 13552 + - uid: 13466 components: - type: Transform - pos: 59.5,30.5 + pos: 10.5,-42.5 parent: 2 - - uid: 13553 + - uid: 13509 components: - type: Transform - pos: 60.5,30.5 + pos: 54.5,32.5 parent: 2 - - uid: 13554 + - uid: 13513 components: - type: Transform - pos: 59.5,34.5 + pos: 57.5,40.5 parent: 2 - - uid: 13555 + - uid: 13516 components: - type: Transform - pos: 60.5,34.5 + pos: 58.5,40.5 parent: 2 - - uid: 13556 + - uid: 13528 components: - type: Transform - pos: 61.5,34.5 + pos: 57.5,32.5 parent: 2 - - uid: 13557 + - uid: 13570 components: - type: Transform - pos: 62.5,34.5 + pos: 47.5,28.5 parent: 2 - - uid: 13558 + - uid: 13669 components: - type: Transform - pos: 62.5,33.5 + pos: -23.5,-20.5 parent: 2 - - uid: 13559 + - uid: 13670 components: - type: Transform - pos: 62.5,32.5 + pos: -23.5,-21.5 parent: 2 - - uid: 13560 + - uid: 13671 components: - type: Transform - pos: 62.5,35.5 + pos: -23.5,-22.5 parent: 2 - - uid: 13561 + - uid: 13672 components: - type: Transform - pos: 62.5,36.5 + pos: -23.5,-19.5 parent: 2 - - uid: 13562 + - uid: 13673 components: - type: Transform - pos: 62.5,37.5 + pos: -24.5,-22.5 parent: 2 - - uid: 13563 + - uid: 13674 components: - type: Transform - pos: 62.5,38.5 + pos: -25.5,-22.5 parent: 2 - - uid: 13564 + - uid: 13675 components: - type: Transform - pos: 62.5,39.5 + pos: -26.5,-22.5 parent: 2 - - uid: 13565 + - uid: 13676 components: - type: Transform - pos: 61.5,39.5 + pos: -24.5,-20.5 parent: 2 - - uid: 13566 + - uid: 13677 components: - type: Transform - pos: 61.5,40.5 + pos: -25.5,-20.5 parent: 2 - - uid: 13567 + - uid: 13678 components: - type: Transform - pos: 60.5,40.5 + pos: -26.5,-20.5 parent: 2 - - uid: 13568 + - uid: 13706 components: - type: Transform - pos: 59.5,40.5 + pos: 3.5,24.5 parent: 2 - - uid: 13569 + - uid: 13707 components: - type: Transform - pos: 59.5,41.5 + pos: 13.5,-49.5 parent: 2 - - uid: 13570 + - uid: 13711 components: - type: Transform - pos: 58.5,41.5 + pos: 6.5,-22.5 parent: 2 - - uid: 13571 + - uid: 13712 components: - type: Transform - pos: 57.5,41.5 + pos: 6.5,-21.5 parent: 2 - - uid: 13572 + - uid: 13713 components: - type: Transform - pos: 56.5,41.5 + pos: 6.5,-20.5 parent: 2 - - uid: 13573 + - uid: 13714 components: - type: Transform - pos: 55.5,41.5 + pos: 6.5,-19.5 parent: 2 - - uid: 13574 + - uid: 13784 components: - type: Transform - pos: 54.5,41.5 + pos: -4.5,-21.5 parent: 2 - - uid: 13575 + - uid: 13854 components: - type: Transform - pos: 53.5,41.5 + pos: -22.5,-22.5 parent: 2 - - uid: 13576 + - uid: 13855 components: - type: Transform - pos: 53.5,40.5 + pos: -21.5,-22.5 parent: 2 - - uid: 13577 + - uid: 13856 components: - type: Transform - pos: 52.5,40.5 + pos: -20.5,-22.5 parent: 2 - - uid: 13578 + - uid: 13857 components: - type: Transform - pos: 51.5,40.5 + pos: -19.5,-22.5 parent: 2 - - uid: 13579 + - uid: 13858 components: - type: Transform - pos: 51.5,39.5 + pos: -18.5,-22.5 parent: 2 - - uid: 13580 + - uid: 13859 components: - type: Transform - pos: 50.5,39.5 + pos: -17.5,-22.5 parent: 2 - - uid: 13581 + - uid: 13860 components: - type: Transform - pos: 50.5,38.5 + pos: -15.5,-22.5 parent: 2 - - uid: 13582 + - uid: 13861 components: - type: Transform - pos: 50.5,37.5 + pos: -14.5,-22.5 parent: 2 - - uid: 13583 + - uid: 13862 components: - type: Transform - pos: 50.5,36.5 + pos: -13.5,-22.5 parent: 2 - - uid: 13584 + - uid: 13863 components: - type: Transform - pos: 50.5,35.5 + pos: -12.5,-22.5 parent: 2 - - uid: 13585 + - uid: 13864 components: - type: Transform - pos: 50.5,34.5 + pos: -11.5,-22.5 parent: 2 - - uid: 13586 + - uid: 13865 components: - type: Transform - pos: 50.5,33.5 + pos: -10.5,-22.5 parent: 2 - - uid: 13587 + - uid: 13866 components: - type: Transform - pos: 50.5,32.5 + pos: -16.5,-22.5 parent: 2 - - uid: 13588 + - uid: 13867 components: - type: Transform - pos: 53.5,34.5 + pos: -8.5,-22.5 parent: 2 - - uid: 13589 + - uid: 13868 components: - type: Transform - pos: 52.5,34.5 + pos: -7.5,-22.5 parent: 2 - - uid: 13590 + - uid: 13869 components: - type: Transform - pos: 51.5,34.5 + pos: -9.5,-22.5 parent: 2 - - uid: 13612 + - uid: 13871 components: - type: Transform - pos: 58.5,31.5 + pos: -6.5,-18.5 parent: 2 - - uid: 13613 + - uid: 13872 components: - type: Transform - pos: 58.5,32.5 + pos: -6.5,-19.5 parent: 2 - - uid: 13711 + - uid: 13874 components: - type: Transform - pos: 6.5,-22.5 + pos: -3.5,-21.5 parent: 2 - - uid: 13712 + - uid: 13876 components: - type: Transform - pos: 6.5,-21.5 + pos: 1.5,-16.5 parent: 2 - - uid: 13713 + - uid: 13877 components: - type: Transform - pos: 6.5,-20.5 + pos: 1.5,-17.5 parent: 2 - - uid: 13714 + - uid: 13878 components: - type: Transform - pos: 6.5,-19.5 + pos: 1.5,-18.5 parent: 2 -- proto: CableApcStack - entities: - - uid: 5386 + - uid: 13879 components: - type: Transform - pos: 50.555935,8.595494 + pos: 1.5,-19.5 parent: 2 - - uid: 5387 + - uid: 13880 components: - type: Transform - pos: 50.555935,8.595494 + pos: 1.5,-20.5 parent: 2 - - uid: 5627 + - uid: 13881 components: - type: Transform - pos: 17.749475,-23.290428 + pos: 1.5,-21.5 parent: 2 - - uid: 11130 + - uid: 13882 components: - type: Transform - pos: 54.504898,-15.262592 + pos: 0.5,-21.5 parent: 2 -- proto: CableApcStack1 - entities: - - uid: 6180 + - uid: 13883 components: - type: Transform - pos: 84.31913,7.409586 + pos: -0.5,-21.5 parent: 2 -- proto: CableHV - entities: - - uid: 11 + - uid: 13884 components: - type: Transform - pos: 13.5,-12.5 + pos: -1.5,-21.5 parent: 2 - - uid: 29 + - uid: 13885 components: - type: Transform - pos: 12.5,33.5 + pos: -2.5,-21.5 parent: 2 - - uid: 61 + - uid: 14069 components: - type: Transform - pos: 15.5,-13.5 + pos: -5.5,-21.5 parent: 2 - - uid: 63 + - uid: 14070 components: - type: Transform - pos: 16.5,-11.5 + pos: -6.5,-21.5 parent: 2 - - uid: 64 + - uid: 14120 components: - type: Transform - pos: 15.5,-11.5 + pos: 72.5,21.5 parent: 2 - - uid: 65 + - uid: 14121 components: - type: Transform - pos: 14.5,-11.5 + pos: 72.5,24.5 parent: 2 - - uid: 66 + - uid: 14122 components: - type: Transform - pos: 13.5,-11.5 + pos: 74.5,23.5 parent: 2 - - uid: 318 + - uid: 14123 components: - type: Transform - pos: 64.5,15.5 + pos: 72.5,22.5 parent: 2 - - uid: 319 + - uid: 14136 components: - type: Transform - pos: 63.5,15.5 + pos: 71.5,20.5 parent: 2 - - uid: 591 + - uid: 14137 components: - type: Transform - pos: 60.5,19.5 + pos: 72.5,20.5 parent: 2 - - uid: 603 + - uid: 14138 components: - type: Transform - pos: 42.5,41.5 + pos: 73.5,20.5 parent: 2 - - uid: 628 + - uid: 14139 components: - type: Transform - pos: 60.5,18.5 + pos: 74.5,20.5 parent: 2 - - uid: 669 + - uid: 14140 components: - type: Transform - pos: 60.5,20.5 + pos: 70.5,20.5 parent: 2 - - uid: 803 + - uid: 14141 components: - type: Transform - pos: 23.5,-37.5 + pos: 69.5,20.5 parent: 2 - - uid: 828 + - uid: 14142 components: - type: Transform - pos: 24.5,-36.5 + pos: 69.5,21.5 parent: 2 - - uid: 829 + - uid: 14143 components: - type: Transform - pos: 19.5,-39.5 + pos: 69.5,22.5 parent: 2 - - uid: 830 + - uid: 14144 components: - type: Transform - pos: 17.5,-41.5 + pos: 69.5,23.5 parent: 2 - - uid: 1015 + - uid: 14147 components: - type: Transform - pos: 23.5,-36.5 + pos: 72.5,23.5 parent: 2 - - uid: 1026 + - uid: 14148 components: - type: Transform - pos: 25.5,-42.5 + pos: 73.5,23.5 parent: 2 - - uid: 1027 + - uid: 14444 components: - type: Transform - pos: 25.5,-41.5 + pos: 80.5,32.5 parent: 2 - - uid: 1223 + - uid: 14445 components: - type: Transform - pos: 62.5,15.5 + pos: 80.5,33.5 parent: 2 - - uid: 1230 + - uid: 14446 components: - type: Transform - pos: 61.5,15.5 + pos: 81.5,33.5 parent: 2 - - uid: 1231 + - uid: 14447 components: - type: Transform - pos: 60.5,15.5 + pos: 82.5,33.5 parent: 2 - - uid: 1256 + - uid: 14448 components: - type: Transform - pos: 64.5,18.5 + pos: 80.5,31.5 parent: 2 - - uid: 1275 + - uid: 14449 components: - type: Transform - pos: 60.5,16.5 + pos: 80.5,30.5 parent: 2 - - uid: 1469 + - uid: 14450 components: - type: Transform - pos: 25.5,-36.5 + pos: 81.5,30.5 parent: 2 - - uid: 1941 + - uid: 14451 components: - type: Transform - pos: 24.5,-28.5 + pos: 82.5,30.5 parent: 2 - - uid: 2332 + - uid: 14452 components: - type: Transform - pos: 43.5,41.5 + pos: 81.5,29.5 parent: 2 - - uid: 2387 + - uid: 14453 components: - type: Transform - pos: 25.5,-28.5 + pos: 81.5,28.5 parent: 2 - - uid: 2711 + - uid: 14454 components: - type: Transform - pos: 117.5,-15.5 + pos: 81.5,27.5 parent: 2 - - uid: 2832 + - uid: 14455 components: - type: Transform - pos: 23.5,-28.5 + pos: 88.5,28.5 parent: 2 - - uid: 2988 + - uid: 14456 components: - type: Transform - pos: 22.5,4.5 + pos: 88.5,29.5 parent: 2 - - uid: 2989 + - uid: 14457 components: - type: Transform - pos: 22.5,6.5 + pos: 88.5,30.5 parent: 2 - - uid: 3012 + - uid: 14458 components: - type: Transform - pos: 22.5,9.5 + pos: 87.5,30.5 parent: 2 - - uid: 3980 + - uid: 14459 components: - type: Transform - pos: 23.5,-41.5 + pos: 86.5,30.5 parent: 2 - - uid: 4020 + - uid: 14460 components: - type: Transform - pos: 26.5,-42.5 + pos: 85.5,30.5 parent: 2 - - uid: 4123 + - uid: 14461 components: - type: Transform - pos: 64.5,17.5 + pos: 84.5,30.5 parent: 2 - - uid: 4127 + - uid: 14462 components: - type: Transform - pos: 60.5,21.5 + pos: 89.5,30.5 parent: 2 - - uid: 4128 + - uid: 14463 components: - type: Transform - pos: 60.5,22.5 + pos: 90.5,30.5 parent: 2 - - uid: 4129 + - uid: 14464 components: - type: Transform - pos: 60.5,25.5 + pos: 91.5,30.5 parent: 2 - - uid: 4130 + - uid: 14465 components: - type: Transform - pos: 60.5,24.5 + pos: 92.5,30.5 parent: 2 - - uid: 4131 + - uid: 14466 components: - type: Transform - pos: 60.5,23.5 + pos: 92.5,31.5 parent: 2 - - uid: 4132 + - uid: 14467 components: - type: Transform - pos: 59.5,25.5 + pos: 92.5,32.5 parent: 2 - - uid: 4133 + - uid: 14468 components: - type: Transform - pos: 58.5,25.5 + pos: 93.5,32.5 parent: 2 - - uid: 4134 + - uid: 14469 components: - type: Transform - pos: 57.5,25.5 + pos: 94.5,32.5 parent: 2 - - uid: 4135 + - uid: 14470 components: - type: Transform - pos: 56.5,25.5 + pos: 95.5,32.5 parent: 2 - - uid: 4188 + - uid: 14471 components: - type: Transform - pos: 64.5,19.5 + pos: 96.5,32.5 parent: 2 - - uid: 4213 + - uid: 14472 components: - type: Transform - pos: 22.5,8.5 + pos: 96.5,31.5 parent: 2 - - uid: 4218 + - uid: 14473 components: - type: Transform - pos: 22.5,10.5 + pos: 92.5,29.5 parent: 2 - - uid: 4227 + - uid: 14474 components: - type: Transform - pos: 22.5,7.5 + pos: 92.5,28.5 parent: 2 - - uid: 4307 + - uid: 14475 components: - type: Transform - pos: 17.5,-40.5 + pos: 93.5,28.5 parent: 2 - - uid: 4308 + - uid: 14476 components: - type: Transform - pos: 16.5,-37.5 + pos: 94.5,28.5 parent: 2 - - uid: 4335 + - uid: 14477 components: - type: Transform - pos: 17.5,-39.5 + pos: 95.5,28.5 parent: 2 - - uid: 4336 + - uid: 14478 components: - type: Transform - pos: 18.5,-39.5 + pos: 96.5,28.5 parent: 2 - - uid: 4337 + - uid: 14479 components: - type: Transform - pos: 23.5,-42.5 + pos: 96.5,29.5 parent: 2 - - uid: 4504 + - uid: 14625 components: - type: Transform - pos: 25.5,-40.5 + pos: 64.5,45.5 parent: 2 - - uid: 4505 + - uid: 14626 components: - type: Transform - pos: 25.5,-39.5 + pos: 64.5,44.5 parent: 2 - - uid: 4506 + - uid: 14634 components: - type: Transform - pos: 24.5,-39.5 + pos: 79.5,33.5 parent: 2 - - uid: 4507 + - uid: 14635 components: - type: Transform - pos: 23.5,-39.5 + pos: 82.5,34.5 parent: 2 - - uid: 4508 + - uid: 14636 components: - type: Transform - pos: 23.5,-38.5 + pos: 81.5,26.5 parent: 2 - - uid: 4509 + - uid: 14637 components: - type: Transform - pos: 23.5,-40.5 + pos: 81.5,25.5 parent: 2 - - uid: 4510 + - uid: 14638 components: - type: Transform - pos: 23.5,-43.5 + pos: 81.5,24.5 parent: 2 - - uid: 4511 + - uid: 14640 components: - type: Transform - pos: 22.5,-43.5 + pos: 35.5,29.5 parent: 2 - - uid: 4512 + - uid: 14681 components: - type: Transform - pos: 21.5,-43.5 + pos: 13.5,19.5 parent: 2 - - uid: 4513 + - uid: 14682 components: - type: Transform - pos: 20.5,-43.5 + pos: 13.5,20.5 parent: 2 - - uid: 4514 + - uid: 14683 components: - type: Transform - pos: 19.5,-43.5 + pos: 13.5,21.5 parent: 2 - - uid: 4515 + - uid: 14684 components: - type: Transform - pos: 19.5,-41.5 + pos: 14.5,21.5 parent: 2 - - uid: 4516 + - uid: 14692 components: - type: Transform - pos: 19.5,-42.5 + pos: 6.5,17.5 parent: 2 - - uid: 4517 + - uid: 14693 components: - type: Transform - pos: 19.5,-40.5 + pos: 6.5,18.5 parent: 2 - - uid: 4518 + - uid: 14694 components: - type: Transform - pos: 17.5,-42.5 + pos: 5.5,18.5 parent: 2 - - uid: 4519 + - uid: 14695 components: - type: Transform - pos: 16.5,-42.5 + pos: 7.5,18.5 parent: 2 - - uid: 4520 + - uid: 14696 components: - type: Transform - pos: 26.5,-36.5 + pos: 8.5,18.5 parent: 2 - - uid: 4521 + - uid: 14697 components: - type: Transform - pos: 27.5,-36.5 + pos: 8.5,19.5 parent: 2 - - uid: 4522 + - uid: 14699 components: - type: Transform - pos: 28.5,-36.5 + pos: 6.5,15.5 parent: 2 - - uid: 4523 + - uid: 14700 components: - type: Transform - pos: 29.5,-36.5 + pos: 5.5,15.5 parent: 2 - - uid: 4524 + - uid: 14715 components: - type: Transform - pos: 30.5,-36.5 + pos: 10.5,33.5 parent: 2 - - uid: 4525 + - uid: 14716 components: - type: Transform - pos: 31.5,-36.5 + pos: 8.5,33.5 parent: 2 - - uid: 4526 + - uid: 14717 components: - type: Transform - pos: 31.5,-37.5 + pos: 9.5,33.5 parent: 2 - - uid: 4527 + - uid: 14718 components: - type: Transform - pos: 31.5,-38.5 + pos: 7.5,33.5 parent: 2 - - uid: 4528 + - uid: 14719 components: - type: Transform - pos: 30.5,-38.5 + pos: 6.5,33.5 parent: 2 - - uid: 4529 + - uid: 14720 components: - type: Transform - pos: 30.5,-39.5 + pos: 5.5,33.5 parent: 2 - - uid: 4530 + - uid: 14721 components: - type: Transform - pos: 30.5,-40.5 + pos: 5.5,34.5 parent: 2 - - uid: 4531 + - uid: 14722 components: - type: Transform - pos: 30.5,-41.5 + pos: 5.5,35.5 parent: 2 - - uid: 4532 + - uid: 14723 components: - type: Transform - pos: 30.5,-42.5 + pos: 5.5,36.5 parent: 2 - - uid: 4533 + - uid: 14728 components: - type: Transform - pos: 30.5,-43.5 + pos: 52.5,-13.5 parent: 2 - - uid: 4534 + - uid: 14729 components: - type: Transform - pos: 30.5,-44.5 + pos: 8.5,32.5 parent: 2 - - uid: 4535 + - uid: 14730 components: - type: Transform - pos: 26.5,-35.5 + pos: 8.5,31.5 parent: 2 - - uid: 4536 + - uid: 14732 components: - type: Transform - pos: 26.5,-34.5 + pos: 6.5,32.5 parent: 2 - - uid: 4537 + - uid: 14733 components: - type: Transform - pos: 26.5,-33.5 + pos: 6.5,31.5 parent: 2 - - uid: 4538 + - uid: 14743 components: - type: Transform - pos: 26.5,-32.5 + pos: 6.5,38.5 parent: 2 - - uid: 4541 + - uid: 14744 components: - type: Transform - pos: 25.5,-32.5 + pos: 5.5,38.5 parent: 2 - - uid: 4542 + - uid: 14763 components: - type: Transform - pos: 27.5,-32.5 + pos: 9.5,18.5 parent: 2 - - uid: 4543 + - uid: 14905 components: - type: Transform - pos: 25.5,-31.5 + pos: 8.5,30.5 parent: 2 - - uid: 4544 + - uid: 14906 components: - type: Transform - pos: 26.5,-31.5 + pos: 12.5,29.5 parent: 2 - - uid: 4545 + - uid: 14907 components: - type: Transform - pos: 27.5,-31.5 + pos: 12.5,30.5 parent: 2 - - uid: 4546 + - uid: 14908 components: - type: Transform - pos: 25.5,-30.5 + pos: 9.5,21.5 parent: 2 - - uid: 4547 + - uid: 14909 components: - type: Transform - pos: 26.5,-30.5 + pos: 8.5,21.5 parent: 2 - - uid: 4548 + - uid: 14915 components: - type: Transform - pos: 27.5,-30.5 + pos: 18.5,18.5 parent: 2 - - uid: 4549 + - uid: 14931 components: - type: Transform - pos: 26.5,-29.5 + pos: 36.5,34.5 parent: 2 - - uid: 4550 + - uid: 14932 components: - type: Transform - pos: 26.5,-28.5 + pos: 33.5,32.5 parent: 2 - - uid: 4568 + - uid: 14936 components: - type: Transform - pos: 64.5,16.5 + pos: 31.5,36.5 parent: 2 - - uid: 4573 + - uid: 14937 components: - type: Transform - pos: 60.5,17.5 + pos: 32.5,36.5 parent: 2 - - uid: 4585 + - uid: 14938 components: - type: Transform - pos: 22.5,-28.5 + pos: 33.5,36.5 parent: 2 - - uid: 4586 + - uid: 14939 components: - type: Transform - pos: 22.5,-27.5 + pos: 41.5,41.5 parent: 2 - - uid: 4588 + - uid: 14940 components: - type: Transform - pos: 22.5,-26.5 + pos: 42.5,41.5 parent: 2 - - uid: 4589 + - uid: 14941 components: - type: Transform - pos: 22.5,-25.5 + pos: 43.5,41.5 parent: 2 - - uid: 4590 + - uid: 14942 components: - type: Transform - pos: 22.5,-24.5 + pos: 44.5,41.5 parent: 2 - - uid: 4591 + - uid: 14943 components: - type: Transform - pos: 22.5,-23.5 + pos: 40.5,41.5 parent: 2 - - uid: 4592 + - uid: 15008 components: - type: Transform - pos: 21.5,-26.5 + pos: 43.5,-12.5 parent: 2 - - uid: 4593 + - uid: 15032 components: - type: Transform - pos: 20.5,-26.5 + pos: 39.5,-12.5 parent: 2 - - uid: 4594 + - uid: 15033 components: - type: Transform - pos: 19.5,-26.5 + pos: 39.5,-7.5 parent: 2 - - uid: 4595 + - uid: 15034 components: - type: Transform - pos: 18.5,-26.5 + pos: 39.5,-9.5 parent: 2 - - uid: 4596 + - uid: 15035 components: - type: Transform - pos: 17.5,-26.5 + pos: 40.5,-12.5 parent: 2 - - uid: 4597 + - uid: 15036 components: - type: Transform - pos: 16.5,-26.5 + pos: 41.5,-12.5 parent: 2 - - uid: 4598 +- proto: CableApcStack + entities: + - uid: 5386 components: - type: Transform - pos: 15.5,-26.5 + pos: 50.555935,8.595494 parent: 2 - - uid: 4599 + - uid: 5387 components: - type: Transform - pos: 14.5,-26.5 + pos: 50.555935,8.595494 parent: 2 - - uid: 4600 + - uid: 5627 components: - type: Transform - pos: 13.5,-26.5 + pos: 17.749475,-23.290428 parent: 2 - - uid: 4601 + - uid: 11130 components: - type: Transform - pos: 12.5,-26.5 + pos: 54.504898,-15.262592 parent: 2 - - uid: 4602 +- proto: CableApcStack1 + entities: + - uid: 6180 components: - type: Transform - pos: 11.5,-26.5 + pos: 84.31913,7.409586 parent: 2 - - uid: 4603 +- proto: CableHV + entities: + - uid: 11 components: - type: Transform - pos: 10.5,-26.5 + pos: 13.5,-12.5 parent: 2 - - uid: 4604 + - uid: 61 components: - type: Transform - pos: 10.5,-25.5 + pos: 15.5,-13.5 parent: 2 - - uid: 4781 + - uid: 63 components: - type: Transform - pos: 21.5,-40.5 + pos: 16.5,-11.5 parent: 2 - - uid: 4783 + - uid: 64 components: - type: Transform - pos: 21.5,-39.5 + pos: 15.5,-11.5 parent: 2 - - uid: 4784 + - uid: 65 components: - type: Transform - pos: 21.5,-38.5 + pos: 14.5,-11.5 parent: 2 - - uid: 4785 + - uid: 66 components: - type: Transform - pos: 21.5,-37.5 + pos: 13.5,-11.5 parent: 2 - - uid: 4786 + - uid: 72 components: - type: Transform - pos: 21.5,-36.5 + pos: 13.5,36.5 parent: 2 - - uid: 4787 + - uid: 75 components: - type: Transform - pos: 21.5,-35.5 + pos: 13.5,35.5 parent: 2 - - uid: 4788 + - uid: 603 components: - type: Transform - pos: 20.5,-35.5 + pos: 42.5,41.5 parent: 2 - - uid: 4789 + - uid: 628 components: - type: Transform - pos: 19.5,-35.5 + pos: 60.5,18.5 parent: 2 - - uid: 4790 + - uid: 803 components: - type: Transform - pos: 18.5,-35.5 + pos: 23.5,-37.5 parent: 2 - - uid: 4791 + - uid: 828 components: - type: Transform - pos: 18.5,-34.5 + pos: 24.5,-36.5 parent: 2 - - uid: 4792 + - uid: 830 components: - type: Transform - pos: 18.5,-33.5 + pos: 17.5,-41.5 parent: 2 - - uid: 4793 + - uid: 1015 components: - type: Transform - pos: 18.5,-32.5 + pos: 23.5,-36.5 parent: 2 - - uid: 4794 + - uid: 1469 components: - type: Transform - pos: 18.5,-31.5 + pos: 25.5,-36.5 parent: 2 - - uid: 4795 + - uid: 1941 components: - type: Transform - pos: 18.5,-30.5 + pos: 24.5,-28.5 parent: 2 - - uid: 4796 + - uid: 2019 components: - type: Transform - pos: 18.5,-29.5 + pos: 18.5,-41.5 parent: 2 - - uid: 4797 + - uid: 2020 components: - type: Transform - pos: 18.5,-28.5 + pos: 17.5,-34.5 parent: 2 - - uid: 4798 + - uid: 2025 components: - type: Transform - pos: 18.5,-27.5 + pos: 17.5,-38.5 parent: 2 - - uid: 4801 + - uid: 2030 components: - type: Transform - pos: -13.5,-33.5 + pos: 17.5,-35.5 parent: 2 - - uid: 4802 + - uid: 2054 components: - type: Transform - pos: -13.5,-32.5 + pos: 14.5,-41.5 parent: 2 - - uid: 4803 + - uid: 2127 components: - type: Transform - pos: -13.5,-31.5 + pos: 17.5,-33.5 parent: 2 - - uid: 4804 + - uid: 2319 components: - type: Transform - pos: -11.5,-33.5 + pos: 45.5,34.5 parent: 2 - - uid: 4805 + - uid: 2324 components: - type: Transform - pos: -11.5,-32.5 + pos: 45.5,38.5 parent: 2 - - uid: 4806 + - uid: 2332 components: - type: Transform - pos: -11.5,-31.5 + pos: 43.5,41.5 parent: 2 - - uid: 4807 + - uid: 2347 components: - type: Transform - pos: -12.5,-33.5 + pos: 45.5,37.5 parent: 2 - - uid: 4808 + - uid: 2353 components: - type: Transform - pos: -12.5,-34.5 + pos: 45.5,35.5 parent: 2 - - uid: 4809 + - uid: 2354 components: - type: Transform - pos: -8.5,-33.5 + pos: 45.5,32.5 parent: 2 - - uid: 4810 + - uid: 2355 components: - type: Transform - pos: -12.5,-36.5 + pos: 45.5,33.5 parent: 2 - - uid: 4816 + - uid: 2356 components: - type: Transform - pos: -12.5,-37.5 + pos: 45.5,31.5 parent: 2 - - uid: 4817 + - uid: 2360 components: - type: Transform - pos: -11.5,-37.5 + pos: 45.5,30.5 parent: 2 - - uid: 4818 + - uid: 2361 components: - type: Transform - pos: -11.5,-38.5 + pos: 45.5,29.5 parent: 2 - - uid: 4819 + - uid: 2362 components: - type: Transform - pos: -11.5,-39.5 + pos: 45.5,28.5 parent: 2 - - uid: 4820 + - uid: 2366 components: - type: Transform - pos: -13.5,-39.5 + pos: 45.5,27.5 parent: 2 - - uid: 4821 + - uid: 2380 components: - type: Transform - pos: -13.5,-38.5 + pos: 45.5,36.5 parent: 2 - - uid: 4822 + - uid: 2387 components: - type: Transform - pos: -13.5,-37.5 + pos: 25.5,-28.5 parent: 2 - - uid: 4823 + - uid: 2564 components: - type: Transform - pos: -9.5,-40.5 + pos: 69.5,-12.5 parent: 2 - - uid: 4824 + - uid: 2636 components: - type: Transform - pos: -9.5,-39.5 + pos: 70.5,-12.5 parent: 2 - - uid: 4825 + - uid: 2711 components: - type: Transform - pos: -9.5,-38.5 + pos: 117.5,-15.5 parent: 2 - - uid: 4826 + - uid: 2831 components: - type: Transform - pos: -9.5,-37.5 + pos: 14.5,37.5 parent: 2 - - uid: 4828 + - uid: 2832 components: - type: Transform - pos: -7.5,-40.5 + pos: 23.5,-28.5 parent: 2 - - uid: 4830 + - uid: 2891 components: - type: Transform - pos: -7.5,-39.5 + pos: 15.5,37.5 parent: 2 - - uid: 4831 + - uid: 2988 components: - type: Transform - pos: -7.5,-38.5 + pos: 22.5,4.5 parent: 2 - - uid: 4832 + - uid: 2989 components: - type: Transform - pos: -7.5,-37.5 + pos: 22.5,6.5 parent: 2 - - uid: 4833 + - uid: 3012 components: - type: Transform - pos: -9.5,-33.5 + pos: 22.5,9.5 parent: 2 - - uid: 4834 + - uid: 3163 components: - type: Transform - pos: -9.5,-32.5 + pos: 67.5,19.5 parent: 2 - - uid: 4835 + - uid: 3165 components: - type: Transform - pos: -9.5,-31.5 + pos: 31.5,33.5 parent: 2 - - uid: 4836 + - uid: 3171 components: - type: Transform - pos: -9.5,-30.5 + pos: 30.5,33.5 parent: 2 - - uid: 4837 + - uid: 3183 components: - type: Transform - pos: -7.5,-33.5 + pos: 35.5,33.5 parent: 2 - - uid: 4838 + - uid: 3184 components: - type: Transform - pos: -7.5,-32.5 + pos: 36.5,33.5 parent: 2 - - uid: 4839 + - uid: 3980 components: - type: Transform - pos: -7.5,-31.5 + pos: 23.5,-41.5 parent: 2 - - uid: 4840 + - uid: 4123 components: - type: Transform - pos: -7.5,-30.5 + pos: 64.5,17.5 parent: 2 - - uid: 4841 + - uid: 4129 components: - type: Transform - pos: -5.5,-33.5 + pos: 60.5,25.5 parent: 2 - - uid: 4842 + - uid: 4213 components: - type: Transform - pos: -5.5,-32.5 + pos: 22.5,8.5 parent: 2 - - uid: 4843 + - uid: 4218 components: - type: Transform - pos: -5.5,-31.5 + pos: 22.5,10.5 parent: 2 - - uid: 4844 + - uid: 4227 components: - type: Transform - pos: -3.5,-33.5 + pos: 22.5,7.5 parent: 2 - - uid: 4845 + - uid: 4307 components: - type: Transform - pos: -3.5,-32.5 + pos: 15.5,-38.5 parent: 2 - - uid: 4846 + - uid: 4308 components: - type: Transform - pos: -3.5,-31.5 + pos: 17.5,-37.5 parent: 2 - - uid: 4847 + - uid: 4337 components: - type: Transform - pos: -5.5,-39.5 + pos: 23.5,-42.5 parent: 2 - - uid: 4848 + - uid: 4507 components: - type: Transform - pos: -5.5,-38.5 + pos: 23.5,-39.5 parent: 2 - - uid: 4849 + - uid: 4508 components: - type: Transform - pos: -5.5,-37.5 + pos: 23.5,-38.5 parent: 2 - - uid: 4850 + - uid: 4509 components: - type: Transform - pos: -3.5,-39.5 + pos: 23.5,-40.5 parent: 2 - - uid: 4851 + - uid: 4510 components: - type: Transform - pos: -3.5,-38.5 + pos: 23.5,-43.5 parent: 2 - - uid: 4852 + - uid: 4511 components: - type: Transform - pos: -3.5,-37.5 + pos: 22.5,-43.5 parent: 2 - - uid: 4853 + - uid: 4512 components: - type: Transform - pos: -8.5,-34.5 + pos: 21.5,-43.5 parent: 2 - - uid: 4854 + - uid: 4513 components: - type: Transform - pos: -8.5,-37.5 + pos: 20.5,-43.5 parent: 2 - - uid: 4855 + - uid: 4514 components: - type: Transform - pos: -8.5,-36.5 + pos: 19.5,-43.5 parent: 2 - - uid: 4856 + - uid: 4515 components: - type: Transform - pos: -4.5,-37.5 + pos: 19.5,-41.5 parent: 2 - - uid: 4857 + - uid: 4516 components: - type: Transform - pos: -4.5,-36.5 + pos: 19.5,-42.5 parent: 2 - - uid: 4858 + - uid: 4520 components: - type: Transform - pos: -4.5,-33.5 + pos: 26.5,-36.5 parent: 2 - - uid: 4859 + - uid: 4521 components: - type: Transform - pos: -4.5,-34.5 + pos: 27.5,-36.5 parent: 2 - - uid: 4860 + - uid: 4522 components: - type: Transform - pos: -15.5,-35.5 + pos: 28.5,-36.5 parent: 2 - - uid: 4861 + - uid: 4523 components: - type: Transform - pos: -14.5,-35.5 + pos: 29.5,-36.5 parent: 2 - - uid: 4862 + - uid: 4524 components: - type: Transform - pos: -1.5,-35.5 + pos: 30.5,-36.5 parent: 2 - - uid: 4863 + - uid: 4525 components: - type: Transform - pos: -0.5,-35.5 + pos: 31.5,-36.5 parent: 2 - - uid: 4864 + - uid: 4526 components: - type: Transform - pos: 0.5,-35.5 + pos: 31.5,-37.5 parent: 2 - - uid: 4865 + - uid: 4527 components: - type: Transform - pos: 1.5,-35.5 + pos: 31.5,-38.5 parent: 2 - - uid: 4866 + - uid: 4528 components: - type: Transform - pos: 2.5,-35.5 + pos: 30.5,-38.5 parent: 2 - - uid: 4867 + - uid: 4529 components: - type: Transform - pos: 2.5,-34.5 + pos: 30.5,-39.5 parent: 2 - - uid: 4868 + - uid: 4530 components: - type: Transform - pos: 3.5,-34.5 + pos: 30.5,-40.5 parent: 2 - - uid: 4869 + - uid: 4531 components: - type: Transform - pos: 4.5,-34.5 + pos: 30.5,-41.5 parent: 2 - - uid: 4870 + - uid: 4532 components: - type: Transform - pos: 4.5,-35.5 + pos: 30.5,-42.5 parent: 2 - - uid: 4871 + - uid: 4533 components: - type: Transform - pos: 4.5,-36.5 + pos: 30.5,-43.5 parent: 2 - - uid: 4908 + - uid: 4534 components: - type: Transform - pos: 22.5,5.5 + pos: 30.5,-44.5 parent: 2 - - uid: 5146 + - uid: 4535 components: - type: Transform - pos: 41.5,41.5 + pos: 26.5,-35.5 parent: 2 - - uid: 5421 + - uid: 4536 components: - type: Transform - pos: 14.5,33.5 + pos: 26.5,-34.5 parent: 2 - - uid: 5743 + - uid: 4537 components: - type: Transform - pos: 12.5,34.5 + pos: 26.5,-33.5 parent: 2 - - uid: 5873 + - uid: 4538 components: - type: Transform - pos: 63.5,48.5 + pos: 26.5,-32.5 parent: 2 - - uid: 5903 + - uid: 4541 components: - type: Transform - pos: 4.5,-33.5 + pos: 25.5,-32.5 parent: 2 - - uid: 5904 + - uid: 4542 components: - type: Transform - pos: 4.5,-32.5 + pos: 27.5,-32.5 parent: 2 - - uid: 5905 + - uid: 4543 components: - type: Transform - pos: 4.5,-31.5 + pos: 25.5,-31.5 parent: 2 - - uid: 5906 + - uid: 4544 components: - type: Transform - pos: 4.5,-30.5 + pos: 26.5,-31.5 parent: 2 - - uid: 5907 + - uid: 4545 components: - type: Transform - pos: 4.5,-29.5 + pos: 27.5,-31.5 parent: 2 - - uid: 5908 + - uid: 4546 components: - type: Transform - pos: 4.5,-28.5 + pos: 25.5,-30.5 parent: 2 - - uid: 5909 + - uid: 4547 components: - type: Transform - pos: 4.5,-27.5 + pos: 26.5,-30.5 parent: 2 - - uid: 5910 + - uid: 4548 components: - type: Transform - pos: 4.5,-26.5 + pos: 27.5,-30.5 parent: 2 - - uid: 5911 + - uid: 4549 components: - type: Transform - pos: 4.5,-25.5 + pos: 26.5,-29.5 parent: 2 - - uid: 5912 + - uid: 4550 components: - type: Transform - pos: 4.5,-24.5 + pos: 26.5,-28.5 parent: 2 - - uid: 5913 + - uid: 4585 components: - type: Transform - pos: 4.5,-23.5 + pos: 22.5,-28.5 parent: 2 - - uid: 5922 + - uid: 4586 components: - type: Transform - pos: 5.5,-23.5 + pos: 22.5,-27.5 parent: 2 - - uid: 5923 + - uid: 4588 components: - type: Transform - pos: 6.5,-23.5 + pos: 22.5,-26.5 parent: 2 - - uid: 5924 + - uid: 4589 components: - type: Transform - pos: 7.5,-23.5 + pos: 22.5,-25.5 parent: 2 - - uid: 5925 + - uid: 4590 components: - type: Transform - pos: 8.5,-23.5 + pos: 22.5,-24.5 parent: 2 - - uid: 5926 + - uid: 4591 components: - type: Transform - pos: 9.5,-23.5 + pos: 22.5,-23.5 parent: 2 - - uid: 5927 + - uid: 4592 components: - type: Transform - pos: 10.5,-23.5 + pos: 21.5,-26.5 parent: 2 - - uid: 5928 + - uid: 4593 components: - type: Transform - pos: 11.5,-23.5 + pos: 20.5,-26.5 parent: 2 - - uid: 5929 + - uid: 4594 components: - type: Transform - pos: 11.5,-22.5 + pos: 19.5,-26.5 parent: 2 - - uid: 5930 + - uid: 4595 components: - type: Transform - pos: 11.5,-21.5 + pos: 18.5,-26.5 parent: 2 - - uid: 5931 + - uid: 4596 components: - type: Transform - pos: 11.5,-20.5 + pos: 17.5,-26.5 parent: 2 - - uid: 5932 + - uid: 4597 components: - type: Transform - pos: 10.5,-20.5 + pos: 16.5,-26.5 parent: 2 - - uid: 5933 + - uid: 4598 components: - type: Transform - pos: 10.5,-19.5 + pos: 15.5,-26.5 parent: 2 - - uid: 5934 + - uid: 4599 components: - type: Transform - pos: 10.5,-18.5 + pos: 14.5,-26.5 parent: 2 - - uid: 5935 + - uid: 4600 components: - type: Transform - pos: 10.5,-17.5 + pos: 13.5,-26.5 parent: 2 - - uid: 5936 + - uid: 4601 components: - type: Transform - pos: 10.5,-16.5 + pos: 12.5,-26.5 parent: 2 - - uid: 5937 + - uid: 4602 components: - type: Transform - pos: 10.5,-15.5 + pos: 11.5,-26.5 parent: 2 - - uid: 5938 + - uid: 4603 components: - type: Transform - pos: 9.5,-15.5 + pos: 10.5,-26.5 parent: 2 - - uid: 5939 + - uid: 4604 components: - type: Transform - pos: 8.5,-15.5 + pos: 10.5,-25.5 parent: 2 - - uid: 5940 + - uid: 4781 components: - type: Transform - pos: 7.5,-15.5 + pos: 21.5,-40.5 parent: 2 - - uid: 5941 + - uid: 4783 components: - type: Transform - pos: 6.5,-15.5 + pos: 21.5,-39.5 parent: 2 - - uid: 5942 + - uid: 4784 components: - type: Transform - pos: 5.5,-15.5 + pos: 21.5,-38.5 parent: 2 - - uid: 5943 + - uid: 4785 components: - type: Transform - pos: 4.5,-15.5 + pos: 21.5,-37.5 parent: 2 - - uid: 5944 + - uid: 4786 components: - type: Transform - pos: 3.5,-15.5 + pos: 21.5,-36.5 parent: 2 - - uid: 5945 + - uid: 4787 components: - type: Transform - pos: 2.5,-15.5 + pos: 21.5,-35.5 parent: 2 - - uid: 5946 + - uid: 4788 components: - type: Transform - pos: 1.5,-15.5 + pos: 20.5,-35.5 parent: 2 - - uid: 5947 + - uid: 4789 components: - type: Transform - pos: 1.5,-14.5 + pos: 19.5,-35.5 parent: 2 - - uid: 5948 + - uid: 4790 components: - type: Transform - pos: 1.5,-13.5 + pos: 18.5,-35.5 parent: 2 - - uid: 5949 + - uid: 4792 components: - type: Transform - pos: 1.5,-12.5 + pos: 18.5,-33.5 parent: 2 - - uid: 5950 + - uid: 4793 components: - type: Transform - pos: 1.5,-11.5 + pos: 18.5,-32.5 parent: 2 - - uid: 5951 + - uid: 4794 components: - type: Transform - pos: 1.5,-10.5 + pos: 18.5,-31.5 parent: 2 - - uid: 5952 + - uid: 4795 components: - type: Transform - pos: 1.5,-9.5 + pos: 18.5,-30.5 parent: 2 - - uid: 5953 + - uid: 4796 components: - type: Transform - pos: 2.5,-9.5 + pos: 18.5,-29.5 parent: 2 - - uid: 5954 + - uid: 4797 components: - type: Transform - pos: 3.5,-9.5 + pos: 18.5,-28.5 parent: 2 - - uid: 5955 + - uid: 4798 components: - type: Transform - pos: 4.5,-9.5 + pos: 18.5,-27.5 parent: 2 - - uid: 5956 + - uid: 4801 components: - type: Transform - pos: 5.5,-9.5 + pos: -13.5,-33.5 parent: 2 - - uid: 5957 + - uid: 4802 components: - type: Transform - pos: 6.5,-9.5 + pos: -13.5,-32.5 parent: 2 - - uid: 5958 + - uid: 4803 components: - type: Transform - pos: 6.5,-8.5 + pos: -13.5,-31.5 parent: 2 - - uid: 5959 + - uid: 4804 components: - type: Transform - pos: 10.5,-14.5 + pos: -11.5,-33.5 parent: 2 - - uid: 5960 + - uid: 4805 components: - type: Transform - pos: 10.5,-13.5 + pos: -11.5,-32.5 parent: 2 - - uid: 5961 + - uid: 4806 components: - type: Transform - pos: 11.5,-13.5 + pos: -11.5,-31.5 parent: 2 - - uid: 5962 + - uid: 4807 components: - type: Transform - pos: 12.5,-13.5 + pos: -12.5,-33.5 parent: 2 - - uid: 5963 + - uid: 4808 components: - type: Transform - pos: 13.5,-13.5 + pos: -12.5,-34.5 parent: 2 - - uid: 5970 + - uid: 4809 components: - type: Transform - pos: 16.5,-13.5 + pos: -8.5,-33.5 parent: 2 - - uid: 5971 + - uid: 4810 components: - type: Transform - pos: 16.5,-14.5 + pos: -12.5,-36.5 parent: 2 - - uid: 5972 + - uid: 4816 components: - type: Transform - pos: 12.5,-21.5 + pos: -12.5,-37.5 parent: 2 - - uid: 5973 + - uid: 4817 components: - type: Transform - pos: 13.5,-21.5 + pos: -11.5,-37.5 parent: 2 - - uid: 5974 + - uid: 4818 components: - type: Transform - pos: 14.5,-21.5 + pos: -11.5,-38.5 parent: 2 - - uid: 5975 + - uid: 4819 components: - type: Transform - pos: 15.5,-21.5 + pos: -11.5,-39.5 parent: 2 - - uid: 5976 + - uid: 4820 components: - type: Transform - pos: 16.5,-21.5 + pos: -13.5,-39.5 parent: 2 - - uid: 5977 + - uid: 4821 components: - type: Transform - pos: 17.5,-21.5 + pos: -13.5,-38.5 parent: 2 - - uid: 5978 + - uid: 4822 components: - type: Transform - pos: 18.5,-21.5 + pos: -13.5,-37.5 parent: 2 - - uid: 5979 + - uid: 4823 components: - type: Transform - pos: 19.5,-21.5 + pos: -9.5,-40.5 parent: 2 - - uid: 5980 + - uid: 4824 components: - type: Transform - pos: 20.5,-21.5 + pos: -9.5,-39.5 parent: 2 - - uid: 5981 + - uid: 4825 components: - type: Transform - pos: 21.5,-21.5 + pos: -9.5,-38.5 parent: 2 - - uid: 5982 + - uid: 4826 components: - type: Transform - pos: 22.5,-21.5 + pos: -9.5,-37.5 parent: 2 - - uid: 5983 + - uid: 4828 components: - type: Transform - pos: 23.5,-21.5 + pos: -7.5,-40.5 parent: 2 - - uid: 5984 + - uid: 4830 components: - type: Transform - pos: 24.5,-21.5 + pos: -7.5,-39.5 parent: 2 - - uid: 5985 + - uid: 4831 components: - type: Transform - pos: 25.5,-21.5 + pos: -7.5,-38.5 parent: 2 - - uid: 5986 + - uid: 4832 components: - type: Transform - pos: 25.5,-20.5 + pos: -7.5,-37.5 parent: 2 - - uid: 5987 + - uid: 4833 components: - type: Transform - pos: 27.5,-21.5 + pos: -9.5,-33.5 parent: 2 - - uid: 5988 + - uid: 4834 components: - type: Transform - pos: 28.5,-21.5 + pos: -9.5,-32.5 parent: 2 - - uid: 5989 + - uid: 4835 components: - type: Transform - pos: 29.5,-21.5 + pos: -9.5,-31.5 parent: 2 - - uid: 5990 + - uid: 4836 components: - type: Transform - pos: 30.5,-21.5 + pos: -9.5,-30.5 parent: 2 - - uid: 5991 + - uid: 4837 components: - type: Transform - pos: 30.5,-20.5 + pos: -7.5,-33.5 parent: 2 - - uid: 5992 + - uid: 4838 components: - type: Transform - pos: 30.5,-19.5 + pos: -7.5,-32.5 parent: 2 - - uid: 5993 + - uid: 4839 components: - type: Transform - pos: 31.5,-19.5 + pos: -7.5,-31.5 parent: 2 - - uid: 5994 + - uid: 4840 components: - type: Transform - pos: 32.5,-19.5 + pos: -7.5,-30.5 parent: 2 - - uid: 5995 + - uid: 4841 components: - type: Transform - pos: 33.5,-19.5 + pos: -5.5,-33.5 parent: 2 - - uid: 5996 + - uid: 4842 components: - type: Transform - pos: 34.5,-19.5 + pos: -5.5,-32.5 parent: 2 - - uid: 5997 + - uid: 4843 components: - type: Transform - pos: 35.5,-19.5 + pos: -5.5,-31.5 parent: 2 - - uid: 5998 + - uid: 4844 components: - type: Transform - pos: 36.5,-19.5 + pos: -3.5,-33.5 parent: 2 - - uid: 5999 + - uid: 4845 components: - type: Transform - pos: 37.5,-19.5 + pos: -3.5,-32.5 parent: 2 - - uid: 6000 + - uid: 4846 components: - type: Transform - pos: 38.5,-19.5 + pos: -3.5,-31.5 parent: 2 - - uid: 6001 + - uid: 4847 components: - type: Transform - pos: 39.5,-19.5 + pos: -5.5,-39.5 parent: 2 - - uid: 6002 + - uid: 4848 components: - type: Transform - pos: 40.5,-19.5 + pos: -5.5,-38.5 parent: 2 - - uid: 6003 + - uid: 4849 components: - type: Transform - pos: 41.5,-19.5 + pos: -5.5,-37.5 parent: 2 - - uid: 6004 + - uid: 4850 components: - type: Transform - pos: 41.5,-18.5 + pos: -3.5,-39.5 parent: 2 - - uid: 6016 + - uid: 4851 components: - type: Transform - pos: 42.5,-18.5 + pos: -3.5,-38.5 parent: 2 - - uid: 6017 + - uid: 4852 components: - type: Transform - pos: 43.5,-18.5 + pos: -3.5,-37.5 parent: 2 - - uid: 6018 + - uid: 4853 components: - type: Transform - pos: 44.5,-18.5 + pos: -8.5,-34.5 parent: 2 - - uid: 6019 + - uid: 4854 components: - type: Transform - pos: 45.5,-18.5 + pos: -8.5,-37.5 parent: 2 - - uid: 6020 + - uid: 4855 components: - type: Transform - pos: 46.5,-18.5 + pos: -8.5,-36.5 parent: 2 - - uid: 6021 + - uid: 4856 components: - type: Transform - pos: 47.5,-18.5 + pos: -4.5,-37.5 parent: 2 - - uid: 6022 + - uid: 4857 components: - type: Transform - pos: 48.5,-18.5 + pos: -4.5,-36.5 parent: 2 - - uid: 6023 + - uid: 4858 components: - type: Transform - pos: 49.5,-18.5 + pos: -4.5,-33.5 parent: 2 - - uid: 6024 + - uid: 4859 components: - type: Transform - pos: 50.5,-18.5 + pos: -4.5,-34.5 parent: 2 - - uid: 6028 + - uid: 4860 components: - type: Transform - pos: 51.5,-18.5 + pos: -15.5,-35.5 parent: 2 - - uid: 6029 + - uid: 4861 components: - type: Transform - pos: 52.5,-18.5 + pos: -14.5,-35.5 parent: 2 - - uid: 6030 + - uid: 4862 components: - type: Transform - pos: 52.5,-17.5 + pos: -1.5,-35.5 parent: 2 - - uid: 6031 + - uid: 4863 components: - type: Transform - pos: 52.5,-16.5 + pos: -0.5,-35.5 parent: 2 - - uid: 6032 + - uid: 4864 components: - type: Transform - pos: 52.5,-15.5 + pos: 0.5,-35.5 parent: 2 - - uid: 6033 + - uid: 4865 components: - type: Transform - pos: 52.5,-14.5 + pos: 1.5,-35.5 parent: 2 - - uid: 6034 + - uid: 4866 components: - type: Transform - pos: 52.5,-13.5 + pos: 2.5,-35.5 parent: 2 - - uid: 6035 + - uid: 4867 components: - type: Transform - pos: 52.5,-12.5 + pos: 2.5,-34.5 parent: 2 - - uid: 6036 + - uid: 4868 components: - type: Transform - pos: 52.5,-11.5 + pos: 3.5,-34.5 parent: 2 - - uid: 6037 + - uid: 4869 components: - type: Transform - pos: 52.5,-10.5 + pos: 4.5,-34.5 parent: 2 - - uid: 6038 + - uid: 4870 components: - type: Transform - pos: 53.5,-18.5 + pos: 4.5,-35.5 parent: 2 - - uid: 6039 + - uid: 4871 components: - type: Transform - pos: 54.5,-18.5 + pos: 4.5,-36.5 parent: 2 - - uid: 6040 + - uid: 4908 components: - type: Transform - pos: 55.5,-18.5 + pos: 22.5,5.5 parent: 2 - - uid: 6041 + - uid: 5146 components: - type: Transform - pos: 56.5,-18.5 + pos: 41.5,41.5 parent: 2 - - uid: 6042 + - uid: 5726 components: - type: Transform - pos: 57.5,-18.5 + pos: 50.5,-19.5 parent: 2 - - uid: 6044 + - uid: 5745 components: - type: Transform - pos: 57.5,-19.5 + pos: 50.5,-18.5 parent: 2 - - uid: 6045 + - uid: 5873 components: - type: Transform - pos: 58.5,-19.5 + pos: 63.5,48.5 parent: 2 - - uid: 6046 + - uid: 5903 components: - type: Transform - pos: 59.5,-19.5 + pos: 4.5,-33.5 parent: 2 - - uid: 6048 + - uid: 5904 components: - type: Transform - pos: 60.5,-19.5 + pos: 4.5,-32.5 parent: 2 - - uid: 6049 + - uid: 5905 components: - type: Transform - pos: 61.5,-19.5 + pos: 4.5,-31.5 parent: 2 - - uid: 6050 + - uid: 5906 components: - type: Transform - pos: 62.5,-19.5 + pos: 4.5,-30.5 parent: 2 - - uid: 6051 + - uid: 5907 components: - type: Transform - pos: 63.5,-19.5 + pos: 4.5,-29.5 parent: 2 - - uid: 6052 + - uid: 5908 components: - type: Transform - pos: 64.5,-19.5 + pos: 4.5,-28.5 parent: 2 - - uid: 6053 + - uid: 5909 components: - type: Transform - pos: 65.5,-19.5 + pos: 4.5,-27.5 parent: 2 - - uid: 6054 + - uid: 5910 components: - type: Transform - pos: 66.5,-19.5 + pos: 4.5,-26.5 parent: 2 - - uid: 6055 + - uid: 5911 components: - type: Transform - pos: 67.5,-19.5 + pos: 4.5,-25.5 parent: 2 - - uid: 6056 + - uid: 5912 components: - type: Transform - pos: 68.5,-19.5 + pos: 4.5,-24.5 parent: 2 - - uid: 6057 + - uid: 5913 components: - type: Transform - pos: 69.5,-19.5 + pos: 4.5,-23.5 parent: 2 - - uid: 6058 + - uid: 5922 components: - type: Transform - pos: 69.5,-18.5 + pos: 5.5,-23.5 parent: 2 - - uid: 6059 + - uid: 5923 components: - type: Transform - pos: 69.5,-17.5 + pos: 6.5,-23.5 parent: 2 - - uid: 6060 + - uid: 5924 components: - type: Transform - pos: 69.5,-16.5 + pos: 7.5,-23.5 parent: 2 - - uid: 6061 + - uid: 5925 components: - type: Transform - pos: 70.5,-16.5 + pos: 8.5,-23.5 parent: 2 - - uid: 6062 + - uid: 5926 components: - type: Transform - pos: 71.5,-16.5 + pos: 9.5,-23.5 parent: 2 - - uid: 6063 + - uid: 5927 components: - type: Transform - pos: 71.5,-15.5 + pos: 10.5,-23.5 parent: 2 - - uid: 6064 + - uid: 5928 components: - type: Transform - pos: 71.5,-14.5 + pos: 11.5,-23.5 parent: 2 - - uid: 6065 + - uid: 5929 components: - type: Transform - pos: 71.5,-13.5 + pos: 11.5,-22.5 parent: 2 - - uid: 6066 + - uid: 5930 components: - type: Transform - pos: 70.5,-13.5 + pos: 11.5,-21.5 parent: 2 - - uid: 6067 + - uid: 5931 components: - type: Transform - pos: 69.5,-13.5 + pos: 11.5,-20.5 parent: 2 - - uid: 6070 + - uid: 5932 components: - type: Transform - pos: 72.5,-15.5 + pos: 10.5,-20.5 parent: 2 - - uid: 6071 + - uid: 5933 components: - type: Transform - pos: 73.5,-15.5 + pos: 10.5,-19.5 parent: 2 - - uid: 6072 + - uid: 5934 components: - type: Transform - pos: 74.5,-15.5 + pos: 10.5,-18.5 parent: 2 - - uid: 6073 + - uid: 5935 components: - type: Transform - pos: 75.5,-15.5 + pos: 10.5,-17.5 parent: 2 - - uid: 6074 + - uid: 5936 components: - type: Transform - pos: 76.5,-15.5 + pos: 10.5,-16.5 parent: 2 - - uid: 6075 + - uid: 5937 components: - type: Transform - pos: 77.5,-15.5 + pos: 10.5,-15.5 parent: 2 - - uid: 6076 + - uid: 5938 components: - type: Transform - pos: 78.5,-15.5 + pos: 9.5,-15.5 parent: 2 - - uid: 6077 + - uid: 5939 components: - type: Transform - pos: 79.5,-15.5 + pos: 8.5,-15.5 parent: 2 - - uid: 6078 + - uid: 5940 components: - type: Transform - pos: 80.5,-15.5 + pos: 7.5,-15.5 parent: 2 - - uid: 6079 + - uid: 5941 components: - type: Transform - pos: 81.5,-15.5 + pos: 6.5,-15.5 parent: 2 - - uid: 6080 + - uid: 5942 components: - type: Transform - pos: 82.5,-15.5 + pos: 5.5,-15.5 parent: 2 - - uid: 6081 + - uid: 5943 components: - type: Transform - pos: 83.5,-15.5 + pos: 4.5,-15.5 parent: 2 - - uid: 6082 + - uid: 5944 components: - type: Transform - pos: 84.5,-15.5 + pos: 3.5,-15.5 parent: 2 - - uid: 6083 + - uid: 5945 components: - type: Transform - pos: 85.5,-15.5 + pos: 2.5,-15.5 parent: 2 - - uid: 6084 + - uid: 5946 components: - type: Transform - pos: 86.5,-15.5 + pos: 1.5,-15.5 parent: 2 - - uid: 6087 + - uid: 5947 components: - type: Transform - pos: 86.5,-14.5 + pos: 1.5,-14.5 parent: 2 - - uid: 6088 + - uid: 5948 components: - type: Transform - pos: 86.5,-13.5 + pos: 1.5,-13.5 parent: 2 - - uid: 6089 + - uid: 5949 components: - type: Transform - pos: 86.5,-12.5 + pos: 1.5,-12.5 parent: 2 - - uid: 6090 + - uid: 5950 components: - type: Transform - pos: 86.5,-11.5 + pos: 1.5,-11.5 parent: 2 - - uid: 6091 + - uid: 5951 components: - type: Transform - pos: 86.5,-10.5 + pos: 1.5,-10.5 parent: 2 - - uid: 6092 + - uid: 5952 components: - type: Transform - pos: 86.5,-9.5 + pos: 1.5,-9.5 parent: 2 - - uid: 6093 + - uid: 5953 components: - type: Transform - pos: 86.5,-8.5 + pos: 2.5,-9.5 parent: 2 - - uid: 6094 + - uid: 5954 components: - type: Transform - pos: 86.5,-7.5 + pos: 3.5,-9.5 parent: 2 - - uid: 6096 + - uid: 5955 components: - type: Transform - pos: 86.5,-6.5 + pos: 4.5,-9.5 parent: 2 - - uid: 6097 + - uid: 5956 components: - type: Transform - pos: 86.5,-5.5 + pos: 5.5,-9.5 parent: 2 - - uid: 6098 + - uid: 5957 components: - type: Transform - pos: 86.5,-4.5 + pos: 6.5,-9.5 parent: 2 - - uid: 6100 + - uid: 5958 components: - type: Transform - pos: 86.5,-3.5 + pos: 6.5,-8.5 parent: 2 - - uid: 6101 + - uid: 5959 components: - type: Transform - pos: 86.5,-2.5 + pos: 10.5,-14.5 parent: 2 - - uid: 6102 + - uid: 5960 components: - type: Transform - pos: 85.5,-2.5 + pos: 10.5,-13.5 parent: 2 - - uid: 6103 + - uid: 5961 components: - type: Transform - pos: 84.5,-2.5 + pos: 11.5,-13.5 parent: 2 - - uid: 6104 + - uid: 5962 components: - type: Transform - pos: 84.5,-1.5 + pos: 12.5,-13.5 parent: 2 - - uid: 6105 + - uid: 5963 components: - type: Transform - pos: 84.5,-0.5 + pos: 13.5,-13.5 parent: 2 - - uid: 6106 + - uid: 5970 components: - type: Transform - pos: 84.5,0.5 + pos: 16.5,-13.5 parent: 2 - - uid: 6107 + - uid: 5971 components: - type: Transform - pos: 84.5,1.5 + pos: 16.5,-14.5 parent: 2 - - uid: 6108 + - uid: 5972 components: - type: Transform - pos: 84.5,2.5 + pos: 12.5,-21.5 parent: 2 - - uid: 6109 + - uid: 5973 components: - type: Transform - pos: 84.5,3.5 + pos: 13.5,-21.5 parent: 2 - - uid: 6110 + - uid: 5974 components: - type: Transform - pos: 84.5,4.5 + pos: 14.5,-21.5 parent: 2 - - uid: 6111 + - uid: 5975 components: - type: Transform - pos: 83.5,4.5 + pos: 15.5,-21.5 parent: 2 - - uid: 6112 + - uid: 5976 components: - type: Transform - pos: 82.5,4.5 + pos: 16.5,-21.5 parent: 2 - - uid: 6139 + - uid: 5977 components: - type: Transform - pos: 66.5,19.5 + pos: 17.5,-21.5 parent: 2 - - uid: 6141 + - uid: 5978 components: - type: Transform - pos: 81.5,4.5 + pos: 18.5,-21.5 parent: 2 - - uid: 6142 + - uid: 5979 components: - type: Transform - pos: 81.5,5.5 + pos: 19.5,-21.5 parent: 2 - - uid: 6143 + - uid: 5980 components: - type: Transform - pos: 81.5,6.5 + pos: 20.5,-21.5 parent: 2 - - uid: 6144 + - uid: 5981 components: - type: Transform - pos: 81.5,7.5 + pos: 21.5,-21.5 parent: 2 - - uid: 6145 + - uid: 5982 components: - type: Transform - pos: 81.5,8.5 + pos: 22.5,-21.5 parent: 2 - - uid: 6146 + - uid: 5983 components: - type: Transform - pos: 81.5,9.5 + pos: 23.5,-21.5 parent: 2 - - uid: 6147 + - uid: 5984 components: - type: Transform - pos: 81.5,10.5 + pos: 24.5,-21.5 parent: 2 - - uid: 6148 + - uid: 5985 components: - type: Transform - pos: 81.5,11.5 + pos: 25.5,-21.5 parent: 2 - - uid: 6149 + - uid: 5986 components: - type: Transform - pos: 81.5,12.5 + pos: 25.5,-20.5 parent: 2 - - uid: 6150 + - uid: 5987 components: - type: Transform - pos: 80.5,12.5 + pos: 27.5,-21.5 parent: 2 - - uid: 6151 + - uid: 5988 components: - type: Transform - pos: 79.5,12.5 + pos: 28.5,-21.5 parent: 2 - - uid: 6152 + - uid: 5989 components: - type: Transform - pos: 78.5,12.5 + pos: 29.5,-21.5 parent: 2 - - uid: 6153 + - uid: 5990 components: - type: Transform - pos: 77.5,12.5 + pos: 30.5,-21.5 parent: 2 - - uid: 6154 + - uid: 5991 components: - type: Transform - pos: 76.5,12.5 + pos: 30.5,-20.5 parent: 2 - - uid: 6155 + - uid: 5992 components: - type: Transform - pos: 75.5,12.5 + pos: 30.5,-19.5 parent: 2 - - uid: 6156 + - uid: 5993 components: - type: Transform - pos: 74.5,12.5 + pos: 31.5,-19.5 parent: 2 - - uid: 6157 + - uid: 5994 components: - type: Transform - pos: 74.5,11.5 + pos: 32.5,-19.5 parent: 2 - - uid: 6159 + - uid: 5995 components: - type: Transform - pos: 74.5,10.5 + pos: 33.5,-19.5 parent: 2 - - uid: 6160 + - uid: 5996 components: - type: Transform - pos: 73.5,10.5 + pos: 34.5,-19.5 parent: 2 - - uid: 6161 + - uid: 5997 components: - type: Transform - pos: 72.5,10.5 + pos: 35.5,-19.5 parent: 2 - - uid: 6162 + - uid: 5998 components: - type: Transform - pos: 71.5,10.5 + pos: 36.5,-19.5 parent: 2 - - uid: 6163 + - uid: 5999 components: - type: Transform - pos: 70.5,10.5 + pos: 37.5,-19.5 parent: 2 - - uid: 6164 + - uid: 6000 components: - type: Transform - pos: 69.5,10.5 + pos: 38.5,-19.5 parent: 2 - - uid: 6165 + - uid: 6001 components: - type: Transform - pos: 68.5,10.5 + pos: 39.5,-19.5 parent: 2 - - uid: 6166 + - uid: 6002 components: - type: Transform - pos: 67.5,10.5 + pos: 40.5,-19.5 parent: 2 - - uid: 6167 + - uid: 6004 components: - type: Transform - pos: 67.5,9.5 + pos: 41.5,-18.5 parent: 2 - - uid: 6168 + - uid: 6016 components: - type: Transform - pos: 67.5,8.5 + pos: 42.5,-18.5 parent: 2 - - uid: 6169 + - uid: 6017 components: - type: Transform - pos: 74.5,13.5 + pos: 43.5,-18.5 parent: 2 - - uid: 6170 + - uid: 6018 components: - type: Transform - pos: 74.5,14.5 + pos: 44.5,-18.5 parent: 2 - - uid: 6171 + - uid: 6019 components: - type: Transform - pos: 74.5,15.5 + pos: 45.5,-18.5 parent: 2 - - uid: 6173 + - uid: 6020 components: - type: Transform - pos: 74.5,16.5 + pos: 46.5,-18.5 parent: 2 - - uid: 6174 + - uid: 6021 components: - type: Transform - pos: 74.5,17.5 + pos: 47.5,-18.5 parent: 2 - - uid: 6175 + - uid: 6022 components: - type: Transform - pos: 74.5,18.5 + pos: 48.5,-18.5 parent: 2 - - uid: 6176 + - uid: 6023 components: - type: Transform - pos: 73.5,18.5 + pos: 49.5,-18.5 parent: 2 - - uid: 6177 + - uid: 6028 components: - type: Transform - pos: 72.5,18.5 + pos: 52.5,-18.5 parent: 2 - - uid: 6178 + - uid: 6030 components: - type: Transform - pos: 71.5,18.5 + pos: 52.5,-17.5 parent: 2 - - uid: 6179 + - uid: 6031 components: - type: Transform - pos: 70.5,18.5 + pos: 52.5,-16.5 parent: 2 - - uid: 6181 + - uid: 6032 components: - type: Transform - pos: 69.5,18.5 + pos: 52.5,-15.5 parent: 2 - - uid: 6182 + - uid: 6033 components: - type: Transform - pos: 68.5,18.5 + pos: 52.5,-14.5 parent: 2 - - uid: 6183 + - uid: 6034 components: - type: Transform - pos: 67.5,18.5 + pos: 52.5,-13.5 parent: 2 - - uid: 6184 + - uid: 6035 components: - type: Transform - pos: 67.5,19.5 + pos: 52.5,-12.5 parent: 2 - - uid: 6185 + - uid: 6036 components: - type: Transform - pos: 67.5,20.5 + pos: 52.5,-11.5 parent: 2 - - uid: 6186 + - uid: 6037 components: - type: Transform - pos: 67.5,21.5 + pos: 52.5,-10.5 parent: 2 - - uid: 6187 + - uid: 6044 components: - type: Transform - pos: 67.5,22.5 + pos: 57.5,-19.5 parent: 2 - - uid: 6188 + - uid: 6045 components: - type: Transform - pos: 67.5,23.5 + pos: 58.5,-19.5 parent: 2 - - uid: 6189 + - uid: 6046 components: - type: Transform - pos: 67.5,24.5 + pos: 59.5,-19.5 parent: 2 - - uid: 6190 + - uid: 6048 components: - type: Transform - pos: 66.5,24.5 + pos: 60.5,-19.5 parent: 2 - - uid: 6191 + - uid: 6049 components: - type: Transform - pos: 66.5,25.5 + pos: 61.5,-19.5 parent: 2 - - uid: 6192 + - uid: 6050 components: - type: Transform - pos: 66.5,26.5 + pos: 62.5,-19.5 parent: 2 - - uid: 6193 + - uid: 6051 components: - type: Transform - pos: 66.5,27.5 + pos: 63.5,-19.5 parent: 2 - - uid: 6194 + - uid: 6052 components: - type: Transform - pos: 66.5,28.5 + pos: 64.5,-19.5 parent: 2 - - uid: 6195 + - uid: 6053 components: - type: Transform - pos: 66.5,29.5 + pos: 65.5,-19.5 parent: 2 - - uid: 6200 + - uid: 6054 components: - type: Transform - pos: 66.5,30.5 + pos: 66.5,-19.5 parent: 2 - - uid: 6201 + - uid: 6055 components: - type: Transform - pos: 66.5,31.5 + pos: 67.5,-19.5 parent: 2 - - uid: 6202 + - uid: 6056 components: - type: Transform - pos: 66.5,32.5 + pos: 68.5,-19.5 parent: 2 - - uid: 6203 + - uid: 6057 components: - type: Transform - pos: 66.5,33.5 + pos: 69.5,-19.5 parent: 2 - - uid: 6204 + - uid: 6058 components: - type: Transform - pos: 66.5,34.5 + pos: 69.5,-18.5 parent: 2 - - uid: 6205 + - uid: 6059 components: - type: Transform - pos: 66.5,35.5 + pos: 69.5,-17.5 parent: 2 - - uid: 6206 + - uid: 6060 components: - type: Transform - pos: 66.5,36.5 + pos: 69.5,-16.5 parent: 2 - - uid: 6207 + - uid: 6061 components: - type: Transform - pos: 66.5,37.5 + pos: 70.5,-16.5 parent: 2 - - uid: 6208 + - uid: 6062 components: - type: Transform - pos: 66.5,38.5 + pos: 71.5,-16.5 parent: 2 - - uid: 6213 + - uid: 6063 components: - type: Transform - pos: 66.5,39.5 + pos: 71.5,-15.5 parent: 2 - - uid: 6214 + - uid: 6064 components: - type: Transform - pos: 66.5,40.5 + pos: 71.5,-14.5 parent: 2 - - uid: 6215 + - uid: 6065 components: - type: Transform - pos: 66.5,41.5 + pos: 71.5,-13.5 parent: 2 - - uid: 6216 + - uid: 6067 components: - type: Transform - pos: 66.5,42.5 + pos: 69.5,-13.5 parent: 2 - - uid: 6217 + - uid: 6070 components: - type: Transform - pos: 67.5,42.5 + pos: 72.5,-15.5 parent: 2 - - uid: 6218 + - uid: 6071 components: - type: Transform - pos: 68.5,42.5 + pos: 73.5,-15.5 parent: 2 - - uid: 6219 + - uid: 6072 components: - type: Transform - pos: 69.5,42.5 + pos: 74.5,-15.5 parent: 2 - - uid: 6220 + - uid: 6073 components: - type: Transform - pos: 69.5,43.5 + pos: 75.5,-15.5 parent: 2 - - uid: 6221 + - uid: 6074 components: - type: Transform - pos: 69.5,44.5 + pos: 76.5,-15.5 parent: 2 - - uid: 6222 + - uid: 6075 components: - type: Transform - pos: 70.5,44.5 + pos: 77.5,-15.5 parent: 2 - - uid: 6223 + - uid: 6076 components: - type: Transform - pos: 71.5,44.5 + pos: 78.5,-15.5 parent: 2 - - uid: 6224 + - uid: 6077 components: - type: Transform - pos: 71.5,45.5 + pos: 79.5,-15.5 parent: 2 - - uid: 6225 + - uid: 6078 components: - type: Transform - pos: 72.5,45.5 + pos: 80.5,-15.5 parent: 2 - - uid: 6226 + - uid: 6079 components: - type: Transform - pos: 73.5,45.5 + pos: 81.5,-15.5 parent: 2 - - uid: 6227 + - uid: 6080 components: - type: Transform - pos: 74.5,45.5 + pos: 82.5,-15.5 parent: 2 - - uid: 6228 + - uid: 6081 components: - type: Transform - pos: 75.5,45.5 + pos: 83.5,-15.5 parent: 2 - - uid: 6229 + - uid: 6082 components: - type: Transform - pos: 77.5,47.5 + pos: 84.5,-15.5 parent: 2 - - uid: 6230 + - uid: 6083 components: - type: Transform - pos: 77.5,48.5 + pos: 85.5,-15.5 parent: 2 - - uid: 6231 + - uid: 6084 components: - type: Transform - pos: 77.5,49.5 + pos: 86.5,-15.5 parent: 2 - - uid: 6232 + - uid: 6087 components: - type: Transform - pos: 79.5,47.5 + pos: 86.5,-14.5 parent: 2 - - uid: 6233 + - uid: 6088 components: - type: Transform - pos: 79.5,48.5 + pos: 86.5,-13.5 parent: 2 - - uid: 6234 + - uid: 6089 components: - type: Transform - pos: 79.5,49.5 + pos: 86.5,-12.5 parent: 2 - - uid: 6235 + - uid: 6090 components: - type: Transform - pos: 77.5,41.5 + pos: 86.5,-11.5 parent: 2 - - uid: 6236 + - uid: 6091 components: - type: Transform - pos: 77.5,42.5 + pos: 86.5,-10.5 parent: 2 - - uid: 6237 + - uid: 6092 components: - type: Transform - pos: 77.5,43.5 + pos: 86.5,-9.5 parent: 2 - - uid: 6239 + - uid: 6093 components: - type: Transform - pos: 79.5,41.5 + pos: 86.5,-8.5 parent: 2 - - uid: 6240 + - uid: 6094 components: - type: Transform - pos: 79.5,42.5 + pos: 86.5,-7.5 parent: 2 - - uid: 6241 + - uid: 6096 components: - type: Transform - pos: 79.5,43.5 + pos: 86.5,-6.5 parent: 2 - - uid: 6242 + - uid: 6097 components: - type: Transform - pos: 78.5,43.5 + pos: 86.5,-5.5 parent: 2 - - uid: 6243 + - uid: 6098 components: - type: Transform - pos: 78.5,44.5 + pos: 86.5,-4.5 parent: 2 - - uid: 6244 + - uid: 6100 components: - type: Transform - pos: 78.5,46.5 + pos: 86.5,-3.5 parent: 2 - - uid: 6245 + - uid: 6101 components: - type: Transform - pos: 78.5,47.5 + pos: 86.5,-2.5 parent: 2 - - uid: 6246 + - uid: 6102 components: - type: Transform - pos: 81.5,47.5 + pos: 85.5,-2.5 parent: 2 - - uid: 6247 + - uid: 6103 components: - type: Transform - pos: 81.5,48.5 + pos: 84.5,-2.5 parent: 2 - - uid: 6248 + - uid: 6104 components: - type: Transform - pos: 81.5,49.5 + pos: 84.5,-1.5 parent: 2 - - uid: 6249 + - uid: 6105 components: - type: Transform - pos: 81.5,50.5 + pos: 84.5,-0.5 parent: 2 - - uid: 6250 + - uid: 6106 components: - type: Transform - pos: 83.5,47.5 + pos: 84.5,0.5 parent: 2 - - uid: 6251 + - uid: 6107 components: - type: Transform - pos: 83.5,48.5 + pos: 84.5,1.5 parent: 2 - - uid: 6252 + - uid: 6108 components: - type: Transform - pos: 83.5,49.5 + pos: 84.5,2.5 parent: 2 - - uid: 6253 + - uid: 6109 components: - type: Transform - pos: 83.5,50.5 + pos: 84.5,3.5 parent: 2 - - uid: 6254 + - uid: 6110 components: - type: Transform - pos: 82.5,47.5 + pos: 84.5,4.5 parent: 2 - - uid: 6255 + - uid: 6111 components: - type: Transform - pos: 82.5,46.5 + pos: 83.5,4.5 parent: 2 - - uid: 6256 + - uid: 6112 components: - type: Transform - pos: 81.5,40.5 + pos: 82.5,4.5 parent: 2 - - uid: 6257 + - uid: 6141 components: - type: Transform - pos: 81.5,41.5 + pos: 81.5,4.5 parent: 2 - - uid: 6258 + - uid: 6142 components: - type: Transform - pos: 81.5,42.5 + pos: 81.5,5.5 parent: 2 - - uid: 6259 + - uid: 6143 components: - type: Transform - pos: 81.5,43.5 + pos: 81.5,6.5 parent: 2 - - uid: 6260 + - uid: 6144 components: - type: Transform - pos: 83.5,40.5 + pos: 81.5,7.5 parent: 2 - - uid: 6261 + - uid: 6145 components: - type: Transform - pos: 83.5,41.5 + pos: 81.5,8.5 parent: 2 - - uid: 6262 + - uid: 6146 components: - type: Transform - pos: 83.5,42.5 + pos: 81.5,9.5 parent: 2 - - uid: 6263 + - uid: 6147 components: - type: Transform - pos: 83.5,43.5 + pos: 81.5,10.5 parent: 2 - - uid: 6264 + - uid: 6148 components: - type: Transform - pos: 82.5,43.5 + pos: 81.5,11.5 parent: 2 - - uid: 6265 + - uid: 6149 components: - type: Transform - pos: 82.5,44.5 + pos: 81.5,12.5 parent: 2 - - uid: 6266 + - uid: 6150 components: - type: Transform - pos: 85.5,47.5 + pos: 80.5,12.5 parent: 2 - - uid: 6267 + - uid: 6151 components: - type: Transform - pos: 85.5,48.5 + pos: 79.5,12.5 parent: 2 - - uid: 6268 + - uid: 6152 components: - type: Transform - pos: 85.5,49.5 + pos: 78.5,12.5 parent: 2 - - uid: 6269 + - uid: 6153 components: - type: Transform - pos: 86.5,47.5 + pos: 77.5,12.5 parent: 2 - - uid: 6270 + - uid: 6154 components: - type: Transform - pos: 86.5,46.5 + pos: 76.5,12.5 parent: 2 - - uid: 6271 + - uid: 6155 components: - type: Transform - pos: 87.5,47.5 + pos: 75.5,12.5 parent: 2 - - uid: 6272 + - uid: 6156 components: - type: Transform - pos: 87.5,48.5 + pos: 74.5,12.5 parent: 2 - - uid: 6273 + - uid: 6157 components: - type: Transform - pos: 87.5,49.5 + pos: 74.5,11.5 parent: 2 - - uid: 6274 + - uid: 6159 components: - type: Transform - pos: 85.5,41.5 + pos: 74.5,10.5 parent: 2 - - uid: 6275 + - uid: 6160 components: - type: Transform - pos: 85.5,42.5 + pos: 73.5,10.5 parent: 2 - - uid: 6276 + - uid: 6161 components: - type: Transform - pos: 85.5,43.5 + pos: 72.5,10.5 parent: 2 - - uid: 6277 + - uid: 6162 components: - type: Transform - pos: 87.5,41.5 + pos: 71.5,10.5 parent: 2 - - uid: 6278 + - uid: 6163 components: - type: Transform - pos: 87.5,42.5 + pos: 70.5,10.5 parent: 2 - - uid: 6279 + - uid: 6164 components: - type: Transform - pos: 87.5,43.5 + pos: 69.5,10.5 parent: 2 - - uid: 6280 + - uid: 6165 components: - type: Transform - pos: 86.5,43.5 + pos: 68.5,10.5 parent: 2 - - uid: 6281 + - uid: 6166 components: - type: Transform - pos: 86.5,44.5 + pos: 67.5,10.5 parent: 2 - - uid: 6282 + - uid: 6167 components: - type: Transform - pos: 89.5,45.5 + pos: 67.5,9.5 parent: 2 - - uid: 6283 + - uid: 6168 components: - type: Transform - pos: 88.5,45.5 + pos: 67.5,8.5 parent: 2 - - uid: 6285 + - uid: 6169 components: - type: Transform - pos: 67.5,43.5 + pos: 74.5,13.5 parent: 2 - - uid: 6286 + - uid: 6170 components: - type: Transform - pos: 67.5,44.5 + pos: 74.5,14.5 parent: 2 - - uid: 6287 + - uid: 6171 components: - type: Transform - pos: 67.5,45.5 + pos: 74.5,15.5 parent: 2 - - uid: 6288 + - uid: 6173 components: - type: Transform - pos: 67.5,46.5 + pos: 74.5,16.5 parent: 2 - - uid: 6289 + - uid: 6174 components: - type: Transform - pos: 66.5,46.5 + pos: 74.5,17.5 parent: 2 - - uid: 6290 + - uid: 6175 components: - type: Transform - pos: 65.5,46.5 + pos: 74.5,18.5 parent: 2 - - uid: 6291 + - uid: 6176 components: - type: Transform - pos: 64.5,46.5 + pos: 73.5,18.5 parent: 2 - - uid: 6292 + - uid: 6177 components: - type: Transform - pos: 63.5,46.5 + pos: 72.5,18.5 parent: 2 - - uid: 6293 + - uid: 6178 components: - type: Transform - pos: 63.5,47.5 + pos: 71.5,18.5 parent: 2 - - uid: 6294 + - uid: 6179 components: - type: Transform - pos: 62.5,48.5 + pos: 70.5,18.5 parent: 2 - - uid: 6295 + - uid: 6181 components: - type: Transform - pos: 61.5,48.5 + pos: 69.5,18.5 parent: 2 - - uid: 6296 + - uid: 6182 components: - type: Transform - pos: 60.5,48.5 + pos: 68.5,18.5 parent: 2 - - uid: 6297 + - uid: 6183 components: - type: Transform - pos: 59.5,48.5 + pos: 67.5,18.5 parent: 2 - - uid: 6298 + - uid: 6185 components: - type: Transform - pos: 58.5,48.5 + pos: 67.5,20.5 parent: 2 - - uid: 6299 + - uid: 6186 components: - type: Transform - pos: 57.5,48.5 + pos: 67.5,21.5 parent: 2 - - uid: 6300 + - uid: 6187 components: - type: Transform - pos: 56.5,48.5 + pos: 67.5,22.5 parent: 2 - - uid: 6301 + - uid: 6188 components: - type: Transform - pos: 55.5,48.5 + pos: 67.5,23.5 parent: 2 - - uid: 6302 + - uid: 6189 components: - type: Transform - pos: 54.5,48.5 + pos: 67.5,24.5 parent: 2 - - uid: 6303 + - uid: 6190 components: - type: Transform - pos: 53.5,48.5 + pos: 66.5,24.5 parent: 2 - - uid: 6304 + - uid: 6191 components: - type: Transform - pos: 52.5,48.5 + pos: 66.5,25.5 parent: 2 - - uid: 6305 + - uid: 6192 components: - type: Transform - pos: 51.5,48.5 + pos: 66.5,26.5 parent: 2 - - uid: 6306 + - uid: 6193 components: - type: Transform - pos: 50.5,48.5 + pos: 66.5,27.5 parent: 2 - - uid: 6307 + - uid: 6194 components: - type: Transform - pos: 49.5,48.5 + pos: 66.5,28.5 parent: 2 - - uid: 6310 + - uid: 6195 components: - type: Transform - pos: 49.5,47.5 + pos: 66.5,29.5 parent: 2 - - uid: 6311 + - uid: 6200 components: - type: Transform - pos: 48.5,47.5 + pos: 66.5,30.5 parent: 2 - - uid: 6312 + - uid: 6201 components: - type: Transform - pos: 47.5,47.5 + pos: 66.5,31.5 parent: 2 - - uid: 6313 + - uid: 6202 components: - type: Transform - pos: 46.5,47.5 + pos: 66.5,32.5 parent: 2 - - uid: 6314 + - uid: 6203 components: - type: Transform - pos: 46.5,46.5 + pos: 66.5,33.5 parent: 2 - - uid: 6315 + - uid: 6204 components: - type: Transform - pos: 45.5,46.5 + pos: 66.5,34.5 parent: 2 - - uid: 6317 + - uid: 6205 components: - type: Transform - pos: 47.5,26.5 + pos: 66.5,35.5 parent: 2 - - uid: 6318 + - uid: 6206 components: - type: Transform - pos: 44.5,46.5 + pos: 66.5,36.5 parent: 2 - - uid: 6319 + - uid: 6207 components: - type: Transform - pos: 44.5,45.5 + pos: 66.5,37.5 parent: 2 - - uid: 6320 + - uid: 6208 components: - type: Transform - pos: 44.5,44.5 + pos: 66.5,38.5 parent: 2 - - uid: 6321 + - uid: 6213 components: - type: Transform - pos: 44.5,43.5 + pos: 66.5,39.5 parent: 2 - - uid: 6322 + - uid: 6214 components: - type: Transform - pos: 44.5,42.5 + pos: 66.5,40.5 parent: 2 - - uid: 6323 + - uid: 6215 components: - type: Transform - pos: 44.5,41.5 + pos: 66.5,41.5 parent: 2 - - uid: 6324 + - uid: 6216 components: - type: Transform - pos: 44.5,40.5 + pos: 66.5,42.5 parent: 2 - - uid: 6325 + - uid: 6217 components: - type: Transform - pos: 44.5,39.5 + pos: 67.5,42.5 parent: 2 - - uid: 6326 + - uid: 6218 components: - type: Transform - pos: 45.5,39.5 + pos: 68.5,42.5 parent: 2 - - uid: 6327 + - uid: 6219 components: - type: Transform - pos: 45.5,38.5 + pos: 69.5,42.5 parent: 2 - - uid: 6328 + - uid: 6220 components: - type: Transform - pos: 45.5,37.5 + pos: 69.5,43.5 parent: 2 - - uid: 6329 + - uid: 6221 components: - type: Transform - pos: 45.5,36.5 + pos: 69.5,44.5 parent: 2 - - uid: 6330 + - uid: 6222 components: - type: Transform - pos: 45.5,35.5 + pos: 70.5,44.5 parent: 2 - - uid: 6331 + - uid: 6223 components: - type: Transform - pos: 45.5,34.5 + pos: 71.5,44.5 parent: 2 - - uid: 6332 + - uid: 6224 components: - type: Transform - pos: 45.5,33.5 + pos: 71.5,45.5 parent: 2 - - uid: 6333 + - uid: 6225 components: - type: Transform - pos: 45.5,32.5 + pos: 72.5,45.5 parent: 2 - - uid: 6334 + - uid: 6226 components: - type: Transform - pos: 45.5,31.5 + pos: 73.5,45.5 parent: 2 - - uid: 6335 + - uid: 6227 components: - type: Transform - pos: 45.5,30.5 + pos: 74.5,45.5 parent: 2 - - uid: 6336 + - uid: 6228 components: - type: Transform - pos: 45.5,29.5 + pos: 75.5,45.5 parent: 2 - - uid: 6337 + - uid: 6229 components: - type: Transform - pos: 45.5,28.5 + pos: 77.5,47.5 parent: 2 - - uid: 6338 + - uid: 6230 components: - type: Transform - pos: 44.5,28.5 + pos: 77.5,48.5 parent: 2 - - uid: 6339 + - uid: 6231 components: - type: Transform - pos: 43.5,28.5 + pos: 77.5,49.5 parent: 2 - - uid: 6340 + - uid: 6232 components: - type: Transform - pos: 46.5,28.5 + pos: 79.5,47.5 parent: 2 - - uid: 6341 + - uid: 6233 components: - type: Transform - pos: 46.5,27.5 + pos: 79.5,48.5 parent: 2 - - uid: 6343 + - uid: 6234 components: - type: Transform - pos: 47.5,27.5 + pos: 79.5,49.5 parent: 2 - - uid: 6344 + - uid: 6235 components: - type: Transform - pos: 48.5,27.5 + pos: 77.5,41.5 parent: 2 - - uid: 6345 + - uid: 6236 components: - type: Transform - pos: 49.5,27.5 + pos: 77.5,42.5 parent: 2 - - uid: 6346 + - uid: 6237 components: - type: Transform - pos: 50.5,27.5 + pos: 77.5,43.5 parent: 2 - - uid: 6347 + - uid: 6239 components: - type: Transform - pos: 47.5,25.5 + pos: 79.5,41.5 parent: 2 - - uid: 6348 + - uid: 6240 components: - type: Transform - pos: 47.5,24.5 + pos: 79.5,42.5 parent: 2 - - uid: 6349 + - uid: 6241 components: - type: Transform - pos: 47.5,23.5 + pos: 79.5,43.5 parent: 2 - - uid: 6350 + - uid: 6242 components: - type: Transform - pos: 47.5,22.5 + pos: 78.5,43.5 parent: 2 - - uid: 6351 + - uid: 6243 components: - type: Transform - pos: 47.5,21.5 + pos: 78.5,44.5 parent: 2 - - uid: 6352 + - uid: 6244 components: - type: Transform - pos: 47.5,20.5 + pos: 78.5,46.5 parent: 2 - - uid: 6353 + - uid: 6245 components: - type: Transform - pos: 47.5,19.5 + pos: 78.5,47.5 parent: 2 - - uid: 6354 + - uid: 6246 components: - type: Transform - pos: 47.5,18.5 + pos: 81.5,47.5 parent: 2 - - uid: 6355 + - uid: 6247 components: - type: Transform - pos: 47.5,17.5 + pos: 81.5,48.5 parent: 2 - - uid: 6356 + - uid: 6248 components: - type: Transform - pos: 47.5,16.5 + pos: 81.5,49.5 parent: 2 - - uid: 6357 + - uid: 6249 components: - type: Transform - pos: 47.5,15.5 + pos: 81.5,50.5 parent: 2 - - uid: 6359 + - uid: 6250 components: - type: Transform - pos: 47.5,14.5 + pos: 83.5,47.5 parent: 2 - - uid: 6360 + - uid: 6251 components: - type: Transform - pos: 46.5,14.5 + pos: 83.5,48.5 parent: 2 - - uid: 6361 + - uid: 6252 components: - type: Transform - pos: 45.5,14.5 + pos: 83.5,49.5 parent: 2 - - uid: 6362 + - uid: 6253 components: - type: Transform - pos: 44.5,14.5 + pos: 83.5,50.5 parent: 2 - - uid: 6363 + - uid: 6254 components: - type: Transform - pos: 43.5,14.5 + pos: 82.5,47.5 parent: 2 - - uid: 6364 + - uid: 6255 components: - type: Transform - pos: 42.5,14.5 + pos: 82.5,46.5 parent: 2 - - uid: 6365 + - uid: 6256 components: - type: Transform - pos: 41.5,14.5 + pos: 81.5,40.5 parent: 2 - - uid: 6366 + - uid: 6257 components: - type: Transform - pos: 41.5,13.5 + pos: 81.5,41.5 parent: 2 - - uid: 6367 + - uid: 6258 + components: + - type: Transform + pos: 81.5,42.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: 81.5,43.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: 83.5,40.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: 83.5,41.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 83.5,42.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: 83.5,43.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + pos: 82.5,43.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + pos: 85.5,47.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: 85.5,48.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: 85.5,49.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: 86.5,47.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + pos: 86.5,46.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: 87.5,47.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + pos: 87.5,48.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + pos: 87.5,49.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: 85.5,41.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: 85.5,42.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + pos: 85.5,43.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + pos: 87.5,41.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + pos: 87.5,42.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + pos: 87.5,43.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: 86.5,43.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: 86.5,44.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: 89.5,45.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: 88.5,45.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: 67.5,43.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: 67.5,45.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: 64.5,46.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: 63.5,46.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: 63.5,47.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: 61.5,48.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: 60.5,48.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 6300 + components: + - type: Transform + pos: 56.5,48.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: 55.5,48.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: 54.5,48.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: 53.5,48.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: 52.5,48.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 51.5,48.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 49.5,48.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: 48.5,47.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: 47.5,47.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: 46.5,47.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: 44.5,45.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: 44.5,44.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: 44.5,42.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: 44.5,41.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + pos: 45.5,39.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 6367 components: - type: Transform pos: 41.5,12.5 @@ -22757,11 +24738,6 @@ entities: - type: Transform pos: 22.5,-14.5 parent: 2 - - uid: 6767 - components: - - type: Transform - pos: 15.5,-42.5 - parent: 2 - uid: 6897 components: - type: Transform @@ -22872,36 +24848,6 @@ entities: - type: Transform pos: 11.5,18.5 parent: 2 - - uid: 7167 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 7168 - components: - - type: Transform - pos: 15.5,33.5 - parent: 2 - - uid: 7169 - components: - - type: Transform - pos: 15.5,32.5 - parent: 2 - - uid: 7170 - components: - - type: Transform - pos: 15.5,31.5 - parent: 2 - - uid: 7171 - components: - - type: Transform - pos: 15.5,30.5 - parent: 2 - - uid: 7172 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 7173 components: - type: Transform @@ -23122,20 +25068,35 @@ entities: - type: Transform pos: 14.5,28.5 parent: 2 - - uid: 8304 + - uid: 7782 components: - type: Transform - pos: 43.5,27.5 + pos: 8.5,15.5 parent: 2 - - uid: 8446 + - uid: 7967 components: - type: Transform - pos: 16.5,-36.5 + pos: 13.5,-41.5 parent: 2 - - uid: 8447 + - uid: 7968 components: - type: Transform - pos: 16.5,-35.5 + pos: 16.5,-41.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + pos: 8.5,16.5 parent: 2 - uid: 8818 components: @@ -23362,50 +25323,25 @@ entities: - type: Transform pos: 34.5,33.5 parent: 2 - - uid: 9454 + - uid: 9458 components: - type: Transform - pos: 34.5,32.5 + pos: 30.5,32.5 parent: 2 - - uid: 9455 + - uid: 9459 components: - type: Transform - pos: 33.5,32.5 + pos: 29.5,32.5 parent: 2 - - uid: 9456 + - uid: 9460 components: - type: Transform - pos: 32.5,32.5 + pos: 28.5,32.5 parent: 2 - - uid: 9457 + - uid: 9462 components: - type: Transform - pos: 31.5,32.5 - parent: 2 - - uid: 9458 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 9459 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - uid: 9460 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 9461 - components: - - type: Transform - pos: 14.5,36.5 - parent: 2 - - uid: 9462 - components: - - type: Transform - pos: 15.5,36.5 + pos: 15.5,36.5 parent: 2 - uid: 9463 components: @@ -23847,10 +25783,10 @@ entities: - type: Transform pos: 27.5,13.5 parent: 2 - - uid: 12296 + - uid: 11811 components: - type: Transform - pos: 65.5,19.5 + pos: 10.5,16.5 parent: 2 - uid: 12596 components: @@ -24102,6 +26038,21 @@ entities: - type: Transform pos: 112.5,-15.5 parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 - uid: 12807 components: - type: Transform @@ -24237,11 +26188,6 @@ entities: - type: Transform pos: 40.5,-46.5 parent: 2 - - uid: 13156 - components: - - type: Transform - pos: 17.5,-34.5 - parent: 2 - uid: 13157 components: - type: Transform @@ -24277,11 +26223,6 @@ entities: - type: Transform pos: 10.5,-34.5 parent: 2 - - uid: 13186 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 2 - uid: 13187 components: - type: Transform @@ -24492,100 +26433,85 @@ entities: - type: Transform pos: 13.5,-52.5 parent: 2 - - uid: 13497 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - - uid: 13498 + - uid: 13689 components: - type: Transform - pos: 56.5,27.5 + pos: 9.5,16.5 parent: 2 - - uid: 13499 + - uid: 13693 components: - type: Transform - pos: 56.5,28.5 + pos: 16.5,-38.5 parent: 2 - - uid: 13500 + - uid: 14396 components: - type: Transform - pos: 56.5,30.5 + pos: 79.5,33.5 parent: 2 - - uid: 13501 + - uid: 14397 components: - type: Transform - pos: 56.5,31.5 + pos: 79.5,34.5 parent: 2 - - uid: 13502 + - uid: 14398 components: - type: Transform - pos: 56.5,32.5 + pos: 80.5,34.5 parent: 2 - - uid: 13503 + - uid: 14582 components: - type: Transform - pos: 56.5,33.5 - parent: 2 - - uid: 13504 - components: - - type: Transform - pos: 56.5,34.5 - parent: 2 - - uid: 13505 - components: - - type: Transform - pos: 56.5,29.5 + pos: 45.5,41.5 parent: 2 - - uid: 13506 + - uid: 14583 components: - type: Transform - pos: 55.5,34.5 + pos: 45.5,40.5 parent: 2 - - uid: 13507 + - uid: 14727 components: - type: Transform - pos: 54.5,34.5 + pos: 41.5,-19.5 parent: 2 - - uid: 13508 + - uid: 14929 components: - type: Transform - pos: 54.5,35.5 + pos: 37.5,33.5 parent: 2 - - uid: 13509 + - uid: 14930 components: - type: Transform - pos: 54.5,36.5 + pos: 37.5,34.5 parent: 2 - - uid: 13510 + - uid: 15021 components: - type: Transform - pos: 54.5,37.5 + pos: 51.5,-19.5 parent: 2 - - uid: 13511 + - uid: 15022 components: - type: Transform - pos: 54.5,38.5 + pos: 55.5,-19.5 parent: 2 - - uid: 13512 + - uid: 15023 components: - type: Transform - pos: 55.5,38.5 + pos: 54.5,-19.5 parent: 2 - - uid: 13513 + - uid: 15024 components: - type: Transform - pos: 56.5,38.5 + pos: 56.5,-19.5 parent: 2 - - uid: 13514 + - uid: 15025 components: - type: Transform - pos: 57.5,38.5 + pos: 53.5,-19.5 parent: 2 - - uid: 13515 + - uid: 15026 components: - type: Transform - pos: 57.5,37.5 + pos: 52.5,-19.5 parent: 2 - proto: CableHVStack entities: @@ -24612,6 +26538,21 @@ entities: parent: 2 - proto: CableMV entities: + - uid: 12 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 - uid: 57 components: - type: Transform @@ -24622,15 +26563,85 @@ entities: - type: Transform pos: 8.5,-26.5 parent: 2 - - uid: 769 + - uid: 93 components: - type: Transform - pos: 4.5,-30.5 + pos: -23.5,-3.5 parent: 2 - - uid: 850 + - uid: 94 components: - type: Transform - pos: 38.5,-10.5 + pos: -21.5,-3.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: 4.5,-30.5 parent: 2 - uid: 1028 components: @@ -24657,11 +26668,141 @@ entities: - type: Transform pos: 4.5,-31.5 parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 - uid: 1555 components: - type: Transform pos: 41.5,-0.5 parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 70.5,-12.5 + parent: 2 - uid: 2688 components: - type: Transform @@ -24682,11 +26823,61 @@ entities: - type: Transform pos: 22.5,5.5 parent: 2 + - uid: 3131 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 - uid: 3403 components: - type: Transform pos: 22.5,8.5 parent: 2 + - uid: 3409 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 - uid: 3486 components: - type: Transform @@ -24707,10 +26898,15 @@ entities: - type: Transform pos: 49.5,21.5 parent: 2 - - uid: 4177 + - uid: 4020 components: - type: Transform - pos: 37.5,-10.5 + pos: 13.5,19.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 13.5,20.5 parent: 2 - uid: 4182 components: @@ -24722,6 +26918,21 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 2 + - uid: 4349 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 - uid: 4605 components: - type: Transform @@ -24852,26 +27063,6 @@ entities: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 4633 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 2 - - uid: 4634 - components: - - type: Transform - pos: 21.5,-36.5 - parent: 2 - - uid: 4635 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 2 - - uid: 4636 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 2 - uid: 4641 components: - type: Transform @@ -25067,6 +27258,11 @@ entities: - type: Transform pos: 3.5,-27.5 parent: 2 + - uid: 5116 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 - uid: 5185 components: - type: Transform @@ -25077,6 +27273,11 @@ entities: - type: Transform pos: 62.5,-6.5 parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 - uid: 5578 components: - type: Transform @@ -25092,6 +27293,21 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 2 + - uid: 6039 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 2 - uid: 6455 components: - type: Transform @@ -25117,11 +27333,26 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 2 + - uid: 6572 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 2 - uid: 6766 components: - type: Transform pos: 14.5,-41.5 parent: 2 + - uid: 6767 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 - uid: 6768 components: - type: Transform @@ -25152,6 +27383,16 @@ entities: - type: Transform pos: 13.5,-46.5 parent: 2 + - uid: 6856 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 - uid: 6940 components: - type: Transform @@ -25537,26 +27778,6 @@ entities: - type: Transform pos: 29.5,10.5 parent: 2 - - uid: 7217 - components: - - type: Transform - pos: 12.5,34.5 - parent: 2 - - uid: 7218 - components: - - type: Transform - pos: 12.5,33.5 - parent: 2 - - uid: 7219 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 7220 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - uid: 7221 components: - type: Transform @@ -25572,11 +27793,6 @@ entities: - type: Transform pos: 14.5,35.5 parent: 2 - - uid: 7224 - components: - - type: Transform - pos: 13.5,35.5 - parent: 2 - uid: 7225 components: - type: Transform @@ -25637,91 +27853,11 @@ entities: - type: Transform pos: 13.5,23.5 parent: 2 - - uid: 7237 - components: - - type: Transform - pos: 14.5,23.5 - parent: 2 - - uid: 7238 - components: - - type: Transform - pos: 15.5,23.5 - parent: 2 - - uid: 7239 - components: - - type: Transform - pos: 16.5,23.5 - parent: 2 - - uid: 7240 - components: - - type: Transform - pos: 14.5,25.5 - parent: 2 - - uid: 7241 - components: - - type: Transform - pos: 15.5,25.5 - parent: 2 - - uid: 7242 - components: - - type: Transform - pos: 16.5,25.5 - parent: 2 - uid: 7243 components: - type: Transform pos: 10.5,18.5 parent: 2 - - uid: 7244 - components: - - type: Transform - pos: 9.5,18.5 - parent: 2 - - uid: 7245 - components: - - type: Transform - pos: 8.5,18.5 - parent: 2 - - uid: 7246 - components: - - type: Transform - pos: 8.5,19.5 - parent: 2 - - uid: 7247 - components: - - type: Transform - pos: 8.5,20.5 - parent: 2 - - uid: 7248 - components: - - type: Transform - pos: 8.5,21.5 - parent: 2 - - uid: 7249 - components: - - type: Transform - pos: 8.5,22.5 - parent: 2 - - uid: 7250 - components: - - type: Transform - pos: 9.5,22.5 - parent: 2 - - uid: 7251 - components: - - type: Transform - pos: 10.5,22.5 - parent: 2 - - uid: 7252 - components: - - type: Transform - pos: 11.5,22.5 - parent: 2 - - uid: 7253 - components: - - type: Transform - pos: 12.5,22.5 - parent: 2 - uid: 7254 components: - type: Transform @@ -25762,21 +27898,6 @@ entities: - type: Transform pos: 12.5,18.5 parent: 2 - - uid: 7262 - components: - - type: Transform - pos: 14.5,18.5 - parent: 2 - - uid: 7263 - components: - - type: Transform - pos: 14.5,19.5 - parent: 2 - - uid: 7264 - components: - - type: Transform - pos: 14.5,20.5 - parent: 2 - uid: 7265 components: - type: Transform @@ -25827,11 +27948,6 @@ entities: - type: Transform pos: 1.5,-9.5 parent: 2 - - uid: 7483 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - uid: 7484 components: - type: Transform @@ -25927,16 +28043,6 @@ entities: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 7503 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 2 - - uid: 7504 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 2 - uid: 7505 components: - type: Transform @@ -25947,11 +28053,6 @@ entities: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 7507 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - uid: 7508 components: - type: Transform @@ -26007,125 +28108,70 @@ entities: - type: Transform pos: -5.5,-7.5 parent: 2 - - uid: 7519 - components: - - type: Transform - pos: -5.5,-6.5 - parent: 2 - - uid: 7520 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 2 - - uid: 7521 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 2 - - uid: 7522 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 2 - - uid: 7523 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 2 - - uid: 7524 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 2 - - uid: 7525 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 2 - - uid: 7531 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 2 - - uid: 7532 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 2 - - uid: 7534 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 2 - - uid: 7535 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 2 - - uid: 7536 + - uid: 7594 components: - type: Transform - pos: -7.5,-13.5 + pos: 16.5,21.5 parent: 2 - - uid: 7537 + - uid: 7596 components: - type: Transform - pos: -8.5,-13.5 + pos: -24.5,-18.5 parent: 2 - - uid: 7538 + - uid: 7672 components: - type: Transform - pos: -9.5,-13.5 + pos: 18.5,19.5 parent: 2 - - uid: 7539 + - uid: 7849 components: - type: Transform - pos: -10.5,-13.5 + pos: 32.5,36.5 parent: 2 - - uid: 7540 + - uid: 7891 components: - type: Transform - pos: -11.5,-13.5 + pos: 15.5,-38.5 parent: 2 - - uid: 7541 + - uid: 7937 components: - type: Transform - pos: -12.5,-13.5 + pos: 40.5,20.5 parent: 2 - - uid: 7542 + - uid: 7939 components: - type: Transform - pos: -13.5,-13.5 + pos: 41.5,20.5 parent: 2 - - uid: 7543 + - uid: 7947 components: - type: Transform - pos: -14.5,-13.5 + pos: 40.5,29.5 parent: 2 - - uid: 7544 + - uid: 7953 components: - type: Transform - pos: -15.5,-13.5 + pos: 30.5,29.5 parent: 2 - - uid: 7548 + - uid: 7956 components: - type: Transform - pos: -15.5,-14.5 + pos: 29.5,29.5 parent: 2 - - uid: 7549 + - uid: 8047 components: - type: Transform - pos: -15.5,-15.5 + pos: 14.5,37.5 parent: 2 - - uid: 7781 + - uid: 8060 components: - type: Transform - pos: 16.5,-38.5 + pos: 14.5,39.5 parent: 2 - - uid: 7782 + - uid: 8199 components: - type: Transform - pos: 16.5,-37.5 + pos: 8.5,16.5 parent: 2 - uid: 8287 components: @@ -26147,11 +28193,6 @@ entities: - type: Transform pos: 43.5,26.5 parent: 2 - - uid: 8349 - components: - - type: Transform - pos: 43.5,27.5 - parent: 2 - uid: 8350 components: - type: Transform @@ -26187,16 +28228,6 @@ entities: - type: Transform pos: 39.5,23.5 parent: 2 - - uid: 8357 - components: - - type: Transform - pos: 41.5,22.5 - parent: 2 - - uid: 8358 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - uid: 8359 components: - type: Transform @@ -26272,45 +28303,10 @@ entities: - type: Transform pos: 33.5,30.5 parent: 2 - - uid: 8375 - components: - - type: Transform - pos: 34.5,30.5 - parent: 2 - - uid: 8376 - components: - - type: Transform - pos: 35.5,30.5 - parent: 2 - - uid: 8383 - components: - - type: Transform - pos: 36.5,30.5 - parent: 2 - - uid: 8384 - components: - - type: Transform - pos: 36.5,29.5 - parent: 2 - - uid: 8385 - components: - - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 8386 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8387 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 8388 + - uid: 8392 components: - type: Transform - pos: 37.5,25.5 + pos: 32.5,29.5 parent: 2 - uid: 8456 components: @@ -26392,20 +28388,30 @@ entities: - type: Transform pos: 28.5,17.5 parent: 2 - - uid: 8536 + - uid: 8473 components: - type: Transform - pos: 37.5,26.5 + pos: 35.5,28.5 parent: 2 - - uid: 8537 + - uid: 8474 components: - type: Transform - pos: 37.5,27.5 + pos: 35.5,29.5 parent: 2 - - uid: 8538 + - uid: 8475 components: - type: Transform - pos: 37.5,28.5 + pos: 34.5,28.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: 41.5,21.5 parent: 2 - uid: 8539 components: @@ -26457,6 +28463,16 @@ entities: - type: Transform pos: 31.5,17.5 parent: 2 + - uid: 8570 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 - uid: 8698 components: - type: Transform @@ -26582,11 +28598,6 @@ entities: - type: Transform pos: 28.5,33.5 parent: 2 - - uid: 9036 - components: - - type: Transform - pos: 27.5,34.5 - parent: 2 - uid: 9037 components: - type: Transform @@ -26602,16 +28613,6 @@ entities: - type: Transform pos: 30.5,36.5 parent: 2 - - uid: 9040 - components: - - type: Transform - pos: 30.5,37.5 - parent: 2 - - uid: 9041 - components: - - type: Transform - pos: 30.5,38.5 - parent: 2 - uid: 9042 components: - type: Transform @@ -26712,11 +28713,6 @@ entities: - type: Transform pos: 33.5,44.5 parent: 2 - - uid: 9094 - components: - - type: Transform - pos: 27.5,35.5 - parent: 2 - uid: 9095 components: - type: Transform @@ -26887,6 +28883,16 @@ entities: - type: Transform pos: 36.5,46.5 parent: 2 + - uid: 9238 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 - uid: 9253 components: - type: Transform @@ -26957,6 +28963,21 @@ entities: - type: Transform pos: 66.5,45.5 parent: 2 + - uid: 9296 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 - uid: 9474 components: - type: Transform @@ -26977,6 +28998,11 @@ entities: - type: Transform pos: 21.5,44.5 parent: 2 + - uid: 9571 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 - uid: 9638 components: - type: Transform @@ -26987,21 +29013,11 @@ entities: - type: Transform pos: 52.5,-12.5 parent: 2 - - uid: 9640 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 2 - uid: 9641 components: - type: Transform pos: 50.5,-12.5 parent: 2 - - uid: 9642 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 2 - uid: 9643 components: - type: Transform @@ -27552,26 +29568,11 @@ entities: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 9857 - components: - - type: Transform - pos: 51.5,-14.5 - parent: 2 - - uid: 9858 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 2 - uid: 9859 components: - type: Transform pos: 69.5,-13.5 parent: 2 - - uid: 9860 - components: - - type: Transform - pos: 70.5,-13.5 - parent: 2 - uid: 9861 components: - type: Transform @@ -27737,55 +29738,40 @@ entities: - type: Transform pos: 38.5,-27.5 parent: 2 - - uid: 9896 - components: - - type: Transform - pos: 39.5,-27.5 - parent: 2 - - uid: 9897 - components: - - type: Transform - pos: 39.5,-26.5 - parent: 2 - uid: 9898 components: - type: Transform pos: 38.5,-25.5 parent: 2 - - uid: 9899 - components: - - type: Transform - pos: 39.5,-25.5 - parent: 2 - - uid: 9900 + - uid: 9904 components: - type: Transform - pos: 38.5,-24.5 + pos: 36.5,-22.5 parent: 2 - - uid: 9901 + - uid: 9928 components: - type: Transform - pos: 37.5,-23.5 + pos: 55.5,35.5 parent: 2 - - uid: 9902 + - uid: 10044 components: - type: Transform - pos: 37.5,-24.5 + pos: 56.5,34.5 parent: 2 - - uid: 9903 + - uid: 10130 components: - type: Transform - pos: 36.5,-23.5 + pos: 63.5,-7.5 parent: 2 - - uid: 9904 + - uid: 10136 components: - type: Transform - pos: 36.5,-22.5 + pos: 31.5,29.5 parent: 2 - - uid: 10130 + - uid: 10318 components: - type: Transform - pos: 63.5,-7.5 + pos: 36.5,33.5 parent: 2 - uid: 10672 components: @@ -28027,6 +30013,11 @@ entities: - type: Transform pos: 47.5,21.5 parent: 2 + - uid: 10852 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 - uid: 10854 components: - type: Transform @@ -28597,6 +30588,46 @@ entities: - type: Transform pos: 65.5,0.5 parent: 2 + - uid: 11283 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + pos: 66.5,40.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 - uid: 12139 components: - type: Transform @@ -28637,6 +30668,11 @@ entities: - type: Transform pos: 78.5,-14.5 parent: 2 + - uid: 12150 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 - uid: 12171 components: - type: Transform @@ -28862,6 +30898,16 @@ entities: - type: Transform pos: 21.5,-41.5 parent: 2 + - uid: 13154 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 - uid: 13313 components: - type: Transform @@ -29077,52118 +31123,59300 @@ entities: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 13517 + - uid: 13499 components: - type: Transform - pos: 57.5,37.5 + pos: 56.5,39.5 parent: 2 - - uid: 13518 + - uid: 13500 components: - type: Transform - pos: 57.5,36.5 + pos: 56.5,32.5 parent: 2 - - uid: 13519 + - uid: 13501 components: - type: Transform - pos: 58.5,36.5 + pos: 56.5,37.5 parent: 2 - - uid: 13520 + - uid: 13502 components: - type: Transform - pos: 58.5,35.5 + pos: 56.5,33.5 parent: 2 - - uid: 13521 + - uid: 13503 components: - type: Transform - pos: 58.5,34.5 + pos: 56.5,31.5 parent: 2 - - uid: 13522 + - uid: 13504 components: - type: Transform - pos: 57.5,34.5 + pos: 55.5,30.5 parent: 2 - - uid: 13523 + - uid: 13505 components: - type: Transform - pos: 56.5,34.5 + pos: 56.5,38.5 parent: 2 - - uid: 13524 + - uid: 13506 components: - type: Transform - pos: 55.5,34.5 + pos: 54.5,35.5 parent: 2 - - uid: 13525 + - uid: 13508 components: - type: Transform - pos: 54.5,34.5 + pos: 56.5,35.5 parent: 2 - uid: 13526 components: - type: Transform - pos: 54.5,35.5 + pos: 52.5,35.5 parent: 2 - uid: 13527 components: - type: Transform - pos: 54.5,36.5 + pos: 56.5,41.5 parent: 2 - - uid: 13528 + - uid: 13529 components: - type: Transform - pos: 54.5,37.5 + pos: 52.5,39.5 parent: 2 - - uid: 13529 + - uid: 13530 components: - type: Transform - pos: 55.5,37.5 + pos: 54.5,39.5 parent: 2 - - uid: 13610 + - uid: 13531 components: - type: Transform - pos: 58.5,32.5 + pos: 56.5,40.5 parent: 2 - - uid: 13611 + - uid: 13532 components: - type: Transform - pos: 58.5,33.5 + pos: 52.5,38.5 parent: 2 -- proto: CableMVStack - entities: - - uid: 5628 + - uid: 13533 components: - type: Transform - pos: 17.902254,-23.387651 + pos: 55.5,42.5 parent: 2 - - uid: 6316 + - uid: 13534 components: - type: Transform - pos: 90.66321,-10.120396 + pos: 53.5,39.5 parent: 2 -- proto: CableTerminal - entities: - - uid: 338 + - uid: 13535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-32.5 + pos: 56.5,42.5 parent: 2 - - uid: 682 + - uid: 13536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-32.5 + pos: 57.5,42.5 parent: 2 - - uid: 886 + - uid: 13537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-32.5 + pos: 59.5,36.5 parent: 2 - - uid: 4872 + - uid: 13538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-34.5 + pos: 60.5,36.5 parent: 2 - - uid: 6284 + - uid: 13539 components: - type: Transform - pos: 71.5,45.5 + pos: 57.5,30.5 parent: 2 - - uid: 6442 + - uid: 13543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-15.5 + pos: 56.5,36.5 parent: 2 - - uid: 12647 + - uid: 13544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 112.5,-18.5 + pos: 57.5,36.5 parent: 2 - - uid: 13516 + - uid: 13546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,38.5 + pos: 58.5,36.5 parent: 2 -- proto: CandyBowl - entities: - - uid: 13078 + - uid: 13679 components: - type: Transform - pos: 54.503376,-4.6494684 + pos: -23.5,-5.5 parent: 2 -- proto: CannabisSeeds - entities: - - uid: 11109 + - uid: 13680 components: - type: Transform - pos: 41.505302,37.40492 + pos: -23.5,-4.5 parent: 2 -- proto: CaptainIDCard - entities: - - uid: 1255 + - uid: 13681 components: - type: Transform - pos: 33.48514,41.714756 + pos: -23.5,-6.5 parent: 2 -- proto: CarbonDioxideCanister - entities: - - uid: 1924 + - uid: 13701 components: - type: Transform - pos: 50.5,-27.5 + pos: -23.5,-7.5 parent: 2 - - uid: 4771 + - uid: 13702 components: - type: Transform - pos: 45.5,-37.5 + pos: -23.5,-9.5 parent: 2 - - uid: 12998 + - uid: 13703 components: - type: Transform - pos: 34.5,-45.5 + pos: -23.5,-8.5 parent: 2 -- proto: Carpet - entities: - - uid: 3 + - uid: 13705 components: - type: Transform - pos: 43.5,22.5 + pos: -23.5,-11.5 parent: 2 - - uid: 266 + - uid: 13718 components: - type: Transform - pos: 9.5,7.5 + pos: -23.5,-12.5 parent: 2 - - uid: 268 + - uid: 13719 components: - type: Transform - pos: 11.5,6.5 + pos: -23.5,-13.5 parent: 2 - - uid: 269 + - uid: 13720 components: - type: Transform - pos: 11.5,7.5 + pos: -23.5,-14.5 parent: 2 - - uid: 549 + - uid: 13721 components: - type: Transform - pos: 12.5,-2.5 + pos: -23.5,-15.5 parent: 2 - - uid: 550 + - uid: 13722 components: - type: Transform - pos: 11.5,-2.5 + pos: -23.5,-10.5 parent: 2 - - uid: 551 + - uid: 13723 components: - type: Transform - pos: 11.5,-3.5 + pos: -23.5,-16.5 parent: 2 - - uid: 552 + - uid: 13724 components: - type: Transform - pos: 12.5,-3.5 + pos: -23.5,-17.5 parent: 2 - - uid: 569 + - uid: 13725 components: - type: Transform - pos: 9.5,6.5 + pos: -23.5,-18.5 parent: 2 - - uid: 571 + - uid: 13726 components: - type: Transform - pos: 37.5,-7.5 + pos: -23.5,-19.5 parent: 2 - - uid: 936 + - uid: 13762 components: - type: Transform - pos: 36.5,-5.5 + pos: 17.5,21.5 parent: 2 - - uid: 1525 + - uid: 13788 components: - type: Transform - pos: 36.5,-7.5 + pos: -23.5,-20.5 parent: 2 - - uid: 1533 + - uid: 13789 components: - type: Transform - pos: 37.5,-3.5 + pos: -23.5,-22.5 parent: 2 - - uid: 1537 + - uid: 13790 components: - type: Transform - pos: 36.5,-3.5 + pos: -23.5,-21.5 parent: 2 - - uid: 1561 + - uid: 13792 components: - type: Transform - pos: 36.5,-4.5 + pos: -21.5,-22.5 parent: 2 - - uid: 1586 + - uid: 13793 components: - type: Transform - pos: 37.5,-5.5 + pos: -22.5,-22.5 parent: 2 - - uid: 1630 + - uid: 13794 components: - type: Transform - pos: 37.5,-6.5 + pos: -19.5,-22.5 parent: 2 - - uid: 1635 + - uid: 13795 components: - type: Transform - pos: 37.5,-4.5 + pos: -20.5,-22.5 parent: 2 - - uid: 1637 + - uid: 13796 components: - type: Transform - pos: 36.5,-6.5 + pos: -18.5,-22.5 parent: 2 - - uid: 2516 + - uid: 13797 components: - type: Transform - pos: 39.5,7.5 + pos: -17.5,-22.5 parent: 2 - - uid: 2517 + - uid: 13798 components: - type: Transform - pos: 38.5,7.5 + pos: -16.5,-22.5 parent: 2 - - uid: 2518 + - uid: 13799 components: - type: Transform - pos: 37.5,7.5 + pos: -14.5,-22.5 parent: 2 - - uid: 2519 + - uid: 13800 components: - type: Transform - pos: 36.5,7.5 + pos: -13.5,-22.5 parent: 2 - - uid: 2520 + - uid: 13801 components: - type: Transform - pos: 35.5,7.5 + pos: -15.5,-22.5 parent: 2 - - uid: 2521 + - uid: 13802 components: - type: Transform - pos: 35.5,8.5 + pos: -11.5,-22.5 parent: 2 - - uid: 2522 + - uid: 13803 components: - type: Transform - pos: 35.5,9.5 + pos: -12.5,-22.5 parent: 2 - - uid: 2523 + - uid: 13804 components: - type: Transform - pos: 35.5,6.5 + pos: -9.5,-22.5 parent: 2 - - uid: 2524 + - uid: 13805 components: - type: Transform - pos: 35.5,5.5 + pos: -8.5,-22.5 parent: 2 - - uid: 2525 + - uid: 13806 components: - type: Transform - pos: 34.5,7.5 + pos: -6.5,-22.5 parent: 2 - - uid: 2611 + - uid: 13807 components: - type: Transform - pos: 37.5,41.5 + pos: -7.5,-22.5 parent: 2 - - uid: 2612 + - uid: 13808 components: - type: Transform - pos: 36.5,41.5 + pos: -10.5,-22.5 parent: 2 - - uid: 2613 + - uid: 13809 components: - type: Transform - pos: 36.5,40.5 + pos: -5.5,-21.5 parent: 2 - - uid: 2614 + - uid: 13810 components: - type: Transform - pos: 37.5,40.5 + pos: -6.5,-21.5 parent: 2 - - uid: 2697 + - uid: 13811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,31.5 + pos: -4.5,-21.5 parent: 2 - - uid: 2698 + - uid: 13812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,31.5 + pos: -3.5,-21.5 parent: 2 - - uid: 2699 + - uid: 13813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,31.5 + pos: -2.5,-21.5 parent: 2 - - uid: 2700 + - uid: 13814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,31.5 + pos: -1.5,-21.5 parent: 2 - - uid: 2701 + - uid: 13815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,31.5 + pos: 0.5,-21.5 parent: 2 - - uid: 2702 + - uid: 13816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,31.5 + pos: -0.5,-21.5 parent: 2 - - uid: 2703 + - uid: 13817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,30.5 + pos: 1.5,-21.5 parent: 2 - - uid: 2704 + - uid: 13818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,30.5 + pos: 1.5,-20.5 parent: 2 - - uid: 2705 + - uid: 13819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,30.5 + pos: 1.5,-18.5 parent: 2 - - uid: 2706 + - uid: 13820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,31.5 + pos: 1.5,-17.5 parent: 2 - - uid: 2707 + - uid: 13821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,32.5 + pos: 1.5,-16.5 parent: 2 - - uid: 2708 + - uid: 13822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,32.5 + pos: 1.5,-15.5 parent: 2 - - uid: 2709 + - uid: 13823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,32.5 + pos: 1.5,-19.5 parent: 2 - - uid: 2710 + - uid: 13824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,31.5 + pos: 1.5,-12.5 parent: 2 - - uid: 2761 + - uid: 13825 components: - type: Transform - pos: 24.5,40.5 + pos: 1.5,-11.5 parent: 2 - - uid: 2762 + - uid: 13826 components: - type: Transform - pos: 23.5,40.5 + pos: 1.5,-14.5 parent: 2 - - uid: 2763 + - uid: 13827 components: - type: Transform - pos: 22.5,40.5 + pos: 1.5,-13.5 parent: 2 - - uid: 2764 + - uid: 14094 components: - type: Transform - pos: 21.5,40.5 + pos: 66.5,42.5 parent: 2 - - uid: 2765 + - uid: 14096 components: - type: Transform - pos: 21.5,39.5 + pos: 72.5,21.5 parent: 2 - - uid: 2766 + - uid: 14097 components: - type: Transform - pos: 22.5,39.5 + pos: 66.5,35.5 parent: 2 - - uid: 2767 + - uid: 14098 components: - type: Transform - pos: 23.5,39.5 + pos: 66.5,34.5 parent: 2 - - uid: 2768 + - uid: 14099 components: - type: Transform - pos: 24.5,39.5 + pos: 66.5,33.5 parent: 2 - - uid: 2769 + - uid: 14100 components: - type: Transform - pos: 23.5,43.5 + pos: 66.5,32.5 parent: 2 - - uid: 2770 + - uid: 14101 components: - type: Transform - pos: 22.5,43.5 + pos: 66.5,38.5 parent: 2 - - uid: 5453 + - uid: 14102 components: - type: Transform - pos: 67.5,35.5 + pos: 66.5,30.5 parent: 2 - - uid: 6529 + - uid: 14103 components: - type: Transform - pos: 43.5,20.5 + pos: 66.5,28.5 parent: 2 - - uid: 6530 + - uid: 14104 components: - type: Transform - pos: 42.5,20.5 + pos: 66.5,29.5 parent: 2 - - uid: 6531 + - uid: 14105 components: - type: Transform - pos: 42.5,19.5 + pos: 66.5,27.5 parent: 2 - - uid: 6532 + - uid: 14106 components: - type: Transform - pos: 43.5,19.5 + pos: 66.5,26.5 parent: 2 - - uid: 6533 + - uid: 14107 components: - type: Transform - pos: 43.5,18.5 + pos: 66.5,25.5 parent: 2 - - uid: 6534 + - uid: 14108 components: - type: Transform - pos: 42.5,18.5 + pos: 69.5,22.5 parent: 2 - - uid: 10807 + - uid: 14109 components: - type: Transform - pos: 26.5,47.5 + pos: 66.5,24.5 parent: 2 - - uid: 10808 + - uid: 14110 components: - type: Transform - pos: 26.5,48.5 + pos: 66.5,31.5 parent: 2 - - uid: 11009 + - uid: 14111 components: - type: Transform - pos: 27.5,47.5 + pos: 67.5,23.5 parent: 2 - - uid: 11012 + - uid: 14112 components: - type: Transform - pos: 27.5,48.5 + pos: 68.5,23.5 parent: 2 - - uid: 11013 + - uid: 14113 components: - type: Transform - pos: 28.5,47.5 + pos: 69.5,23.5 parent: 2 - - uid: 11131 + - uid: 14114 components: - type: Transform - pos: 28.5,48.5 + pos: 67.5,24.5 parent: 2 - - uid: 11940 + - uid: 14115 components: - type: Transform - pos: 44.5,22.5 + pos: 67.5,23.5 parent: 2 - - uid: 11941 + - uid: 14116 components: - type: Transform - pos: 45.5,22.5 + pos: 69.5,21.5 parent: 2 - - uid: 11942 + - uid: 14117 components: - type: Transform - pos: 45.5,23.5 + pos: 69.5,20.5 parent: 2 - - uid: 11943 + - uid: 14118 components: - type: Transform - pos: 45.5,24.5 + pos: 70.5,20.5 parent: 2 - - uid: 11944 + - uid: 14119 components: - type: Transform - pos: 44.5,23.5 + pos: 71.5,20.5 parent: 2 - - uid: 12263 + - uid: 14124 components: - type: Transform - pos: 16.5,13.5 + pos: 72.5,20.5 parent: 2 - - uid: 12264 + - uid: 14133 components: - type: Transform - pos: 15.5,13.5 + pos: 72.5,22.5 parent: 2 - - uid: 12265 + - uid: 14134 components: - type: Transform - pos: 14.5,13.5 + pos: 72.5,23.5 parent: 2 - - uid: 12266 + - uid: 14135 components: - type: Transform - pos: 16.5,15.5 + pos: 72.5,24.5 parent: 2 - - uid: 12267 + - uid: 14160 components: - type: Transform - pos: 15.5,15.5 + pos: 73.5,24.5 parent: 2 - - uid: 12268 + - uid: 14161 components: - type: Transform - pos: 14.5,15.5 + pos: 74.5,24.5 parent: 2 -- proto: CarpetBlack - entities: - - uid: 5459 + - uid: 14162 components: - type: Transform - pos: 67.5,41.5 + pos: 75.5,24.5 parent: 2 -- proto: CarpetBlue - entities: - - uid: 71 + - uid: 14163 components: - type: Transform - pos: 32.5,42.5 + pos: 75.5,23.5 parent: 2 - - uid: 73 + - uid: 14164 components: - type: Transform - pos: 34.5,40.5 + pos: 75.5,22.5 parent: 2 - - uid: 76 + - uid: 14399 components: - type: Transform - pos: 32.5,41.5 + pos: 80.5,34.5 parent: 2 - - uid: 82 + - uid: 14400 components: - type: Transform - pos: 32.5,40.5 + pos: 80.5,33.5 parent: 2 - - uid: 247 + - uid: 14402 components: - type: Transform - pos: 34.5,42.5 + pos: 80.5,31.5 parent: 2 - - uid: 248 + - uid: 14403 components: - type: Transform - pos: 34.5,41.5 + pos: 80.5,30.5 parent: 2 - - uid: 249 + - uid: 14404 components: - type: Transform - pos: 33.5,42.5 + pos: 81.5,30.5 parent: 2 - - uid: 5455 + - uid: 14406 components: - type: Transform - pos: 67.5,38.5 + pos: 80.5,32.5 parent: 2 - - uid: 5456 + - uid: 14435 components: - type: Transform - pos: 67.5,37.5 + pos: 82.5,30.5 parent: 2 - - uid: 9565 + - uid: 14436 components: - type: Transform - pos: 33.5,41.5 + pos: 83.5,30.5 parent: 2 - - uid: 9574 + - uid: 14437 components: - type: Transform - pos: 33.5,40.5 + pos: 84.5,30.5 parent: 2 -- proto: CarpetChapel - entities: - - uid: 8377 + - uid: 14438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 + pos: 85.5,30.5 parent: 2 - - uid: 8378 + - uid: 14439 components: - type: Transform - pos: 37.5,8.5 + pos: 86.5,30.5 parent: 2 - - uid: 8379 + - uid: 14440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,8.5 + pos: 87.5,30.5 parent: 2 - - uid: 8380 + - uid: 14441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,9.5 + pos: 88.5,30.5 parent: 2 - - uid: 8381 + - uid: 14442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,9.5 + pos: 88.5,29.5 parent: 2 - - uid: 8382 + - uid: 14443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,8.5 + pos: 88.5,28.5 parent: 2 - - uid: 8390 + - uid: 14532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 + pos: 89.5,30.5 parent: 2 - - uid: 8656 + - uid: 14533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 + pos: 90.5,30.5 parent: 2 - - uid: 8657 + - uid: 14534 components: - type: Transform - pos: 37.5,5.5 + pos: 91.5,30.5 parent: 2 - - uid: 8767 + - uid: 14535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,5.5 + pos: 92.5,30.5 parent: 2 - - uid: 8831 + - uid: 14536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,6.5 + pos: 93.5,30.5 parent: 2 - - uid: 8841 + - uid: 14537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,5.5 + pos: 93.5,31.5 parent: 2 - - uid: 8888 + - uid: 14538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,6.5 + pos: 93.5,29.5 parent: 2 - - uid: 9136 + - uid: 14539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 + pos: 93.5,28.5 parent: 2 - - uid: 9138 + - uid: 14540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,9.5 + pos: 94.5,28.5 parent: 2 - - uid: 9139 + - uid: 14541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,8.5 + pos: 95.5,28.5 parent: 2 - - uid: 9731 + - uid: 14542 components: - type: Transform - pos: 30.5,4.5 + pos: 95.5,29.5 parent: 2 - - uid: 9732 + - uid: 14543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,5.5 + pos: 93.5,32.5 parent: 2 - - uid: 9733 + - uid: 14544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,5.5 + pos: 94.5,32.5 parent: 2 - - uid: 9734 + - uid: 14545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,4.5 + pos: 95.5,32.5 parent: 2 -- proto: CarpetGreen - entities: - - uid: 3411 + - uid: 14546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,27.5 + pos: 95.5,31.5 parent: 2 - - uid: 3445 + - uid: 14685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,28.5 + pos: 8.5,20.5 parent: 2 - - uid: 3446 + - uid: 14686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,29.5 + pos: 8.5,19.5 parent: 2 - - uid: 5463 + - uid: 14687 components: - type: Transform - pos: 69.5,36.5 + pos: 8.5,18.5 parent: 2 - - uid: 5514 + - uid: 14688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,31.5 + pos: 7.5,18.5 parent: 2 - - uid: 5515 + - uid: 14689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,32.5 + pos: 6.5,18.5 parent: 2 - - uid: 5516 + - uid: 14690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,33.5 + pos: 6.5,17.5 parent: 2 - - uid: 12679 + - uid: 14701 components: - type: Transform - pos: 105.5,-13.5 + pos: 8.5,22.5 parent: 2 - - uid: 12680 + - uid: 14702 components: - type: Transform - pos: 105.5,-12.5 + pos: 8.5,24.5 parent: 2 - - uid: 12681 + - uid: 14703 components: - type: Transform - pos: 106.5,-13.5 + pos: 8.5,25.5 parent: 2 - - uid: 12682 + - uid: 14704 components: - type: Transform - pos: 106.5,-12.5 + pos: 8.5,26.5 parent: 2 - - uid: 12683 + - uid: 14705 components: - type: Transform - pos: 107.5,-13.5 + pos: 8.5,27.5 parent: 2 - - uid: 12684 + - uid: 14706 components: - type: Transform - pos: 107.5,-12.5 + pos: 8.5,28.5 parent: 2 -- proto: CarpetOrange - entities: - - uid: 5495 + - uid: 14707 components: - type: Transform - pos: 70.5,34.5 + pos: 8.5,23.5 parent: 2 - - uid: 5496 + - uid: 14708 components: - type: Transform - pos: 70.5,33.5 + pos: 8.5,29.5 parent: 2 - - uid: 5497 + - uid: 14709 components: - type: Transform - pos: 70.5,32.5 + pos: 8.5,32.5 parent: 2 - - uid: 5498 + - uid: 14710 components: - type: Transform - pos: 70.5,27.5 + pos: 8.5,31.5 parent: 2 - - uid: 5499 + - uid: 14711 components: - type: Transform - pos: 70.5,28.5 + pos: 8.5,33.5 parent: 2 - - uid: 5500 + - uid: 14712 components: - type: Transform - pos: 70.5,29.5 + pos: 8.5,30.5 parent: 2 -- proto: CarpetPink - entities: - - uid: 1240 + - uid: 14713 components: - type: Transform - pos: 5.5,-13.5 + pos: 9.5,33.5 parent: 2 - - uid: 1244 + - uid: 14714 components: - type: Transform - pos: 5.5,-12.5 + pos: 10.5,33.5 parent: 2 - - uid: 5457 + - uid: 14731 components: - type: Transform - pos: 67.5,39.5 + pos: 9.5,18.5 parent: 2 - - uid: 5682 + - uid: 14856 components: - type: Transform - pos: 6.5,-13.5 + pos: 66.5,46.5 parent: 2 - - uid: 13066 + - uid: 14857 components: - type: Transform - pos: 6.5,-12.5 + pos: 65.5,46.5 parent: 2 - - uid: 13067 + - uid: 14858 components: - type: Transform - pos: 7.5,-13.5 + pos: 64.5,46.5 parent: 2 - - uid: 13068 + - uid: 14859 components: - type: Transform - pos: 7.5,-12.5 + pos: 64.5,45.5 parent: 2 - - uid: 13069 + - uid: 14860 components: - type: Transform - pos: 4.5,-13.5 + pos: 64.5,44.5 parent: 2 - - uid: 13070 + - uid: 14861 components: - type: Transform - pos: 4.5,-12.5 + pos: 64.5,43.5 parent: 2 -- proto: CarpetPurple - entities: - - uid: 5454 + - uid: 14862 components: - type: Transform - pos: 67.5,36.5 + pos: 64.5,42.5 parent: 2 -- proto: CarpetSBlue - entities: - - uid: 5458 + - uid: 14863 components: - type: Transform - pos: 67.5,40.5 + pos: 63.5,42.5 parent: 2 - - uid: 5462 + - uid: 14864 components: - type: Transform - pos: 69.5,39.5 + pos: 62.5,42.5 parent: 2 - - uid: 10284 + - uid: 14865 components: - type: Transform - pos: 18.5,-3.5 + pos: 62.5,41.5 parent: 2 - - uid: 10285 + - uid: 14866 components: - type: Transform - pos: 18.5,-2.5 + pos: 62.5,40.5 parent: 2 - - uid: 10286 + - uid: 14867 components: - type: Transform - pos: 19.5,-3.5 + pos: 62.5,39.5 parent: 2 - - uid: 10287 + - uid: 14868 components: - type: Transform - pos: 19.5,-2.5 + pos: 62.5,37.5 parent: 2 - - uid: 10288 + - uid: 14869 components: - type: Transform - pos: 20.5,-3.5 + pos: 62.5,36.5 parent: 2 - - uid: 10289 + - uid: 14870 components: - type: Transform - pos: 20.5,-2.5 + pos: 62.5,35.5 parent: 2 -- proto: Catwalk - entities: - - uid: 245 + - uid: 14871 components: - type: Transform - pos: -15.5,16.5 + pos: 62.5,34.5 parent: 2 - - uid: 592 + - uid: 14872 components: - type: Transform - pos: 14.5,-21.5 + pos: 62.5,33.5 parent: 2 - - uid: 593 + - uid: 14873 components: - type: Transform - pos: 13.5,-21.5 + pos: 62.5,32.5 parent: 2 - - uid: 594 + - uid: 14874 components: - type: Transform - pos: 4.5,-31.5 + pos: 62.5,38.5 parent: 2 - - uid: 595 + - uid: 14875 components: - type: Transform - pos: 4.5,-32.5 + pos: 61.5,42.5 parent: 2 - - uid: 1374 + - uid: 14876 components: - type: Transform - pos: -1.5,-35.5 + pos: 60.5,42.5 parent: 2 - - uid: 1375 + - uid: 14877 components: - type: Transform - pos: -2.5,-35.5 + pos: 60.5,43.5 parent: 2 - - uid: 1376 + - uid: 14878 components: - type: Transform - pos: -3.5,-35.5 + pos: 60.5,44.5 parent: 2 - - uid: 1377 + - uid: 14879 components: - type: Transform - pos: -4.5,-35.5 + pos: 59.5,44.5 parent: 2 - - uid: 1378 + - uid: 14880 components: - type: Transform - pos: -4.5,-34.5 + pos: 58.5,44.5 parent: 2 - - uid: 1379 + - uid: 14881 components: - type: Transform - pos: -4.5,-33.5 + pos: 57.5,44.5 parent: 2 - - uid: 1380 + - uid: 14882 components: - type: Transform - pos: -4.5,-32.5 + pos: 56.5,44.5 parent: 2 - - uid: 1381 + - uid: 14883 components: - type: Transform - pos: -4.5,-31.5 + pos: 54.5,44.5 parent: 2 - - uid: 1382 + - uid: 14884 components: - type: Transform - pos: -4.5,-36.5 + pos: 53.5,44.5 parent: 2 - - uid: 1383 + - uid: 14885 components: - type: Transform - pos: -4.5,-37.5 + pos: 55.5,44.5 parent: 2 - - uid: 1384 + - uid: 14886 components: - type: Transform - pos: -4.5,-38.5 + pos: 52.5,43.5 parent: 2 - - uid: 1385 + - uid: 14887 components: - type: Transform - pos: -4.5,-39.5 + pos: 51.5,43.5 parent: 2 - - uid: 1398 + - uid: 14888 components: - type: Transform - pos: -5.5,-35.5 + pos: 52.5,44.5 parent: 2 - - uid: 1399 + - uid: 14889 components: - type: Transform - pos: -6.5,-35.5 + pos: 50.5,43.5 parent: 2 - - uid: 1400 + - uid: 14890 components: - type: Transform - pos: -7.5,-35.5 + pos: 50.5,42.5 parent: 2 - - uid: 1401 + - uid: 14891 components: - type: Transform - pos: -8.5,-35.5 + pos: 50.5,40.5 parent: 2 - - uid: 1402 + - uid: 14892 components: - type: Transform - pos: -8.5,-36.5 + pos: 50.5,39.5 parent: 2 - - uid: 1403 + - uid: 14893 components: - type: Transform - pos: -8.5,-37.5 + pos: 50.5,41.5 parent: 2 - - uid: 1404 + - uid: 14894 components: - type: Transform - pos: -8.5,-38.5 + pos: 50.5,38.5 parent: 2 - - uid: 1405 + - uid: 14895 components: - type: Transform - pos: -8.5,-39.5 + pos: 62.5,31.5 parent: 2 - - uid: 1406 + - uid: 14927 components: - type: Transform - pos: -8.5,-40.5 + pos: 36.5,34.5 parent: 2 - - uid: 1407 + - uid: 14928 components: - type: Transform - pos: -8.5,-34.5 + pos: 37.5,34.5 parent: 2 - - uid: 1408 + - uid: 14933 components: - type: Transform - pos: -8.5,-33.5 + pos: 26.5,34.5 parent: 2 - - uid: 1409 + - uid: 14934 components: - type: Transform - pos: -8.5,-32.5 + pos: 26.5,35.5 parent: 2 - - uid: 1410 + - uid: 14935 components: - type: Transform - pos: -8.5,-31.5 + pos: 33.5,36.5 parent: 2 - - uid: 1411 + - uid: 14944 components: - type: Transform - pos: -8.5,-30.5 + pos: 14.5,40.5 parent: 2 - - uid: 1428 + - uid: 14945 components: - type: Transform - pos: -9.5,-35.5 + pos: 14.5,41.5 parent: 2 - - uid: 1429 + - uid: 14946 components: - type: Transform - pos: -10.5,-35.5 + pos: 14.5,42.5 parent: 2 - - uid: 1430 + - uid: 14947 components: - type: Transform - pos: -11.5,-35.5 + pos: 13.5,42.5 parent: 2 - - uid: 1431 + - uid: 14948 components: - type: Transform - pos: -12.5,-35.5 + pos: 15.5,42.5 parent: 2 - - uid: 1432 + - uid: 14977 components: - type: Transform - pos: -12.5,-34.5 + pos: 17.5,-39.5 parent: 2 - - uid: 1433 + - uid: 14981 components: - type: Transform - pos: -12.5,-33.5 + pos: 18.5,-39.5 parent: 2 - - uid: 1434 + - uid: 14982 components: - type: Transform - pos: -12.5,-32.5 + pos: 19.5,-39.5 parent: 2 - - uid: 1435 + - uid: 14983 components: - type: Transform - pos: -12.5,-31.5 + pos: 20.5,-39.5 parent: 2 - - uid: 1436 + - uid: 15003 components: - type: Transform - pos: -12.5,-36.5 + pos: 52.5,-13.5 parent: 2 - - uid: 1437 + - uid: 15030 components: - type: Transform - pos: -12.5,-37.5 + pos: 37.5,-12.5 parent: 2 - - uid: 1438 + - uid: 15031 components: - type: Transform - pos: -12.5,-38.5 + pos: 38.5,-12.5 parent: 2 - - uid: 1439 +- proto: CableMVStack + entities: + - uid: 5628 components: - type: Transform - pos: -12.5,-39.5 + pos: 17.902254,-23.387651 parent: 2 - - uid: 1440 + - uid: 6316 components: - type: Transform - pos: -13.5,-35.5 + pos: 90.66321,-10.120396 parent: 2 - - uid: 1441 +- proto: CableTerminal + entities: + - uid: 338 components: - type: Transform - pos: -14.5,-35.5 + rot: 3.141592653589793 rad + pos: 27.5,-32.5 parent: 2 - - uid: 1442 + - uid: 682 components: - type: Transform - pos: -15.5,-35.5 + rot: 3.141592653589793 rad + pos: 25.5,-32.5 parent: 2 - - uid: 1468 + - uid: 886 components: - type: Transform - pos: 21.5,-40.5 + rot: 3.141592653589793 rad + pos: 26.5,-32.5 parent: 2 - - uid: 1474 + - uid: 2120 components: - type: Transform - pos: 13.5,-38.5 + rot: -1.5707963267948966 rad + pos: 17.5,-38.5 parent: 2 - - uid: 1475 + - uid: 2908 components: - type: Transform - pos: 12.5,-38.5 + pos: 13.5,36.5 parent: 2 - - uid: 1477 + - uid: 4872 components: - type: Transform - pos: 10.5,-38.5 + rot: 1.5707963267948966 rad + pos: 2.5,-34.5 parent: 2 - - uid: 1478 + - uid: 6284 components: - type: Transform - pos: 9.5,-38.5 + pos: 71.5,45.5 parent: 2 - - uid: 1479 + - uid: 6442 components: - type: Transform - pos: 8.5,-38.5 + rot: 3.141592653589793 rad + pos: 23.5,-15.5 parent: 2 - - uid: 1486 + - uid: 7741 components: - type: Transform - pos: 21.5,-21.5 + rot: 1.5707963267948966 rad + pos: 36.5,33.5 parent: 2 - - uid: 1492 + - uid: 12647 components: - type: Transform - pos: 19.5,-21.5 + rot: 3.141592653589793 rad + pos: 112.5,-18.5 parent: 2 - - uid: 1493 + - uid: 14393 components: - type: Transform - pos: 20.5,-21.5 + rot: 3.141592653589793 rad + pos: 79.5,33.5 parent: 2 - - uid: 1519 +- proto: CandyBowl + entities: + - uid: 13078 components: - type: Transform - pos: 18.5,-21.5 + pos: 54.503376,-4.6494684 parent: 2 - - uid: 1585 +- proto: CannabisSeeds + entities: + - uid: 8395 components: - type: Transform - pos: 22.5,-21.5 + pos: 59.5,38.5 parent: 2 - - uid: 1780 +- proto: CaptainIDCard + entities: + - uid: 1255 components: - type: Transform - pos: 23.5,-21.5 + pos: 33.48514,41.714756 parent: 2 - - uid: 2297 +- proto: CarbonDioxideCanister + entities: + - uid: 1924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,34.5 + pos: 50.5,-27.5 parent: 2 - - uid: 2298 + - uid: 4771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,33.5 + pos: 45.5,-37.5 parent: 2 - - uid: 2299 + - uid: 12998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,32.5 + pos: 34.5,-45.5 parent: 2 - - uid: 3807 +- proto: Carpet + entities: + - uid: 3 components: - type: Transform - pos: 79.5,-9.5 + pos: 43.5,22.5 parent: 2 - - uid: 3904 + - uid: 266 components: - type: Transform - pos: 75.5,45.5 + pos: 9.5,7.5 parent: 2 - - uid: 3905 + - uid: 268 components: - type: Transform - pos: 76.5,45.5 + pos: 11.5,6.5 parent: 2 - - uid: 3906 + - uid: 269 components: - type: Transform - pos: 77.5,45.5 + pos: 11.5,7.5 parent: 2 - - uid: 3907 + - uid: 549 components: - type: Transform - pos: 78.5,45.5 + pos: 12.5,-2.5 parent: 2 - - uid: 3908 + - uid: 550 components: - type: Transform - pos: 78.5,46.5 + pos: 11.5,-2.5 parent: 2 - - uid: 3909 + - uid: 551 components: - type: Transform - pos: 78.5,47.5 + pos: 11.5,-3.5 parent: 2 - - uid: 3910 + - uid: 552 components: - type: Transform - pos: 78.5,48.5 + pos: 12.5,-3.5 parent: 2 - - uid: 3911 + - uid: 569 components: - type: Transform - pos: 78.5,49.5 + pos: 9.5,6.5 parent: 2 - - uid: 3912 + - uid: 571 components: - type: Transform - pos: 78.5,44.5 + pos: 37.5,-7.5 parent: 2 - - uid: 3913 + - uid: 936 components: - type: Transform - pos: 78.5,43.5 + pos: 36.5,-5.5 parent: 2 - - uid: 3914 + - uid: 1525 components: - type: Transform - pos: 78.5,42.5 + pos: 36.5,-7.5 parent: 2 - - uid: 3915 + - uid: 1533 components: - type: Transform - pos: 78.5,41.5 + pos: 37.5,-3.5 parent: 2 - - uid: 3916 + - uid: 1537 components: - type: Transform - pos: 79.5,45.5 + pos: 36.5,-3.5 parent: 2 - - uid: 3917 + - uid: 1561 components: - type: Transform - pos: 80.5,45.5 + pos: 36.5,-4.5 parent: 2 - - uid: 3918 + - uid: 1586 components: - type: Transform - pos: 81.5,45.5 + pos: 37.5,-5.5 parent: 2 - - uid: 3919 + - uid: 1630 components: - type: Transform - pos: 82.5,45.5 + pos: 37.5,-6.5 parent: 2 - - uid: 3920 + - uid: 1635 components: - type: Transform - pos: 82.5,46.5 + pos: 37.5,-4.5 parent: 2 - - uid: 3921 + - uid: 1637 components: - type: Transform - pos: 82.5,47.5 + pos: 36.5,-6.5 parent: 2 - - uid: 3922 + - uid: 2516 components: - type: Transform - pos: 82.5,48.5 + pos: 39.5,7.5 parent: 2 - - uid: 3923 + - uid: 2517 components: - type: Transform - pos: 82.5,40.5 + pos: 38.5,7.5 parent: 2 - - uid: 3924 + - uid: 2518 components: - type: Transform - pos: 82.5,49.5 + pos: 37.5,7.5 parent: 2 - - uid: 3925 + - uid: 2519 components: - type: Transform - pos: 82.5,50.5 + pos: 36.5,7.5 parent: 2 - - uid: 3926 + - uid: 2520 components: - type: Transform - pos: 82.5,41.5 + pos: 35.5,7.5 parent: 2 - - uid: 3927 + - uid: 2521 components: - type: Transform - pos: 82.5,42.5 + pos: 35.5,8.5 parent: 2 - - uid: 3928 + - uid: 2522 components: - type: Transform - pos: 82.5,43.5 + pos: 35.5,9.5 parent: 2 - - uid: 3929 + - uid: 2523 components: - type: Transform - pos: 82.5,44.5 + pos: 35.5,6.5 parent: 2 - - uid: 3930 + - uid: 2524 components: - type: Transform - pos: 83.5,45.5 + pos: 35.5,5.5 parent: 2 - - uid: 3931 + - uid: 2525 components: - type: Transform - pos: 84.5,45.5 + pos: 34.5,7.5 parent: 2 - - uid: 3932 + - uid: 2611 components: - type: Transform - pos: 85.5,45.5 + pos: 37.5,41.5 parent: 2 - - uid: 3933 + - uid: 2612 components: - type: Transform - pos: 86.5,45.5 + pos: 36.5,41.5 parent: 2 - - uid: 3934 + - uid: 2613 components: - type: Transform - pos: 86.5,44.5 + pos: 36.5,40.5 parent: 2 - - uid: 3935 + - uid: 2614 components: - type: Transform - pos: 86.5,43.5 + pos: 37.5,40.5 parent: 2 - - uid: 3936 + - uid: 2697 components: - type: Transform - pos: 86.5,42.5 + rot: -1.5707963267948966 rad + pos: 24.5,31.5 parent: 2 - - uid: 3937 + - uid: 2698 components: - type: Transform - pos: 86.5,41.5 + rot: -1.5707963267948966 rad + pos: 23.5,31.5 parent: 2 - - uid: 3938 + - uid: 2699 components: - type: Transform - pos: 86.5,46.5 + rot: -1.5707963267948966 rad + pos: 22.5,31.5 parent: 2 - - uid: 3939 + - uid: 2700 components: - type: Transform - pos: 86.5,47.5 + rot: -1.5707963267948966 rad + pos: 21.5,31.5 parent: 2 - - uid: 3940 + - uid: 2701 components: - type: Transform - pos: 86.5,48.5 + rot: -1.5707963267948966 rad + pos: 20.5,31.5 parent: 2 - - uid: 3941 + - uid: 2702 components: - type: Transform - pos: 86.5,49.5 + rot: -1.5707963267948966 rad + pos: 19.5,31.5 parent: 2 - - uid: 3942 + - uid: 2703 components: - type: Transform - pos: 87.5,45.5 + rot: -1.5707963267948966 rad + pos: 19.5,30.5 parent: 2 - - uid: 3943 + - uid: 2704 components: - type: Transform - pos: 88.5,45.5 + rot: -1.5707963267948966 rad + pos: 18.5,30.5 parent: 2 - - uid: 3944 + - uid: 2705 components: - type: Transform - pos: 89.5,45.5 + rot: -1.5707963267948966 rad + pos: 17.5,30.5 parent: 2 - - uid: 4440 + - uid: 2706 components: - type: Transform - pos: 4.5,-30.5 + rot: -1.5707963267948966 rad + pos: 17.5,31.5 parent: 2 - - uid: 4441 + - uid: 2707 components: - type: Transform - pos: 5.5,-30.5 + rot: -1.5707963267948966 rad + pos: 17.5,32.5 parent: 2 - - uid: 4453 + - uid: 2708 components: - type: Transform - pos: 10.5,-23.5 + rot: -1.5707963267948966 rad + pos: 18.5,32.5 parent: 2 - - uid: 4454 + - uid: 2709 components: - type: Transform - pos: 11.5,-23.5 + rot: -1.5707963267948966 rad + pos: 19.5,32.5 parent: 2 - - uid: 4776 + - uid: 2710 components: - type: Transform - pos: 30.5,-43.5 + rot: -1.5707963267948966 rad + pos: 18.5,31.5 parent: 2 - - uid: 4777 + - uid: 2761 components: - type: Transform - pos: 30.5,-42.5 + pos: 24.5,40.5 parent: 2 - - uid: 4778 + - uid: 2762 components: - type: Transform - pos: 30.5,-41.5 + pos: 23.5,40.5 parent: 2 - - uid: 4779 + - uid: 2763 components: - type: Transform - pos: 30.5,-40.5 + pos: 22.5,40.5 parent: 2 - - uid: 4780 + - uid: 2764 components: - type: Transform - pos: 30.5,-39.5 + pos: 21.5,40.5 parent: 2 - - uid: 4782 + - uid: 2765 components: - type: Transform - pos: 21.5,-39.5 + pos: 21.5,39.5 parent: 2 - - uid: 4799 + - uid: 2766 components: - type: Transform - pos: 21.5,-41.5 + pos: 22.5,39.5 parent: 2 - - uid: 4986 + - uid: 2767 components: - type: Transform - pos: 51.5,6.5 + pos: 23.5,39.5 parent: 2 - - uid: 5082 + - uid: 2768 components: - type: Transform - pos: 53.5,6.5 + pos: 24.5,39.5 parent: 2 - - uid: 5123 + - uid: 2769 components: - type: Transform - pos: 46.5,-27.5 + pos: 23.5,43.5 parent: 2 - - uid: 5145 + - uid: 2770 components: - type: Transform - pos: 46.5,6.5 + pos: 22.5,43.5 parent: 2 - - uid: 5196 + - uid: 5453 components: - type: Transform - pos: 46.5,-34.5 + pos: 67.5,35.5 parent: 2 - - uid: 5613 + - uid: 6529 components: - type: Transform - pos: 35.5,-40.5 + pos: 43.5,20.5 parent: 2 - - uid: 5614 + - uid: 6530 components: - type: Transform - pos: 35.5,-39.5 + pos: 42.5,20.5 parent: 2 - - uid: 5615 + - uid: 6531 components: - type: Transform - pos: 34.5,-39.5 + pos: 42.5,19.5 parent: 2 - - uid: 5616 + - uid: 6532 components: - type: Transform - pos: 36.5,-39.5 + pos: 43.5,19.5 parent: 2 - - uid: 5623 + - uid: 6533 components: - type: Transform - pos: 11.5,-26.5 + pos: 43.5,18.5 parent: 2 - - uid: 5624 + - uid: 6534 components: - type: Transform - pos: 10.5,-26.5 + pos: 42.5,18.5 parent: 2 - - uid: 5663 + - uid: 10807 components: - type: Transform - pos: 46.5,-29.5 + pos: 26.5,47.5 parent: 2 - - uid: 5730 + - uid: 10808 components: - type: Transform - pos: 46.5,-24.5 + pos: 26.5,48.5 parent: 2 - - uid: 5860 + - uid: 11009 components: - type: Transform - pos: 16.5,-21.5 + pos: 27.5,47.5 parent: 2 - - uid: 5870 + - uid: 11012 components: - type: Transform - pos: 15.5,-21.5 + pos: 27.5,48.5 parent: 2 - - uid: 5871 + - uid: 11013 components: - type: Transform - pos: 17.5,-21.5 + pos: 28.5,47.5 parent: 2 - - uid: 5914 + - uid: 11131 components: - type: Transform - pos: 32.5,-19.5 + pos: 28.5,48.5 parent: 2 - - uid: 5915 + - uid: 11940 components: - type: Transform - pos: 33.5,-19.5 + pos: 44.5,22.5 parent: 2 - - uid: 5916 + - uid: 11941 components: - type: Transform - pos: 34.5,-19.5 + pos: 45.5,22.5 parent: 2 - - uid: 5917 + - uid: 11942 components: - type: Transform - pos: 35.5,-19.5 + pos: 45.5,23.5 parent: 2 - - uid: 5918 + - uid: 11943 components: - type: Transform - pos: 37.5,-19.5 + pos: 45.5,24.5 parent: 2 - - uid: 5919 + - uid: 11944 components: - type: Transform - pos: 38.5,-19.5 + pos: 44.5,23.5 parent: 2 - - uid: 5920 + - uid: 12263 components: - type: Transform - pos: 39.5,-19.5 + pos: 16.5,13.5 parent: 2 - - uid: 7007 + - uid: 12264 components: - type: Transform - pos: 44.5,6.5 + pos: 15.5,13.5 parent: 2 - - uid: 7012 + - uid: 12265 components: - type: Transform - pos: 47.5,6.5 + pos: 14.5,13.5 parent: 2 - - uid: 7820 + - uid: 12266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,27.5 + pos: 16.5,15.5 parent: 2 - - uid: 7860 + - uid: 12267 components: - type: Transform - pos: 46.5,-30.5 + pos: 15.5,15.5 parent: 2 - - uid: 8283 + - uid: 12268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,16.5 + pos: 14.5,15.5 parent: 2 - - uid: 8284 +- proto: CarpetBlack + entities: + - uid: 430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 + rot: 1.5707963267948966 rad + pos: 7.5,18.5 parent: 2 - - uid: 8302 + - uid: 2011 components: - type: Transform - pos: 52.5,6.5 + rot: 1.5707963267948966 rad + pos: 5.5,15.5 parent: 2 - - uid: 8311 + - uid: 5459 components: - type: Transform - pos: 50.5,6.5 + pos: 67.5,41.5 parent: 2 - - uid: 8312 + - uid: 7586 components: - type: Transform - pos: 49.5,6.5 + rot: 1.5707963267948966 rad + pos: 6.5,18.5 parent: 2 - - uid: 8313 + - uid: 7587 components: - type: Transform - pos: 45.5,6.5 + rot: 1.5707963267948966 rad + pos: 8.5,18.5 parent: 2 - - uid: 8750 + - uid: 7949 components: - type: Transform - pos: 95.5,-19.5 + rot: 1.5707963267948966 rad + pos: 5.5,16.5 parent: 2 - - uid: 8751 +- proto: CarpetBlue + entities: + - uid: 71 components: - type: Transform - pos: 96.5,-19.5 + pos: 32.5,42.5 parent: 2 - - uid: 8752 + - uid: 73 components: - type: Transform - pos: 97.5,-19.5 + pos: 34.5,40.5 parent: 2 - - uid: 8753 + - uid: 76 components: - type: Transform - pos: 98.5,-19.5 + pos: 32.5,41.5 parent: 2 - - uid: 8754 + - uid: 82 components: - type: Transform - pos: 98.5,-20.5 + pos: 32.5,40.5 parent: 2 - - uid: 8755 + - uid: 247 components: - type: Transform - pos: 97.5,-20.5 + pos: 34.5,42.5 parent: 2 - - uid: 8756 + - uid: 248 components: - type: Transform - pos: 96.5,-20.5 + pos: 34.5,41.5 parent: 2 - - uid: 8757 + - uid: 249 components: - type: Transform - pos: 95.5,-20.5 + pos: 33.5,42.5 parent: 2 - - uid: 8850 + - uid: 5455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-10.5 + pos: 67.5,38.5 parent: 2 - - uid: 8851 + - uid: 5456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-10.5 + pos: 67.5,37.5 parent: 2 - - uid: 8852 + - uid: 9565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-10.5 + pos: 33.5,41.5 parent: 2 - - uid: 8853 + - uid: 9574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-10.5 + pos: 33.5,40.5 parent: 2 - - uid: 8854 +- proto: CarpetChapel + entities: + - uid: 8377 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,27.5 + pos: 37.5,9.5 parent: 2 - - uid: 8855 + - uid: 8378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,27.5 + pos: 37.5,8.5 parent: 2 - - uid: 8856 + - uid: 8379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,27.5 + rot: 1.5707963267948966 rad + pos: 36.5,8.5 parent: 2 - - uid: 8916 + - uid: 8380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,27.5 + rot: 3.141592653589793 rad + pos: 36.5,9.5 parent: 2 - - uid: 8917 + - uid: 8381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,27.5 + rot: 3.141592653589793 rad + pos: 38.5,9.5 parent: 2 - - uid: 8918 + - uid: 8382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,27.5 + rot: 1.5707963267948966 rad + pos: 38.5,8.5 parent: 2 - - uid: 8919 + - uid: 8390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,27.5 + rot: 3.141592653589793 rad + pos: 38.5,6.5 parent: 2 - - uid: 9927 + - uid: 8656 components: - type: Transform - pos: 54.5,27.5 + rot: -1.5707963267948966 rad + pos: 37.5,6.5 parent: 2 - - uid: 9928 + - uid: 8657 components: - type: Transform - pos: 58.5,27.5 + pos: 37.5,5.5 parent: 2 - - uid: 10711 + - uid: 8767 components: - type: Transform - pos: 63.5,48.5 + rot: 1.5707963267948966 rad + pos: 38.5,5.5 parent: 2 - - uid: 10712 + - uid: 8831 components: - type: Transform - pos: 62.5,48.5 + rot: 3.141592653589793 rad + pos: 36.5,6.5 parent: 2 - - uid: 10713 + - uid: 8841 components: - type: Transform - pos: 61.5,48.5 + rot: 1.5707963267948966 rad + pos: 36.5,5.5 parent: 2 - - uid: 10714 + - uid: 8888 components: - type: Transform - pos: 60.5,48.5 + rot: 3.141592653589793 rad + pos: 34.5,6.5 parent: 2 - - uid: 10715 + - uid: 9136 components: - type: Transform - pos: 59.5,48.5 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 parent: 2 - - uid: 10716 + - uid: 9138 components: - type: Transform - pos: 58.5,48.5 + rot: 3.141592653589793 rad + pos: 34.5,9.5 parent: 2 - - uid: 10717 + - uid: 9139 components: - type: Transform - pos: 57.5,48.5 + rot: 1.5707963267948966 rad + pos: 34.5,8.5 parent: 2 - - uid: 10718 + - uid: 9731 components: - type: Transform - pos: 56.5,48.5 + pos: 30.5,4.5 parent: 2 - - uid: 10719 + - uid: 9732 components: - type: Transform - pos: 54.5,48.5 + rot: -1.5707963267948966 rad + pos: 30.5,5.5 parent: 2 - - uid: 10720 + - uid: 9733 components: - type: Transform - pos: 53.5,48.5 + rot: 3.141592653589793 rad + pos: 31.5,5.5 parent: 2 - - uid: 10721 + - uid: 9734 components: - type: Transform - pos: 52.5,48.5 + rot: 1.5707963267948966 rad + pos: 31.5,4.5 parent: 2 - - uid: 10722 - components: +- proto: CarpetGreen + entities: + - uid: 2276 + components: - type: Transform - pos: 51.5,48.5 + pos: 67.5,27.5 parent: 2 - - uid: 10723 + - uid: 5463 components: - type: Transform - pos: 50.5,48.5 + pos: 69.5,36.5 parent: 2 - - uid: 10724 + - uid: 5514 components: - type: Transform - pos: 49.5,48.5 + rot: 3.141592653589793 rad + pos: 67.5,31.5 parent: 2 - - uid: 10725 + - uid: 5515 components: - type: Transform - pos: 55.5,48.5 + rot: 3.141592653589793 rad + pos: 67.5,32.5 parent: 2 - - uid: 10726 + - uid: 5516 components: - type: Transform - pos: 43.5,41.5 + rot: 3.141592653589793 rad + pos: 67.5,33.5 parent: 2 - - uid: 10727 + - uid: 12679 components: - type: Transform - pos: 42.5,41.5 + pos: 105.5,-13.5 parent: 2 - - uid: 10728 + - uid: 12680 components: - type: Transform - pos: 41.5,41.5 + pos: 105.5,-12.5 parent: 2 - - uid: 10729 + - uid: 12681 components: - type: Transform - pos: 40.5,41.5 + pos: 106.5,-13.5 parent: 2 - - uid: 10730 + - uid: 12682 components: - type: Transform - pos: 67.5,10.5 + pos: 106.5,-12.5 parent: 2 - - uid: 10731 + - uid: 12683 components: - type: Transform - pos: 68.5,10.5 + pos: 107.5,-13.5 parent: 2 - - uid: 10732 + - uid: 12684 components: - type: Transform - pos: 70.5,10.5 + pos: 107.5,-12.5 parent: 2 - - uid: 10733 + - uid: 14089 components: - type: Transform - pos: 69.5,10.5 + pos: 67.5,29.5 parent: 2 - - uid: 10734 + - uid: 14090 components: - type: Transform - pos: 71.5,10.5 + pos: 67.5,28.5 parent: 2 - - uid: 10736 +- proto: CarpetOrange + entities: + - uid: 3431 components: - type: Transform - pos: 73.5,10.5 + pos: 70.5,28.5 parent: 2 - - uid: 10737 + - uid: 5495 components: - type: Transform - pos: 84.5,3.5 + pos: 70.5,34.5 parent: 2 - - uid: 10738 + - uid: 5496 components: - type: Transform - pos: 83.5,4.5 + pos: 70.5,33.5 parent: 2 - - uid: 10739 + - uid: 5497 components: - type: Transform - pos: 84.5,2.5 + pos: 70.5,32.5 parent: 2 - - uid: 10740 + - uid: 5513 components: - type: Transform - pos: 84.5,1.5 + pos: 69.5,28.5 parent: 2 - - uid: 10741 + - uid: 8357 components: - type: Transform - pos: 84.5,0.5 + pos: 70.5,27.5 parent: 2 - - uid: 10742 + - uid: 8817 components: - type: Transform - pos: 84.5,-1.5 + pos: 70.5,29.5 parent: 2 - - uid: 10743 +- proto: CarpetPink + entities: + - uid: 1240 components: - type: Transform - pos: 84.5,-2.5 + pos: 5.5,-13.5 parent: 2 - - uid: 10744 + - uid: 1244 components: - type: Transform - pos: 85.5,-2.5 + pos: 5.5,-12.5 parent: 2 - - uid: 10757 + - uid: 5457 components: - type: Transform - pos: 84.5,-16.5 + pos: 67.5,39.5 parent: 2 - - uid: 10758 + - uid: 5682 components: - type: Transform - pos: 83.5,-16.5 + pos: 6.5,-13.5 parent: 2 - - uid: 10759 + - uid: 13066 components: - type: Transform - pos: 82.5,-16.5 + pos: 6.5,-12.5 parent: 2 - - uid: 10760 + - uid: 13067 components: - type: Transform - pos: 78.5,-16.5 + pos: 7.5,-13.5 parent: 2 - - uid: 10761 + - uid: 13068 components: - type: Transform - pos: 75.5,-16.5 + pos: 7.5,-12.5 parent: 2 - - uid: 10762 + - uid: 13069 components: - type: Transform - pos: 74.5,-16.5 + pos: 4.5,-13.5 parent: 2 - - uid: 10763 + - uid: 13070 components: - type: Transform - pos: 72.5,-16.5 + pos: 4.5,-12.5 parent: 2 - - uid: 10764 +- proto: CarpetPurple + entities: + - uid: 5454 components: - type: Transform - pos: 69.5,-16.5 + pos: 67.5,36.5 parent: 2 - - uid: 10765 +- proto: CarpetSBlue + entities: + - uid: 5458 components: - type: Transform - pos: 69.5,-15.5 + pos: 67.5,40.5 parent: 2 - - uid: 10766 + - uid: 5462 components: - type: Transform - pos: 69.5,-17.5 + pos: 69.5,39.5 parent: 2 - - uid: 10767 + - uid: 10284 components: - type: Transform - pos: 69.5,-18.5 + pos: 18.5,-3.5 parent: 2 - - uid: 10768 + - uid: 10285 components: - type: Transform - pos: 66.5,29.5 + pos: 18.5,-2.5 parent: 2 - - uid: 10769 + - uid: 10286 components: - type: Transform - pos: 67.5,46.5 + pos: 19.5,-3.5 parent: 2 - - uid: 10770 + - uid: 10287 components: - type: Transform - pos: 49.5,47.5 + pos: 19.5,-2.5 parent: 2 - - uid: 10771 + - uid: 10288 components: - type: Transform - pos: 63.5,47.5 + pos: 20.5,-3.5 parent: 2 - - uid: 10772 + - uid: 10289 components: - type: Transform - pos: 29.5,32.5 + pos: 20.5,-2.5 parent: 2 - - uid: 10773 +- proto: Catwalk + entities: + - uid: 8 components: - type: Transform - pos: 30.5,32.5 + rot: 1.5707963267948966 rad + pos: -8.5,-16.5 parent: 2 - - uid: 10774 + - uid: 197 components: - type: Transform - pos: 26.5,10.5 + rot: 3.141592653589793 rad + pos: 3.5,-15.5 parent: 2 - - uid: 10775 + - uid: 198 components: - type: Transform - pos: 38.5,11.5 + rot: 1.5707963267948966 rad + pos: -20.5,-9.5 parent: 2 - - uid: 10776 + - uid: 199 components: - type: Transform - pos: 18.5,3.5 + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 parent: 2 - - uid: 10778 + - uid: 438 components: - type: Transform - pos: 15.5,7.5 + pos: 13.5,-45.5 parent: 2 - - uid: 10779 + - uid: 576 components: - type: Transform - pos: 5.5,-28.5 + rot: 3.141592653589793 rad + pos: 42.5,-21.5 parent: 2 - - uid: 10780 + - uid: 592 components: - type: Transform - pos: 5.5,-25.5 + pos: 14.5,-21.5 parent: 2 - - uid: 10781 + - uid: 593 components: - type: Transform - pos: 8.5,-24.5 + pos: 13.5,-21.5 parent: 2 - - uid: 10782 + - uid: 594 components: - type: Transform - pos: 6.5,-24.5 + pos: 4.5,-31.5 parent: 2 - - uid: 10815 + - uid: 595 components: - type: Transform - pos: 81.5,12.5 + pos: 4.5,-32.5 parent: 2 - - uid: 10816 + - uid: 1014 components: - type: Transform - pos: 81.5,11.5 + pos: 47.5,21.5 parent: 2 - - uid: 10817 + - uid: 1298 components: - type: Transform - pos: 81.5,10.5 + rot: -1.5707963267948966 rad + pos: 28.5,-49.5 parent: 2 - - uid: 10818 + - uid: 1374 components: - type: Transform - pos: 81.5,9.5 + pos: -1.5,-35.5 parent: 2 - - uid: 10819 + - uid: 1375 components: - type: Transform - pos: 81.5,8.5 + pos: -2.5,-35.5 parent: 2 - - uid: 10820 + - uid: 1376 components: - type: Transform - pos: 81.5,7.5 + pos: -3.5,-35.5 parent: 2 - - uid: 10821 + - uid: 1377 components: - type: Transform - pos: 81.5,6.5 + pos: -4.5,-35.5 parent: 2 - - uid: 10959 + - uid: 1378 components: - type: Transform - pos: 15.5,-50.5 + pos: -4.5,-34.5 parent: 2 - - uid: 10960 + - uid: 1379 components: - type: Transform - pos: 16.5,-50.5 + pos: -4.5,-33.5 parent: 2 - - uid: 10962 + - uid: 1380 components: - type: Transform - pos: 16.5,-53.5 + pos: -4.5,-32.5 parent: 2 - - uid: 10966 + - uid: 1381 components: - type: Transform - pos: 15.5,-53.5 + pos: -4.5,-31.5 parent: 2 - - uid: 10967 + - uid: 1382 components: - type: Transform - pos: 17.5,-46.5 + pos: -4.5,-36.5 parent: 2 - - uid: 10968 + - uid: 1383 components: - type: Transform - pos: 21.5,-46.5 + pos: -4.5,-37.5 parent: 2 - - uid: 10969 + - uid: 1384 components: - type: Transform - pos: 25.5,-46.5 + pos: -4.5,-38.5 parent: 2 - - uid: 10970 + - uid: 1385 components: - type: Transform - pos: 27.5,-50.5 + pos: -4.5,-39.5 parent: 2 - - uid: 10971 + - uid: 1398 components: - type: Transform - pos: 26.5,-50.5 + pos: -5.5,-35.5 parent: 2 - - uid: 10972 + - uid: 1399 components: - type: Transform - pos: 27.5,-53.5 + pos: -6.5,-35.5 parent: 2 - - uid: 10973 + - uid: 1400 components: - type: Transform - pos: 26.5,-53.5 + pos: -7.5,-35.5 parent: 2 - - uid: 10974 + - uid: 1401 components: - type: Transform - pos: 24.5,-56.5 + pos: -8.5,-35.5 parent: 2 - - uid: 10975 + - uid: 1402 components: - type: Transform - pos: 21.5,-56.5 + pos: -8.5,-36.5 parent: 2 - - uid: 10976 + - uid: 1403 components: - type: Transform - pos: 17.5,-56.5 + pos: -8.5,-37.5 parent: 2 - - uid: 10977 + - uid: 1404 components: - type: Transform - pos: 16.5,-56.5 + pos: -8.5,-38.5 parent: 2 - - uid: 10978 + - uid: 1405 components: - type: Transform - pos: 16.5,-55.5 + pos: -8.5,-39.5 parent: 2 - - uid: 10979 + - uid: 1406 components: - type: Transform - pos: 16.5,-54.5 + pos: -8.5,-40.5 parent: 2 - - uid: 10980 + - uid: 1407 components: - type: Transform - pos: 16.5,-52.5 + pos: -8.5,-34.5 parent: 2 - - uid: 10981 + - uid: 1408 components: - type: Transform - pos: 16.5,-51.5 + pos: -8.5,-33.5 parent: 2 - - uid: 10982 + - uid: 1409 components: - type: Transform - pos: 16.5,-49.5 + pos: -8.5,-32.5 parent: 2 - - uid: 10983 + - uid: 1410 components: - type: Transform - pos: 16.5,-48.5 + pos: -8.5,-31.5 parent: 2 - - uid: 10984 + - uid: 1411 components: - type: Transform - pos: 16.5,-47.5 + pos: -8.5,-30.5 parent: 2 - - uid: 10985 + - uid: 1428 components: - type: Transform - pos: 16.5,-46.5 + pos: -9.5,-35.5 parent: 2 - - uid: 10986 + - uid: 1429 components: - type: Transform - pos: 18.5,-46.5 + pos: -10.5,-35.5 parent: 2 - - uid: 10987 + - uid: 1430 components: - type: Transform - pos: 19.5,-46.5 + pos: -11.5,-35.5 parent: 2 - - uid: 10988 + - uid: 1431 components: - type: Transform - pos: 20.5,-46.5 + pos: -12.5,-35.5 parent: 2 - - uid: 10989 + - uid: 1432 components: - type: Transform - pos: 22.5,-46.5 + pos: -12.5,-34.5 parent: 2 - - uid: 10990 + - uid: 1433 components: - type: Transform - pos: 23.5,-46.5 + pos: -12.5,-33.5 parent: 2 - - uid: 10991 + - uid: 1434 components: - type: Transform - pos: 24.5,-46.5 + pos: -12.5,-32.5 parent: 2 - - uid: 10992 + - uid: 1435 components: - type: Transform - pos: 26.5,-46.5 + pos: -12.5,-31.5 parent: 2 - - uid: 10993 + - uid: 1436 components: - type: Transform - pos: 26.5,-47.5 + pos: -12.5,-36.5 parent: 2 - - uid: 10994 + - uid: 1437 components: - type: Transform - pos: 26.5,-48.5 + pos: -12.5,-37.5 parent: 2 - - uid: 10995 + - uid: 1438 components: - type: Transform - pos: 26.5,-49.5 + pos: -12.5,-38.5 parent: 2 - - uid: 10996 + - uid: 1439 components: - type: Transform - pos: 26.5,-51.5 + pos: -12.5,-39.5 parent: 2 - - uid: 10997 + - uid: 1440 components: - type: Transform - pos: 26.5,-52.5 + pos: -13.5,-35.5 parent: 2 - - uid: 10998 + - uid: 1441 components: - type: Transform - pos: 26.5,-54.5 + pos: -14.5,-35.5 parent: 2 - - uid: 10999 + - uid: 1442 components: - type: Transform - pos: 26.5,-55.5 + pos: -15.5,-35.5 parent: 2 - - uid: 11000 + - uid: 1468 components: - type: Transform - pos: 26.5,-56.5 + pos: 21.5,-40.5 parent: 2 - - uid: 11001 + - uid: 1474 components: - type: Transform - pos: 25.5,-56.5 + pos: 13.5,-38.5 parent: 2 - - uid: 11002 + - uid: 1475 components: - type: Transform - pos: 23.5,-56.5 + pos: 12.5,-38.5 parent: 2 - - uid: 11003 + - uid: 1477 components: - type: Transform - pos: 22.5,-56.5 + pos: 10.5,-38.5 parent: 2 - - uid: 11004 + - uid: 1478 components: - type: Transform - pos: 20.5,-56.5 + pos: 9.5,-38.5 parent: 2 - - uid: 11005 + - uid: 1479 components: - type: Transform - pos: 19.5,-56.5 + pos: 8.5,-38.5 parent: 2 - - uid: 11006 + - uid: 1486 components: - type: Transform - pos: 18.5,-56.5 + pos: 21.5,-21.5 parent: 2 - - uid: 11733 + - uid: 1492 components: - type: Transform - pos: 46.5,36.5 + pos: 19.5,-21.5 parent: 2 - - uid: 11734 + - uid: 1493 components: - type: Transform - pos: 46.5,35.5 + pos: 20.5,-21.5 parent: 2 - - uid: 11735 + - uid: 1519 components: - type: Transform - pos: 46.5,34.5 + pos: 18.5,-21.5 parent: 2 - - uid: 11736 + - uid: 1585 components: - type: Transform - pos: 46.5,33.5 + pos: 22.5,-21.5 parent: 2 - - uid: 11737 + - uid: 1780 components: - type: Transform - pos: 46.5,32.5 + pos: 23.5,-21.5 parent: 2 - - uid: 11755 + - uid: 2264 components: - type: Transform - pos: 46.5,-28.5 + rot: -1.5707963267948966 rad + pos: 32.5,-47.5 parent: 2 - - uid: 12308 + - uid: 2275 components: - type: Transform - pos: 18.5,-7.5 + rot: -1.5707963267948966 rad + pos: 16.5,-49.5 parent: 2 - - uid: 12309 + - uid: 2280 components: - type: Transform - pos: 19.5,-7.5 + rot: -1.5707963267948966 rad + pos: 26.5,-49.5 parent: 2 - - uid: 12310 + - uid: 2567 components: - type: Transform - pos: 20.5,-7.5 + rot: -1.5707963267948966 rad + pos: 36.5,34.5 parent: 2 - - uid: 12311 + - uid: 3172 components: - type: Transform - pos: 21.5,-7.5 + pos: 34.5,34.5 parent: 2 - - uid: 12312 + - uid: 3174 components: - type: Transform - pos: 22.5,-6.5 + pos: 34.5,35.5 parent: 2 - - uid: 12313 + - uid: 3188 components: - type: Transform - pos: 22.5,-5.5 + pos: 45.5,33.5 parent: 2 - - uid: 12321 + - uid: 3189 components: - type: Transform - pos: 22.5,-4.5 + pos: 45.5,34.5 parent: 2 - - uid: 12322 + - uid: 3190 components: - type: Transform - pos: 22.5,-3.5 + pos: 45.5,35.5 parent: 2 - - uid: 12323 + - uid: 3191 components: - type: Transform - pos: 22.5,-2.5 + pos: 45.5,36.5 parent: 2 - - uid: 12325 + - uid: 3254 components: - type: Transform - pos: 17.5,-10.5 + pos: 47.5,25.5 parent: 2 - - uid: 12326 + - uid: 3255 components: - type: Transform - pos: 17.5,-9.5 + pos: 47.5,23.5 parent: 2 - - uid: 12328 + - uid: 3446 components: - type: Transform - pos: 17.5,-8.5 + rot: -1.5707963267948966 rad + pos: 71.5,18.5 parent: 2 - - uid: 12329 + - uid: 3807 components: - type: Transform - pos: 16.5,-11.5 + pos: 79.5,-9.5 parent: 2 - - uid: 12330 + - uid: 3904 components: - type: Transform - pos: 15.5,-11.5 + pos: 75.5,45.5 parent: 2 - - uid: 12331 + - uid: 3905 components: - type: Transform - pos: 14.5,-11.5 + pos: 76.5,45.5 parent: 2 - - uid: 12332 + - uid: 3906 components: - type: Transform - pos: 10.5,-14.5 + pos: 77.5,45.5 parent: 2 - - uid: 12336 + - uid: 3907 components: - type: Transform - pos: 10.5,-15.5 + pos: 78.5,45.5 parent: 2 - - uid: 12337 + - uid: 3908 components: - type: Transform - pos: 10.5,-16.5 + pos: 78.5,46.5 parent: 2 - - uid: 12338 + - uid: 3909 components: - type: Transform - pos: 10.5,-17.5 + pos: 78.5,47.5 parent: 2 - - uid: 12339 + - uid: 3910 components: - type: Transform - pos: 10.5,-18.5 + pos: 78.5,48.5 parent: 2 - - uid: 12340 + - uid: 3911 components: - type: Transform - pos: 10.5,-19.5 + pos: 78.5,49.5 parent: 2 - - uid: 12341 + - uid: 3912 components: - type: Transform - pos: 1.5,-10.5 + pos: 78.5,44.5 parent: 2 - - uid: 12342 + - uid: 3913 components: - type: Transform - pos: 1.5,-11.5 + pos: 78.5,43.5 parent: 2 - - uid: 12343 + - uid: 3914 components: - type: Transform - pos: 1.5,-12.5 + pos: 78.5,42.5 parent: 2 - - uid: 12344 + - uid: 3915 components: - type: Transform - pos: 1.5,-13.5 + pos: 78.5,41.5 parent: 2 - - uid: 12345 + - uid: 3916 components: - type: Transform - pos: 1.5,-8.5 + pos: 79.5,45.5 parent: 2 - - uid: 12346 + - uid: 3917 components: - type: Transform - pos: 1.5,-7.5 + pos: 80.5,45.5 parent: 2 - - uid: 12347 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 2 - - uid: 12348 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 2 - - uid: 12349 + - uid: 3918 components: - type: Transform - pos: 1.5,-4.5 + pos: 81.5,45.5 parent: 2 - - uid: 12350 + - uid: 3919 components: - type: Transform - pos: 1.5,-3.5 + pos: 82.5,45.5 parent: 2 - - uid: 12388 + - uid: 3920 components: - type: Transform - pos: 35.5,-16.5 + pos: 82.5,46.5 parent: 2 - - uid: 12389 + - uid: 3921 components: - type: Transform - pos: 36.5,-16.5 + pos: 82.5,47.5 parent: 2 - - uid: 12390 + - uid: 3922 components: - type: Transform - pos: 37.5,-16.5 + pos: 82.5,48.5 parent: 2 - - uid: 12393 + - uid: 3923 components: - type: Transform - pos: 38.5,-16.5 + pos: 82.5,40.5 parent: 2 - - uid: 12397 + - uid: 3924 components: - type: Transform - pos: 48.5,-18.5 + pos: 82.5,49.5 parent: 2 - - uid: 12398 + - uid: 3925 components: - type: Transform - pos: 47.5,-18.5 + pos: 82.5,50.5 parent: 2 - - uid: 12399 + - uid: 3926 components: - type: Transform - pos: 46.5,-18.5 + pos: 82.5,41.5 parent: 2 - - uid: 12400 + - uid: 3927 components: - type: Transform - pos: 45.5,-18.5 + pos: 82.5,42.5 parent: 2 - - uid: 12401 + - uid: 3928 components: - type: Transform - pos: 44.5,-18.5 + pos: 82.5,43.5 parent: 2 - - uid: 12403 + - uid: 3929 components: - type: Transform - pos: 43.5,-18.5 + pos: 82.5,44.5 parent: 2 - - uid: 12404 + - uid: 3930 components: - type: Transform - pos: 42.5,-18.5 + pos: 83.5,45.5 parent: 2 - - uid: 12405 + - uid: 3931 components: - type: Transform - pos: 41.5,-18.5 + pos: 84.5,45.5 parent: 2 - - uid: 12844 + - uid: 3932 components: - type: Transform - pos: 22.5,5.5 + pos: 85.5,45.5 parent: 2 - - uid: 12845 + - uid: 3933 components: - type: Transform - pos: 22.5,6.5 + pos: 86.5,45.5 parent: 2 - - uid: 12846 + - uid: 3934 components: - type: Transform - pos: 22.5,7.5 + pos: 86.5,44.5 parent: 2 - - uid: 13005 + - uid: 3935 components: - type: Transform - pos: 31.5,-50.5 + pos: 86.5,43.5 parent: 2 - - uid: 13006 + - uid: 3936 components: - type: Transform - pos: 32.5,-50.5 + pos: 86.5,42.5 parent: 2 - - uid: 13007 + - uid: 3937 components: - type: Transform - pos: 33.5,-50.5 + pos: 86.5,41.5 parent: 2 - - uid: 13008 + - uid: 3938 components: - type: Transform - pos: 34.5,-50.5 + pos: 86.5,46.5 parent: 2 - - uid: 13009 + - uid: 3939 components: - type: Transform - pos: 35.5,-50.5 + pos: 86.5,47.5 parent: 2 - - uid: 13010 + - uid: 3940 components: - type: Transform - pos: 36.5,-50.5 + pos: 86.5,48.5 parent: 2 - - uid: 13011 + - uid: 3941 components: - type: Transform - pos: 37.5,-50.5 + pos: 86.5,49.5 parent: 2 - - uid: 13012 + - uid: 3942 components: - type: Transform - pos: 38.5,-50.5 + pos: 87.5,45.5 parent: 2 - - uid: 13013 + - uid: 3943 components: - type: Transform - pos: 39.5,-50.5 + pos: 88.5,45.5 parent: 2 - - uid: 13014 + - uid: 3944 components: - type: Transform - pos: 40.5,-50.5 + pos: 89.5,45.5 parent: 2 - - uid: 13015 + - uid: 4272 components: - type: Transform - pos: 41.5,-50.5 + rot: -1.5707963267948966 rad + pos: 32.5,-48.5 parent: 2 - - uid: 13016 + - uid: 4323 components: - type: Transform - pos: 42.5,-50.5 + rot: -1.5707963267948966 rad + pos: 15.5,30.5 parent: 2 - - uid: 13017 + - uid: 4324 components: - type: Transform - pos: 43.5,-50.5 + rot: -1.5707963267948966 rad + pos: 15.5,31.5 parent: 2 - - uid: 13018 + - uid: 4332 components: - type: Transform - pos: 44.5,-50.5 + rot: -1.5707963267948966 rad + pos: 15.5,29.5 parent: 2 - - uid: 13019 + - uid: 4440 components: - type: Transform - pos: 45.5,-50.5 + pos: 4.5,-30.5 parent: 2 - - uid: 13020 + - uid: 4441 components: - type: Transform - pos: 46.5,-50.5 + pos: 5.5,-30.5 parent: 2 - - uid: 13021 + - uid: 4453 components: - type: Transform - pos: 47.5,-50.5 + pos: 10.5,-23.5 parent: 2 - - uid: 13022 + - uid: 4454 components: - type: Transform - pos: 48.5,-50.5 + pos: 11.5,-23.5 parent: 2 - - uid: 13023 + - uid: 4504 components: - type: Transform - pos: 49.5,-50.5 + rot: -1.5707963267948966 rad + pos: 15.5,32.5 parent: 2 - - uid: 13024 + - uid: 4519 components: - type: Transform - pos: 50.5,-50.5 + rot: 1.5707963267948966 rad + pos: 3.5,37.5 parent: 2 - - uid: 13025 + - uid: 4643 components: - type: Transform - pos: 51.5,-50.5 + rot: -1.5707963267948966 rad + pos: 11.5,35.5 parent: 2 - - uid: 13026 + - uid: 4776 components: - type: Transform - pos: 51.5,-49.5 + pos: 30.5,-43.5 parent: 2 - - uid: 13027 + - uid: 4777 components: - type: Transform - pos: 51.5,-48.5 + pos: 30.5,-42.5 parent: 2 - - uid: 13028 + - uid: 4778 components: - type: Transform - pos: 51.5,-47.5 + pos: 30.5,-41.5 parent: 2 - - uid: 13029 + - uid: 4779 components: - type: Transform - pos: 51.5,-46.5 + pos: 30.5,-40.5 parent: 2 - - uid: 13030 + - uid: 4780 components: - type: Transform - pos: 51.5,-45.5 + pos: 30.5,-39.5 parent: 2 - - uid: 13031 + - uid: 4782 components: - type: Transform - pos: 51.5,-44.5 + pos: 21.5,-39.5 parent: 2 - - uid: 13032 + - uid: 4799 components: - type: Transform - pos: 51.5,-43.5 + pos: 21.5,-41.5 parent: 2 - - uid: 13033 + - uid: 4986 components: - type: Transform - pos: 51.5,-42.5 + pos: 51.5,6.5 parent: 2 - - uid: 13034 + - uid: 5082 components: - type: Transform - pos: 50.5,-42.5 + pos: 53.5,6.5 parent: 2 - - uid: 13035 + - uid: 5105 components: - type: Transform - pos: 49.5,-42.5 + rot: 3.141592653589793 rad + pos: 41.5,-21.5 parent: 2 - - uid: 13036 + - uid: 5123 components: - type: Transform - pos: 48.5,-42.5 + pos: 46.5,-27.5 parent: 2 - - uid: 13037 + - uid: 5145 components: - type: Transform - pos: 48.5,-41.5 + pos: 46.5,6.5 parent: 2 - - uid: 13038 + - uid: 5196 components: - type: Transform - pos: 48.5,-40.5 + pos: 46.5,-34.5 parent: 2 - - uid: 13039 + - uid: 5499 components: - type: Transform - pos: 48.5,-39.5 + rot: -1.5707963267948966 rad + pos: 69.5,18.5 parent: 2 - - uid: 13040 + - uid: 5606 components: - type: Transform - pos: 48.5,-38.5 + rot: -1.5707963267948966 rad + pos: 28.5,-53.5 parent: 2 - - uid: 13041 + - uid: 5607 components: - type: Transform - pos: 48.5,-37.5 + rot: -1.5707963267948966 rad + pos: 15.5,-49.5 parent: 2 - - uid: 13042 + - uid: 5613 components: - type: Transform - pos: 48.5,-36.5 + pos: 35.5,-40.5 parent: 2 - - uid: 13436 + - uid: 5614 components: - type: Transform - pos: 46.5,-25.5 + pos: 35.5,-39.5 parent: 2 - - uid: 13437 + - uid: 5615 components: - type: Transform - pos: 46.5,-26.5 + pos: 34.5,-39.5 parent: 2 - - uid: 13439 + - uid: 5616 components: - type: Transform - pos: 46.5,-32.5 + pos: 36.5,-39.5 parent: 2 - - uid: 13441 + - uid: 5623 components: - type: Transform - pos: 46.5,-23.5 + pos: 11.5,-26.5 parent: 2 - - uid: 13447 + - uid: 5624 components: - type: Transform - pos: 46.5,-33.5 + pos: 10.5,-26.5 parent: 2 - - uid: 13450 + - uid: 5663 components: - type: Transform - pos: 46.5,-31.5 + pos: 46.5,-29.5 parent: 2 - - uid: 13493 + - uid: 5681 components: - type: Transform - pos: 14.5,-38.5 + rot: -1.5707963267948966 rad + pos: 14.5,-49.5 parent: 2 - - uid: 13682 + - uid: 5730 components: - type: Transform - pos: -14.5,16.5 + pos: 46.5,-24.5 parent: 2 - - uid: 13683 + - uid: 5746 components: - type: Transform - pos: -13.5,16.5 + rot: 3.141592653589793 rad + pos: 55.5,-19.5 parent: 2 - - uid: 13684 + - uid: 5747 components: - type: Transform - pos: -12.5,16.5 + rot: 3.141592653589793 rad + pos: 53.5,-19.5 parent: 2 - - uid: 13685 + - uid: 5860 components: - type: Transform - pos: -11.5,16.5 + pos: 16.5,-21.5 parent: 2 - - uid: 13686 + - uid: 5870 components: - type: Transform - pos: -10.5,16.5 + pos: 15.5,-21.5 parent: 2 - - uid: 13687 + - uid: 5871 components: - type: Transform - pos: -9.5,16.5 + pos: 17.5,-21.5 parent: 2 - - uid: 13688 + - uid: 5914 components: - type: Transform - pos: -8.5,16.5 + pos: 32.5,-19.5 parent: 2 - - uid: 13689 + - uid: 5915 components: - type: Transform - pos: -7.5,16.5 + pos: 33.5,-19.5 parent: 2 - - uid: 13690 + - uid: 5916 components: - type: Transform - pos: -6.5,16.5 + pos: 34.5,-19.5 parent: 2 - - uid: 13691 + - uid: 5917 components: - type: Transform - pos: -5.5,16.5 + pos: 35.5,-19.5 parent: 2 - - uid: 13692 + - uid: 5918 components: - type: Transform - pos: -4.5,16.5 + pos: 37.5,-19.5 parent: 2 - - uid: 13693 + - uid: 5919 components: - type: Transform - pos: -3.5,16.5 + pos: 38.5,-19.5 parent: 2 - - uid: 13694 + - uid: 5920 components: - type: Transform - pos: -1.5,16.5 + pos: 39.5,-19.5 parent: 2 - - uid: 13695 + - uid: 6003 components: - type: Transform - pos: -0.5,16.5 + rot: 3.141592653589793 rad + pos: 51.5,-19.5 parent: 2 - - uid: 13696 + - uid: 6010 components: - type: Transform - pos: 0.5,16.5 + rot: 3.141592653589793 rad + pos: 52.5,-19.5 parent: 2 - - uid: 13697 + - uid: 6775 components: - type: Transform - pos: 1.5,16.5 + rot: -1.5707963267948966 rad + pos: 5.5,35.5 parent: 2 - - uid: 13698 + - uid: 6791 components: - type: Transform - pos: -2.5,16.5 + rot: 3.141592653589793 rad + pos: 39.5,-21.5 parent: 2 - - uid: 13699 + - uid: 6792 components: - type: Transform - pos: 3.5,16.5 + rot: 3.141592653589793 rad + pos: 38.5,-21.5 parent: 2 - - uid: 13700 + - uid: 6823 components: - type: Transform - pos: 2.5,16.5 + rot: 3.141592653589793 rad + pos: 40.5,-21.5 parent: 2 - - uid: 13749 + - uid: 6866 components: - type: Transform - pos: 5.5,-21.5 + pos: 47.5,24.5 parent: 2 - - uid: 13750 + - uid: 7007 components: - type: Transform - pos: 6.5,-21.5 + pos: 44.5,6.5 parent: 2 - - uid: 13751 + - uid: 7012 components: - type: Transform - pos: 7.5,-21.5 + pos: 47.5,6.5 parent: 2 -- proto: Cautery - entities: - - uid: 7791 + - uid: 7253 components: - type: Transform - pos: 67.45054,-3.640809 + pos: 14.5,-41.5 parent: 2 -- proto: Chair - entities: - - uid: 38 + - uid: 7304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-5.5 + rot: -1.5707963267948966 rad + pos: 34.5,36.5 parent: 2 - - uid: 56 + - uid: 7463 components: - type: Transform - pos: -2.5,-8.5 + rot: -1.5707963267948966 rad + pos: 14.5,-53.5 parent: 2 - - uid: 84 + - uid: 7564 components: - type: Transform - pos: -8.5,-12.5 + pos: 5.5,26.5 parent: 2 - - uid: 85 + - uid: 7618 components: - type: Transform - pos: -9.5,-12.5 + rot: -1.5707963267948966 rad + pos: 27.5,-49.5 parent: 2 - - uid: 88 + - uid: 7661 components: - type: Transform - pos: -15.5,-12.5 + pos: 13.5,-42.5 parent: 2 - - uid: 790 + - uid: 7757 components: - type: Transform - pos: 19.5,-25.5 + rot: -1.5707963267948966 rad + pos: 68.5,18.5 parent: 2 - - uid: 791 + - uid: 7783 components: - type: Transform - pos: 18.5,-25.5 + rot: -1.5707963267948966 rad + pos: 3.5,26.5 parent: 2 - - uid: 792 + - uid: 7818 components: - type: Transform - pos: 17.5,-25.5 + rot: 1.5707963267948966 rad + pos: -20.5,-16.5 parent: 2 - - uid: 793 + - uid: 7820 components: - type: Transform - pos: 16.5,-25.5 + rot: -1.5707963267948966 rad + pos: 23.5,27.5 parent: 2 - - uid: 794 + - uid: 7826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-27.5 + rot: -1.5707963267948966 rad + pos: 70.5,18.5 parent: 2 - - uid: 795 + - uid: 7852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-27.5 + rot: -1.5707963267948966 rad + pos: 3.5,24.5 parent: 2 - - uid: 796 + - uid: 7856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-27.5 + rot: -1.5707963267948966 rad + pos: 4.5,24.5 parent: 2 - - uid: 797 + - uid: 7860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-27.5 + pos: 46.5,-30.5 parent: 2 - - uid: 939 + - uid: 8029 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-34.5 + pos: 4.5,26.5 parent: 2 - - uid: 1147 + - uid: 8063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-4.5 + pos: 5.5,24.5 parent: 2 - - uid: 1554 + - uid: 8074 components: - type: Transform - pos: 54.5,15.5 + pos: 13.5,-41.5 parent: 2 - - uid: 1634 + - uid: 8283 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-4.5 + pos: 11.5,16.5 parent: 2 - - uid: 1655 + - uid: 8284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-5.5 + pos: 11.5,17.5 parent: 2 - - uid: 1833 + - uid: 8286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,6.5 + pos: 13.5,-44.5 parent: 2 - - uid: 1843 + - uid: 8302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 + pos: 52.5,6.5 parent: 2 - - uid: 1851 + - uid: 8311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,8.5 + pos: 50.5,6.5 parent: 2 - - uid: 1946 + - uid: 8312 components: - type: Transform - pos: -16.5,-12.5 + pos: 49.5,6.5 parent: 2 - - uid: 2409 + - uid: 8313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,22.5 + pos: 45.5,6.5 parent: 2 - - uid: 2493 + - uid: 8391 components: - type: Transform - pos: 30.5,30.5 + pos: 45.5,27.5 parent: 2 - - uid: 2494 + - uid: 8750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,28.5 + pos: 95.5,-19.5 parent: 2 - - uid: 5089 + - uid: 8751 components: - type: Transform - pos: 64.5,-1.5 + pos: 96.5,-19.5 parent: 2 - - uid: 5090 + - uid: 8752 components: - type: Transform - pos: 65.5,-1.5 + pos: 97.5,-19.5 parent: 2 - - uid: 5091 + - uid: 8753 components: - type: Transform - pos: 66.5,-1.5 + pos: 98.5,-19.5 parent: 2 - - uid: 5151 + - uid: 8754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 + pos: 98.5,-20.5 parent: 2 - - uid: 5173 + - uid: 8755 components: - type: Transform - pos: 55.5,15.5 + pos: 97.5,-20.5 parent: 2 - - uid: 5256 + - uid: 8756 components: - type: Transform - pos: 55.5,-9.5 + pos: 96.5,-20.5 parent: 2 - - uid: 5388 + - uid: 8757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,11.5 + pos: 95.5,-20.5 parent: 2 - - uid: 5406 + - uid: 8850 components: - type: Transform - pos: 67.5,-1.5 + rot: -1.5707963267948966 rad + pos: 103.5,-10.5 parent: 2 - - uid: 5524 + - uid: 8851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,0.5 + rot: -1.5707963267948966 rad + pos: 102.5,-10.5 parent: 2 - - uid: 5525 + - uid: 8852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,1.5 + rot: -1.5707963267948966 rad + pos: 101.5,-10.5 parent: 2 - - uid: 5848 + - uid: 8853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,18.5 + rot: -1.5707963267948966 rad + pos: 100.5,-10.5 parent: 2 - - uid: 5849 + - uid: 8854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 + rot: -1.5707963267948966 rad + pos: 22.5,27.5 parent: 2 - - uid: 7546 + - uid: 8855 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,2.5 + pos: 21.5,27.5 parent: 2 - - uid: 7713 + - uid: 8856 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-13.5 + pos: 20.5,27.5 parent: 2 - - uid: 7729 + - uid: 8916 components: - type: Transform - pos: -3.5,-8.5 + rot: -1.5707963267948966 rad + pos: 19.5,27.5 parent: 2 - - uid: 7976 + - uid: 8917 components: - type: Transform - pos: -3.5,-3.5 + rot: -1.5707963267948966 rad + pos: 18.5,27.5 parent: 2 - - uid: 7986 + - uid: 8918 components: - type: Transform - pos: -0.5,0.5 + rot: -1.5707963267948966 rad + pos: 17.5,27.5 parent: 2 - - uid: 7987 + - uid: 8919 components: - type: Transform - pos: 0.5,0.5 + rot: -1.5707963267948966 rad + pos: 16.5,27.5 parent: 2 - - uid: 7988 + - uid: 9233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,2.5 + rot: 3.141592653589793 rad + pos: 40.5,-19.5 parent: 2 - - uid: 7989 + - uid: 10711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 + pos: 63.5,48.5 parent: 2 - - uid: 7990 + - uid: 10712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,4.5 + pos: 62.5,48.5 parent: 2 - - uid: 7991 + - uid: 10713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 + pos: 61.5,48.5 parent: 2 - - uid: 7992 + - uid: 10714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,11.5 + pos: 60.5,48.5 parent: 2 - - uid: 7993 + - uid: 10715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,12.5 + pos: 59.5,48.5 parent: 2 - - uid: 7994 + - uid: 10716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 + pos: 58.5,48.5 parent: 2 - - uid: 7995 + - uid: 10717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,4.5 + pos: 57.5,48.5 parent: 2 - - uid: 7996 + - uid: 10718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 + pos: 56.5,48.5 parent: 2 - - uid: 9361 + - uid: 10719 components: - type: Transform - pos: 25.5,7.5 + pos: 54.5,48.5 parent: 2 - - uid: 10637 + - uid: 10720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,7.5 + pos: 53.5,48.5 parent: 2 - - uid: 10829 + - uid: 10721 components: - type: Transform - pos: 71.5,11.5 + pos: 52.5,48.5 parent: 2 - - uid: 10830 + - uid: 10722 components: - type: Transform - pos: 69.5,11.5 + pos: 51.5,48.5 parent: 2 - - uid: 10896 + - uid: 10723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,14.5 + pos: 50.5,48.5 parent: 2 - - uid: 10897 + - uid: 10724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,13.5 + pos: 49.5,48.5 parent: 2 - - uid: 12177 + - uid: 10725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,9.5 + pos: 55.5,48.5 parent: 2 - - uid: 12178 + - uid: 10726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 + pos: 43.5,41.5 parent: 2 - - uid: 12179 + - uid: 10727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,8.5 + pos: 42.5,41.5 parent: 2 - - uid: 12180 + - uid: 10728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,8.5 + pos: 41.5,41.5 parent: 2 - - uid: 12181 + - uid: 10729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,5.5 + pos: 40.5,41.5 parent: 2 - - uid: 12182 + - uid: 10730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,5.5 + pos: 67.5,10.5 parent: 2 - - uid: 12183 + - uid: 10731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 + pos: 68.5,10.5 parent: 2 - - uid: 12184 + - uid: 10732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,6.5 + pos: 70.5,10.5 parent: 2 -- proto: ChairMeat - entities: - - uid: 13071 + - uid: 10733 components: - type: Transform - pos: 6.5,-12.5 + pos: 69.5,10.5 parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 190 + - uid: 10734 components: - type: Transform - pos: -2.5,-11.5 + pos: 71.5,10.5 parent: 2 - - uid: 311 + - uid: 10736 components: - type: Transform - pos: 11.5,5.5 + pos: 73.5,10.5 parent: 2 - - uid: 313 + - uid: 10737 components: - type: Transform - pos: 10.5,5.5 + pos: 84.5,3.5 parent: 2 - - uid: 314 + - uid: 10738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,3.5 + pos: 83.5,4.5 parent: 2 - - uid: 579 + - uid: 10739 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-3.5 + pos: 84.5,2.5 parent: 2 - - uid: 683 + - uid: 10740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 + pos: 84.5,1.5 parent: 2 - - uid: 684 + - uid: 10741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 + pos: 84.5,0.5 parent: 2 - - uid: 1010 + - uid: 10742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.517172,-24.347618 + pos: 84.5,-1.5 parent: 2 - - uid: 1852 + - uid: 10743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,22.5 + pos: 84.5,-2.5 parent: 2 - - uid: 2480 + - uid: 10744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,19.5 + pos: 85.5,-2.5 parent: 2 - - uid: 2489 + - uid: 10757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,27.5 + pos: 84.5,-16.5 parent: 2 - - uid: 2724 + - uid: 10758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,33.5 + pos: 83.5,-16.5 parent: 2 - - uid: 2725 + - uid: 10759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,32.5 + pos: 82.5,-16.5 parent: 2 - - uid: 2726 + - uid: 10760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,30.5 + pos: 78.5,-16.5 parent: 2 - - uid: 2727 + - uid: 10761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,29.5 + pos: 75.5,-16.5 parent: 2 - - uid: 4999 + - uid: 10762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,45.5 + pos: 74.5,-16.5 parent: 2 - - uid: 5000 + - uid: 10764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,47.5 + pos: 69.5,-16.5 parent: 2 - - uid: 5001 + - uid: 10766 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,47.5 + pos: 69.5,-17.5 parent: 2 - - uid: 5002 + - uid: 10767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,45.5 + pos: 69.5,-18.5 parent: 2 - - uid: 5159 + - uid: 10769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-11.5 + pos: 67.5,46.5 parent: 2 - - uid: 5321 + - uid: 10770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 + pos: 49.5,47.5 parent: 2 - - uid: 5389 + - uid: 10771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,10.5 + pos: 63.5,47.5 parent: 2 - - uid: 5742 + - uid: 10772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 + pos: 29.5,32.5 parent: 2 - - uid: 7468 + - uid: 10773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 + pos: 30.5,32.5 parent: 2 - - uid: 7710 + - uid: 10774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,24.5 + pos: 26.5,10.5 parent: 2 - - uid: 7792 + - uid: 10775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,14.5 + pos: 38.5,11.5 parent: 2 - - uid: 8253 + - uid: 10776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 + pos: 18.5,3.5 parent: 2 - - uid: 8608 + - uid: 10778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.500034,25.750826 + pos: 15.5,7.5 parent: 2 - - uid: 8658 + - uid: 10779 components: - type: Transform - pos: 50.5,2.5 + pos: 5.5,-28.5 parent: 2 - - uid: 10912 + - uid: 10780 components: - type: Transform - pos: 74.5,-1.5 + pos: 5.5,-25.5 parent: 2 - - uid: 12150 + - uid: 10781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,30.5 + pos: 8.5,-24.5 parent: 2 - - uid: 13446 + - uid: 10782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.454672,-24.238243 + pos: 6.5,-24.5 parent: 2 -- proto: ChairOfficeLight - entities: - - uid: 940 + - uid: 10815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-34.5 + pos: 81.5,12.5 parent: 2 - - uid: 5068 + - uid: 10816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-4.5 + pos: 81.5,11.5 parent: 2 - - uid: 5069 + - uid: 10817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-4.5 + pos: 81.5,10.5 parent: 2 - - uid: 5227 + - uid: 10818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-6.5 + pos: 81.5,9.5 parent: 2 - - uid: 7075 + - uid: 10819 components: - type: Transform - pos: 44.5,3.5 + pos: 81.5,8.5 parent: 2 - - uid: 7859 + - uid: 10820 components: - type: Transform - pos: 71.5,-19.495005 + pos: 81.5,7.5 parent: 2 - - uid: 8664 + - uid: 10821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,24.5 + pos: 81.5,6.5 parent: 2 - - uid: 10670 + - uid: 10960 components: - type: Transform - pos: 62.5,9.5 + pos: 16.5,-50.5 parent: 2 - - uid: 10901 + - uid: 10962 components: - type: Transform - pos: 79.5,-6.5 + pos: 16.5,-53.5 parent: 2 - - uid: 11293 + - uid: 10966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-11.5 + pos: 15.5,-53.5 parent: 2 -- proto: ChairPilotSeat - entities: - - uid: 4971 + - uid: 10968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,47.5 + rot: -1.5707963267948966 rad + pos: 14.5,-57.5 parent: 2 -- proto: ChairWood - entities: - - uid: 1152 + - uid: 10971 components: - type: Transform - pos: 29.5,-2.5 + pos: 26.5,-50.5 parent: 2 - - uid: 1153 + - uid: 10972 components: - type: Transform - pos: 30.5,-2.5 + pos: 27.5,-53.5 parent: 2 - - uid: 1155 + - uid: 10973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 + pos: 26.5,-53.5 parent: 2 - - uid: 1166 + - uid: 10980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 + pos: 16.5,-52.5 parent: 2 - - uid: 1167 + - uid: 10981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-11.5 + pos: 16.5,-51.5 parent: 2 - - uid: 1168 + - uid: 10996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-10.5 + pos: 26.5,-51.5 parent: 2 - - uid: 1662 + - uid: 10997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-4.5 + pos: 26.5,-52.5 parent: 2 - - uid: 1664 + - uid: 11755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-4.5 + pos: 46.5,-28.5 parent: 2 - - uid: 2689 + - uid: 11883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,33.5 + pos: 74.5,20.5 parent: 2 - - uid: 2690 + - uid: 12308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,33.5 + pos: 18.5,-7.5 parent: 2 - - uid: 2691 + - uid: 12309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,32.5 + pos: 19.5,-7.5 parent: 2 - - uid: 2692 + - uid: 12310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,32.5 + pos: 20.5,-7.5 parent: 2 - - uid: 2693 + - uid: 12311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,30.5 + pos: 21.5,-7.5 parent: 2 - - uid: 2694 + - uid: 12312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,29.5 + pos: 22.5,-6.5 parent: 2 - - uid: 2695 + - uid: 12313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,29.5 + pos: 22.5,-5.5 parent: 2 - - uid: 2696 + - uid: 12321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,30.5 + pos: 22.5,-4.5 parent: 2 - - uid: 2728 + - uid: 12322 components: - type: Transform - pos: 19.5,33.56914 + pos: 22.5,-3.5 parent: 2 - - uid: 5502 + - uid: 12323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,33.5 + pos: 22.5,-2.5 parent: 2 - - uid: 5503 + - uid: 12325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.49502,33.5 + pos: 17.5,-10.5 parent: 2 - - uid: 5504 + - uid: 12326 components: - type: Transform - pos: 70.5,34.495007 + pos: 17.5,-9.5 parent: 2 - - uid: 5511 + - uid: 12328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,29.5 + pos: 17.5,-8.5 parent: 2 - - uid: 5512 + - uid: 12329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,27.5 + pos: 16.5,-11.5 parent: 2 - - uid: 5513 + - uid: 12330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.49502,28.5 + pos: 15.5,-11.5 parent: 2 - - uid: 6477 + - uid: 12331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 + pos: 14.5,-11.5 parent: 2 - - uid: 6478 + - uid: 12332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 + pos: 10.5,-14.5 parent: 2 - - uid: 6497 + - uid: 12336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-11.5 + pos: 10.5,-15.5 parent: 2 - - uid: 6504 + - uid: 12337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 + pos: 10.5,-16.5 parent: 2 - - uid: 8644 + - uid: 12338 components: - type: Transform - pos: 84.5,12.495002 + pos: 10.5,-17.5 parent: 2 - - uid: 8645 + - uid: 12339 components: - type: Transform - pos: 85.5,12.495002 + pos: 10.5,-18.5 parent: 2 - - uid: 12710 + - uid: 12340 components: - type: Transform - pos: 114.5,-16.5 + pos: 10.5,-19.5 parent: 2 - - uid: 13474 + - uid: 12341 components: - type: Transform - pos: 9.853746,-41.642406 + pos: 1.5,-10.5 parent: 2 -- proto: CheapLighter - entities: - - uid: 6631 + - uid: 12342 components: - type: Transform - pos: 37.66267,-3.4032297 + pos: 1.5,-11.5 parent: 2 - - uid: 7717 + - uid: 12343 components: - type: Transform - pos: 43.77102,20.318724 + pos: 1.5,-12.5 parent: 2 -- proto: CheapRollerBed - entities: - - uid: 8145 + - uid: 12344 components: - type: Transform - pos: 58.484226,3.6459913 + pos: 1.5,-13.5 parent: 2 - - uid: 8232 + - uid: 12345 components: - type: Transform - pos: 57.484226,3.6453457 + pos: 1.5,-8.5 parent: 2 - - uid: 8234 + - uid: 12346 components: - type: Transform - pos: 55.484226,3.6458454 + pos: 1.5,-7.5 parent: 2 - - uid: 8299 + - uid: 12347 components: - type: Transform - pos: 54.49985,3.645617 + pos: 1.5,-6.5 parent: 2 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 11921 + - uid: 12348 components: - type: Transform - pos: 70.44693,7.937353 + pos: 1.5,-5.5 parent: 2 -- proto: ChemDispenser - entities: - - uid: 5050 + - uid: 12349 components: - type: Transform - pos: 49.5,-5.5 + pos: 1.5,-4.5 parent: 2 - - type: ContainerContainer - containers: - ReagentDispenser-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 5051 + - uid: 12350 components: - type: Transform - pos: 53.5,-3.5 + pos: 1.5,-3.5 parent: 2 - - type: ContainerContainer - containers: - ReagentDispenser-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ChemistryHotplate - entities: - - uid: 11028 + - uid: 12388 components: - type: Transform - pos: 51.5,-7.5 + pos: 35.5,-16.5 parent: 2 -- proto: ChemMaster - entities: - - uid: 5052 + - uid: 12389 components: - type: Transform - pos: 49.5,-4.5 + pos: 36.5,-16.5 parent: 2 - - type: ContainerContainer - containers: - ChemMaster-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - ChemMaster-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - outputSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 5053 + - uid: 12390 components: - type: Transform - pos: 52.5,-3.5 + pos: 37.5,-16.5 parent: 2 - - type: ContainerContainer - containers: - ChemMaster-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - ChemMaster-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - outputSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ChurchOrganInstrument - entities: - - uid: 8921 + - uid: 12393 components: - type: Transform - pos: 35.5,5.5 + pos: 38.5,-16.5 parent: 2 -- proto: CigarGold - entities: - - uid: 7936 + - uid: 12397 components: - type: Transform - pos: 43.474144,20.053099 + pos: 48.5,-18.5 parent: 2 - - uid: 12104 + - uid: 12398 components: - type: Transform - pos: 17.412243,41.086063 + pos: 47.5,-18.5 parent: 2 - - uid: 12105 + - uid: 12399 components: - type: Transform - pos: 17.630993,41.086063 + pos: 46.5,-18.5 parent: 2 -- proto: CigPackGreen - entities: - - uid: 5523 + - uid: 12400 components: - type: Transform - pos: 87.481125,1.4149053 + pos: 45.5,-18.5 parent: 2 - - uid: 9307 + - uid: 12401 components: - type: Transform - pos: 69.531136,11.469878 + pos: 44.5,-18.5 parent: 2 -- proto: CircuitImprinter - entities: - - uid: 12155 + - uid: 12403 components: - type: Transform - pos: 53.5,17.5 + pos: 43.5,-18.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Gold -- proto: CleanerDispenser - entities: - - uid: 6875 + - uid: 12404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-4.5 + pos: 42.5,-18.5 parent: 2 -- proto: ClosetBombFilled - entities: - - uid: 12854 + - uid: 12741 components: - type: Transform - pos: 55.5,25.5 + pos: 47.5,26.5 parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 98 + - uid: 12844 components: - type: Transform - pos: -17.5,-12.5 + pos: 22.5,5.5 parent: 2 - - uid: 106 + - uid: 12845 components: - type: Transform - pos: -10.5,-12.5 + pos: 22.5,6.5 parent: 2 - - uid: 1480 + - uid: 12846 components: - type: Transform - pos: 24.5,-4.5 + pos: 22.5,7.5 parent: 2 - - uid: 1481 + - uid: 13005 components: - type: Transform - pos: 24.5,-5.5 + pos: 31.5,-50.5 parent: 2 - - uid: 5261 + - uid: 13006 components: - type: Transform - pos: 49.5,13.5 + pos: 32.5,-50.5 parent: 2 - - uid: 5438 + - uid: 13007 components: - type: Transform - pos: 9.5,-20.5 + pos: 33.5,-50.5 parent: 2 - - uid: 5472 + - uid: 13008 components: - type: Transform - pos: 70.5,42.5 + pos: 34.5,-50.5 parent: 2 - - uid: 5612 + - uid: 13009 components: - type: Transform - pos: 36.5,-38.5 + pos: 35.5,-50.5 parent: 2 - - uid: 5736 + - uid: 13010 components: - type: Transform - pos: 69.5,-11.5 + pos: 36.5,-50.5 parent: 2 - - uid: 5901 + - uid: 13011 components: - type: Transform - pos: 5.5,-30.5 + pos: 37.5,-50.5 parent: 2 - - uid: 7985 + - uid: 13012 components: - type: Transform - pos: -6.5,0.5 + pos: 38.5,-50.5 parent: 2 - - uid: 7997 + - uid: 13013 components: - type: Transform - pos: 3.5,5.5 + pos: 39.5,-50.5 parent: 2 - - uid: 10837 + - uid: 13014 components: - type: Transform - pos: 66.5,6.5 + pos: 40.5,-50.5 parent: 2 - - uid: 10839 + - uid: 13015 components: - type: Transform - pos: 43.5,46.5 + pos: 41.5,-50.5 parent: 2 - - uid: 13001 + - uid: 13016 components: - type: Transform - pos: 31.5,-46.5 + pos: 42.5,-50.5 parent: 2 -- proto: ClosetFireFilled - entities: - - uid: 94 + - uid: 13017 components: - type: Transform - pos: -14.5,-12.5 + pos: 43.5,-50.5 parent: 2 - - uid: 5260 + - uid: 13018 components: - type: Transform - pos: 50.5,13.5 + pos: 44.5,-50.5 parent: 2 - - uid: 5902 + - uid: 13019 components: - type: Transform - pos: 5.5,-29.5 + pos: 45.5,-50.5 parent: 2 - - uid: 7998 + - uid: 13020 components: - type: Transform - pos: 3.5,9.5 + pos: 46.5,-50.5 parent: 2 - - uid: 10841 + - uid: 13021 components: - type: Transform - pos: 39.5,42.5 + pos: 47.5,-50.5 parent: 2 -- proto: ClosetJanitorFilled - entities: - - uid: 166 + - uid: 13022 components: - type: Transform - pos: 3.5,-3.5 + pos: 48.5,-50.5 parent: 2 -- proto: ClosetL3JanitorFilled - entities: - - uid: 167 + - uid: 13023 components: - type: Transform - pos: 3.5,-4.5 + pos: 49.5,-50.5 parent: 2 -- proto: ClosetL3VirologyFilled - entities: - - uid: 5213 + - uid: 13024 components: - type: Transform - pos: 78.5,-1.5 + pos: 50.5,-50.5 parent: 2 - - uid: 5214 + - uid: 13025 components: - type: Transform - pos: 76.5,-3.5 + pos: 51.5,-50.5 parent: 2 - - uid: 5215 + - uid: 13026 components: - type: Transform - pos: 76.5,-4.5 + pos: 51.5,-49.5 parent: 2 -- proto: ClosetLegal - entities: - - uid: 2712 + - uid: 13027 components: - type: Transform - pos: 18.5,33.5 + pos: 51.5,-48.5 parent: 2 -- proto: ClosetLegalFilled - entities: - - uid: 6047 + - uid: 13028 components: - type: Transform - pos: 17.5,33.5 + pos: 51.5,-47.5 parent: 2 -- proto: ClosetMaintenance - entities: - - uid: 10835 + - uid: 13029 components: - type: Transform - pos: 65.5,10.5 + pos: 51.5,-46.5 parent: 2 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 5437 + - uid: 13030 components: - type: Transform - pos: 9.5,-19.5 + pos: 51.5,-45.5 parent: 2 - - uid: 8342 + - uid: 13031 components: - type: Transform - pos: 23.5,6.5 + pos: 51.5,-44.5 parent: 2 - - uid: 9309 + - uid: 13032 components: - type: Transform - pos: 72.5,23.5 + pos: 51.5,-43.5 parent: 2 - - uid: 10836 + - uid: 13033 components: - type: Transform - pos: 65.5,9.5 + pos: 51.5,-42.5 parent: 2 - - uid: 13125 + - uid: 13034 components: - type: Transform - pos: 53.5,-20.5 + pos: 50.5,-42.5 parent: 2 - - uid: 13126 + - uid: 13035 components: - type: Transform - pos: 52.5,-20.5 + pos: 49.5,-42.5 parent: 2 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 3687 + - uid: 13036 components: - type: Transform - pos: 51.5,13.5 + pos: 48.5,-42.5 parent: 2 - - uid: 4310 + - uid: 13037 components: - type: Transform - pos: 19.5,-34.5 + pos: 48.5,-41.5 parent: 2 - - uid: 10906 + - uid: 13038 components: - type: Transform - pos: 20.5,-34.5 + pos: 48.5,-40.5 parent: 2 - - uid: 10907 + - uid: 13039 components: - type: Transform - pos: 22.5,-34.5 + pos: 48.5,-39.5 parent: 2 - - uid: 12853 + - uid: 13040 components: - type: Transform - pos: 54.5,25.5 + pos: 48.5,-38.5 parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 5460 + - uid: 13041 components: - type: Transform - pos: 69.5,40.5 + pos: 48.5,-37.5 parent: 2 - - uid: 5461 + - uid: 13042 components: - type: Transform - pos: 69.5,37.5 + pos: 48.5,-36.5 parent: 2 -- proto: ClosetToolFilled - entities: - - uid: 5649 + - uid: 13248 components: - type: Transform - pos: 49.5,46.5 + rot: 3.141592653589793 rad + pos: 4.5,-15.5 parent: 2 -- proto: ClothingBackpackClown - entities: - - uid: 9611 + - uid: 13284 components: - type: Transform - pos: 27.493172,5.5327587 + pos: 47.5,22.5 parent: 2 -- proto: ClothingBeltChampion - entities: - - uid: 12103 + - uid: 13324 components: - type: Transform - pos: 17.443493,40.617313 + rot: 3.141592653589793 rad + pos: 1.5,-16.5 parent: 2 -- proto: ClothingBeltHolster - entities: - - uid: 12241 + - uid: 13325 components: - type: Transform - pos: 89.35728,1.548007 + rot: 3.141592653589793 rad + pos: 1.5,-17.5 parent: 2 -- proto: ClothingBeltStorageWaistbag - entities: - - uid: 7821 + - uid: 13326 components: - type: Transform - pos: 20.561836,5.5983276 + rot: 3.141592653589793 rad + pos: -26.5,-1.5 parent: 2 -- proto: ClothingBeltUtility - entities: - - uid: 5735 + - uid: 13327 components: - type: Transform - pos: 72.5,-9.5 + rot: 3.141592653589793 rad + pos: -26.5,0.5 parent: 2 -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 602 + - uid: 13328 components: - type: Transform - pos: 25.514921,-29.44944 + rot: 3.141592653589793 rad + pos: -26.5,-22.5 parent: 2 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 872 + - uid: 13329 components: - type: Transform - pos: 33.498886,-14.418215 + rot: 3.141592653589793 rad + pos: -26.5,-20.5 parent: 2 -- proto: ClothingEyesEyepatch - entities: - - uid: 6421 + - uid: 13436 components: - type: Transform - pos: 56.63094,-14.915291 + pos: 46.5,-25.5 parent: 2 - - uid: 12219 + - uid: 13437 components: - type: Transform - pos: 15.513365,7.482489 + pos: 46.5,-26.5 parent: 2 -- proto: ClothingEyesGlasses - entities: - - uid: 5436 + - uid: 13439 components: - type: Transform - pos: 45.51781,-19.598537 + pos: 46.5,-32.5 parent: 2 - - uid: 6793 + - uid: 13441 components: - type: Transform - pos: 60.359756,25.627806 + pos: 46.5,-23.5 parent: 2 - - uid: 11827 + - uid: 13447 components: - type: Transform - pos: 60.359756,25.45593 + pos: 46.5,-33.5 parent: 2 - - uid: 12167 + - uid: 13450 components: - type: Transform - pos: 74.534454,-0.21419013 + pos: 46.5,-31.5 parent: 2 -- proto: ClothingEyesGlassesGarGiga - entities: - - uid: 8643 + - uid: 13599 components: - type: Transform - pos: 74.48007,-6.509521 + pos: 45.5,28.5 parent: 2 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 132 + - uid: 13600 components: - type: Transform - pos: 12.5,-35.5 + pos: 45.5,29.5 parent: 2 - - uid: 5718 + - uid: 13601 components: - type: Transform - pos: 73.5,-12.5 + pos: 45.5,31.5 parent: 2 - - uid: 10825 + - uid: 13602 components: - type: Transform - pos: 81.516914,11.673225 + pos: 45.5,32.5 parent: 2 - - uid: 10848 + - uid: 13603 components: - type: Transform - pos: 45.471096,27.566444 + pos: 45.5,30.5 parent: 2 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 5522 + - uid: 13728 components: - type: Transform - pos: 86.49675,1.6024053 + pos: 86.5,4.5 parent: 2 -- proto: ClothingEyesGlassesThermal - entities: - - uid: 12673 + - uid: 13749 components: - type: Transform - pos: 32.51945,-30.628448 + pos: 5.5,-21.5 parent: 2 -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 11439 + - uid: 13750 components: - type: Transform - pos: 17.140316,-23.554987 + pos: 6.5,-21.5 parent: 2 -- proto: ClothingEyesHudMedical - entities: - - uid: 11422 + - uid: 13751 components: - type: Transform - pos: 55.632915,-10.387672 + pos: 7.5,-21.5 parent: 2 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 1563 + - uid: 13886 components: - type: Transform - pos: 30.487595,-14.515437 + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 parent: 2 - - uid: 5630 + - uid: 13887 components: - type: Transform - pos: 17.199833,-23.332096 + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 parent: 2 -- proto: ClothingHandsGlovesFingerless - entities: - - uid: 2891 + - uid: 13888 components: - type: Transform - pos: 10.782635,21.422426 + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 parent: 2 -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 7561 + - uid: 13889 components: - type: Transform - pos: 76.51093,-13.595224 + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 parent: 2 -- proto: ClothingHeadFishCap - entities: - - uid: 2885 + - uid: 13890 components: - type: Transform - pos: 50.47578,-20.56524 + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 parent: 2 -- proto: ClothingHeadHatAnimalCat - entities: - - uid: 12652 + - uid: 13891 components: - type: Transform - pos: 69.48217,34.466385 + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 parent: 2 -- proto: ClothingHeadHatAnimalCatBrown - entities: - - uid: 8933 + - uid: 13892 components: - type: Transform - pos: 62.47656,19.694616 + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 parent: 2 -- proto: ClothingHeadHatBunny - entities: - - uid: 9109 + - uid: 13893 components: - type: Transform - pos: 58.54981,-24.623142 + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 parent: 2 -- proto: ClothingHeadHatChickenhead - entities: - - uid: 8830 + - uid: 13895 components: - type: Transform - pos: 72.52045,21.835241 + rot: 1.5707963267948966 rad + pos: -8.5,-22.5 parent: 2 -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 7557 + - uid: 13896 components: - type: Transform - rot: 0.00039844278944656253 rad - pos: 74.50803,-5.26333 + rot: 1.5707963267948966 rad + pos: -9.5,-22.5 parent: 2 -- proto: ClothingHeadHatFez - entities: - - uid: 8843 + - uid: 13897 components: - type: Transform - pos: 90.45974,-18.462885 + rot: 1.5707963267948966 rad + pos: -10.5,-22.5 parent: 2 -- proto: ClothingHeadHatFlowerWreath - entities: - - uid: 8829 + - uid: 13898 components: - type: Transform - pos: 84.5185,-12.681175 + rot: 1.5707963267948966 rad + pos: -11.5,-22.5 parent: 2 -- proto: ClothingHeadHatGreysoft - entities: - - uid: 10851 + - uid: 13899 components: - type: Transform - pos: 45.45547,27.660194 + rot: 1.5707963267948966 rad + pos: -12.5,-22.5 parent: 2 -- proto: ClothingHeadHatHardhatOrange - entities: - - uid: 10798 + - uid: 13900 components: - type: Transform - pos: 80.534454,-16.347055 + rot: 1.5707963267948966 rad + pos: -13.5,-22.5 parent: 2 -- proto: ClothingHeadHatHardhatRed - entities: - - uid: 5719 + - uid: 13901 components: - type: Transform - pos: 73.5,-12.5 + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 parent: 2 - - uid: 10827 + - uid: 13902 components: - type: Transform - pos: 81.50129,9.6576 + rot: 1.5707963267948966 rad + pos: -16.5,-22.5 parent: 2 -- proto: ClothingHeadHatHetmanHat - entities: - - uid: 9018 + - uid: 13903 components: - type: Transform - pos: 84.40167,-5.2654653 + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 parent: 2 -- proto: ClothingHeadHatPaper - entities: - - uid: 8251 + - uid: 13904 components: - type: Transform - pos: 36.290367,33.722393 + rot: 1.5707963267948966 rad + pos: -18.5,-22.5 parent: 2 -- proto: ClothingHeadHatPirate - entities: - - uid: 7554 + - uid: 13905 components: - type: Transform - rot: 0.00038670882349833846 rad - pos: 89.44564,-12.263381 + rot: 1.5707963267948966 rad + pos: -19.5,-22.5 parent: 2 -- proto: ClothingHeadHatRedwizard - entities: - - uid: 6798 + - uid: 13906 components: - type: Transform - pos: 86.44191,12.5807 + rot: 1.5707963267948966 rad + pos: -20.5,-22.5 parent: 2 -- proto: ClothingHeadHatSkub - entities: - - uid: 13076 + - uid: 14088 components: - type: Transform - pos: 7.4825606,-11.600726 + pos: 76.5,23.5 parent: 2 -- proto: ClothingHeadHatSquid - entities: - - uid: 12671 + - uid: 14189 components: - type: Transform - pos: 65.725685,11.307603 + pos: 77.5,23.5 parent: 2 -- proto: ClothingHeadHatTophat - entities: - - uid: 2920 + - uid: 14190 components: - type: Transform - pos: 65.46723,-14.576903 + pos: 78.5,23.5 parent: 2 -- proto: ClothingHeadHatTrucker - entities: - - uid: 3448 + - uid: 14191 components: - type: Transform - pos: 17.59203,5.387045 + pos: 79.5,23.5 parent: 2 -- proto: ClothingHeadHatUshanka - entities: - - uid: 12674 + - uid: 14192 components: - type: Transform - pos: 74.46565,-6.1472054 + pos: 79.5,24.5 parent: 2 - - uid: 12676 + - uid: 14193 components: - type: Transform - pos: 74.46565,-6.1472054 + pos: 79.5,25.5 parent: 2 -- proto: ClothingHeadHatWelding - entities: - - uid: 5377 + - uid: 14194 components: - type: Transform - pos: 52.381424,11.673619 + pos: 79.5,26.5 parent: 2 -- proto: ClothingHeadHatWitch1 - entities: - - uid: 6827 + - uid: 14195 components: - type: Transform - pos: 83.46587,-12.720913 + pos: 79.5,27.5 parent: 2 -- proto: ClothingHeadHatWizard - entities: - - uid: 11158 + - uid: 14216 components: - type: Transform - pos: 86.44739,10.61898 + pos: 81.5,27.5 parent: 2 -- proto: ClothingHeadHelmetRiot - entities: - - uid: 8425 + - uid: 14217 components: - type: Transform - pos: 38.53056,28.406826 + pos: 77.5,30.5 parent: 2 - - uid: 8426 + - uid: 14222 components: - type: Transform - pos: 38.53056,28.406826 + pos: 80.5,24.5 parent: 2 - - uid: 8427 + - uid: 14230 components: - type: Transform - pos: 38.53056,28.406826 + pos: 81.5,24.5 parent: 2 -- proto: ClothingHeadNurseHat - entities: - - uid: 12672 + - uid: 14253 components: - type: Transform - pos: 59.51385,-3.3579187 + pos: 76.5,30.5 parent: 2 -- proto: ClothingHeadsetMining - entities: - - uid: 12669 + - uid: 14254 components: - type: Transform - pos: 9.6021385,15.473721 + pos: 75.5,30.5 parent: 2 - - uid: 12670 + - uid: 14255 components: - type: Transform - pos: 9.6021385,15.473721 + pos: 74.5,30.5 parent: 2 -- proto: ClothingMaskBear - entities: - - uid: 8828 + - uid: 14256 components: - type: Transform - pos: 102.40892,-16.268303 + pos: 73.5,30.5 parent: 2 -- proto: ClothingMaskBreathMedical - entities: - - uid: 12657 + - uid: 14257 components: - type: Transform - pos: 67.39722,4.505884 + pos: 76.5,20.5 parent: 2 -- proto: ClothingMaskClown - entities: - - uid: 8292 + - uid: 14258 components: - type: Transform - pos: 27.23263,5.6674385 + pos: 76.5,21.5 parent: 2 -- proto: ClothingMaskGas - entities: - - uid: 589 + - uid: 14259 components: - type: Transform - pos: 33.50367,-14.512851 + pos: 76.5,22.5 parent: 2 - - uid: 841 + - uid: 14260 components: - type: Transform - pos: 27.626308,-29.560211 + pos: 81.5,25.5 parent: 2 - - uid: 5343 + - uid: 14329 components: - type: Transform - pos: 60.54693,25.63966 + pos: 73.5,34.5 parent: 2 - - uid: 10799 + - uid: 14335 components: - type: Transform - pos: 79.33667,-16.51893 + pos: 73.5,26.5 parent: 2 - - uid: 10800 + - uid: 14407 components: - type: Transform - pos: 79.664795,-16.36268 + rot: 3.141592653589793 rad + pos: 80.5,33.5 parent: 2 - - uid: 10824 + - uid: 14599 components: - type: Transform - pos: 81.53254,11.610725 + pos: 64.5,44.5 parent: 2 -- proto: ClothingMaskSexyMime - entities: - - uid: 8345 + - uid: 14646 components: - type: Transform - pos: 25.245346,6.3236885 + rot: 1.5707963267948966 rad + pos: 57.5,50.5 parent: 2 -- proto: ClothingMaskSterile - entities: - - uid: 11969 + - uid: 14647 components: - type: Transform - pos: 59.604156,3.672451 + rot: 1.5707963267948966 rad + pos: 55.5,50.5 parent: 2 -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 12455 + - uid: 14724 components: - type: Transform - pos: 91.43456,-0.49069238 + rot: -1.5707963267948966 rad + pos: 3.5,38.5 parent: 2 -- proto: ClothingNeckCloakMoth - entities: - - uid: 9368 + - uid: 14896 components: - type: Transform - pos: 17.479858,8.394902 + pos: 60.5,43.5 parent: 2 -- proto: ClothingNeckCloakTrans - entities: - - uid: 688 + - uid: 14897 components: - type: Transform - pos: 7.491953,-13.240216 + pos: 51.5,43.5 parent: 2 - - uid: 7009 + - uid: 14898 components: - type: Transform - pos: 19.545155,5.62142 + pos: 52.5,43.5 parent: 2 -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 12226 + - uid: 14899 components: - type: Transform - pos: 20.513533,26.418814 + pos: 60.5,42.5 parent: 2 -- proto: ClothingNeckScarfStripedZebra - entities: - - uid: 9606 + - uid: 14900 components: - type: Transform - pos: 25.521528,7.3736153 + pos: 61.5,42.5 parent: 2 -- proto: ClothingNeckStethoscope - entities: - - uid: 5193 + - uid: 14901 components: - type: Transform - pos: 63.38291,-10.442304 + pos: 62.5,42.5 parent: 2 - - uid: 11420 + - uid: 14902 components: - type: Transform - pos: 56.414165,-10.356422 + pos: 63.5,42.5 parent: 2 - - uid: 11967 + - uid: 14903 components: - type: Transform - pos: 64.40056,4.5256968 + pos: 64.5,42.5 parent: 2 -- proto: ClothingNeckTieRed - entities: - - uid: 8289 + - uid: 14904 components: - type: Transform - pos: 19.90453,5.512045 + pos: 61.5,36.5 parent: 2 - - uid: 12228 + - uid: 14916 components: - type: Transform - pos: 69.577194,21.53721 + rot: 1.5707963267948966 rad + pos: 18.5,18.5 parent: 2 -- proto: ClothingOuterApron - entities: - - uid: 8825 + - uid: 14917 components: - type: Transform - pos: 17.68529,8.556451 + rot: 1.5707963267948966 rad + pos: 16.5,18.5 parent: 2 -- proto: ClothingOuterArmorBasic - entities: - - uid: 8413 + - uid: 14918 components: - type: Transform - pos: 38.421185,28.625576 + rot: 1.5707963267948966 rad + pos: 15.5,18.5 parent: 2 - - uid: 8414 + - uid: 14919 components: - type: Transform - pos: 38.421185,28.625576 + rot: 1.5707963267948966 rad + pos: 17.5,18.5 parent: 2 - - uid: 8415 + - uid: 15011 components: - type: Transform - pos: 38.421185,28.625576 + rot: 3.141592653589793 rad + pos: 40.5,-12.5 parent: 2 -- proto: ClothingOuterArmorBasicSlim - entities: - - uid: 8416 + - uid: 15012 components: - type: Transform - pos: 38.62431,28.406826 + rot: 3.141592653589793 rad + pos: 41.5,-12.5 parent: 2 - - uid: 8417 + - uid: 15013 components: - type: Transform - pos: 38.62431,28.406826 + rot: 3.141592653589793 rad + pos: 42.5,-12.5 parent: 2 - - uid: 8418 + - uid: 15014 components: - type: Transform - pos: 38.62431,28.406826 + rot: 3.141592653589793 rad + pos: 44.5,-12.5 parent: 2 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 8419 + - uid: 15015 components: - type: Transform - pos: 38.37431,28.438076 + rot: 3.141592653589793 rad + pos: 45.5,-12.5 parent: 2 - - uid: 8420 + - uid: 15016 components: - type: Transform - pos: 38.37431,28.438076 + rot: 3.141592653589793 rad + pos: 46.5,-12.5 parent: 2 - - uid: 8421 + - uid: 15017 components: - type: Transform - pos: 38.37431,28.438076 + rot: 3.141592653589793 rad + pos: 43.5,-12.5 parent: 2 -- proto: ClothingOuterArmorRiot - entities: - - uid: 8422 + - uid: 15018 components: - type: Transform - pos: 38.71806,28.609951 + rot: 3.141592653589793 rad + pos: 48.5,-13.5 parent: 2 - - uid: 8423 + - uid: 15019 components: - type: Transform - pos: 38.71806,28.609951 + rot: 3.141592653589793 rad + pos: 49.5,-13.5 parent: 2 - - uid: 8424 + - uid: 15020 components: - type: Transform - pos: 38.71806,28.609951 + rot: 3.141592653589793 rad + pos: 50.5,-13.5 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingOuterCoatJensen - entities: - - uid: 7560 + - uid: 15027 components: - type: Transform - pos: 76.51827,-13.498972 + rot: 3.141592653589793 rad + pos: 54.5,-19.5 parent: 2 -- proto: ClothingOuterCoatLab - entities: - - uid: 5257 + - uid: 15028 components: - type: Transform - pos: 60.494953,-9.426679 + rot: 3.141592653589793 rad + pos: 57.5,-19.5 parent: 2 -- proto: ClothingOuterCoatPirate - entities: - - uid: 7553 + - uid: 15029 components: - type: Transform - pos: 89.47711,-12.560792 + rot: 3.141592653589793 rad + pos: 56.5,-19.5 parent: 2 -- proto: ClothingOuterCoatRobo - entities: - - uid: 1847 + - uid: 15043 components: - type: Transform - pos: 52.52299,8.566419 + rot: 3.141592653589793 rad + pos: 30.5,-21.5 parent: 2 -- proto: ClothingOuterCoatTrench - entities: - - uid: 7757 + - uid: 15044 components: - type: Transform - pos: 69.55329,21.631119 + rot: 3.141592653589793 rad + pos: 29.5,-21.5 parent: 2 -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 9478 + - uid: 15046 components: - type: Transform - pos: 38.48357,28.698536 + rot: -1.5707963267948966 rad + pos: 13.5,-46.5 parent: 2 - - uid: 9883 + - uid: 15047 components: - type: Transform - pos: 38.48357,28.698536 + rot: -1.5707963267948966 rad + pos: 13.5,-47.5 parent: 2 - - uid: 9884 + - uid: 15048 components: - type: Transform - pos: 38.48357,28.698536 + rot: -1.5707963267948966 rad + pos: 13.5,-48.5 parent: 2 -- proto: ClothingOuterHospitalGown - entities: - - uid: 12499 + - uid: 15049 components: - type: Transform - pos: 60.452034,-9.3230715 + rot: -1.5707963267948966 rad + pos: 13.5,-49.5 parent: 2 -- proto: ClothingOuterPonchoClassic - entities: - - uid: 8930 + - uid: 15050 components: - type: Transform - pos: 70.48266,27.712364 + rot: -1.5707963267948966 rad + pos: 13.5,-51.5 parent: 2 -- proto: ClothingOuterSkub - entities: - - uid: 13075 + - uid: 15051 components: - type: Transform - pos: 7.4669356,-11.631976 + rot: -1.5707963267948966 rad + pos: 13.5,-52.5 parent: 2 -- proto: ClothingOuterSuitChicken - entities: - - uid: 8932 + - uid: 15052 components: - type: Transform - pos: 72.52045,21.491491 + rot: -1.5707963267948966 rad + pos: 13.5,-53.5 parent: 2 -- proto: ClothingOuterSuitFire - entities: - - uid: 5721 + - uid: 15053 components: - type: Transform - pos: 73.5,-12.5 + rot: -1.5707963267948966 rad + pos: 13.5,-54.5 parent: 2 - - uid: 10849 + - uid: 15054 components: - type: Transform - pos: 45.51797,27.660194 + rot: -1.5707963267948966 rad + pos: 13.5,-55.5 parent: 2 -- proto: ClothingOuterVestHazard - entities: - - uid: 880 + - uid: 15055 components: - type: Transform - pos: 27.494364,-29.379656 + rot: -1.5707963267948966 rad + pos: 13.5,-57.5 parent: 2 - - uid: 2150 + - uid: 15056 components: - type: Transform - pos: 10.541297,21.522875 + rot: -1.5707963267948966 rad + pos: 13.5,-50.5 parent: 2 -- proto: ClothingOuterWizard - entities: - - uid: 11159 + - uid: 15057 components: - type: Transform - pos: 86.47864,10.71273 + rot: -1.5707963267948966 rad + pos: 13.5,-56.5 parent: 2 -- proto: ClothingOuterWizardRed - entities: - - uid: 6797 + - uid: 15058 components: - type: Transform - pos: 86.50441,12.690075 + rot: -1.5707963267948966 rad + pos: 15.5,-57.5 parent: 2 -- proto: ClothingShoesBootsJack - entities: - - uid: 3615 + - uid: 15059 components: - type: Transform - pos: 18.604328,5.443143 + rot: -1.5707963267948966 rad + pos: 16.5,-57.5 parent: 2 -- proto: ClothingShoesBootsMag - entities: - - uid: 10306 + - uid: 15060 components: - type: Transform - pos: 8.40589,-8.309399 + rot: -1.5707963267948966 rad + pos: 17.5,-57.5 parent: 2 - - uid: 10307 + - uid: 15061 components: - type: Transform - pos: 8.56214,-8.481274 + rot: -1.5707963267948966 rad + pos: 19.5,-57.5 parent: 2 -- proto: ClothingShoesFlippers - entities: - - uid: 6828 + - uid: 15062 components: - type: Transform - pos: 1.4884543,-32.355457 + rot: -1.5707963267948966 rad + pos: 20.5,-57.5 parent: 2 -- proto: ClothingShoesLeather - entities: - - uid: 7555 + - uid: 15063 components: - type: Transform - rot: 0.0006267222343012691 rad - pos: 89.43173,-12.737588 + rot: -1.5707963267948966 rad + pos: 21.5,-57.5 parent: 2 - - uid: 7558 + - uid: 15064 components: - type: Transform - pos: 74.43015,-5.8248997 + rot: -1.5707963267948966 rad + pos: 22.5,-57.5 parent: 2 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 5405 + - uid: 15065 components: - type: Transform - pos: 62.48992,19.519245 + rot: -1.5707963267948966 rad + pos: 23.5,-57.5 parent: 2 -- proto: ClothingShoesSlippers - entities: - - uid: 5470 + - uid: 15066 components: - type: Transform - pos: 70.5,40.5 + rot: -1.5707963267948966 rad + pos: 24.5,-57.5 parent: 2 - - uid: 5471 + - uid: 15067 components: - type: Transform - pos: 70.5,37.5 + rot: -1.5707963267948966 rad + pos: 25.5,-57.5 parent: 2 -- proto: ClothingShoesTourist - entities: - - uid: 9349 + - uid: 15068 components: - type: Transform - pos: -10.508648,-14.809846 + rot: -1.5707963267948966 rad + pos: 26.5,-57.5 parent: 2 -- proto: ClothingShoesWizard - entities: - - uid: 6796 + - uid: 15069 components: - type: Transform - pos: 86.50441,12.3932 + rot: -1.5707963267948966 rad + pos: 18.5,-57.5 parent: 2 - - uid: 11160 + - uid: 15070 components: - type: Transform - pos: 86.46301,10.540855 + rot: -1.5707963267948966 rad + pos: 27.5,-57.5 parent: 2 -- proto: ClothingUnderSocksBee - entities: - - uid: 12287 + - uid: 15071 components: - type: Transform - pos: 8.506772,13.431249 + rot: -1.5707963267948966 rad + pos: 29.5,-57.5 parent: 2 -- proto: ClothingUnderSocksCoder - entities: - - uid: 6795 + - uid: 15072 components: - type: Transform - pos: 83.49162,-13.680252 + rot: -1.5707963267948966 rad + pos: 28.5,-57.5 parent: 2 - - uid: 8931 + - uid: 15073 components: - type: Transform - pos: 13.502279,38.53218 + rot: -1.5707963267948966 rad + pos: 29.5,-56.5 parent: 2 -- proto: ClothingUniformColorRainbow - entities: - - uid: 6826 + - uid: 15074 components: - type: Transform - pos: 83.49712,-13.314663 + rot: -1.5707963267948966 rad + pos: 29.5,-54.5 parent: 2 - - uid: 12705 + - uid: 15075 components: - type: Transform - pos: 104.58011,-15.495739 + rot: -1.5707963267948966 rad + pos: 29.5,-53.5 parent: 2 - - uid: 12706 + - uid: 15076 components: - type: Transform - pos: 104.11136,-15.495739 + rot: -1.5707963267948966 rad + pos: 29.5,-52.5 parent: 2 - - uid: 12707 + - uid: 15077 components: - type: Transform - pos: 103.67386,-15.495739 + rot: -1.5707963267948966 rad + pos: 29.5,-51.5 parent: 2 -- proto: ClothingUniformJumpskirtTacticalMaid - entities: - - uid: 12653 + - uid: 15078 components: - type: Transform - pos: 76.476616,-13.28976 + rot: -1.5707963267948966 rad + pos: 29.5,-50.5 parent: 2 -- proto: ClothingUniformJumpsuitCossack - entities: - - uid: 8826 + - uid: 15079 components: - type: Transform - pos: 84.46417,-5.6717153 + rot: -1.5707963267948966 rad + pos: 29.5,-49.5 parent: 2 -- proto: ClothingUniformJumpsuitDetectiveGrey - entities: - - uid: 7556 + - uid: 15080 components: - type: Transform - pos: 74.49265,-5.4811497 + rot: -1.5707963267948966 rad + pos: 29.5,-55.5 parent: 2 -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 881 + - uid: 15081 components: - type: Transform - pos: 27.529085,-29.483822 + rot: -1.5707963267948966 rad + pos: 29.5,-48.5 parent: 2 -- proto: ClothingUniformJumpsuitFlannel + - uid: 15082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-47.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-46.5 + parent: 2 +- proto: Cautery entities: - - uid: 8290 + - uid: 7791 components: - type: Transform - pos: 19.93578,5.65267 + pos: 67.45054,-3.640809 parent: 2 -- proto: ClothingUniformJumpsuitMonasticRobeLight +- proto: Chair entities: - - uid: 12654 + - uid: 22 components: - type: Transform - pos: 30.690329,7.316777 + rot: 1.5707963267948966 rad + pos: -25.5,-13.5 parent: 2 - - uid: 12655 + - uid: 38 components: - type: Transform - pos: 30.690329,7.316777 + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 parent: 2 - - uid: 12656 + - uid: 56 components: - type: Transform - pos: 30.690329,7.316777 + pos: -2.5,-8.5 parent: 2 -- proto: ClothingUniformJumpsuitPsychologist - entities: - - uid: 8306 + - uid: 102 components: - type: Transform - pos: 20.21703,5.52767 + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 parent: 2 -- proto: ClothingUniformJumpsuitRecruitSyndie - entities: - - uid: 12496 + - uid: 334 components: - type: Transform - pos: 11.480359,-11.451806 + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 parent: 2 -- proto: ClothingUniformJumpsuitRepairmanSyndie - entities: - - uid: 12675 + - uid: 790 components: - type: Transform - pos: 11.491153,-11.444116 + pos: 19.5,-25.5 parent: 2 -- proto: ClothingUniformOveralls - entities: - - uid: 8241 + - uid: 791 components: - type: Transform - pos: 17.468086,5.4733276 + pos: 18.5,-25.5 parent: 2 -- proto: ClownRecorder - entities: - - uid: 5149 + - uid: 792 components: - type: Transform - pos: 27.810755,5.5424385 + pos: 17.5,-25.5 parent: 2 -- proto: ComfyChair - entities: - - uid: 303 + - uid: 793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,4.5 + pos: 16.5,-25.5 parent: 2 - - uid: 2408 + - uid: 794 components: - type: Transform - pos: 44.5,24.5 + rot: 3.141592653589793 rad + pos: 16.5,-27.5 parent: 2 - - uid: 2527 + - uid: 795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,7.5 + rot: 3.141592653589793 rad + pos: 17.5,-27.5 parent: 2 - - uid: 2531 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-27.5 + parent: 2 + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-27.5 + parent: 2 + - uid: 939 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,3.5 + pos: 13.5,-34.5 parent: 2 - - uid: 2720 + - uid: 1147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,31.5 + pos: 32.5,-4.5 parent: 2 - - uid: 2772 + - uid: 1554 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 1634 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,40.5 + pos: 34.5,-4.5 parent: 2 - - uid: 2773 + - uid: 1655 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,39.5 + pos: 34.5,-5.5 parent: 2 - - uid: 2774 + - uid: 1833 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,40.5 + pos: 3.5,6.5 parent: 2 - - uid: 2775 + - uid: 1843 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,39.5 + pos: 3.5,7.5 parent: 2 - - uid: 5033 + - uid: 1851 components: - type: Transform - pos: 35.5,3.5 + rot: 1.5707963267948966 rad + pos: 3.5,8.5 parent: 2 - - uid: 5423 + - uid: 2409 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,42.5 + pos: 44.5,22.5 parent: 2 - - uid: 5424 + - uid: 3234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,40.5 + pos: 40.5,36.5 parent: 2 - - uid: 5425 + - uid: 5089 components: - type: Transform - pos: 33.5,43.5 + pos: 64.5,-1.5 parent: 2 - - uid: 10273 + - uid: 5090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 + pos: 65.5,-1.5 parent: 2 - - uid: 10636 + - uid: 5091 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 2 + - uid: 5151 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,7.5 + pos: 29.5,2.5 parent: 2 - - uid: 11425 + - uid: 5173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,4.5 + pos: 55.5,15.5 parent: 2 - - uid: 11426 + - uid: 5256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,5.5 + pos: 55.5,-9.5 parent: 2 - - uid: 12677 + - uid: 5388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 105.5,-13.5 + rot: 3.141592653589793 rad + pos: 47.5,11.5 parent: 2 - - uid: 12678 + - uid: 5406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 107.5,-13.5 + pos: 67.5,-1.5 parent: 2 -- proto: CommandmentCircuitBoard - entities: - - uid: 13760 + - uid: 5524 components: - type: Transform - pos: 52.427402,30.685076 + rot: 1.5707963267948966 rad + pos: 89.5,0.5 parent: 2 -- proto: CommsComputerCircuitboard - entities: - - uid: 12660 + - uid: 5525 components: - type: Transform - pos: 41.5,-15.5 + rot: 1.5707963267948966 rad + pos: 89.5,1.5 parent: 2 -- proto: ComputerAlert - entities: - - uid: 1163 + - uid: 5848 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-33.5 + pos: 45.5,18.5 parent: 2 - - uid: 5079 + - uid: 5849 components: - type: Transform - pos: 28.5,48.5 + rot: 1.5707963267948966 rad + pos: 45.5,17.5 parent: 2 - - uid: 13443 + - uid: 7535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-25.5 + pos: -7.5,0.5 parent: 2 -- proto: ComputerAnalysisConsole - entities: - - uid: 152 + - uid: 7536 components: - type: Transform - pos: 64.5,25.5 + pos: -8.5,0.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8666: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: computerBodyScanner - entities: - - uid: 31 + - uid: 7538 components: - type: Transform - pos: 65.5,-3.5 + pos: -6.5,0.5 parent: 2 - - uid: 1911 + - uid: 7546 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-11.5 + pos: 31.5,2.5 parent: 2 - - uid: 11401 + - uid: 7729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-11.5 + pos: -3.5,-8.5 parent: 2 - - uid: 12110 + - uid: 7976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,8.5 + pos: -3.5,-3.5 parent: 2 -- proto: ComputerCargoBounty - entities: - - uid: 7809 + - uid: 7986 components: - type: Transform - pos: 15.5,25.5 + pos: -0.5,0.5 parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 2136 + - uid: 7987 components: - type: Transform - pos: 20.5,23.5 + pos: 0.5,0.5 parent: 2 - - uid: 7741 + - uid: 7988 components: - type: Transform - pos: 11.5,28.5 + rot: 1.5707963267948966 rad + pos: 3.5,2.5 parent: 2 -- proto: ComputerCargoShuttle - entities: - - uid: 6864 + - uid: 7989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,25.5 + rot: 1.5707963267948966 rad + pos: 3.5,3.5 parent: 2 -- proto: ComputerComms - entities: - - uid: 405 + - uid: 7990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,39.5 + rot: 1.5707963267948966 rad + pos: 3.5,4.5 parent: 2 - - uid: 5059 + - uid: 7991 components: - type: Transform - pos: 27.5,48.5 + rot: 1.5707963267948966 rad + pos: 3.5,10.5 parent: 2 -- proto: ComputerCrewMonitoring - entities: - - uid: 7925 + - uid: 7992 components: - type: Transform - pos: 31.5,48.5 + rot: 1.5707963267948966 rad + pos: 3.5,11.5 parent: 2 - - uid: 8430 + - uid: 7993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,26.5 + rot: 1.5707963267948966 rad + pos: 3.5,12.5 parent: 2 - - uid: 9617 + - uid: 7994 components: - type: Transform - pos: 49.5,4.5 + rot: -1.5707963267948966 rad + pos: 6.5,3.5 parent: 2 - - uid: 9619 + - uid: 7995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,2.5 + rot: -1.5707963267948966 rad + pos: 6.5,4.5 parent: 2 - - uid: 10282 + - uid: 7996 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-3.5 + pos: 6.5,5.5 parent: 2 - - uid: 11922 + - uid: 9361 components: - type: Transform - pos: 72.5,8.5 + pos: 25.5,7.5 parent: 2 - - uid: 12580 + - uid: 9642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-16.5 + pos: 78.5,5.5 parent: 2 -- proto: ComputerCriminalRecords - entities: - - uid: 7981 + - uid: 10637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-5.5 + rot: -1.5707963267948966 rad + pos: 31.5,7.5 parent: 2 - - uid: 12083 + - uid: 10829 components: - type: Transform - pos: 29.5,26.5 + pos: 71.5,11.5 parent: 2 - - uid: 12090 + - uid: 10830 components: - type: Transform - pos: 45.5,25.5 + pos: 69.5,11.5 parent: 2 - - uid: 12091 + - uid: 10896 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,27.5 + pos: 64.5,14.5 parent: 2 -- proto: ComputerId - entities: - - uid: 401 + - uid: 10897 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,39.5 + pos: 63.5,13.5 parent: 2 - - uid: 4988 + - uid: 12144 components: - type: Transform - pos: 26.5,48.5 + rot: 3.141592653589793 rad + pos: 40.5,34.5 parent: 2 - - uid: 10275 + - uid: 12177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 + rot: -1.5707963267948966 rad + pos: 38.5,9.5 parent: 2 -- proto: ComputerMedicalRecords - entities: - - uid: 7725 + - uid: 12178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-11.5 + rot: -1.5707963267948966 rad + pos: 37.5,9.5 parent: 2 - - uid: 9616 + - uid: 12179 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,2.5 + pos: 37.5,8.5 parent: 2 - - uid: 11035 + - uid: 12180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 + rot: -1.5707963267948966 rad + pos: 38.5,8.5 parent: 2 - - uid: 12170 + - uid: 12181 components: - type: Transform - pos: 34.5,46.5 + rot: -1.5707963267948966 rad + pos: 38.5,5.5 parent: 2 -- proto: ComputerPowerMonitoring - entities: - - uid: 4042 + - uid: 12182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 + rot: -1.5707963267948966 rad + pos: 37.5,5.5 parent: 2 - - uid: 5126 + - uid: 12183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,45.5 + rot: -1.5707963267948966 rad + pos: 37.5,6.5 parent: 2 - - uid: 6898 + - uid: 12184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-13.5 + rot: -1.5707963267948966 rad + pos: 38.5,6.5 parent: 2 - - uid: 13433 + - uid: 12427 components: - type: Transform - pos: 22.5,-23.5 + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 parent: 2 -- proto: ComputerRadar - entities: - - uid: 5078 + - uid: 12428 components: - type: Transform - pos: 20.5,46.5 + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 parent: 2 - - uid: 12821 + - uid: 13261 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,15.5 + pos: -7.5,-13.5 parent: 2 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 5304 + - uid: 13285 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,17.5 + pos: 54.5,47.5 parent: 2 - - uid: 5390 + - uid: 13286 components: - type: Transform - pos: 49.5,11.5 + rot: 3.141592653589793 rad + pos: 55.5,47.5 parent: 2 - - uid: 6474 + - uid: 13287 components: - type: Transform - pos: 50.5,25.5 + rot: 3.141592653589793 rad + pos: 57.5,47.5 parent: 2 - - uid: 10666 + - uid: 13288 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,8.5 + pos: 58.5,47.5 parent: 2 -- proto: ComputerRoboticsControl - entities: - - uid: 5652 + - uid: 14076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,8.5 + rot: -1.5707963267948966 rad + pos: -16.5,0.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 12820 + - uid: 14077 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,21.5 + pos: -18.5,0.5 parent: 2 -- proto: ComputerShuttleCargo - entities: - - uid: 7727 + - uid: 14587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,25.5 + rot: 3.141592653589793 rad + pos: 30.5,17.5 parent: 2 -- proto: ComputerSolarControl - entities: - - uid: 4305 + - uid: 14633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-36.5 + pos: 30.5,21.5 parent: 2 - - uid: 5639 + - uid: 14679 components: - type: Transform - pos: 70.5,46.5 + rot: 3.141592653589793 rad + pos: 78.5,3.5 parent: 2 - - uid: 11749 +- proto: ChairMeat + entities: + - uid: 13071 components: - type: Transform - pos: 21.5,-23.5 + pos: 6.5,-12.5 parent: 2 -- proto: ComputerStationRecords +- proto: ChairOfficeDark entities: - - uid: 2145 + - uid: 190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,17.5 + pos: -2.5,-11.5 parent: 2 - - uid: 8315 + - uid: 311 components: - type: Transform - pos: 23.5,48.5 + pos: 11.5,5.5 parent: 2 - - uid: 10274 + - uid: 313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-3.5 + pos: 10.5,5.5 parent: 2 - - uid: 12581 + - uid: 314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 + rot: 3.141592653589793 rad + pos: 10.5,3.5 parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 8346 + - uid: 579 components: - type: Transform - pos: 24.5,48.5 + rot: 3.141592653589793 rad + pos: 16.5,-3.5 parent: 2 - - uid: 8431 + - uid: 683 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,28.5 - parent: 2 - - uid: 12082 - components: - - type: Transform - pos: 30.5,26.5 + pos: 21.5,-16.5 parent: 2 - - uid: 12089 + - uid: 684 components: - type: Transform - pos: 44.5,25.5 + rot: -1.5707963267948966 rad + pos: 21.5,-18.5 parent: 2 -- proto: ComputerTelevision - entities: - - uid: 11475 + - uid: 1010 components: - type: Transform - pos: 41.5,20.5 + rot: 1.5707963267948966 rad + pos: 22.517172,-24.347618 parent: 2 -- proto: ContainmentFieldGenerator - entities: - - uid: 752 + - uid: 1852 components: - type: Transform - pos: 9.5,-26.5 + rot: 1.5707963267948966 rad + pos: 20.5,22.5 parent: 2 - - uid: 1113 + - uid: 2318 components: - type: Transform - pos: 9.5,-27.5 + pos: 37.5,18.5 parent: 2 - - uid: 1593 + - uid: 2480 components: - type: Transform - pos: 9.5,-28.5 + rot: 1.5707963267948966 rad + pos: 42.5,19.5 parent: 2 - - uid: 3979 + - uid: 2489 components: - type: Transform - pos: 25.5,-47.5 + rot: 1.5707963267948966 rad + pos: 35.5,27.5 parent: 2 - - uid: 3984 + - uid: 2724 components: - type: Transform - pos: 17.5,-55.5 + rot: -1.5707963267948966 rad + pos: 21.5,33.5 parent: 2 - - uid: 10929 + - uid: 2725 components: - type: Transform - pos: 17.5,-47.5 + rot: -1.5707963267948966 rad + pos: 21.5,32.5 parent: 2 - - uid: 10931 + - uid: 2726 components: - type: Transform - pos: 25.5,-55.5 + rot: -1.5707963267948966 rad + pos: 21.5,30.5 parent: 2 -- proto: ConveyorBelt - entities: - - uid: 1319 + - uid: 2727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,15.5 + rot: -1.5707963267948966 rad + pos: 21.5,29.5 parent: 2 - - uid: 2028 + - uid: 4999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,15.5 + rot: 3.141592653589793 rad + pos: 34.5,45.5 parent: 2 - - uid: 2030 + - uid: 5000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,15.5 + rot: 3.141592653589793 rad + pos: 31.5,47.5 parent: 2 - - uid: 2037 + - uid: 5001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,27.5 + rot: 3.141592653589793 rad + pos: 23.5,47.5 parent: 2 - - uid: 2038 + - uid: 5002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,27.5 + rot: 3.141592653589793 rad + pos: 20.5,45.5 parent: 2 - - uid: 2039 + - uid: 5159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,23.5 + rot: 3.141592653589793 rad + pos: 55.5,-11.5 parent: 2 - - uid: 2040 + - uid: 5321 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 2 - - uid: 2041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,27.5 - parent: 2 - - uid: 2042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,27.5 + pos: 49.5,18.5 parent: 2 - - uid: 2051 + - uid: 5389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,23.5 + rot: 3.141592653589793 rad + pos: 50.5,10.5 parent: 2 - - uid: 2064 + - uid: 5742 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,27.5 + pos: -3.5,-10.5 parent: 2 - - uid: 2066 + - uid: 7468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,23.5 + rot: 3.141592653589793 rad + pos: -2.5,-3.5 parent: 2 - - uid: 2067 + - uid: 7792 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,23.5 + pos: 70.5,14.5 parent: 2 - - uid: 5285 + - uid: 8207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,15.5 + rot: 3.141592653589793 rad + pos: 18.517927,23.649218 parent: 2 - - uid: 5842 + - uid: 8608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-28.5 + rot: 3.141592653589793 rad + pos: 30.500034,25.750826 parent: 2 - - uid: 5843 + - uid: 8658 components: - type: Transform - pos: 1.5,-28.5 + pos: 50.5,2.5 parent: 2 - - uid: 5844 + - uid: 9036 components: - type: Transform - pos: 1.5,-29.5 + rot: 3.141592653589793 rad + pos: 7.5,18.5 parent: 2 - - uid: 5845 + - uid: 10912 components: - type: Transform - pos: 1.5,-30.5 + pos: 74.5,-1.5 parent: 2 - - uid: 5846 + - uid: 12728 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-31.5 + pos: 7.5,25.5 parent: 2 - - uid: 5847 + - uid: 13446 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-31.5 + pos: 30.454672,-24.238243 parent: 2 - - uid: 5850 + - uid: 14154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-31.5 + rot: -1.5707963267948966 rad + pos: 72.5,23.5 parent: 2 - - uid: 5851 + - uid: 14559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-30.5 + pos: 90.5,29.5 parent: 2 - - uid: 5852 + - uid: 14560 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-28.5 + pos: 89.5,31.5 parent: 2 - - uid: 5853 +- proto: ChairOfficeLight + entities: + - uid: 940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-27.5 + rot: 1.5707963267948966 rad + pos: 11.5,-34.5 parent: 2 - - uid: 5854 + - uid: 5068 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-26.5 + pos: 50.5,-4.5 parent: 2 - - uid: 6775 + - uid: 5069 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,15.5 + pos: 53.5,-4.5 parent: 2 - - uid: 6820 + - uid: 5227 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,15.5 + pos: 81.5,-6.5 parent: 2 - - uid: 6823 + - uid: 7075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,15.5 + pos: 44.5,3.5 parent: 2 - - uid: 6825 + - uid: 7859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 + pos: 71.5,-19.495005 parent: 2 - - uid: 6844 + - uid: 8664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,15.5 + rot: 3.141592653589793 rad + pos: 64.5,24.5 parent: 2 - - uid: 6846 + - uid: 10670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,15.5 + pos: 62.5,9.5 parent: 2 - - uid: 7585 + - uid: 10901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,15.5 + pos: 79.5,-6.5 parent: 2 - - uid: 7586 + - uid: 11293 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,15.5 + pos: 61.5,-11.5 parent: 2 - - uid: 7667 +- proto: ChairPilotSeat + entities: + - uid: 4971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,15.5 + rot: 3.141592653589793 rad + pos: 27.5,47.5 parent: 2 - - uid: 7671 +- proto: ChairWood + entities: + - uid: 1152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,15.5 + pos: 29.5,-2.5 parent: 2 - - uid: 7672 + - uid: 1153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,15.5 + pos: 30.5,-2.5 parent: 2 - - uid: 7841 + - uid: 1155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,-10.5 parent: 2 - - uid: 7849 + - uid: 1166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,15.5 + rot: -1.5707963267948966 rad + pos: 22.5,-12.5 parent: 2 - - uid: 7875 + - uid: 1167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,-11.5 parent: 2 - - uid: 7876 + - uid: 1168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,15.5 + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 parent: 2 - - uid: 7878 + - uid: 1662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,15.5 + rot: 3.141592653589793 rad + pos: 29.5,-4.5 parent: 2 - - uid: 7879 + - uid: 1664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,15.5 + rot: 3.141592653589793 rad + pos: 30.5,-4.5 parent: 2 - - uid: 7880 + - uid: 2689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,33.5 parent: 2 - - uid: 7888 + - uid: 2690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,15.5 + rot: -1.5707963267948966 rad + pos: 24.5,33.5 parent: 2 - - uid: 7891 + - uid: 2691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,15.5 + rot: -1.5707963267948966 rad + pos: 24.5,32.5 parent: 2 - - uid: 7949 + - uid: 2692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,32.5 parent: 2 -- proto: CorporateCircuitBoard - entities: - - uid: 11861 + - uid: 2693 components: - type: Transform - pos: 52.427402,31.731949 + rot: -1.5707963267948966 rad + pos: 23.5,30.5 parent: 2 -- proto: CowToolboxFilled - entities: - - uid: 5707 + - uid: 2694 components: - type: Transform - pos: 84.5,-5.5 + rot: -1.5707963267948966 rad + pos: 23.5,29.5 parent: 2 -- proto: CrateArtifactContainer - entities: - - uid: 10439 + - uid: 2695 components: - type: Transform - pos: 62.5,22.5 + rot: -1.5707963267948966 rad + pos: 24.5,29.5 parent: 2 -- proto: CrateCoffin - entities: - - uid: 2538 + - uid: 2696 components: - type: Transform - pos: 38.5,3.5 + rot: -1.5707963267948966 rad + pos: 24.5,30.5 parent: 2 -- proto: CrateEmptySpawner - entities: - - uid: 8167 + - uid: 2728 components: - type: Transform - pos: 10.5,26.5 + pos: 19.5,33.56914 parent: 2 - - uid: 8172 + - uid: 3418 components: - type: Transform - pos: 6.5,31.5 + rot: 1.5707963267948966 rad + pos: 69.5,27.5 parent: 2 - - uid: 8177 + - uid: 5502 components: - type: Transform - pos: 12.5,24.5 + rot: 1.5707963267948966 rad + pos: 69.50498,33.5 parent: 2 -- proto: CrateEngineeringAMEJar - entities: - - uid: 5263 + - uid: 5503 components: - type: Transform - pos: 28.5,-38.5 + rot: -1.5707963267948966 rad + pos: 71.49502,33.5 parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 5235 + - uid: 5504 components: - type: Transform - pos: 28.5,-40.5 + pos: 70.5,34.495007 parent: 2 - - type: Pullable - prevFixedRotation: True -- proto: CrateEngineeringCableBulk - entities: - - uid: 782 + - uid: 6477 components: - type: Transform - pos: 20.5,-23.5 + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 5526 + - uid: 6478 components: - type: Transform - pos: 87.5,0.5 + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage -- proto: CrateEngineeringCableLV - entities: - - uid: 12353 + - uid: 6497 components: - type: Transform - pos: 5.5,-8.5 + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 parent: 2 -- proto: CrateEngineeringCableMV - entities: - - uid: 5686 + - uid: 6504 components: - type: Transform - pos: 10.5,-31.5 + rot: -1.5707963267948966 rad + pos: 23.5,-12.5 parent: 2 -- proto: CrateEngineeringSecure - entities: - - uid: 5625 + - uid: 8440 components: - type: Transform - pos: 11.5,-25.5 + rot: -1.5707963267948966 rad + pos: 71.5,29.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 784 - - 1239 - - 1460 - - 1842 - - 2129 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateFilledSpawner - entities: - - uid: 191 + - uid: 8644 components: - type: Transform - pos: 12.5,16.5 + pos: 84.5,12.495002 parent: 2 - - uid: 7552 + - uid: 8645 components: - type: Transform - pos: 13.5,24.5 + pos: 85.5,12.495002 parent: 2 - - uid: 8165 + - uid: 12710 components: - type: Transform - pos: 11.5,24.5 + pos: 114.5,-16.5 parent: 2 - - uid: 8166 + - uid: 13474 components: - type: Transform - pos: 10.5,24.5 + pos: 9.853746,-41.642406 parent: 2 - - uid: 8168 + - uid: 14091 components: - type: Transform - pos: 11.5,26.5 + rot: -1.5707963267948966 rad + pos: 71.5,27.5 parent: 2 - - uid: 8169 +- proto: CheapLighter + entities: + - uid: 6631 components: - type: Transform - pos: 12.5,26.5 + pos: 37.66267,-3.4032297 parent: 2 - - uid: 8170 + - uid: 7717 components: - type: Transform - pos: 13.5,26.5 + pos: 43.77102,20.318724 parent: 2 - - uid: 8171 +- proto: CheapRollerBed + entities: + - uid: 8145 components: - type: Transform - pos: 6.5,30.5 + pos: 58.484226,3.6459913 parent: 2 - - uid: 8173 + - uid: 8232 components: - type: Transform - pos: 6.5,32.5 + pos: 57.484226,3.6453457 parent: 2 - - uid: 8174 + - uid: 8234 components: - type: Transform - pos: 7.5,32.5 + pos: 55.484226,3.6458454 parent: 2 -- proto: CrateFreezer - entities: - - uid: 740 + - uid: 8299 components: - type: Transform - pos: 31.5,-11.5 + pos: 54.49985,3.645617 parent: 2 - - uid: 13109 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 11921 components: - type: Transform - pos: 67.5,-5.5 + pos: 70.44693,7.937353 parent: 2 -- proto: CrateGenericSteel +- proto: ChemDispenser entities: - - uid: 3720 + - uid: 5050 components: - type: Transform - pos: 89.5,-7.5 + pos: 49.5,-5.5 parent: 2 - type: ContainerContainer containers: - entity_storage: !type:Container + ReagentDispenser-reagentContainerContainer: !type:ContainerSlot showEnts: False occludes: True - ents: [] - labelSlot: !type:ContainerSlot + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ReagentDispenser-beaker: !type:ContainerSlot showEnts: False occludes: True ent: null - paper_label: !type:ContainerSlot + beakerSlot: !type:ContainerSlot showEnts: False occludes: True ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 3721 + - uid: 5051 components: - type: Transform - pos: 90.5,-7.5 + pos: 53.5,-3.5 parent: 2 - type: ContainerContainer containers: - entity_storage: !type:Container + ReagentDispenser-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container showEnts: False occludes: True ents: [] - labelSlot: !type:ContainerSlot + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ReagentDispenser-beaker: !type:ContainerSlot showEnts: False occludes: True ent: null - paper_label: !type:ContainerSlot + beakerSlot: !type:ContainerSlot showEnts: False occludes: True ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage -- proto: CrateMaterialSteel +- proto: ChemistryHotplate entities: - - uid: 5687 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 2 - - uid: 13043 + - uid: 11028 components: - type: Transform - pos: 33.5,-52.5 + pos: 51.5,-7.5 parent: 2 -- proto: CrateMedicalSurgery +- proto: ChemMaster entities: - - uid: 5086 + - uid: 5052 components: - type: Transform - pos: 64.5,-3.5 + pos: 49.5,-4.5 parent: 2 -- proto: CrateMousetrapBoxes - entities: - - uid: 8819 + - type: ContainerContainer + containers: + ChemMaster-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ChemMaster-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + outputSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 5053 components: - type: Transform - pos: 9.5,-18.5 + pos: 52.5,-3.5 parent: 2 -- proto: CrateNPCChicken + - type: ContainerContainer + containers: + ChemMaster-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ChemMaster-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + outputSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ChessBoard entities: - - uid: 6753 + - uid: 14078 components: - type: Transform - pos: 46.5,-10.5 + rot: 1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 -- proto: CrateNPCCow +- proto: ChurchOrganInstrument entities: - - uid: 6752 + - uid: 8921 components: - type: Transform - pos: 47.5,-10.5 + pos: 35.5,5.5 parent: 2 -- proto: CrateNPCHamlet +- proto: CigarGold entities: - - uid: 12796 + - uid: 7936 components: - type: Transform - pos: 29.5,47.5 + pos: 43.474144,20.053099 parent: 2 -- proto: CrateSecurityTrackingMindshieldImplants - entities: - - uid: 2153 + - uid: 12104 components: - type: Transform - pos: 40.5,28.5 + pos: 17.412243,41.086063 parent: 2 -- proto: CrateTrashCart - entities: - - uid: 13117 + - uid: 12105 components: - type: Transform - pos: 45.5,29.5 + pos: 17.630993,41.086063 parent: 2 - - uid: 13122 + - uid: 12753 components: - type: Transform - pos: 55.5,5.5 + pos: 6.6187644,19.547955 parent: 2 - - uid: 13123 +- proto: CigPackGreen + entities: + - uid: 5523 components: - type: Transform - pos: 23.5,8.5 + pos: 87.481125,1.4149053 parent: 2 - - uid: 13124 + - uid: 9307 components: - type: Transform - pos: 19.5,26.5 + pos: 69.531136,11.469878 parent: 2 -- proto: CrateTrashCartJani +- proto: CircuitImprinter entities: - - uid: 12906 + - uid: 12155 components: - type: Transform - pos: 6.5,-6.5 + pos: 53.5,17.5 parent: 2 -- proto: CrayonBox + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Gold +- proto: CleanerDispenser entities: - - uid: 4695 - components: - - type: Transform - pos: 20.5,15.5 - parent: 2 - - uid: 11395 - components: - - type: Transform - pos: 25.423948,6.293049 - parent: 2 - - uid: 11396 + - uid: 6875 components: - type: Transform - pos: 30.486448,7.511799 + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 parent: 2 -- proto: CrayonRainbow +- proto: ClosetBombFilled entities: - - uid: 12700 + - uid: 2261 components: - type: Transform - pos: 106.45511,-16.386364 + pos: 36.5,21.5 parent: 2 -- proto: Crematorium - entities: - - uid: 9729 + - uid: 12854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,4.5 + pos: 55.5,25.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer +- proto: ClosetEmergencyFilledRandom entities: - - uid: 8231 + - uid: 1480 components: - type: Transform - pos: 51.5,25.5 + pos: 24.5,-4.5 parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False -- proto: Crowbar - entities: - - uid: 686 + - uid: 1481 components: - type: Transform - pos: 30.5,-14.5 + pos: 24.5,-5.5 parent: 2 - - uid: 1048 + - uid: 2957 components: - type: Transform - pos: 32.504723,-30.433409 + pos: 72.5,-10.5 parent: 2 - - uid: 5326 + - uid: 3328 components: - type: Transform - pos: 55.436665,17.567713 + pos: -21.5,-11.5 parent: 2 - - uid: 5713 + - uid: 5261 components: - type: Transform - pos: 77.53034,-13.472758 + pos: 49.5,13.5 parent: 2 - - uid: 8688 + - uid: 5438 components: - type: Transform - pos: 32.5021,27.416605 + pos: 9.5,-20.5 parent: 2 - - uid: 11129 + - uid: 5472 components: - type: Transform - pos: 54.629898,-15.278217 + pos: 70.5,42.5 parent: 2 -- proto: CryogenicSleepUnit - entities: - - uid: 6934 + - uid: 5612 components: - type: Transform - pos: 22.5,17.5 + pos: 36.5,-38.5 parent: 2 -- proto: CryogenicSleepUnitSpawner - entities: - - uid: 6935 + - uid: 5901 components: - type: Transform - pos: 22.5,18.5 + pos: 5.5,-30.5 parent: 2 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 6936 + - uid: 7997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,17.5 + pos: 3.5,5.5 parent: 2 -- proto: CryoPod - entities: - - uid: 11462 + - uid: 10837 components: - type: Transform - pos: 58.5,-0.5 + pos: 66.5,6.5 parent: 2 - - uid: 11774 + - uid: 10839 components: - type: Transform - pos: 60.5,-0.5 + pos: 43.5,46.5 parent: 2 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 11801 + - uid: 12478 components: - type: Transform - pos: 61.389576,-0.25500047 + pos: 56.5,47.5 parent: 2 - - uid: 11802 + - uid: 13145 components: - type: Transform - pos: 61.483326,-0.38000047 + pos: -13.5,0.5 parent: 2 -- proto: d6Dice - entities: - - uid: 316 + - uid: 13708 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.493689,4.5440345 + pos: -5.5,-23.5 parent: 2 - - uid: 5505 + - uid: 14156 components: - type: Transform - pos: 70.363464,33.795147 + pos: 71.5,21.5 parent: 2 - - uid: 5506 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 7537 components: - type: Transform - pos: 70.69159,33.810772 + pos: -9.5,0.5 parent: 2 - - uid: 5517 +- proto: ClosetFireFilled + entities: + - uid: 99 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.50039,33.577915 + pos: -7.5,-14.5 parent: 2 -- proto: DefaultStationBeaconAME - entities: - - uid: 12372 + - uid: 5260 components: - type: Transform - pos: 31.5,-40.5 + pos: 50.5,13.5 parent: 2 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 12378 + - uid: 5902 components: - type: Transform - pos: 68.5,14.5 + pos: 5.5,-29.5 parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 12371 + - uid: 7998 components: - type: Transform - pos: 40.5,27.5 + pos: 3.5,9.5 parent: 2 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 12370 + - uid: 10841 components: - type: Transform - pos: -14.5,-13.5 + pos: 39.5,42.5 parent: 2 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 12367 + - uid: 12803 components: - type: Transform - pos: 62.5,25.5 + pos: -5.5,0.5 parent: 2 -- proto: DefaultStationBeaconAtmospherics +- proto: ClosetJanitorFilled entities: - - uid: 12366 + - uid: 166 components: - type: Transform - pos: 30.5,-26.5 + pos: 3.5,-3.5 parent: 2 -- proto: DefaultStationBeaconBar +- proto: ClosetL3JanitorFilled entities: - - uid: 11974 + - uid: 167 components: - type: Transform - pos: 32.5,-3.5 + pos: 3.5,-4.5 parent: 2 -- proto: DefaultStationBeaconBotany +- proto: ClosetL3VirologyFilled entities: - - uid: 11007 + - uid: 5213 components: - type: Transform - pos: 44.5,-3.5 + pos: 78.5,-1.5 parent: 2 -- proto: DefaultStationBeaconBridge - entities: - - uid: 12106 + - uid: 5214 components: - type: Transform - pos: 26.5,45.5 + pos: 76.5,-3.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 12365 + - uid: 5215 components: - type: Transform - pos: 32.5,23.5 + pos: 76.5,-4.5 parent: 2 -- proto: DefaultStationBeaconCaptainsQuarters +- proto: ClosetLegal entities: - - uid: 12385 + - uid: 2712 components: - type: Transform - pos: 31.5,40.5 + pos: 18.5,33.5 parent: 2 -- proto: DefaultStationBeaconCargoBay +- proto: ClosetLegalFilled entities: - - uid: 12386 + - uid: 6047 components: - type: Transform - pos: 10.5,23.5 + pos: 17.5,33.5 parent: 2 -- proto: DefaultStationBeaconCargoReception +- proto: ClosetMaintenance entities: - - uid: 12387 + - uid: 10835 components: - type: Transform - pos: 19.5,22.5 + pos: 65.5,10.5 parent: 2 -- proto: DefaultStationBeaconCERoom +- proto: ClosetMaintenanceFilledRandom entities: - - uid: 12363 + - uid: 3501 components: - type: Transform - pos: 11.5,-35.5 + pos: 37.5,36.5 parent: 2 -- proto: DefaultStationBeaconChapel - entities: - - uid: 12827 + - uid: 5437 components: - type: Transform - pos: 36.5,7.5 + pos: 9.5,-19.5 parent: 2 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 12828 + - uid: 8342 components: - type: Transform - pos: 50.5,-6.5 + pos: 23.5,6.5 parent: 2 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 12364 + - uid: 10836 components: - type: Transform - pos: 57.5,-10.5 + pos: 65.5,9.5 parent: 2 -- proto: DefaultStationBeaconCourtroom - entities: - - uid: 12849 + - uid: 13125 components: - type: Transform - pos: 20.5,31.5 + pos: 53.5,-20.5 parent: 2 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 12850 + - uid: 13126 components: - type: Transform - pos: 59.5,-1.5 + pos: 52.5,-20.5 parent: 2 -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 6937 + - uid: 13969 components: - type: Transform - pos: 21.5,17.5 + pos: -11.5,-23.5 parent: 2 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 12851 + - uid: 14650 components: - type: Transform - pos: 42.5,18.5 + pos: 67.5,31.5 parent: 2 -- proto: DefaultStationBeaconDisposals +- proto: ClosetRadiationSuitFilled entities: - - uid: 12852 + - uid: 3687 components: - type: Transform - pos: 0.5,-30.5 + pos: 51.5,13.5 parent: 2 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 13130 + - uid: 4310 components: - type: Transform - pos: 9.5,-6.5 + pos: 19.5,-34.5 parent: 2 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 13131 + - uid: 10906 components: - type: Transform - pos: 17.5,-4.5 + pos: 20.5,-34.5 parent: 2 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 13132 + - uid: 10907 components: - type: Transform - pos: 43.5,22.5 + pos: 22.5,-34.5 parent: 2 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 13133 + - uid: 12853 components: - type: Transform - pos: 3.5,-5.5 + pos: 54.5,25.5 parent: 2 -- proto: DefaultStationBeaconKitchen +- proto: ClosetSteelBase entities: - - uid: 13134 + - uid: 5460 components: - type: Transform - pos: 35.5,-9.5 + pos: 69.5,40.5 parent: 2 -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 13135 + - uid: 5461 components: - type: Transform - pos: -1.5,-9.5 + pos: 69.5,37.5 parent: 2 -- proto: DefaultStationBeaconLibrary +- proto: ClosetToolFilled entities: - - uid: 13136 + - uid: 5649 components: - type: Transform - pos: 10.5,5.5 + pos: 49.5,46.5 parent: 2 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 13137 + - uid: 14734 components: - type: Transform - pos: 70.5,-3.5 + pos: 9.5,15.5 parent: 2 -- proto: DefaultStationBeaconPermaBrig +- proto: ClosetWallOrange entities: - - uid: 13138 + - uid: 13620 components: - type: Transform - pos: 39.5,33.5 + rot: -1.5707963267948966 rad + pos: 58.5,37.5 parent: 2 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 13139 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13621 + - uid: 13753 components: - type: Transform - pos: 26.5,-32.5 + rot: -1.5707963267948966 rad + pos: 58.5,35.5 parent: 2 -- proto: DefaultStationBeaconQMRoom + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14550 +- proto: ClothingBackpackClown entities: - - uid: 13140 + - uid: 9611 components: - type: Transform - pos: 12.5,30.5 + pos: 27.493172,5.5327587 parent: 2 -- proto: DefaultStationBeaconRDRoom +- proto: ClothingBeltChampion entities: - - uid: 13141 + - uid: 12103 components: - type: Transform - pos: 60.5,9.5 + pos: 17.443493,40.617313 parent: 2 -- proto: DefaultStationBeaconRND +- proto: ClothingBeltHolster entities: - - uid: 13168 + - uid: 12241 components: - type: Transform - pos: 51.5,19.5 + pos: 89.35728,1.548007 parent: 2 -- proto: DefaultStationBeaconRobotics +- proto: ClothingBeltStorageWaistbag entities: - - uid: 13169 + - uid: 7821 components: - type: Transform - pos: 51.5,10.5 + pos: 20.561836,5.5983276 parent: 2 -- proto: DefaultStationBeaconSalvage +- proto: ClothingBeltUtility entities: - - uid: 13170 + - uid: 5735 components: - type: Transform - pos: 7.5,16.5 + pos: 72.5,-9.5 parent: 2 -- proto: DefaultStationBeaconServerRoom +- proto: ClothingBeltUtilityEngineering entities: - - uid: 13171 + - uid: 602 components: - type: Transform - pos: 31.5,35.5 + pos: 25.514921,-29.44944 parent: 2 - - uid: 13172 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 872 components: - type: Transform - pos: 50.5,24.5 + pos: 33.498886,-14.418215 parent: 2 -- proto: DefaultStationBeaconSingularity +- proto: ClothingEyesEyepatch entities: - - uid: 13180 + - uid: 6421 components: - type: Transform - pos: 21.5,-38.5 + pos: 56.63094,-14.915291 parent: 2 -- proto: DefaultStationBeaconSolars + - uid: 12219 + components: + - type: Transform + pos: 15.513365,7.482489 + parent: 2 +- proto: ClothingEyesGlasses entities: - - uid: 13178 + - uid: 5436 components: - type: Transform - pos: 70.5,45.5 + pos: 45.51781,-19.598537 parent: 2 - - uid: 13179 + - uid: 6793 components: - type: Transform - pos: 3.5,-35.5 + pos: 60.359756,25.627806 parent: 2 -- proto: DefaultStationBeaconTechVault - entities: - - uid: 13175 + - uid: 11827 components: - type: Transform - pos: 37.5,-15.5 + pos: 60.359756,25.45593 parent: 2 -- proto: DefaultStationBeaconTEG - entities: - - uid: 5665 + - uid: 12167 components: - type: Transform - pos: 41.5,-46.5 + pos: 74.534454,-0.21419013 parent: 2 -- proto: DefaultStationBeaconTelecoms +- proto: ClothingEyesGlassesGarGiga entities: - - uid: 13173 + - uid: 8643 components: - type: Transform - pos: 15.5,-17.5 + pos: 74.48007,-6.509521 parent: 2 -- proto: DefaultStationBeaconToolRoom +- proto: ClothingEyesGlassesMeson entities: - - uid: 13174 + - uid: 132 components: - type: Transform - pos: 30.5,-16.5 + pos: 12.5,-35.5 parent: 2 -- proto: DefaultStationBeaconVault - entities: - - uid: 13176 + - uid: 5718 components: - type: Transform - pos: 18.5,41.5 + pos: 73.5,-12.5 parent: 2 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 13177 + - uid: 10825 components: - type: Transform - pos: 38.5,22.5 + pos: 81.516914,11.673225 parent: 2 -- proto: Defibrillator - entities: - - uid: 11416 + - uid: 10848 components: - type: Transform - pos: 67.479836,-4.0156612 + pos: 44.482018,28.569605 parent: 2 -- proto: DefibrillatorCabinetFilled +- proto: ClothingEyesGlassesSunglasses entities: - - uid: 9627 + - uid: 5522 components: - type: Transform - pos: 45.5,5.5 + pos: 86.49675,1.6024053 parent: 2 - - uid: 12817 +- proto: ClothingEyesGlassesThermal + entities: + - uid: 12673 components: - type: Transform - pos: 74.5,3.5 + pos: 32.51945,-30.628448 parent: 2 - - uid: 12818 +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 11439 components: - type: Transform - pos: 63.5,5.5 + pos: 17.140316,-23.554987 parent: 2 - - uid: 13108 +- proto: ClothingEyesHudMedical + entities: + - uid: 11422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-10.5 + pos: 55.632915,-10.387672 parent: 2 -- proto: DeployableBarrier +- proto: ClothingHandsGlovesColorYellow entities: - - uid: 257 + - uid: 1563 components: - type: Transform - pos: 39.5,28.5 + pos: 30.487595,-14.515437 parent: 2 - - uid: 9602 + - uid: 5630 components: - type: Transform - pos: 36.5,23.5 + pos: 17.199833,-23.332096 parent: 2 -- proto: DeskBell +- proto: ClothingHandsGlovesFingerless entities: - - uid: 1566 + - uid: 2479 components: - type: Transform - pos: 34.50083,-8.541687 + pos: 11.846642,20.44815 parent: 2 -- proto: DiseaseDiagnoser +- proto: ClothingHandsGlovesPowerglove entities: - - uid: 12156 + - uid: 7561 components: - type: Transform - pos: 82.5,-7.5 + pos: 76.51093,-13.595224 parent: 2 -- proto: DisposalBend +- proto: ClothingHeadFishCap entities: - - uid: 1228 + - uid: 2885 components: - type: Transform - pos: 34.5,-9.5 + pos: 50.47578,-20.56524 parent: 2 - - uid: 2376 +- proto: ClothingHeadHatAnimalCat + entities: + - uid: 12652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,10.5 + pos: 69.48217,34.466385 parent: 2 - - uid: 3456 +- proto: ClothingHeadHatAnimalCatBrown + entities: + - uid: 8933 components: - type: Transform - pos: 14.5,20.5 + pos: 62.47656,19.694616 parent: 2 - - uid: 5777 +- proto: ClothingHeadHatBunny + entities: + - uid: 9109 components: - type: Transform - pos: 31.5,-28.5 + pos: 58.54981,-24.623142 parent: 2 - - uid: 5778 +- proto: ClothingHeadHatFedoraGrey + entities: + - uid: 7557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-32.5 + rot: 0.00039844278944656253 rad + pos: 74.50803,-5.26333 parent: 2 - - uid: 5779 +- proto: ClothingHeadHatFez + entities: + - uid: 8843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-32.5 + pos: 90.45974,-18.462885 parent: 2 - - uid: 5780 +- proto: ClothingHeadHatFlowerWreath + entities: + - uid: 8829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-33.5 + pos: 84.5185,-12.681175 parent: 2 - - uid: 5781 +- proto: ClothingHeadHatGreysoft + entities: + - uid: 10851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-34.5 + pos: 44.5341,28.569605 parent: 2 - - uid: 5782 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 10798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 + pos: 80.534454,-16.347055 parent: 2 - - uid: 5800 +- proto: ClothingHeadHatHardhatRed + entities: + - uid: 5719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-28.5 + pos: 73.5,-12.5 parent: 2 - - uid: 5820 + - uid: 10827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 + pos: 81.50129,9.6576 parent: 2 - - uid: 5821 +- proto: ClothingHeadHatHetmanHat + entities: + - uid: 9018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 + pos: 84.40167,-5.2654653 parent: 2 - - uid: 5822 +- proto: ClothingHeadHatPirate + entities: + - uid: 7554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 + rot: 0.00038670882349833846 rad + pos: 89.44564,-12.263381 parent: 2 - - uid: 5823 +- proto: ClothingHeadHatRedwizard + entities: + - uid: 6798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-24.5 + pos: 86.44191,12.5807 parent: 2 - - uid: 5828 +- proto: ClothingHeadHatSkub + entities: + - uid: 13076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-24.5 + pos: 7.4825606,-11.600726 parent: 2 - - uid: 5829 +- proto: ClothingHeadHatSquid + entities: + - uid: 12671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-30.5 + pos: 65.725685,11.307603 parent: 2 - - uid: 5840 +- proto: ClothingHeadHatTophat + entities: + - uid: 2920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-30.5 + pos: 65.46723,-14.576903 parent: 2 - - uid: 7289 +- proto: ClothingHeadHatTrucker + entities: + - uid: 3448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-2.5 + pos: 17.59203,5.387045 parent: 2 - - uid: 7332 +- proto: ClothingHeadHatUshanka + entities: + - uid: 12674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,13.5 + pos: 74.46565,-6.1472054 parent: 2 - - uid: 7352 + - uid: 12676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,7.5 + pos: 74.46565,-6.1472054 parent: 2 - - uid: 7393 +- proto: ClothingHeadHatWelding + entities: + - uid: 5377 components: - type: Transform - pos: 29.5,-10.5 + pos: 52.381424,11.673619 parent: 2 - - uid: 7394 +- proto: ClothingHeadHatWitch1 + entities: + - uid: 6827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 + pos: 83.46587,-12.720913 parent: 2 - - uid: 7395 +- proto: ClothingHeadHatWizard + entities: + - uid: 11158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-11.5 + pos: 86.44739,10.61898 parent: 2 - - uid: 7402 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 8425 components: - type: Transform - pos: 42.5,1.5 + pos: 38.53056,28.406826 parent: 2 - - uid: 7403 + - uid: 8426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,1.5 + pos: 38.53056,28.406826 parent: 2 - - uid: 7707 + - uid: 8427 components: - type: Transform - pos: 33.5,23.5 + pos: 38.53056,28.406826 parent: 2 - - uid: 7751 +- proto: ClothingHeadNurseHat + entities: + - uid: 12672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,13.5 + pos: 59.51385,-3.3579187 parent: 2 - - uid: 7761 +- proto: ClothingHeadsetMining + entities: + - uid: 2134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 + pos: 5.5,31.5 parent: 2 - - uid: 7953 +- proto: ClothingMaskBear + entities: + - uid: 8828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,18.5 + pos: 102.40892,-16.268303 parent: 2 - - uid: 8263 +- proto: ClothingMaskBreathMedical + entities: + - uid: 12657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,18.5 + pos: 67.39722,4.505884 parent: 2 - - uid: 8264 +- proto: ClothingMaskClown + entities: + - uid: 8292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,18.5 + pos: 27.23263,5.6674385 parent: 2 - - uid: 8265 +- proto: ClothingMaskGas + entities: + - uid: 589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,15.5 + pos: 33.50367,-14.512851 parent: 2 - - uid: 8267 + - uid: 841 components: - type: Transform - pos: 12.5,15.5 + pos: 27.626308,-29.560211 parent: 2 - - uid: 8268 + - uid: 5343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,13.5 + pos: 60.54431,25.642796 parent: 2 - - uid: 8269 + - uid: 10799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 + pos: 79.33667,-16.51893 parent: 2 - - uid: 8927 + - uid: 10800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-9.5 + pos: 79.664795,-16.36268 parent: 2 - - uid: 9401 + - uid: 10824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,42.5 + pos: 81.53254,11.610725 parent: 2 - - uid: 9402 +- proto: ClothingMaskSexyMime + entities: + - uid: 8345 components: - type: Transform - pos: 32.5,45.5 + pos: 25.245346,6.3236885 parent: 2 - - uid: 9403 +- proto: ClothingMaskSterile + entities: + - uid: 11969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,45.5 + pos: 59.604156,3.672451 parent: 2 - - uid: 9432 +- proto: ClothingNeckCloakGoliathCloak + entities: + - uid: 12455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,35.5 + pos: 91.43456,-0.49069238 parent: 2 - - uid: 9433 +- proto: ClothingNeckCloakMiner + entities: + - uid: 697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,34.5 + pos: 9.5,36.5 parent: 2 - - uid: 9434 +- proto: ClothingNeckCloakMoth + entities: + - uid: 9368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,35.5 + pos: 17.479858,8.394902 parent: 2 - - uid: 10255 +- proto: ClothingNeckCloakTrans + entities: + - uid: 688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 + pos: 7.491953,-13.240216 parent: 2 - - uid: 10266 + - uid: 7009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 + pos: 19.545155,5.62142 parent: 2 - - uid: 10586 +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 12226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 + pos: 20.513533,26.418814 parent: 2 - - uid: 10598 +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 9606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,14.5 + pos: 25.521528,7.3736153 parent: 2 - - uid: 10599 +- proto: ClothingNeckStethoscope + entities: + - uid: 5193 components: - type: Transform - pos: 58.5,22.5 + pos: 63.38291,-10.442304 parent: 2 - - uid: 10602 + - uid: 11420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,18.5 + pos: 56.414165,-10.356422 parent: 2 - - uid: 10622 + - uid: 11967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,14.5 + pos: 64.40056,4.5256968 parent: 2 - - uid: 11435 +- proto: ClothingNeckTieRed + entities: + - uid: 8289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-6.5 + pos: 19.90453,5.512045 parent: 2 - - uid: 11440 +- proto: ClothingOuterApron + entities: + - uid: 8825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-9.5 + pos: 17.68529,8.556451 parent: 2 - - uid: 11451 +- proto: ClothingOuterArmorBasic + entities: + - uid: 8413 components: - type: Transform - pos: 56.5,-0.5 + pos: 38.421185,28.625576 parent: 2 - - uid: 11452 + - uid: 8414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-0.5 + pos: 38.421185,28.625576 parent: 2 - - uid: 11453 + - uid: 8415 components: - type: Transform - pos: 43.5,0.5 + pos: 38.421185,28.625576 parent: 2 - - uid: 11454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,3.5 - parent: 2 - - uid: 11455 - components: - - type: Transform - pos: 54.5,3.5 - parent: 2 - - uid: 12440 +- proto: ClothingOuterArmorBasicSlim + entities: + - uid: 8416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 + pos: 38.62431,28.406826 parent: 2 - - uid: 12456 + - uid: 8417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 + pos: 38.62431,28.406826 parent: 2 - - uid: 12470 + - uid: 8418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + pos: 38.62431,28.406826 parent: 2 -- proto: DisposalJunction +- proto: ClothingOuterArmorBulletproof entities: - - uid: 2422 + - uid: 8419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,13.5 + pos: 38.37431,28.438076 parent: 2 - - uid: 2475 + - uid: 8420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,10.5 + pos: 38.37431,28.438076 parent: 2 - - uid: 5084 + - uid: 8421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,0.5 + pos: 38.37431,28.438076 parent: 2 - - uid: 5695 +- proto: ClothingOuterArmorRiot + entities: + - uid: 8422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-25.5 + pos: 38.71806,28.609951 parent: 2 - - uid: 7401 + - uid: 8423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,0.5 + pos: 38.71806,28.609951 parent: 2 - - uid: 8343 + - uid: 8424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,0.5 + pos: 38.71806,28.609951 parent: 2 - - uid: 8821 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: This decreases your speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingOuterCoatJensen + entities: + - uid: 7560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,0.5 + pos: 76.51827,-13.498972 parent: 2 - - uid: 9411 +- proto: ClothingOuterCoatLab + entities: + - uid: 5257 components: - type: Transform - pos: 28.5,44.5 + pos: 60.494953,-9.426679 parent: 2 - - uid: 9435 +- proto: ClothingOuterCoatPirate + entities: + - uid: 7553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,34.5 + pos: 89.47711,-12.560792 parent: 2 - - uid: 10600 +- proto: ClothingOuterCoatRobo + entities: + - uid: 1847 components: - type: Transform - pos: 58.5,18.5 + pos: 52.52299,8.566419 parent: 2 - - uid: 11456 +- proto: ClothingOuterHospitalGown + entities: + - uid: 12499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 + pos: 60.452034,-9.3230715 parent: 2 -- proto: DisposalJunctionFlipped +- proto: ClothingOuterPonchoClassic entities: - - uid: 5141 + - uid: 14092 components: - type: Transform - pos: 26.5,23.5 + pos: 70.51337,28.554468 parent: 2 - - uid: 5142 +- proto: ClothingOuterSkub + entities: + - uid: 13075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,0.5 + pos: 7.4669356,-11.631976 parent: 2 - - uid: 7290 +- proto: ClothingOuterSuitFire + entities: + - uid: 5721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,0.5 + pos: 73.5,-12.5 parent: 2 - - uid: 7317 + - uid: 10849 components: - type: Transform - pos: 26.5,-11.5 + pos: 44.450768,28.725964 parent: 2 - - uid: 7400 +- proto: ClothingOuterVestHazard + entities: + - uid: 880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,0.5 + pos: 27.494364,-29.379656 parent: 2 - - uid: 10601 + - uid: 13691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,14.5 + pos: 11.523725,20.510695 parent: 2 - - uid: 11436 +- proto: ClothingOuterWizard + entities: + - uid: 11159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-6.5 + pos: 86.47864,10.71273 parent: 2 - - uid: 11460 +- proto: ClothingOuterWizardRed + entities: + - uid: 6797 components: - type: Transform - pos: 54.5,1.5 + pos: 86.50441,12.690075 parent: 2 - - uid: 12457 +- proto: ClothingShoesBootsJack + entities: + - uid: 3615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 + pos: 18.604328,5.443143 parent: 2 -- proto: DisposalPipe +- proto: ClothingShoesBootsMag entities: - - uid: 28 + - uid: 10306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,16.5 + pos: 8.40589,-8.309399 parent: 2 - - uid: 256 + - uid: 10307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,15.5 + pos: 8.56214,-8.481274 parent: 2 - - uid: 385 +- proto: ClothingShoesFlippers + entities: + - uid: 6828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,18.5 + pos: 1.4884543,-32.355457 parent: 2 - - uid: 584 +- proto: ClothingShoesLeather + entities: + - uid: 7555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-24.5 + rot: 0.0006267222343012691 rad + pos: 89.43173,-12.737588 parent: 2 - - uid: 2065 + - uid: 7558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,18.5 + pos: 74.43015,-5.8248997 parent: 2 - - uid: 2118 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 5405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,13.5 + pos: 62.48992,19.519245 parent: 2 - - uid: 2133 +- proto: ClothingShoesSlippers + entities: + - uid: 5470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,23.5 + pos: 70.5,40.5 parent: 2 - - uid: 2314 + - uid: 5471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,17.5 + pos: 70.5,37.5 parent: 2 - - uid: 2377 +- proto: ClothingShoesWizard + entities: + - uid: 6796 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,12.5 + pos: 86.50441,12.3932 parent: 2 - - uid: 2380 + - uid: 11160 components: - type: Transform - pos: 33.5,22.5 + pos: 86.46301,10.540855 parent: 2 - - uid: 5534 +- proto: ClothingUnderSocksBee + entities: + - uid: 12287 components: - type: Transform - pos: 32.5,1.5 + pos: 8.506772,13.431249 parent: 2 - - uid: 5697 +- proto: ClothingUnderSocksCoder + entities: + - uid: 6795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-28.5 + pos: 83.49162,-13.680252 parent: 2 - - uid: 5698 + - uid: 8931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-28.5 + pos: 13.502279,38.53218 parent: 2 - - uid: 5699 +- proto: ClothingUniformColorRainbow + entities: + - uid: 6826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-28.5 + pos: 83.49712,-13.314663 parent: 2 - - uid: 5700 + - uid: 12705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-28.5 + pos: 104.58011,-15.495739 parent: 2 - - uid: 5770 + - uid: 12706 components: - type: Transform - pos: 31.5,-29.5 + pos: 104.11136,-15.495739 parent: 2 - - uid: 5771 + - uid: 12707 components: - type: Transform - pos: 31.5,-30.5 + pos: 103.67386,-15.495739 parent: 2 - - uid: 5772 +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 12653 components: - type: Transform - pos: 31.5,-31.5 + pos: 76.476616,-13.28976 parent: 2 - - uid: 5773 +- proto: ClothingUniformJumpsuitCossack + entities: + - uid: 8826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-32.5 + pos: 84.46417,-5.6717153 parent: 2 - - uid: 5774 +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 7556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-32.5 + pos: 74.49265,-5.4811497 parent: 2 - - uid: 5775 +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-32.5 + pos: 27.529085,-29.483822 parent: 2 - - uid: 5776 +- proto: ClothingUniformJumpsuitFlannel + entities: + - uid: 8290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-32.5 + pos: 19.93578,5.65267 parent: 2 - - uid: 5784 +- proto: ClothingUniformJumpsuitMonasticRobeLight + entities: + - uid: 12654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-33.5 + pos: 30.690329,7.316777 parent: 2 - - uid: 5788 + - uid: 12655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-32.5 + pos: 30.690329,7.316777 parent: 2 - - uid: 5789 + - uid: 12656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-31.5 + pos: 30.690329,7.316777 parent: 2 - - uid: 5790 +- proto: ClothingUniformJumpsuitPsychologist + entities: + - uid: 8306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-30.5 + pos: 20.21703,5.52767 parent: 2 - - uid: 5791 +- proto: ClothingUniformJumpsuitRecruitSyndie + entities: + - uid: 12496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-29.5 + pos: 11.480359,-11.451806 parent: 2 - - uid: 5792 +- proto: ClothingUniformJumpsuitRepairmanSyndie + entities: + - uid: 12675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-28.5 + pos: 11.491153,-11.444116 parent: 2 - - uid: 5793 +- proto: ClothingUniformOveralls + entities: + - uid: 8241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-28.5 + pos: 17.468086,5.4733276 parent: 2 - - uid: 5794 +- proto: ClownRecorder + entities: + - uid: 5149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 + pos: 27.810755,5.5424385 parent: 2 - - uid: 5795 +- proto: ComfyChair + entities: + - uid: 303 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-28.5 + pos: 12.5,4.5 parent: 2 - - uid: 5796 + - uid: 2408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-28.5 + pos: 44.5,24.5 parent: 2 - - uid: 5797 + - uid: 2527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-28.5 + pos: 34.5,7.5 parent: 2 - - uid: 5798 + - uid: 2531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 + rot: -1.5707963267948966 rad + pos: 36.5,3.5 parent: 2 - - uid: 5799 + - uid: 2720 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-28.5 + pos: 17.5,31.5 parent: 2 - - uid: 5802 + - uid: 2772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-23.5 + rot: -1.5707963267948966 rad + pos: 24.5,40.5 parent: 2 - - uid: 5803 + - uid: 2773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-22.5 + rot: -1.5707963267948966 rad + pos: 24.5,39.5 parent: 2 - - uid: 5804 + - uid: 2774 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-21.5 + pos: 21.5,40.5 parent: 2 - - uid: 5805 + - uid: 2775 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-21.5 + pos: 21.5,39.5 parent: 2 - - uid: 5806 + - uid: 5033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-21.5 + pos: 35.5,3.5 parent: 2 - - uid: 5807 + - uid: 5423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-21.5 + rot: 3.141592653589793 rad + pos: 37.5,42.5 parent: 2 - - uid: 5809 + - uid: 5424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-21.5 + rot: 3.141592653589793 rad + pos: 33.5,40.5 parent: 2 - - uid: 5810 + - uid: 5425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 + pos: 33.5,43.5 parent: 2 - - uid: 5811 + - uid: 10273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - - uid: 5812 + - uid: 10636 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-21.5 + pos: 29.5,7.5 parent: 2 - - uid: 5814 + - uid: 12677 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-21.5 + pos: 105.5,-13.5 parent: 2 - - uid: 5815 + - uid: 12678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 + rot: -1.5707963267948966 rad + pos: 107.5,-13.5 parent: 2 - - uid: 5816 +- proto: CommandmentCircuitBoard + entities: + - uid: 14286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 + pos: 86.43288,28.403772 parent: 2 - - uid: 5817 +- proto: CommsComputerCircuitboard + entities: + - uid: 12660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-21.5 + pos: 41.5,-15.5 parent: 2 - - uid: 5818 +- proto: ComputerAlert + entities: + - uid: 1163 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-21.5 + pos: 10.5,-33.5 parent: 2 - - uid: 5819 + - uid: 5079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 + pos: 28.5,48.5 parent: 2 - - uid: 5825 + - uid: 13443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 + rot: 3.141592653589793 rad + pos: 30.5,-25.5 parent: 2 - - uid: 5826 +- proto: ComputerAnalysisConsole + entities: + - uid: 152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-23.5 + pos: 64.5,25.5 parent: 2 - - uid: 5827 + - type: DeviceLinkSource + linkedPorts: + 8666: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: computerBodyScanner + entities: + - uid: 31 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-22.5 + pos: 65.5,-3.5 parent: 2 - - uid: 5830 + - uid: 1911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-29.5 + rot: -1.5707963267948966 rad + pos: 62.5,-11.5 parent: 2 - - uid: 5831 + - uid: 11401 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-28.5 + pos: 66.5,-11.5 parent: 2 - - uid: 5832 + - uid: 12110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-27.5 + rot: -1.5707963267948966 rad + pos: 55.5,8.5 parent: 2 - - uid: 5833 - components: +- proto: ComputerCargoBounty + entities: + - uid: 7263 + components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-26.5 + pos: 14.5,25.5 parent: 2 - - uid: 5834 +- proto: ComputerCargoOrders + entities: + - uid: 5285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-25.5 + pos: 20.5,23.5 parent: 2 - - uid: 5835 + - uid: 7471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-24.5 + pos: 7.5,19.5 parent: 2 - - uid: 5836 +- proto: ComputerCargoShuttle + entities: + - uid: 14770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 + rot: 3.141592653589793 rad + pos: 7.5,21.5 parent: 2 - - uid: 5837 +- proto: ComputerComms + entities: + - uid: 405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-30.5 + rot: 3.141592653589793 rad + pos: 33.5,39.5 parent: 2 - - uid: 5838 + - uid: 5059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-30.5 + pos: 27.5,48.5 parent: 2 - - uid: 5841 +- proto: ComputerCrewMonitoring + entities: + - uid: 2468 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-29.5 + pos: 38.5,17.5 parent: 2 - - uid: 6848 + - uid: 7925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,23.5 + pos: 31.5,48.5 parent: 2 - - uid: 6849 + - uid: 9617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,23.5 + pos: 49.5,4.5 parent: 2 - - uid: 6850 + - uid: 9619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,23.5 + rot: 3.141592653589793 rad + pos: 44.5,2.5 parent: 2 - - uid: 6877 + - uid: 10282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,13.5 + rot: -1.5707963267948966 rad + pos: 20.5,-3.5 parent: 2 - - uid: 6878 + - uid: 11922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,14.5 + pos: 72.5,8.5 parent: 2 - - uid: 6879 + - uid: 12580 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,13.5 + pos: 20.5,-16.5 parent: 2 - - uid: 6883 +- proto: ComputerCriminalRecords + entities: + - uid: 7981 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,22.5 + pos: -1.5,-5.5 parent: 2 - - uid: 7291 + - uid: 8431 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-1.5 + pos: 36.5,17.5 parent: 2 - - uid: 7292 + - uid: 12083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-0.5 + pos: 29.5,26.5 parent: 2 - - uid: 7293 + - uid: 12090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,0.5 + pos: 45.5,25.5 parent: 2 - - uid: 7296 +- proto: ComputerId + entities: + - uid: 401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,0.5 + rot: 3.141592653589793 rad + pos: 32.5,39.5 parent: 2 - - uid: 7301 + - uid: 4988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,0.5 + pos: 26.5,48.5 parent: 2 - - uid: 7302 + - uid: 10275 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,0.5 + pos: 15.5,-3.5 parent: 2 - - uid: 7303 +- proto: ComputerMedicalRecords + entities: + - uid: 7725 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,0.5 + pos: 54.5,-11.5 parent: 2 - - uid: 7306 + - uid: 9616 components: - type: Transform - pos: 26.5,-0.5 + rot: -1.5707963267948966 rad + pos: 51.5,2.5 parent: 2 - - uid: 7307 + - uid: 11035 components: - type: Transform - pos: 26.5,-1.5 + rot: 1.5707963267948966 rad + pos: 20.5,-17.5 parent: 2 - - uid: 7308 + - uid: 12170 components: - type: Transform - pos: 26.5,-2.5 + pos: 34.5,46.5 parent: 2 - - uid: 7309 +- proto: ComputerPowerMonitoring + entities: + - uid: 4042 components: - type: Transform - pos: 26.5,-3.5 + rot: 1.5707963267948966 rad + pos: 10.5,-34.5 parent: 2 - - uid: 7310 + - uid: 5126 components: - type: Transform - pos: 26.5,-4.5 + rot: 1.5707963267948966 rad + pos: 19.5,45.5 parent: 2 - - uid: 7311 + - uid: 6898 components: - type: Transform - pos: 26.5,-5.5 + rot: 1.5707963267948966 rad + pos: 15.5,-13.5 parent: 2 - - uid: 7312 + - uid: 13433 components: - type: Transform - pos: 26.5,-6.5 + pos: 22.5,-23.5 parent: 2 - - uid: 7313 +- proto: ComputerRadar + entities: + - uid: 5078 components: - type: Transform - pos: 26.5,-7.5 + pos: 20.5,46.5 parent: 2 - - uid: 7314 + - uid: 9957 components: - type: Transform - pos: 26.5,-8.5 + rot: 1.5707963267948966 rad + pos: 4.5,39.5 parent: 2 - - uid: 7315 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 5304 components: - type: Transform - pos: 26.5,-9.5 + rot: 3.141592653589793 rad + pos: 51.5,17.5 parent: 2 - - uid: 7316 + - uid: 5390 components: - type: Transform - pos: 26.5,-10.5 + pos: 49.5,11.5 parent: 2 - - uid: 7318 + - uid: 6474 components: - type: Transform - pos: 26.5,-12.5 + pos: 50.5,25.5 parent: 2 - - uid: 7319 + - uid: 10666 components: - type: Transform - pos: 26.5,-13.5 + rot: 3.141592653589793 rad + pos: 62.5,8.5 parent: 2 - - uid: 7320 +- proto: ComputerRoboticsControl + entities: + - uid: 5652 components: - type: Transform - pos: 26.5,-14.5 + rot: 3.141592653589793 rad + pos: 61.5,8.5 parent: 2 - - uid: 7321 +- proto: ComputerSalvageExpedition + entities: + - uid: 5046 components: - type: Transform - pos: 26.5,-15.5 + rot: -1.5707963267948966 rad + pos: 9.5,31.5 parent: 2 - - uid: 7322 +- proto: ComputerShuttleCargo + entities: + - uid: 7879 components: - type: Transform - pos: 26.5,-16.5 + rot: 1.5707963267948966 rad + pos: 6.5,25.5 parent: 2 - - uid: 7323 +- proto: ComputerSolarControl + entities: + - uid: 4305 components: - type: Transform - pos: 26.5,-17.5 + rot: 1.5707963267948966 rad + pos: 2.5,-36.5 parent: 2 - - uid: 7324 + - uid: 5639 components: - type: Transform - pos: 26.5,-18.5 + pos: 70.5,46.5 parent: 2 - - uid: 7325 + - uid: 11749 components: - type: Transform - pos: 26.5,-19.5 + pos: 21.5,-23.5 parent: 2 - - uid: 7326 +- proto: ComputerStationRecords + entities: + - uid: 2145 components: - type: Transform - pos: 26.5,-20.5 + rot: -1.5707963267948966 rad + pos: 43.5,17.5 parent: 2 - - uid: 7330 + - uid: 8315 components: - type: Transform - pos: 22.5,14.5 + pos: 23.5,48.5 parent: 2 - - uid: 7333 + - uid: 10274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,13.5 + rot: -1.5707963267948966 rad + pos: 17.5,-3.5 parent: 2 - - uid: 7334 + - uid: 12581 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,13.5 - parent: 2 - - uid: 7335 - components: - - type: Transform - pos: 19.5,12.5 + pos: 20.5,-18.5 parent: 2 - - uid: 7336 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2469 components: - type: Transform - pos: 19.5,11.5 + rot: 3.141592653589793 rad + pos: 37.5,17.5 parent: 2 - - uid: 7337 + - uid: 8346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,10.5 + pos: 24.5,48.5 parent: 2 - - uid: 7338 + - uid: 12082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,10.5 + pos: 30.5,26.5 parent: 2 - - uid: 7339 + - uid: 12089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,10.5 + pos: 44.5,25.5 parent: 2 - - uid: 7340 +- proto: ComputerTelevision + entities: + - uid: 8498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 + rot: 1.5707963267948966 rad + pos: 41.5,18.5 parent: 2 - - uid: 7341 +- proto: ContainmentFieldGenerator + entities: + - uid: 752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,10.5 + anchored: False + pos: 9.5,-26.5 parent: 2 - - uid: 7343 + - type: Physics + bodyType: Dynamic + - uid: 1113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,10.5 + anchored: False + pos: 9.5,-27.5 parent: 2 - - uid: 7345 + - type: Physics + bodyType: Dynamic + - uid: 1289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,10.5 + pos: 26.5,-38.5 parent: 2 - - uid: 7347 + - uid: 1593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,10.5 + anchored: False + pos: 9.5,-28.5 parent: 2 - - uid: 7348 + - type: Physics + bodyType: Dynamic + - uid: 3979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,10.5 + pos: 25.5,-47.5 parent: 2 - - uid: 7349 + - uid: 3984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,10.5 + pos: 17.5,-55.5 parent: 2 - - uid: 7350 + - uid: 10929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,10.5 + pos: 17.5,-47.5 parent: 2 - - uid: 7351 + - uid: 10931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,10.5 + pos: 25.5,-55.5 parent: 2 - - uid: 7353 +- proto: ConveyorBelt + entities: + - uid: 450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 + rot: 3.141592653589793 rad + pos: 7.5,35.5 parent: 2 - - uid: 7354 + - uid: 944 components: - type: Transform - pos: 19.5,8.5 + rot: 3.141592653589793 rad + pos: 7.5,38.5 parent: 2 - - uid: 7355 + - uid: 967 components: - type: Transform - pos: 19.5,9.5 + rot: -1.5707963267948966 rad + pos: 8.5,34.5 parent: 2 - - uid: 7358 + - uid: 999 components: - type: Transform - pos: 5.5,9.5 + rot: 3.141592653589793 rad + pos: 7.5,36.5 parent: 2 - - uid: 7359 + - uid: 2037 components: - type: Transform - pos: 5.5,8.5 + rot: 1.5707963267948966 rad + pos: 7.5,27.5 parent: 2 - - uid: 7360 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 2040 components: - type: Transform - pos: 5.5,7.5 + rot: -1.5707963267948966 rad + pos: 7.5,23.5 parent: 2 - - uid: 7361 + - uid: 2041 components: - type: Transform - pos: 5.5,6.5 + rot: 1.5707963267948966 rad + pos: 6.5,27.5 parent: 2 - - uid: 7362 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 2042 components: - type: Transform - pos: 5.5,5.5 + rot: 1.5707963267948966 rad + pos: 5.5,27.5 parent: 2 - - uid: 7363 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 2051 components: - type: Transform - pos: 5.5,4.5 + rot: -1.5707963267948966 rad + pos: 5.5,23.5 parent: 2 - - uid: 7367 + - uid: 2064 components: - type: Transform - pos: 5.5,3.5 + rot: 1.5707963267948966 rad + pos: 4.5,27.5 parent: 2 - - uid: 7368 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 2066 components: - type: Transform - pos: 5.5,2.5 + rot: -1.5707963267948966 rad + pos: 4.5,23.5 parent: 2 - - uid: 7369 + - uid: 2067 components: - type: Transform - pos: 5.5,1.5 + rot: -1.5707963267948966 rad + pos: 6.5,23.5 parent: 2 - - uid: 7370 + - uid: 5842 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,0.5 + pos: 2.5,-28.5 parent: 2 - - uid: 7371 + - uid: 5843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 + pos: 1.5,-28.5 parent: 2 - - uid: 7372 + - uid: 5844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 + pos: 1.5,-29.5 parent: 2 - - uid: 7373 + - uid: 5845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 + pos: 1.5,-30.5 parent: 2 - - uid: 7374 + - uid: 5846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,0.5 + pos: 1.5,-31.5 parent: 2 - - uid: 7375 + - uid: 5847 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,0.5 + pos: 0.5,-31.5 parent: 2 - - uid: 7377 + - uid: 5850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,0.5 + rot: 3.141592653589793 rad + pos: -0.5,-31.5 parent: 2 - - uid: 7378 + - uid: 5851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,0.5 + rot: 3.141592653589793 rad + pos: -0.5,-30.5 parent: 2 - - uid: 7379 + - uid: 5852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,0.5 + rot: 3.141592653589793 rad + pos: -0.5,-28.5 parent: 2 - - uid: 7380 + - uid: 5853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,0.5 + rot: 3.141592653589793 rad + pos: -0.5,-27.5 parent: 2 - - uid: 7381 + - uid: 5854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,0.5 + rot: 3.141592653589793 rad + pos: -0.5,-26.5 parent: 2 - - uid: 7382 + - uid: 8239 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,0.5 + pos: 3.5,23.5 parent: 2 - - uid: 7383 + - uid: 12384 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,0.5 + pos: 7.5,34.5 parent: 2 - - uid: 7384 + - uid: 13731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,27.5 parent: 2 - - uid: 7385 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 14660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,0.5 + rot: 3.141592653589793 rad + pos: 7.5,37.5 parent: 2 - - uid: 7386 +- proto: CorporateCircuitBoard + entities: + - uid: 14278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,0.5 + pos: 84.53704,28.653946 parent: 2 - - uid: 7387 +- proto: CowToolboxFilled + entities: + - uid: 5707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,0.5 + pos: 84.5,-5.5 parent: 2 - - uid: 7388 +- proto: CrateArtifactContainer + entities: + - uid: 10439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,0.5 + pos: 62.5,22.5 parent: 2 - - uid: 7389 +- proto: CrateCoffin + entities: + - uid: 2538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,0.5 + pos: 38.5,3.5 parent: 2 - - uid: 7396 +- proto: CrateEmptySpawner + entities: + - uid: 8167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-10.5 + pos: 10.5,26.5 parent: 2 - - uid: 7399 + - uid: 8177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-0.5 + pos: 12.5,24.5 parent: 2 - - uid: 7404 + - uid: 8526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,0.5 + pos: 10.5,24.5 parent: 2 - - uid: 7405 + - uid: 13001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,0.5 + pos: 11.5,31.5 parent: 2 - - uid: 7406 +- proto: CrateEngineeringAMEJar + entities: + - uid: 5263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,0.5 + pos: 28.5,-38.5 parent: 2 - - uid: 7407 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 5235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,0.5 + pos: 28.5,-40.5 parent: 2 - - uid: 7408 + - type: Pullable + prevFixedRotation: True +- proto: CrateEngineeringCableBulk + entities: + - uid: 782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,0.5 + pos: 20.5,-23.5 parent: 2 - - uid: 7457 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 5526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 + pos: 87.5,0.5 parent: 2 - - uid: 7458 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage +- proto: CrateEngineeringCableLV + entities: + - uid: 2223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,19.5 + pos: 49.5,28.5 parent: 2 - - uid: 7459 + - uid: 12353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,23.5 + pos: 5.5,-8.5 parent: 2 - - uid: 7567 +- proto: CrateEngineeringCableMV + entities: + - uid: 5686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,21.5 + pos: 10.5,-31.5 parent: 2 - - uid: 7571 +- proto: CrateEngineeringSecure + entities: + - uid: 5625 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,11.5 + pos: 11.5,-25.5 parent: 2 - - uid: 7572 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 784 + - 1239 + - 1460 + - 1842 + - 2129 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFilledSpawner + entities: + - uid: 6861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,20.5 + pos: 9.5,26.5 parent: 2 - - uid: 7681 + - uid: 6864 components: - type: Transform - pos: 33.5,19.5 + pos: 9.5,24.5 parent: 2 - - uid: 7774 + - uid: 8165 components: - type: Transform - pos: 33.5,21.5 + pos: 11.5,24.5 parent: 2 - - uid: 7780 + - uid: 8168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,18.5 + pos: 11.5,26.5 parent: 2 - - uid: 7956 + - uid: 9306 components: - type: Transform - pos: 33.5,20.5 + pos: 11.5,30.5 parent: 2 - - uid: 8270 + - uid: 11164 components: - type: Transform - pos: 12.5,14.5 + pos: 13.5,31.5 parent: 2 - - uid: 8271 + - uid: 14775 components: - type: Transform - pos: 11.5,16.5 + pos: 12.5,26.5 parent: 2 - - uid: 8275 + - uid: 14777 components: - type: Transform - pos: 11.5,17.5 + pos: 13.5,30.5 parent: 2 - - uid: 8278 +- proto: CrateFreezer + entities: + - uid: 740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,18.5 + pos: 31.5,-11.5 parent: 2 - - uid: 8279 + - uid: 13109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,18.5 + pos: 67.5,-5.5 parent: 2 - - uid: 8280 +- proto: CrateGenericSteel + entities: + - uid: 3720 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,19.5 + pos: 89.5,-7.5 parent: 2 - - uid: 8281 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 3721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,12.5 + pos: 90.5,-7.5 parent: 2 - - uid: 8282 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + labelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage +- proto: CrateMaterialSteel + entities: + - uid: 5687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,11.5 + pos: 11.5,-31.5 parent: 2 - - uid: 8928 + - uid: 13043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-0.5 + pos: 33.5,-52.5 parent: 2 - - uid: 8929 +- proto: CrateMedicalSurgery + entities: + - uid: 5086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-1.5 + pos: 64.5,-3.5 parent: 2 - - uid: 8973 +- proto: CrateMousetrapBoxes + entities: + - uid: 8819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-2.5 + pos: 9.5,-18.5 parent: 2 - - uid: 8974 +- proto: CrateNPCChicken + entities: + - uid: 6753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-3.5 + pos: 46.5,-10.5 parent: 2 - - uid: 8975 +- proto: CrateNPCCow + entities: + - uid: 6752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-4.5 + pos: 47.5,-10.5 parent: 2 - - uid: 8976 +- proto: CrateNPCHamlet + entities: + - uid: 12796 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-5.5 + pos: 29.5,47.5 parent: 2 - - uid: 8977 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 2153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-6.5 + pos: 40.5,28.5 parent: 2 - - uid: 8978 +- proto: CrateTrashCart + entities: + - uid: 7822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-7.5 + pos: 44.5,27.5 parent: 2 - - uid: 8979 + - uid: 13122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-8.5 + pos: 55.5,5.5 parent: 2 - - uid: 9405 + - uid: 13123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,42.5 + pos: 23.5,8.5 parent: 2 - - uid: 9406 + - uid: 13124 components: - type: Transform - pos: 32.5,43.5 + pos: 19.5,26.5 parent: 2 - - uid: 9407 +- proto: CrateTrashCartJani + entities: + - uid: 12906 components: - type: Transform - pos: 32.5,44.5 + pos: 6.5,-6.5 parent: 2 - - uid: 9408 +- proto: CrayonBox + entities: + - uid: 4695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,45.5 + pos: 20.5,15.5 parent: 2 - - uid: 9409 + - uid: 11395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,45.5 + pos: 25.423948,6.293049 parent: 2 - - uid: 9410 + - uid: 11396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,45.5 + pos: 30.486448,7.511799 parent: 2 - - uid: 9412 + - uid: 13631 components: - type: Transform - pos: 28.5,43.5 + pos: 55.5,31.5 parent: 2 - - uid: 9413 +- proto: CrayonRainbow + entities: + - uid: 12700 components: - type: Transform - pos: 28.5,42.5 + pos: 106.45511,-16.386364 parent: 2 - - uid: 9414 +- proto: Crematorium + entities: + - uid: 9729 components: - type: Transform - pos: 28.5,41.5 + rot: 1.5707963267948966 rad + pos: 29.5,4.5 parent: 2 - - uid: 9415 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 8231 components: - type: Transform - pos: 28.5,40.5 + pos: 51.5,25.5 parent: 2 - - uid: 9416 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 686 components: - type: Transform - pos: 28.5,39.5 + pos: 30.5,-14.5 parent: 2 - - uid: 9417 + - uid: 1048 components: - type: Transform - pos: 28.5,38.5 + pos: 32.504723,-30.433409 parent: 2 - - uid: 9418 + - uid: 5326 components: - type: Transform - pos: 28.5,37.5 + pos: 55.436665,17.567713 parent: 2 - - uid: 9419 + - uid: 5713 components: - type: Transform - pos: 28.5,36.5 + pos: 77.53034,-13.472758 parent: 2 - - uid: 9421 + - uid: 8688 components: - type: Transform - pos: 26.5,24.5 + pos: 32.5021,27.416605 parent: 2 - - uid: 9422 + - uid: 11129 components: - type: Transform - pos: 26.5,25.5 + pos: 54.629898,-15.278217 parent: 2 - - uid: 9423 +- proto: CryogenicSleepUnit + entities: + - uid: 3187 components: - type: Transform - pos: 26.5,26.5 + rot: 1.5707963267948966 rad + pos: 53.5,32.5 parent: 2 - - uid: 9424 + - uid: 6934 components: - type: Transform - pos: 26.5,27.5 + pos: 22.5,17.5 parent: 2 - - uid: 9425 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 6935 components: - type: Transform - pos: 26.5,28.5 + pos: 22.5,18.5 parent: 2 - - uid: 9426 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 6936 components: - type: Transform - pos: 26.5,29.5 + rot: 3.141592653589793 rad + pos: 20.5,17.5 parent: 2 - - uid: 9427 +- proto: CryoPod + entities: + - uid: 11462 components: - type: Transform - pos: 26.5,30.5 + pos: 58.5,-0.5 parent: 2 - - uid: 9428 + - uid: 11774 components: - type: Transform - pos: 26.5,31.5 + pos: 60.5,-0.5 parent: 2 - - uid: 9429 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 11801 components: - type: Transform - pos: 26.5,32.5 + pos: 61.389576,-0.25500047 parent: 2 - - uid: 9430 + - uid: 11802 components: - type: Transform - pos: 26.5,33.5 + pos: 61.483326,-0.38000047 parent: 2 - - uid: 10256 +- proto: CurtainsOrangeOpen + entities: + - uid: 8076 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-3.5 + pos: 6.5,15.5 parent: 2 - - uid: 10257 +- proto: d6Dice + entities: + - uid: 316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 + rot: 3.141592653589793 rad + pos: 11.493689,4.5440345 parent: 2 - - uid: 10258 + - uid: 5505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 + pos: 70.363464,33.795147 parent: 2 - - uid: 10259 + - uid: 5506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 + pos: 70.69159,33.810772 parent: 2 - - uid: 10260 + - uid: 5517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 + rot: 3.141592653589793 rad + pos: 70.50039,33.577915 parent: 2 - - uid: 10261 +- proto: DefaultStationBeaconAICore + entities: + - uid: 14515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 + pos: 85.5,30.5 parent: 2 - - uid: 10262 +- proto: DefaultStationBeaconAME + entities: + - uid: 12372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 + pos: 31.5,-40.5 parent: 2 - - uid: 10263 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 12378 components: - type: Transform - pos: 12.5,-2.5 + pos: 68.5,14.5 parent: 2 - - uid: 10264 +- proto: DefaultStationBeaconArmory + entities: + - uid: 12371 components: - type: Transform - pos: 12.5,-1.5 + pos: 40.5,27.5 parent: 2 - - uid: 10265 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 14028 components: - type: Transform - pos: 12.5,-0.5 + pos: -23.5,-12.5 parent: 2 - - uid: 10587 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 12367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,12.5 + pos: 62.5,25.5 parent: 2 - - uid: 10588 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 12366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,13.5 + pos: 30.5,-26.5 parent: 2 - - uid: 10589 +- proto: DefaultStationBeaconBar + entities: + - uid: 11974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,21.5 + pos: 32.5,-3.5 parent: 2 - - uid: 10590 +- proto: DefaultStationBeaconBotany + entities: + - uid: 11007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,20.5 + pos: 44.5,-3.5 parent: 2 - - uid: 10591 +- proto: DefaultStationBeaconBridge + entities: + - uid: 12106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,19.5 + pos: 26.5,45.5 parent: 2 - - uid: 10592 +- proto: DefaultStationBeaconBrig + entities: + - uid: 12365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,17.5 + pos: 32.5,23.5 parent: 2 - - uid: 10593 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 12385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,16.5 + pos: 31.5,40.5 parent: 2 - - uid: 10594 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 12386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,15.5 + pos: 10.5,23.5 parent: 2 - - uid: 10595 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 12387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 + pos: 19.5,22.5 parent: 2 - - uid: 10596 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 12363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,14.5 + pos: 11.5,-35.5 parent: 2 - - uid: 10597 +- proto: DefaultStationBeaconChapel + entities: + - uid: 12827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,14.5 + pos: 36.5,7.5 parent: 2 - - uid: 10603 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 12828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,18.5 + pos: 50.5,-6.5 parent: 2 - - uid: 10604 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 12364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,18.5 + pos: 57.5,-10.5 parent: 2 - - uid: 10605 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 12849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,18.5 + pos: 20.5,31.5 parent: 2 - - uid: 10606 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 12850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,18.5 + pos: 59.5,-1.5 parent: 2 - - uid: 10607 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 6937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,18.5 + pos: 21.5,17.5 parent: 2 - - uid: 10608 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 12851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,18.5 + pos: 42.5,18.5 parent: 2 - - uid: 10609 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 12852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,18.5 + pos: 0.5,-30.5 parent: 2 - - uid: 10610 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 13729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,14.5 + pos: 86.5,4.5 parent: 2 - - uid: 10611 +- proto: DefaultStationBeaconEvac + entities: + - uid: 4139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,14.5 + pos: -7.5,-0.5 parent: 2 - - uid: 10612 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 13130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,14.5 + pos: 9.5,-6.5 parent: 2 - - uid: 10613 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 13131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,14.5 + pos: 17.5,-4.5 parent: 2 - - uid: 10614 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 13132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,14.5 + pos: 43.5,22.5 parent: 2 - - uid: 10615 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 13133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 + pos: 3.5,-5.5 parent: 2 - - uid: 10616 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 13134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,14.5 + pos: 35.5,-9.5 parent: 2 - - uid: 10617 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 13135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,14.5 + pos: -1.5,-9.5 parent: 2 - - uid: 10618 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 13136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,14.5 + pos: 10.5,5.5 parent: 2 - - uid: 10619 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 13137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,14.5 + pos: 70.5,-3.5 parent: 2 - - uid: 10620 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 13518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,14.5 + pos: 56.5,36.5 parent: 2 - - uid: 10621 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 13139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,14.5 + pos: 26.5,-32.5 parent: 2 - - uid: 10623 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 14772 components: - type: Transform - pos: 41.5,13.5 + pos: 7.5,18.5 parent: 2 - - uid: 10624 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 13141 components: - type: Transform - pos: 41.5,12.5 + pos: 60.5,9.5 parent: 2 - - uid: 10625 +- proto: DefaultStationBeaconRND + entities: + - uid: 13168 components: - type: Transform - pos: 41.5,11.5 + pos: 51.5,19.5 parent: 2 - - uid: 10626 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 13169 components: - type: Transform - pos: 41.5,10.5 + pos: 51.5,10.5 parent: 2 - - uid: 10627 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 14771 components: - type: Transform - pos: 41.5,9.5 + pos: 7.5,33.5 parent: 2 - - uid: 10628 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 2288 components: - type: Transform - pos: 41.5,8.5 + pos: 31.5,36.5 parent: 2 - - uid: 10629 + - uid: 13171 components: - type: Transform - pos: 41.5,7.5 + pos: 31.5,35.5 parent: 2 - - uid: 10630 + - uid: 13172 components: - type: Transform - pos: 41.5,6.5 + pos: 50.5,24.5 parent: 2 - - uid: 10631 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 13180 components: - type: Transform - pos: 41.5,5.5 + pos: 21.5,-38.5 parent: 2 - - uid: 10632 +- proto: DefaultStationBeaconSolars + entities: + - uid: 13178 components: - type: Transform - pos: 41.5,4.5 + pos: 70.5,45.5 parent: 2 - - uid: 10633 + - uid: 13179 components: - type: Transform - pos: 41.5,3.5 + pos: 3.5,-35.5 parent: 2 - - uid: 10634 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 13175 components: - type: Transform - pos: 41.5,2.5 + pos: 37.5,-15.5 parent: 2 - - uid: 11441 +- proto: DefaultStationBeaconTEG + entities: + - uid: 5665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-9.5 + pos: 41.5,-46.5 parent: 2 - - uid: 11442 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 13173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-8.5 + pos: 15.5,-17.5 parent: 2 - - uid: 11443 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 13174 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 + pos: 30.5,-16.5 parent: 2 - - uid: 11444 +- proto: DefaultStationBeaconVault + entities: + - uid: 13176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-6.5 + pos: 18.5,41.5 parent: 2 - - uid: 11445 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 13177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 + pos: 38.5,22.5 parent: 2 - - uid: 11446 +- proto: Defibrillator + entities: + - uid: 11416 components: - type: Transform - pos: 56.5,-5.5 + pos: 67.479836,-4.0156612 parent: 2 - - uid: 11447 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 9627 components: - type: Transform - pos: 56.5,-4.5 + pos: 45.5,5.5 parent: 2 - - uid: 11448 + - uid: 12817 components: - type: Transform - pos: 56.5,-3.5 + pos: 74.5,3.5 parent: 2 - - uid: 11449 + - uid: 12818 components: - type: Transform - pos: 56.5,-2.5 + pos: 63.5,5.5 parent: 2 - - uid: 11450 + - uid: 13108 components: - type: Transform - pos: 56.5,-1.5 + rot: 1.5707963267948966 rad + pos: 59.5,-10.5 parent: 2 - - uid: 11458 +- proto: DeployableBarrier + entities: + - uid: 257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,3.5 + pos: 39.5,28.5 parent: 2 - - uid: 11459 + - uid: 9602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,2.5 + pos: 36.5,23.5 parent: 2 - - uid: 11461 +- proto: DeskBell + entities: + - uid: 1566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,0.5 + pos: 34.50083,-8.541687 parent: 2 - - uid: 11463 + - uid: 14993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-0.5 + pos: 51.458427,1.5715649 parent: 2 - - uid: 11464 +- proto: DiseaseDiagnoser + entities: + - uid: 12156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-0.5 + pos: 82.5,-7.5 parent: 2 - - uid: 11466 +- proto: DiseaseSwab + entities: + - uid: 13754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-0.5 + pos: 56.618065,41.538536 parent: 2 - - uid: 11467 + - uid: 13755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-0.5 + pos: 56.451397,41.674046 parent: 2 - - uid: 11468 +- proto: DisposalBend + entities: + - uid: 1228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-0.5 + pos: 34.5,-9.5 parent: 2 - - uid: 11469 + - uid: 2376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-0.5 + rot: 3.141592653589793 rad + pos: 4.5,10.5 parent: 2 - - uid: 11470 + - uid: 3251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-0.5 + rot: -1.5707963267948966 rad + pos: 33.5,23.5 parent: 2 - - uid: 11471 + - uid: 5777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-0.5 + pos: 31.5,-28.5 parent: 2 - - uid: 11473 + - uid: 5778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-0.5 + rot: -1.5707963267948966 rad + pos: 31.5,-32.5 parent: 2 - - uid: 11474 + - uid: 5779 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-0.5 + pos: 26.5,-32.5 parent: 2 - - uid: 11479 + - uid: 5780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,1.5 + rot: 3.141592653589793 rad + pos: 26.5,-33.5 parent: 2 - - uid: 11480 + - uid: 5781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,1.5 + rot: 3.141592653589793 rad + pos: 16.5,-34.5 parent: 2 - - uid: 11481 + - uid: 5782 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,1.5 + pos: 17.5,-34.5 parent: 2 - - uid: 11482 + - uid: 5800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,1.5 + rot: 1.5707963267948966 rad + pos: 17.5,-28.5 parent: 2 - - uid: 11483 + - uid: 5820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,1.5 + rot: 1.5707963267948966 rad + pos: 11.5,-21.5 parent: 2 - - uid: 11484 + - uid: 5821 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,1.5 + pos: 11.5,-23.5 parent: 2 - - uid: 11485 + - uid: 5822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,1.5 + rot: 1.5707963267948966 rad + pos: 8.5,-23.5 parent: 2 - - uid: 11486 + - uid: 5823 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,1.5 + pos: 8.5,-24.5 parent: 2 - - uid: 11487 + - uid: 5828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,1.5 + rot: 1.5707963267948966 rad + pos: 5.5,-24.5 parent: 2 - - uid: 11488 + - uid: 5829 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,1.5 + pos: 5.5,-30.5 parent: 2 - - uid: 11489 + - uid: 5840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,1.5 + rot: 3.141592653589793 rad + pos: 2.5,-30.5 parent: 2 - - uid: 11490 + - uid: 7289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,1.5 + rot: 3.141592653589793 rad + pos: 35.5,-2.5 parent: 2 - - uid: 11491 + - uid: 7332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,1.5 + rot: 1.5707963267948966 rad + pos: 19.5,13.5 parent: 2 - - uid: 11492 + - uid: 7352 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,1.5 + pos: 19.5,7.5 parent: 2 - - uid: 11493 + - uid: 7393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,1.5 + pos: 29.5,-10.5 parent: 2 - - uid: 11494 + - uid: 7394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,1.5 + rot: 1.5707963267948966 rad + pos: 27.5,-10.5 parent: 2 - - uid: 11495 + - uid: 7395 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,1.5 + pos: 27.5,-11.5 parent: 2 - - uid: 11496 + - uid: 7402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,1.5 + pos: 42.5,1.5 parent: 2 - - uid: 11497 + - uid: 7403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,1.5 + rot: 3.141592653589793 rad + pos: 41.5,1.5 parent: 2 - - uid: 11498 + - uid: 7601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,1.5 + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 parent: 2 - - uid: 11499 + - uid: 7751 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,1.5 + pos: 26.5,13.5 parent: 2 - - uid: 11500 + - uid: 8263 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,1.5 + pos: 14.5,18.5 parent: 2 - - uid: 11501 + - uid: 8264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,1.5 + rot: 1.5707963267948966 rad + pos: 11.5,18.5 parent: 2 - - uid: 11502 + - uid: 8265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,1.5 + rot: 3.141592653589793 rad + pos: 11.5,15.5 parent: 2 - - uid: 11503 + - uid: 8267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,1.5 + pos: 12.5,15.5 parent: 2 - - uid: 11504 + - uid: 8268 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,1.5 + pos: 12.5,13.5 parent: 2 - - uid: 11776 + - uid: 8269 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-0.5 + pos: 11.5,13.5 parent: 2 - - uid: 12169 + - uid: 8927 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-13.5 + pos: 33.5,-9.5 parent: 2 - - uid: 12426 + - uid: 9401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-14.5 + rot: -1.5707963267948966 rad + pos: 32.5,42.5 parent: 2 - - uid: 12427 + - uid: 9402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-14.5 + pos: 32.5,45.5 parent: 2 - - uid: 12428 + - uid: 9403 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-14.5 + pos: 28.5,45.5 parent: 2 - - uid: 12429 + - uid: 9432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 + rot: -1.5707963267948966 rad + pos: 28.5,35.5 parent: 2 - - uid: 12430 + - uid: 9433 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-14.5 + pos: 26.5,34.5 parent: 2 - - uid: 12431 + - uid: 9434 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-14.5 + pos: 27.5,35.5 parent: 2 - - uid: 12432 + - uid: 10255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 + rot: -1.5707963267948966 rad + pos: 20.5,-3.5 parent: 2 - - uid: 12433 + - uid: 10266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 + rot: 3.141592653589793 rad + pos: 12.5,-3.5 parent: 2 - - uid: 12434 + - uid: 10586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 + rot: 3.141592653589793 rad + pos: 54.5,11.5 parent: 2 - - uid: 12435 + - uid: 10598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 + rot: -1.5707963267948966 rad + pos: 58.5,14.5 parent: 2 - - uid: 12436 + - uid: 10599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-14.5 + pos: 58.5,22.5 parent: 2 - - uid: 12437 + - uid: 10602 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-14.5 + pos: 50.5,18.5 parent: 2 - - uid: 12438 + - uid: 10622 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-14.5 + pos: 41.5,14.5 parent: 2 - - uid: 12439 + - uid: 11435 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + pos: 53.5,-6.5 parent: 2 - - uid: 12441 + - uid: 11440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-12.5 + rot: -1.5707963267948966 rad + pos: 56.5,-9.5 parent: 2 - - uid: 12442 + - uid: 11451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-11.5 + pos: 56.5,-0.5 parent: 2 - - uid: 12443 + - uid: 11452 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-10.5 + pos: 43.5,-0.5 parent: 2 - - uid: 12444 + - uid: 11453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-9.5 + pos: 43.5,0.5 parent: 2 - - uid: 12445 + - uid: 11454 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-8.5 + pos: 52.5,3.5 parent: 2 - - uid: 12446 + - uid: 11455 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-7.5 + pos: 54.5,3.5 parent: 2 - - uid: 12448 + - uid: 12470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 parent: 2 - - uid: 12450 + - uid: 13156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-5.5 + rot: 1.5707963267948966 rad + pos: 14.5,23.5 parent: 2 - - uid: 12451 + - uid: 13583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-4.5 + pos: 33.5,31.5 parent: 2 - - uid: 12452 + - uid: 14178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 + rot: -1.5707963267948966 rad + pos: 79.5,23.5 parent: 2 - - uid: 12453 + - uid: 15041 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-2.5 + pos: 46.5,-6.5 parent: 2 - - uid: 12454 +- proto: DisposalJunction + entities: + - uid: 2422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-1.5 + rot: -1.5707963267948966 rad + pos: 22.5,13.5 parent: 2 - - uid: 12458 + - uid: 2475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 + rot: -1.5707963267948966 rad + pos: 11.5,10.5 parent: 2 - - uid: 12460 + - uid: 5084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-0.5 + pos: 12.5,0.5 parent: 2 - - uid: 12461 + - uid: 5695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 + rot: 3.141592653589793 rad + pos: 26.5,-25.5 parent: 2 - - uid: 12463 + - uid: 7401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 + rot: -1.5707963267948966 rad + pos: 42.5,0.5 parent: 2 - - uid: 12464 + - uid: 8343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 + rot: -1.5707963267948966 rad + pos: 32.5,0.5 parent: 2 - - uid: 12465 + - uid: 8821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 + rot: -1.5707963267948966 rad + pos: 27.5,0.5 parent: 2 - - uid: 12466 + - uid: 9411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 + pos: 28.5,44.5 parent: 2 - - uid: 12467 + - uid: 9435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 + rot: -1.5707963267948966 rad + pos: 27.5,34.5 parent: 2 - - uid: 12468 + - uid: 10600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 + pos: 58.5,18.5 parent: 2 - - uid: 12469 + - uid: 11456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 parent: 2 - - uid: 12482 +- proto: DisposalJunctionFlipped + entities: + - uid: 1333 components: - type: Transform - pos: 27.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 parent: 2 - - uid: 12491 + - uid: 5141 components: - type: Transform - pos: 27.5,1.5 + pos: 26.5,23.5 parent: 2 - - uid: 12837 + - uid: 5142 components: - type: Transform - pos: 26.5,-27.5 + rot: -1.5707963267948966 rad + pos: 33.5,0.5 parent: 2 - - uid: 12838 + - uid: 7290 components: - type: Transform - pos: 26.5,-26.5 + rot: -1.5707963267948966 rad + pos: 35.5,0.5 parent: 2 -- proto: DisposalTrunk - entities: - - uid: 183 + - uid: 7317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,22.5 + pos: 26.5,-11.5 parent: 2 - - uid: 184 + - uid: 7400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 + rot: -1.5707963267948966 rad + pos: 41.5,0.5 parent: 2 - - uid: 1227 + - uid: 9857 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-10.5 + rot: -1.5707963267948966 rad + pos: 46.5,-0.5 parent: 2 - - uid: 2132 + - uid: 10601 components: - type: Transform - pos: 36.5,19.5 + rot: -1.5707963267948966 rad + pos: 54.5,14.5 parent: 2 - - uid: 2320 + - uid: 11436 components: - type: Transform - pos: 4.5,13.5 + rot: 3.141592653589793 rad + pos: 56.5,-6.5 parent: 2 - - uid: 3263 + - uid: 11460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,20.5 + pos: 54.5,1.5 parent: 2 - - uid: 5143 +- proto: DisposalPipe + entities: + - uid: 28 components: - type: Transform - pos: 32.5,2.5 + rot: 3.141592653589793 rad + pos: 26.5,16.5 parent: 2 - - uid: 5692 + - uid: 256 components: - type: Transform - pos: 16.5,-33.5 + rot: 3.141592653589793 rad + pos: 26.5,15.5 parent: 2 - - uid: 5693 + - uid: 359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-33.5 + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 parent: 2 - - uid: 5694 + - uid: 385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-25.5 + rot: 3.141592653589793 rad + pos: 26.5,18.5 parent: 2 - - uid: 5839 + - uid: 584 components: - type: Transform - pos: 2.5,-28.5 + rot: 3.141592653589793 rad + pos: 26.5,-24.5 parent: 2 - - uid: 5878 + - uid: 2118 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 2 - - uid: 5969 - components: - - type: Transform - pos: 22.5,15.5 + pos: 23.5,13.5 parent: 2 - - uid: 6008 + - uid: 2133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,42.5 + rot: -1.5707963267948966 rad + pos: 31.5,23.5 parent: 2 - - uid: 7288 + - uid: 2314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-2.5 + rot: 3.141592653589793 rad + pos: 26.5,17.5 parent: 2 - - uid: 7392 + - uid: 2377 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-11.5 + pos: 4.5,12.5 parent: 2 - - uid: 7398 + - uid: 5534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-1.5 + pos: 32.5,1.5 parent: 2 - - uid: 9404 + - uid: 5697 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,44.5 + pos: 27.5,-28.5 parent: 2 - - uid: 9420 + - uid: 5698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,34.5 + rot: 1.5707963267948966 rad + pos: 28.5,-28.5 parent: 2 - - uid: 10254 + - uid: 5699 components: - type: Transform - pos: 20.5,-2.5 + rot: 1.5707963267948966 rad + pos: 29.5,-28.5 parent: 2 - - uid: 10585 + - uid: 5700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,11.5 + rot: 1.5707963267948966 rad + pos: 30.5,-28.5 parent: 2 - - uid: 11434 + - uid: 5770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 + pos: 31.5,-29.5 parent: 2 - - uid: 11437 + - uid: 5771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-9.5 + pos: 31.5,-30.5 parent: 2 - - uid: 11457 + - uid: 5772 components: - type: Transform - pos: 52.5,4.5 + pos: 31.5,-31.5 parent: 2 - - uid: 11478 + - uid: 5773 components: - type: Transform rot: -1.5707963267948966 rad - pos: 81.5,1.5 + pos: 30.5,-32.5 parent: 2 - - uid: 12422 + - uid: 5774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-14.5 + rot: -1.5707963267948966 rad + pos: 29.5,-32.5 parent: 2 - - uid: 12471 + - uid: 5775 components: - type: Transform - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: 28.5,-32.5 parent: 2 - - uid: 12479 + - uid: 5776 components: - type: Transform - pos: 27.5,3.5 + rot: -1.5707963267948966 rad + pos: 27.5,-32.5 parent: 2 -- proto: DisposalUnit - entities: - - uid: 394 + - uid: 5784 components: - type: Transform - pos: 4.5,13.5 + rot: 3.141592653589793 rad + pos: 17.5,-33.5 parent: 2 - - uid: 1150 + - uid: 5788 components: - type: Transform - pos: 25.5,5.5 + rot: 3.141592653589793 rad + pos: 17.5,-32.5 parent: 2 - - uid: 1229 + - uid: 5789 components: - type: Transform - pos: 34.5,-10.5 + rot: 3.141592653589793 rad + pos: 17.5,-31.5 parent: 2 - - uid: 1321 + - uid: 5790 components: - type: Transform - pos: 29.5,-11.5 + rot: 3.141592653589793 rad + pos: 17.5,-30.5 parent: 2 - - uid: 1531 + - uid: 5791 components: - type: Transform - pos: 36.5,-2.5 + rot: 3.141592653589793 rad + pos: 17.5,-29.5 parent: 2 - - uid: 2152 + - uid: 5792 components: - type: Transform - pos: 13.5,20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-28.5 parent: 2 - - uid: 2477 + - uid: 5793 components: - type: Transform - pos: 36.5,19.5 + rot: 1.5707963267948966 rad + pos: 19.5,-28.5 parent: 2 - - uid: 4697 + - uid: 5794 components: - type: Transform - pos: 22.5,15.5 + rot: 1.5707963267948966 rad + pos: 20.5,-28.5 parent: 2 - - uid: 4979 + - uid: 5795 components: - type: Transform - pos: 27.5,44.5 + rot: 1.5707963267948966 rad + pos: 21.5,-28.5 parent: 2 - - uid: 5047 + - uid: 5796 components: - type: Transform - pos: 52.5,4.5 + rot: 1.5707963267948966 rad + pos: 22.5,-28.5 parent: 2 - - uid: 5075 + - uid: 5797 components: - type: Transform - pos: 53.5,-7.5 + rot: 1.5707963267948966 rad + pos: 23.5,-28.5 parent: 2 - - uid: 5150 + - uid: 5798 components: - type: Transform - pos: 32.5,2.5 + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 parent: 2 - - uid: 5209 + - uid: 5799 components: - type: Transform - pos: 70.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-28.5 parent: 2 - - uid: 5228 + - uid: 5802 components: - type: Transform - pos: 82.5,-3.5 + rot: 3.141592653589793 rad + pos: 26.5,-23.5 parent: 2 - - uid: 5341 + - uid: 5803 components: - type: Transform - pos: 57.5,22.5 + rot: 3.141592653589793 rad + pos: 26.5,-22.5 parent: 2 - - uid: 5392 + - uid: 5804 components: - type: Transform - pos: 55.5,11.5 + rot: 1.5707963267948966 rad + pos: 25.5,-21.5 parent: 2 - - uid: 5411 + - uid: 5805 components: - type: Transform - pos: 30.5,42.5 + rot: 1.5707963267948966 rad + pos: 24.5,-21.5 parent: 2 - - uid: 6427 + - uid: 5806 components: - type: Transform - pos: 17.5,7.5 + rot: 1.5707963267948966 rad + pos: 23.5,-21.5 parent: 2 - - uid: 7297 + - uid: 5807 components: - type: Transform - pos: 27.5,-33.5 + rot: 1.5707963267948966 rad + pos: 22.5,-21.5 parent: 2 - - uid: 7300 + - uid: 5809 components: - type: Transform - pos: 16.5,-33.5 + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 parent: 2 - - uid: 7397 + - uid: 5810 components: - type: Transform - pos: 41.5,-1.5 + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 parent: 2 - - uid: 8361 + - uid: 5811 components: - type: Transform - pos: 27.5,-25.5 + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 parent: 2 - - uid: 8848 + - uid: 5812 components: - type: Transform - pos: 105.5,-10.5 + rot: 1.5707963267948966 rad + pos: 18.5,-21.5 parent: 2 - - uid: 8857 + - uid: 5814 components: - type: Transform - pos: 100.5,-10.5 + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 parent: 2 - - uid: 9431 + - uid: 5815 components: - type: Transform - pos: 28.5,34.5 + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 parent: 2 - - uid: 10069 + - uid: 5816 components: - type: Transform - pos: 54.5,-9.5 + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 parent: 2 - - uid: 10118 + - uid: 5817 components: - type: Transform - pos: 50.5,17.5 + rot: 1.5707963267948966 rad + pos: 14.5,-21.5 parent: 2 - - uid: 10253 + - uid: 5818 components: - type: Transform - pos: 20.5,-2.5 + rot: 1.5707963267948966 rad + pos: 13.5,-21.5 parent: 2 - - uid: 11433 + - uid: 5819 components: - type: Transform - pos: 81.5,1.5 + rot: 1.5707963267948966 rad + pos: 12.5,-21.5 parent: 2 - - uid: 12421 + - uid: 5825 components: - type: Transform - pos: -21.5,-14.5 + rot: -1.5707963267948966 rad + pos: 9.5,-23.5 parent: 2 - - uid: 12478 + - uid: 5826 components: - type: Transform - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: 10.5,-23.5 parent: 2 - - uid: 12492 + - uid: 5827 components: - type: Transform - pos: 27.5,3.5 + rot: 3.141592653589793 rad + pos: 11.5,-22.5 parent: 2 -- proto: DisposalYJunction - entities: - - uid: 2442 + - uid: 5830 components: - type: Transform - pos: 5.5,10.5 + rot: 3.141592653589793 rad + pos: 5.5,-29.5 parent: 2 - - uid: 5696 + - uid: 5831 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-28.5 + pos: 5.5,-28.5 parent: 2 - - uid: 5801 + - uid: 5832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-21.5 + rot: 3.141592653589793 rad + pos: 5.5,-27.5 parent: 2 - - uid: 7305 + - uid: 5833 components: - type: Transform - pos: 26.5,0.5 + rot: 3.141592653589793 rad + pos: 5.5,-26.5 parent: 2 - - uid: 7356 + - uid: 5834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,10.5 + rot: 3.141592653589793 rad + pos: 5.5,-25.5 parent: 2 - - uid: 8820 + - uid: 5835 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,0.5 + pos: 6.5,-24.5 parent: 2 -- proto: DogBed - entities: - - uid: 41 + - uid: 5836 components: - type: Transform - pos: 12.5,31.5 + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 parent: 2 - - uid: 9716 + - uid: 5837 components: - type: Transform - pos: 51.5,-8.5 + rot: 1.5707963267948966 rad + pos: 4.5,-30.5 parent: 2 - - uid: 10280 + - uid: 5838 components: - type: Transform - pos: 19.5,-5.5 + rot: 1.5707963267948966 rad + pos: 3.5,-30.5 parent: 2 -- proto: DonkpocketBoxSpawner - entities: - - uid: 11431 + - uid: 5841 components: - type: Transform - pos: 76.5,4.5 + rot: 3.141592653589793 rad + pos: 2.5,-29.5 parent: 2 -- proto: DoorElectronics - entities: - - uid: 1046 + - uid: 6848 components: - type: Transform - pos: 32.489098,-30.527159 + rot: -1.5707963267948966 rad + pos: 27.5,23.5 parent: 2 - - uid: 1047 + - uid: 6849 components: - type: Transform - pos: 32.489098,-30.324034 + rot: -1.5707963267948966 rad + pos: 29.5,23.5 parent: 2 - - uid: 5440 + - uid: 6850 components: - type: Transform - pos: 9.474669,-14.422774 + rot: -1.5707963267948966 rad + pos: 32.5,23.5 parent: 2 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 5530 + - uid: 6877 components: - type: Transform - pos: 64.522316,20.63157 + rot: 1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 -- proto: DresserCaptainFilled - entities: - - uid: 10279 + - uid: 6878 components: - type: Transform - pos: 37.5,40.5 + rot: 3.141592653589793 rad + pos: 26.5,14.5 parent: 2 -- proto: DresserChiefEngineerFilled - entities: - - uid: 13469 + - uid: 6879 components: - type: Transform - pos: 9.5,-40.5 + rot: 1.5707963267948966 rad + pos: 25.5,13.5 parent: 2 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 1179 + - uid: 6883 components: - type: Transform - pos: 58.5,-10.5 + rot: 3.141592653589793 rad + pos: 26.5,22.5 parent: 2 - - type: Storage - storedItems: - 542: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 542 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 9438 + - uid: 6905 components: - type: Transform - pos: 18.5,-5.5 + pos: 14.5,22.5 parent: 2 - - type: Storage - storedItems: - 544: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 544 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 386 + - uid: 6906 components: - type: Transform - pos: 45.5,22.5 + pos: 14.5,21.5 parent: 2 -- proto: DresserQuarterMasterFilled - entities: - - uid: 941 + - uid: 6907 components: - type: Transform - pos: 13.5,30.5 + pos: 14.5,20.5 parent: 2 -- proto: DresserResearchDirectorFilled - entities: - - uid: 565 + - uid: 7291 components: - type: Transform - pos: 60.5,11.5 + rot: 3.141592653589793 rad + pos: 35.5,-1.5 parent: 2 - - type: Storage - storedItems: - 4300: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 4300 -- proto: DrinkFlask - entities: - - uid: 9223 + - uid: 7292 components: - type: Transform - pos: 37.68926,43.584465 + rot: 3.141592653589793 rad + pos: 35.5,-0.5 parent: 2 -- proto: DrinkFlaskBar - entities: - - uid: 12497 + - uid: 7293 components: - type: Transform - pos: 63.594597,-16.258825 + rot: 1.5707963267948966 rad + pos: 34.5,0.5 parent: 2 -- proto: DrinkGlass - entities: - - uid: 11829 + - uid: 7296 components: - type: Transform - pos: 67.3298,-14.594364 + rot: 1.5707963267948966 rad + pos: 31.5,0.5 parent: 2 - - uid: 11831 + - uid: 7301 components: - type: Transform - pos: 67.6423,-14.594364 + rot: 1.5707963267948966 rad + pos: 30.5,0.5 parent: 2 -- proto: DrinkGoldenCup - entities: - - uid: 12097 + - uid: 7302 components: - type: Transform - pos: 19.490185,41.41655 + rot: 1.5707963267948966 rad + pos: 29.5,0.5 parent: 2 -- proto: DrinkHotCoco - entities: - - uid: 5451 + - uid: 7303 components: - type: Transform - pos: 71.508354,37.570084 + rot: 1.5707963267948966 rad + pos: 28.5,0.5 parent: 2 -- proto: DrinkLemonadeGlass - entities: - - uid: 5452 + - uid: 7306 components: - type: Transform - pos: 71.477104,40.663834 + pos: 26.5,-0.5 parent: 2 -- proto: DrinkMugDog - entities: - - uid: 11968 + - uid: 7307 components: - type: Transform - pos: 55.92937,-10.550333 + pos: 26.5,-1.5 parent: 2 -- proto: DrinkMugRainbow - entities: - - uid: 12701 + - uid: 7308 components: - type: Transform - pos: 107.25198,-16.370739 + pos: 26.5,-2.5 parent: 2 -- proto: DrinkShaker - entities: - - uid: 590 + - uid: 7309 components: - type: Transform - pos: 38.536613,-9.567179 + pos: 26.5,-3.5 parent: 2 - - uid: 11828 + - uid: 7310 components: - type: Transform - pos: 67.47043,-15.094364 + pos: 26.5,-4.5 parent: 2 -- proto: DrinkWaterCup - entities: - - uid: 5644 + - uid: 7311 components: - type: Transform - pos: 16.679596,-23.530558 + pos: 26.5,-5.5 parent: 2 - - uid: 5645 + - uid: 7312 components: - type: Transform - pos: 16.678108,-23.473524 + pos: 26.5,-6.5 parent: 2 - - uid: 5646 + - uid: 7313 components: - type: Transform - pos: 16.67348,-23.408709 + pos: 26.5,-7.5 parent: 2 - - uid: 5647 + - uid: 7314 components: - type: Transform - pos: 16.678108,-23.343895 + pos: 26.5,-8.5 parent: 2 - - uid: 10898 + - uid: 7315 components: - type: Transform - pos: 64.36203,13.455295 + pos: 26.5,-9.5 parent: 2 - - uid: 10899 + - uid: 7316 components: - type: Transform - pos: 64.36203,13.580295 + pos: 26.5,-10.5 parent: 2 - - uid: 10900 + - uid: 7318 components: - type: Transform - pos: 64.36203,13.72092 + pos: 26.5,-12.5 parent: 2 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 6809 + - uid: 7319 components: - type: Transform - pos: 57.63163,-13.7188425 + pos: 26.5,-13.5 parent: 2 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 7304 + - uid: 7320 components: - type: Transform - pos: 52.427402,31.544449 + pos: 26.5,-14.5 parent: 2 -- proto: EmergencyLight - entities: - - uid: 1547 + - uid: 7321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-14.5 + pos: 26.5,-15.5 parent: 2 - - uid: 7742 + - uid: 7322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-14.5 + pos: 26.5,-16.5 parent: 2 - - uid: 11333 + - uid: 7323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,33.5 + pos: 26.5,-17.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12374 + - uid: 7324 components: - type: Transform - pos: 10.5,1.5 + pos: 26.5,-18.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12375 + - uid: 7325 components: - type: Transform - pos: 36.5,1.5 + pos: 26.5,-19.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12376 + - uid: 7326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-0.5 + pos: 26.5,-20.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12377 + - uid: 7330 components: - type: Transform - pos: 16.5,-33.5 + pos: 22.5,14.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12379 + - uid: 7333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,25.5 + rot: 1.5707963267948966 rad + pos: 21.5,13.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12380 + - uid: 7334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,44.5 + rot: 1.5707963267948966 rad + pos: 20.5,13.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12381 + - uid: 7335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,21.5 + pos: 19.5,12.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12382 + - uid: 7336 components: - type: Transform - pos: 33.5,15.5 + pos: 19.5,11.5 parent: 2 - - type: ActiveEmergencyLight - - uid: 12383 + - uid: 7337 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,18.5 + pos: 18.5,10.5 parent: 2 - - type: ActiveEmergencyLight -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 9622 + - uid: 7338 components: - type: Transform - pos: 45.379837,4.5137033 + rot: -1.5707963267948966 rad + pos: 17.5,10.5 parent: 2 -- proto: Emitter - entities: - - uid: 748 + - uid: 7339 components: - type: Transform - pos: 9.5,-29.5 + rot: -1.5707963267948966 rad + pos: 16.5,10.5 parent: 2 - - uid: 749 + - uid: 7340 components: - type: Transform - pos: 9.5,-30.5 + rot: -1.5707963267948966 rad + pos: 15.5,10.5 parent: 2 - - uid: 10875 + - uid: 7341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-47.5 + rot: -1.5707963267948966 rad + pos: 14.5,10.5 parent: 2 - - uid: 10876 + - uid: 7343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-55.5 + rot: -1.5707963267948966 rad + pos: 13.5,10.5 parent: 2 - - uid: 10904 + - uid: 7345 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-47.5 + pos: 12.5,10.5 parent: 2 - - uid: 10958 + - uid: 7347 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-55.5 + pos: 10.5,10.5 parent: 2 - - uid: 10963 + - uid: 7348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-58.5 + rot: -1.5707963267948966 rad + pos: 9.5,10.5 parent: 2 - - uid: 10965 + - uid: 7349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-58.5 + rot: -1.5707963267948966 rad + pos: 8.5,10.5 parent: 2 -- proto: EncryptionKeyCargo - entities: - - uid: 412 - components: - - type: Transform - parent: 5183 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 413 + - uid: 7350 components: - type: Transform - parent: 10443 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 414 + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 + - uid: 7351 components: - type: Transform - parent: 12111 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 535 + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - uid: 7353 components: - type: Transform - parent: 533 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 421 + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 7354 components: - type: Transform - parent: 12112 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 422 + pos: 19.5,8.5 + parent: 2 + - uid: 7355 components: - type: Transform - parent: 12232 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 423 + pos: 19.5,9.5 + parent: 2 + - uid: 7358 components: - type: Transform - parent: 12233 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 424 + pos: 5.5,9.5 + parent: 2 + - uid: 7359 components: - type: Transform - parent: 12395 - - type: Physics - canCollide: False -- proto: ExosuitFabricator - entities: - - uid: 12579 + pos: 5.5,8.5 + parent: 2 + - uid: 7360 components: - type: Transform - pos: 51.5,11.5 + pos: 5.5,7.5 parent: 2 -- proto: ExplosivesSignMed - entities: - - uid: 10438 + - uid: 7361 components: - type: Transform - pos: 61.5,28.5 + pos: 5.5,6.5 parent: 2 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 315 + - uid: 7362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,4.5 + pos: 5.5,5.5 parent: 2 - - uid: 582 + - uid: 7363 components: - type: Transform - pos: 21.5,-4.5 + pos: 5.5,4.5 parent: 2 - - uid: 783 + - uid: 7367 components: - type: Transform - pos: 20.5,-22.5 + pos: 5.5,3.5 parent: 2 - - uid: 1947 + - uid: 7368 components: - type: Transform - pos: 32.5,-29.5 + pos: 5.5,2.5 parent: 2 - - uid: 5111 + - uid: 7369 components: - type: Transform - pos: 52.5,12.5 + pos: 5.5,1.5 parent: 2 - - uid: 5336 + - uid: 7370 components: - type: Transform - pos: 53.5,22.5 + rot: -1.5707963267948966 rad + pos: 6.5,0.5 parent: 2 - - uid: 5337 + - uid: 7371 components: - type: Transform - pos: 50.5,22.5 + rot: -1.5707963267948966 rad + pos: 7.5,0.5 parent: 2 - - uid: 5347 + - uid: 7372 components: - type: Transform - pos: 62.5,21.5 + rot: -1.5707963267948966 rad + pos: 8.5,0.5 parent: 2 - - uid: 5348 + - uid: 7373 components: - type: Transform - pos: 68.5,12.5 + rot: -1.5707963267948966 rad + pos: 9.5,0.5 parent: 2 - - uid: 5658 + - uid: 7374 components: - type: Transform - pos: 29.5,-33.5 + rot: -1.5707963267948966 rad + pos: 10.5,0.5 parent: 2 - - uid: 5659 + - uid: 7375 components: - type: Transform - pos: 23.5,-33.5 + rot: -1.5707963267948966 rad + pos: 11.5,0.5 parent: 2 - - uid: 6026 + - uid: 7377 components: - type: Transform - pos: 8.5,-13.5 + rot: -1.5707963267948966 rad + pos: 13.5,0.5 parent: 2 - - uid: 6069 + - uid: 7378 components: - type: Transform - pos: 14.5,2.5 + rot: -1.5707963267948966 rad + pos: 14.5,0.5 parent: 2 - - uid: 6635 + - uid: 7379 components: - type: Transform - pos: 40.5,-5.5 + rot: -1.5707963267948966 rad + pos: 15.5,0.5 parent: 2 - - uid: 7818 + - uid: 7380 components: - type: Transform - pos: -21.5,-15.5 + rot: -1.5707963267948966 rad + pos: 16.5,0.5 parent: 2 - - uid: 7833 + - uid: 7381 components: - type: Transform - pos: -9.5,-15.5 + rot: -1.5707963267948966 rad + pos: 17.5,0.5 parent: 2 - - uid: 8985 + - uid: 7382 components: - type: Transform - pos: 36.5,16.5 + rot: -1.5707963267948966 rad + pos: 18.5,0.5 parent: 2 - - uid: 9399 + - uid: 7383 components: - type: Transform - pos: 33.5,47.5 + rot: -1.5707963267948966 rad + pos: 19.5,0.5 parent: 2 - - uid: 9628 + - uid: 7384 components: - type: Transform - pos: 47.5,5.5 + rot: -1.5707963267948966 rad + pos: 20.5,0.5 parent: 2 - - uid: 11066 + - uid: 7385 components: - type: Transform - pos: 14.5,11.5 + rot: -1.5707963267948966 rad + pos: 21.5,0.5 parent: 2 -- proto: FaxMachineBase - entities: - - uid: 1622 + - uid: 7386 components: - type: Transform - pos: 63.5,10.5 + rot: -1.5707963267948966 rad + pos: 22.5,0.5 parent: 2 - - type: FaxMachine - name: RD Office - - uid: 1649 + - uid: 7387 components: - type: Transform - pos: 8.5,3.5 + rot: -1.5707963267948966 rad + pos: 23.5,0.5 parent: 2 - - type: FaxMachine - name: Library - - uid: 2134 + - uid: 7388 components: - type: Transform - pos: 11.5,31.5 + rot: -1.5707963267948966 rad + pos: 24.5,0.5 parent: 2 - - type: FaxMachine - name: QM Office - - uid: 2394 + - uid: 7389 components: - type: Transform - pos: 12.5,-33.5 + rot: -1.5707963267948966 rad + pos: 25.5,0.5 parent: 2 - - type: FaxMachine - name: CE Office - - uid: 7566 + - uid: 7396 components: - type: Transform - pos: 45.5,24.5 + rot: -1.5707963267948966 rad + pos: 28.5,-10.5 parent: 2 - - type: FaxMachine - name: HoS Office - - uid: 7728 + - uid: 7399 components: - type: Transform - pos: -1.5,-11.5 + rot: 3.141592653589793 rad + pos: 41.5,-0.5 parent: 2 - - type: FaxMachine - name: Law Office - - uid: 7745 + - uid: 7404 components: - type: Transform - pos: 20.5,24.5 + rot: 1.5707963267948966 rad + pos: 40.5,0.5 parent: 2 - - type: FaxMachine - name: Cargo - - uid: 8320 + - uid: 7405 components: - type: Transform - pos: 36.5,25.5 + rot: 1.5707963267948966 rad + pos: 39.5,0.5 parent: 2 - - type: FaxMachine - name: Security - - uid: 9006 + - uid: 7406 components: - type: Transform - pos: 18.5,29.5 + rot: 1.5707963267948966 rad + pos: 38.5,0.5 parent: 2 - - type: FaxMachine - name: Court House - - uid: 10070 + - uid: 7407 components: - type: Transform - pos: 58.5,-9.5 + rot: 1.5707963267948966 rad + pos: 37.5,0.5 parent: 2 - - type: FaxMachine - name: CMO Office - - uid: 10271 + - uid: 7408 components: - type: Transform - pos: 18.5,-2.5 + rot: 1.5707963267948966 rad + pos: 36.5,0.5 parent: 2 - - type: FaxMachine - name: HoP Office - - uid: 11947 + - uid: 7450 components: - type: Transform - pos: 23.5,40.5 + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 parent: 2 - - type: FaxMachine - name: Conference Room -- proto: FaxMachineCaptain - entities: - - uid: 1465 + - uid: 7457 components: - type: Transform - pos: 30.5,41.5 + rot: -1.5707963267948966 rad + pos: 28.5,23.5 parent: 2 -- proto: filingCabinet - entities: - - uid: 12092 + - uid: 7458 components: - type: Transform - pos: 17.5,23.5 + rot: 3.141592653589793 rad + pos: 26.5,19.5 parent: 2 -- proto: filingCabinetDrawerRandom - entities: - - uid: 108 + - uid: 7459 components: - type: Transform - pos: -3.5,-12.5 + rot: -1.5707963267948966 rad + pos: 30.5,23.5 parent: 2 - - uid: 9005 + - uid: 7473 components: - type: Transform - pos: 19.5,29.5 + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 parent: 2 - - uid: 10659 + - uid: 7520 components: - type: Transform - pos: 63.5,11.5 + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 parent: 2 - - uid: 12607 + - uid: 7521 components: - type: Transform - pos: 73.5,-0.5 + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 parent: 2 -- proto: filingCabinetRandom - entities: - - uid: 7834 + - uid: 7522 components: - type: Transform - pos: 41.5,19.5 + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 parent: 2 - - uid: 8445 + - uid: 7523 components: - type: Transform - pos: 36.5,24.5 + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 parent: 2 - - uid: 10276 + - uid: 7524 components: - type: Transform - pos: 15.5,-5.5 + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 parent: 2 -- proto: filingCabinetTallRandom - entities: - - uid: 5198 + - uid: 7525 components: - type: Transform - pos: 60.5,-11.5 + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 parent: 2 -- proto: FireAlarm - entities: - - uid: 5 + - uid: 7531 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,24.5 + pos: -20.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 12522 - - 8237 - - 8238 - - uid: 194 + - uid: 7534 components: - type: Transform - pos: 15.5,11.5 + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 36 - - 6952 - - 11245 - - 11244 - - 12449 - - 6931 - - 6930 - - 11247 - - 11246 - - uid: 1016 + - uid: 7539 components: - type: Transform - pos: 29.5,-34.5 + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 1018 - - 12396 - - 5620 - - 5619 - - 5656 - - 5657 - - 5617 - - 5618 - - 831 - - 802 - - 5621 - - 5622 - - uid: 1657 + - uid: 7541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-8.5 + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 6641 - - 6644 - - 6643 - - 6642 - - 6636 - - 1514 - - 742 - - 873 - - 554 - - 558 - - 1511 - - 1515 - - 1513 - - 12834 - - uid: 2123 + - uid: 7542 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-13.5 + pos: -7.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - - uid: 2474 + - uid: 7543 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,22.5 + pos: -10.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 12559 - - 10413 - - 10414 - - 10415 - - uid: 4049 + - uid: 7567 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-33.5 + pos: 26.5,21.5 parent: 2 - - type: DeviceList - devices: - - 5657 - - 5656 - - 1018 - - 169 - - 1024 - - 5684 - - uid: 5077 + - uid: 7571 components: - type: Transform - pos: 35.5,2.5 + rot: 3.141592653589793 rad + pos: 4.5,11.5 parent: 2 - - type: DeviceList - devices: - - 6800 - - 6799 - - 6790 - - 6801 - - 6802 - - 6803 - - 8317 - - 253 - - 7709 - - 2315 - - 7938 - - 8003 - - 8004 - - 6644 - - 6641 - - 6642 - - 6643 - - 6621 - - 4919 - - 7011 - - 6620 - - 5144 - - uid: 6633 + - uid: 7572 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,-13.5 + pos: 26.5,20.5 parent: 2 - - type: DeviceList - devices: - - 1511 - - 1515 - - 1513 - - 6645 - - 6637 - - uid: 6634 + - uid: 7599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-4.5 + pos: -22.5,-1.5 parent: 2 - - type: DeviceList - devices: - - 1514 - - 742 - - 873 - - 554 - - 558 - - 6638 - - 6523 - - 1510 - - uid: 6683 + - uid: 7602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-8.5 + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 6523 - - 1510 - - 6509 - - 6568 - - 12077 - - 6684 - - uid: 7662 + - uid: 7604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 2125 - - 7740 - - 7895 - - 6854 - - 7663 - - 7889 - - 131 - - 7950 - - uid: 7842 + - uid: 7946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 + pos: 33.5,29.5 parent: 2 - - type: DeviceList - devices: - - 7748 - - 7747 - - 7746 - - 102 - - 7749 - - 7750 - - 7843 - - uid: 8005 + - uid: 8270 components: - type: Transform - pos: 13.5,2.5 + pos: 12.5,14.5 parent: 2 - - type: DeviceList - devices: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - - uid: 8006 + - uid: 8271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,12.5 + pos: 11.5,16.5 parent: 2 - - type: DeviceList - devices: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - - uid: 8007 + - uid: 8275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-2.5 + pos: 11.5,17.5 parent: 2 - - type: DeviceList - devices: - - 8004 - - 8003 - - 7938 - - 2315 - - 7709 - - 253 - - 7950 - - 131 - - 7889 - - 7663 - - 6854 - - 7895 - - 8008 - - 36 - - 6952 - - 11244 - - 11245 - - uid: 8316 + - uid: 8278 components: - type: Transform - pos: 21.5,2.5 + rot: -1.5707963267948966 rad + pos: 12.5,18.5 parent: 2 - - type: DeviceList - devices: - - 6800 - - 6799 - - 6790 - - 6801 - - 6802 - - 6803 - - 8317 - - 253 - - 7709 - - 2315 - - 7938 - - 8003 - - 8004 - - 6644 - - 6641 - - 6642 - - 6643 - - 6621 - - 4919 - - 7011 - - 6620 - - 5144 - - uid: 8920 + - uid: 8279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 + rot: -1.5707963267948966 rad + pos: 13.5,18.5 parent: 2 - - type: DeviceList - devices: - - 8923 - - 6801 - - 6802 - - 6803 - - 6790 - - 6799 - - 6800 - - 10206 - - 10205 - - 5093 - - uid: 9588 + - uid: 8280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,30.5 + rot: 3.141592653589793 rad + pos: 14.5,19.5 parent: 2 - - type: DeviceList - devices: - - 9586 - - 9585 - - 9584 - - 9589 - - uid: 10208 + - uid: 8281 components: - type: Transform - pos: 23.5,-8.5 + rot: 3.141592653589793 rad + pos: 11.5,12.5 parent: 2 - - type: DeviceList - devices: - - 10216 - - 10205 - - 10206 - - uid: 10956 + - uid: 8282 components: - type: Transform - pos: 16.5,-32.5 + rot: 3.141592653589793 rad + pos: 11.5,11.5 parent: 2 - - type: DeviceList - devices: - - 8659 - - uid: 10964 + - uid: 8496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 + pos: 33.5,30.5 parent: 2 - - type: DeviceList - devices: - - 1103 - - 1104 - - 11472 - - 11250 - - 11249 - - 11248 - - 11322 - - 11323 - - 11324 - - 12516 - - 12085 - - 9586 - - 9585 - - 9584 - - uid: 11507 + - uid: 8928 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-2.5 + pos: 33.5,-0.5 parent: 2 - - type: DeviceList - devices: - - 11509 - - 11526 - - 11527 - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 3983 - - 2993 - - 2994 - - 11321 - - 11320 - - 11319 - - 8293 - - 8291 - - 5026 - - 5144 - - 4919 - - 7011 - - 6509 - - 6568 - - uid: 12153 + - uid: 8929 components: - type: Transform - pos: 55.5,4.5 + rot: 3.141592653589793 rad + pos: 33.5,-1.5 parent: 2 - - type: DeviceList - devices: - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 11317 - - 5176 - - 11325 - - 5188 - - 5190 - - 11332 - - 11355 - - 12158 - - 12159 - - 12161 - - 12162 - - uid: 12154 + - uid: 8973 components: - type: Transform - pos: 69.5,3.5 + rot: 3.141592653589793 rad + pos: 33.5,-2.5 parent: 2 - - type: DeviceList - devices: - - 11254 - - 11255 - - 11256 - - 11506 - - 11505 - - 6616 - - 11317 - - 5176 - - 11325 - - 5188 - - 5190 - - 11332 - - 11355 - - 12158 - - 12159 - - 12161 - - 12162 - - uid: 12474 + - uid: 8974 components: - type: Transform - pos: 19.5,16.5 + rot: 3.141592653589793 rad + pos: 33.5,-3.5 parent: 2 - - type: DeviceList - devices: - - 11247 - - 11246 - - 12472 - - 11264 - - 11263 - - 6928 - - 6929 - - 6930 - - 6931 - - uid: 12477 + - uid: 8975 components: - type: Transform - pos: 28.5,16.5 + rot: 3.141592653589793 rad + pos: 33.5,-4.5 parent: 2 - - type: DeviceList - devices: - - 11264 - - 11263 - - 1103 - - 1104 - - 11472 - - 12475 - - 6928 - - 6929 - - 3457 - - 3458 - - 3459 - - 9352 - - 9353 - - 9351 - - uid: 12483 + - uid: 8976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,8.5 + rot: 3.141592653589793 rad + pos: 33.5,-5.5 parent: 2 - - type: DeviceList - devices: - - 11746 - - 8293 - - 8291 - - 5026 - - 11321 - - 11320 - - 11319 - - 11251 - - 11252 - - 11253 - - 9364 - - 9363 - - 9362 - - uid: 12487 + - uid: 8977 components: - type: Transform - pos: 44.5,16.5 + rot: 3.141592653589793 rad + pos: 33.5,-6.5 parent: 2 - - type: DeviceList - devices: - - 12485 - - 9364 - - 9363 - - 9362 - - 11251 - - 11252 - - 11253 - - 11413 - - 9351 - - 9353 - - 9352 - - 12087 - - uid: 12489 + - uid: 8978 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-8.5 + pos: 33.5,-7.5 parent: 2 - - type: DeviceList - devices: - - 12077 - - 11858 - - 12075 - - 12490 - - 12076 - - uid: 12517 + - uid: 8979 components: - type: Transform - pos: 22.5,26.5 + rot: 3.141592653589793 rad + pos: 33.5,-8.5 parent: 2 - - type: DeviceList - devices: - - 11250 - - 11249 - - 11248 - - 11322 - - 11323 - - 11324 - - 12518 - - uid: 12521 + - uid: 9405 components: - type: Transform - pos: 18.5,25.5 + rot: 1.5707963267948966 rad + pos: 31.5,42.5 parent: 2 - - type: DeviceList - devices: - - 12519 - - 12086 - - 8237 - - 8238 - - uid: 12549 + - uid: 9406 components: - type: Transform - pos: 49.5,22.5 + pos: 32.5,43.5 parent: 2 - - type: DeviceList - devices: - - 12550 - - 12087 - - uid: 12556 + - uid: 9407 components: - type: Transform - pos: 61.5,16.5 + pos: 32.5,44.5 parent: 2 - - type: DeviceList - devices: - - 10416 - - 10417 - - 10418 - - 12554 - - 1252 - - 1162 - - 6473 - - uid: 12557 + - uid: 9408 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,19.5 + pos: 31.5,45.5 parent: 2 - - type: DeviceList - devices: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 -- proto: FireAxeCabinetFilled - entities: - - uid: 1571 + - uid: 9409 components: - type: Transform - pos: 31.5,-22.5 + rot: -1.5707963267948966 rad + pos: 30.5,45.5 parent: 2 - - uid: 5428 + - uid: 9410 components: - type: Transform - pos: 30.514431,43.46267 + rot: -1.5707963267948966 rad + pos: 29.5,45.5 parent: 2 -- proto: FireExtinguisher - entities: - - uid: 5722 + - uid: 9412 components: - type: Transform - pos: 73.5,-12.5 + pos: 28.5,43.5 parent: 2 - - uid: 10797 + - uid: 9413 components: - type: Transform - pos: 80.48026,-16.378305 + pos: 28.5,42.5 parent: 2 - - uid: 10826 + - uid: 9414 components: - type: Transform - pos: 81.454414,9.641975 + pos: 28.5,41.5 parent: 2 - - uid: 10850 + - uid: 9415 components: - type: Transform - pos: 45.471096,27.597694 + pos: 28.5,40.5 parent: 2 -- proto: FirelockEdge - entities: - - uid: 36 + - uid: 9416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 + pos: 28.5,39.5 parent: 2 - - uid: 102 + - uid: 9417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 + pos: 28.5,38.5 parent: 2 - - uid: 131 + - uid: 9418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 + pos: 28.5,37.5 parent: 2 - - uid: 253 + - uid: 9419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 + pos: 28.5,36.5 parent: 2 - - uid: 802 + - uid: 9421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-38.5 + pos: 26.5,24.5 parent: 2 - - uid: 831 + - uid: 9422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-38.5 + pos: 26.5,25.5 parent: 2 - - uid: 1103 + - uid: 9423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,15.5 + pos: 26.5,26.5 parent: 2 - - uid: 1104 + - uid: 9424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,15.5 + pos: 26.5,27.5 parent: 2 - - uid: 2315 + - uid: 9425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,1.5 + pos: 26.5,28.5 parent: 2 - - uid: 2993 + - uid: 9426 components: - type: Transform - pos: 50.5,1.5 + pos: 26.5,29.5 parent: 2 - - uid: 2994 + - uid: 9427 components: - type: Transform - pos: 49.5,1.5 + pos: 26.5,30.5 parent: 2 - - uid: 3457 + - uid: 9428 components: - type: Transform - pos: 25.5,17.5 + pos: 26.5,31.5 parent: 2 - - uid: 3458 + - uid: 9429 components: - type: Transform - pos: 26.5,17.5 + pos: 26.5,32.5 parent: 2 - - uid: 3459 + - uid: 9430 components: - type: Transform - pos: 27.5,17.5 + pos: 26.5,33.5 parent: 2 - - uid: 3983 + - uid: 9709 components: - type: Transform - pos: 51.5,1.5 + rot: 1.5707963267948966 rad + pos: 45.5,-0.5 parent: 2 - - uid: 4557 + - uid: 10256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-38.5 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - - uid: 4558 + - uid: 10257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-38.5 + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 parent: 2 - - uid: 4560 + - uid: 10258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-38.5 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 parent: 2 - - uid: 4561 + - uid: 10259 components: - type: Transform - pos: 38.5,-36.5 + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 parent: 2 - - uid: 4565 + - uid: 10260 components: - type: Transform - pos: 39.5,-36.5 + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 parent: 2 - - uid: 4566 + - uid: 10261 components: - type: Transform - pos: 40.5,-36.5 + rot: 1.5707963267948966 rad + pos: 14.5,-3.5 parent: 2 - - uid: 5026 + - uid: 10262 components: - type: Transform - pos: 42.5,3.5 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 parent: 2 - - uid: 5093 + - uid: 10263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 + pos: 12.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8920 - - uid: 5176 + - uid: 10264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-3.5 + pos: 12.5,-1.5 parent: 2 - - uid: 5188 + - uid: 10265 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-3.5 + pos: 12.5,-0.5 parent: 2 - - uid: 5190 + - uid: 10587 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-3.5 + pos: 54.5,12.5 parent: 2 - - uid: 5617 + - uid: 10588 components: - type: Transform - pos: 31.5,-36.5 + rot: 3.141592653589793 rad + pos: 54.5,13.5 parent: 2 - - uid: 5618 + - uid: 10589 components: - type: Transform - pos: 32.5,-36.5 + rot: 3.141592653589793 rad + pos: 58.5,21.5 parent: 2 - - uid: 5619 + - uid: 10590 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-30.5 + pos: 58.5,20.5 parent: 2 - - uid: 5620 + - uid: 10591 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-30.5 + pos: 58.5,19.5 parent: 2 - - uid: 5621 + - uid: 10592 components: - type: Transform - pos: 17.5,-28.5 + rot: 3.141592653589793 rad + pos: 58.5,17.5 parent: 2 - - uid: 5622 + - uid: 10593 components: - type: Transform - pos: 18.5,-28.5 + rot: 3.141592653589793 rad + pos: 58.5,16.5 parent: 2 - - uid: 5899 + - uid: 10594 components: - type: Transform - pos: 4.5,-27.5 + rot: 3.141592653589793 rad + pos: 58.5,15.5 parent: 2 - - uid: 5900 + - uid: 10595 components: - type: Transform - pos: 5.5,-27.5 + rot: 1.5707963267948966 rad + pos: 57.5,14.5 parent: 2 - - uid: 6616 + - uid: 10596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-1.5 + rot: 1.5707963267948966 rad + pos: 56.5,14.5 parent: 2 - - uid: 6641 + - uid: 10597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-2.5 + rot: 1.5707963267948966 rad + pos: 55.5,14.5 parent: 2 - - uid: 6642 + - uid: 10603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-2.5 + rot: 1.5707963267948966 rad + pos: 51.5,18.5 parent: 2 - - uid: 6643 + - uid: 10604 components: - type: Transform - pos: 35.5,-0.5 + rot: 1.5707963267948966 rad + pos: 52.5,18.5 parent: 2 - - uid: 6644 + - uid: 10605 components: - type: Transform - pos: 33.5,-0.5 + rot: 1.5707963267948966 rad + pos: 53.5,18.5 parent: 2 - - uid: 6790 + - uid: 10606 components: - type: Transform - pos: 27.5,-1.5 + rot: 1.5707963267948966 rad + pos: 54.5,18.5 parent: 2 - - uid: 6799 + - uid: 10607 components: - type: Transform - pos: 26.5,-1.5 + rot: 1.5707963267948966 rad + pos: 55.5,18.5 parent: 2 - - uid: 6800 + - uid: 10608 components: - type: Transform - pos: 25.5,-1.5 + rot: 1.5707963267948966 rad + pos: 56.5,18.5 parent: 2 - - uid: 6801 + - uid: 10609 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-3.5 + rot: 1.5707963267948966 rad + pos: 57.5,18.5 parent: 2 - - uid: 6802 + - uid: 10610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-3.5 - parent: 2 - - uid: 6803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 + rot: 1.5707963267948966 rad + pos: 53.5,14.5 parent: 2 - - uid: 6854 + - uid: 10611 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-0.5 + pos: 52.5,14.5 parent: 2 - - uid: 6928 + - uid: 10612 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,13.5 + pos: 51.5,14.5 parent: 2 - - uid: 6929 + - uid: 10613 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,14.5 + pos: 50.5,14.5 parent: 2 - - uid: 6930 + - uid: 10614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,10.5 + rot: 1.5707963267948966 rad + pos: 49.5,14.5 parent: 2 - - uid: 6931 + - uid: 10615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,10.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - uid: 6952 + - uid: 10616 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,10.5 + pos: 47.5,14.5 parent: 2 - - uid: 7663 + - uid: 10617 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: 46.5,14.5 parent: 2 - - uid: 7709 + - uid: 10618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,0.5 + rot: 1.5707963267948966 rad + pos: 45.5,14.5 parent: 2 - - uid: 7746 + - uid: 10619 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-12.5 + pos: 44.5,14.5 parent: 2 - - uid: 7747 + - uid: 10620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-13.5 + pos: 43.5,14.5 parent: 2 - - uid: 7748 + - uid: 10621 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-14.5 + pos: 42.5,14.5 parent: 2 - - uid: 7749 + - uid: 10623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 + pos: 41.5,13.5 parent: 2 - - uid: 7750 + - uid: 10624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 + pos: 41.5,12.5 parent: 2 - - uid: 7889 + - uid: 10625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 + pos: 41.5,11.5 parent: 2 - - uid: 7895 + - uid: 10626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + pos: 41.5,10.5 parent: 2 - - uid: 7938 + - uid: 10627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,1.5 + pos: 41.5,9.5 parent: 2 - - uid: 7950 + - uid: 10628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 41.5,8.5 parent: 2 - - uid: 8003 + - uid: 10629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,0.5 + pos: 41.5,7.5 parent: 2 - - uid: 8004 + - uid: 10630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 + pos: 41.5,6.5 parent: 2 - - uid: 8291 + - uid: 10631 components: - type: Transform - pos: 41.5,3.5 + pos: 41.5,5.5 parent: 2 - - uid: 8293 + - uid: 10632 components: - type: Transform - pos: 40.5,3.5 + pos: 41.5,4.5 parent: 2 - - uid: 9362 + - uid: 10633 components: - type: Transform - pos: 40.5,13.5 + pos: 41.5,3.5 parent: 2 - - uid: 9363 + - uid: 10634 components: - type: Transform - pos: 41.5,13.5 + pos: 41.5,2.5 parent: 2 - - uid: 9364 + - uid: 11441 components: - type: Transform - pos: 42.5,13.5 + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 parent: 2 - - uid: 9584 + - uid: 11442 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,28.5 + pos: 56.5,-8.5 parent: 2 - - uid: 9585 + - uid: 11443 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,28.5 + pos: 56.5,-7.5 parent: 2 - - uid: 9586 + - uid: 11444 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,28.5 + rot: 1.5707963267948966 rad + pos: 55.5,-6.5 parent: 2 - - uid: 11244 + - uid: 11445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,10.5 + rot: 1.5707963267948966 rad + pos: 54.5,-6.5 parent: 2 - - uid: 11245 + - uid: 11446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 + pos: 56.5,-5.5 parent: 2 - - uid: 11246 + - uid: 11447 components: - type: Transform - pos: 18.5,12.5 + pos: 56.5,-4.5 parent: 2 - - uid: 11247 + - uid: 11448 components: - type: Transform - pos: 19.5,12.5 + pos: 56.5,-3.5 parent: 2 - - uid: 11248 + - uid: 11449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,22.5 + pos: 56.5,-2.5 parent: 2 - - uid: 11249 + - uid: 11450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,21.5 + pos: 56.5,-1.5 parent: 2 - - uid: 11250 + - uid: 11458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,20.5 + rot: -1.5707963267948966 rad + pos: 53.5,3.5 parent: 2 - - uid: 11251 + - uid: 11459 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,11.5 + pos: 54.5,2.5 parent: 2 - - uid: 11252 + - uid: 11461 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,11.5 + pos: 54.5,0.5 parent: 2 - - uid: 11253 + - uid: 11463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,11.5 + rot: 1.5707963267948966 rad + pos: 53.5,-0.5 parent: 2 - - uid: 11254 + - uid: 11464 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-1.5 + pos: 52.5,-0.5 parent: 2 - - uid: 11255 + - uid: 11466 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-0.5 + pos: 51.5,-0.5 parent: 2 - - uid: 11256 + - uid: 11467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,0.5 + pos: 50.5,-0.5 parent: 2 - - uid: 11263 + - uid: 11468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 + rot: 1.5707963267948966 rad + pos: 49.5,-0.5 parent: 2 - - uid: 11264 + - uid: 11469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,13.5 + rot: 1.5707963267948966 rad + pos: 48.5,-0.5 parent: 2 - - uid: 11317 + - uid: 11470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-3.5 + rot: 1.5707963267948966 rad + pos: 47.5,-0.5 parent: 2 - - uid: 11319 + - uid: 11474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,1.5 + rot: 1.5707963267948966 rad + pos: 44.5,-0.5 parent: 2 - - uid: 11320 + - uid: 11479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,1.5 + rot: -1.5707963267948966 rad + pos: 80.5,1.5 parent: 2 - - uid: 11321 + - uid: 11480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,1.5 + rot: -1.5707963267948966 rad + pos: 79.5,1.5 parent: 2 - - uid: 11322 + - uid: 11481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,23.5 + rot: -1.5707963267948966 rad + pos: 78.5,1.5 parent: 2 - - uid: 11323 + - uid: 11482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,24.5 + rot: -1.5707963267948966 rad + pos: 77.5,1.5 parent: 2 - - uid: 11324 + - uid: 11483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,25.5 + rot: -1.5707963267948966 rad + pos: 76.5,1.5 parent: 2 - - uid: 11325 + - uid: 11484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-3.5 + rot: -1.5707963267948966 rad + pos: 75.5,1.5 parent: 2 - - uid: 11332 + - uid: 11485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-3.5 + rot: -1.5707963267948966 rad + pos: 74.5,1.5 parent: 2 - - uid: 11355 + - uid: 11486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-3.5 + rot: -1.5707963267948966 rad + pos: 73.5,1.5 parent: 2 - - uid: 11413 + - uid: 11487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,12.5 + rot: -1.5707963267948966 rad + pos: 72.5,1.5 parent: 2 - - uid: 11472 + - uid: 11488 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,15.5 + rot: -1.5707963267948966 rad + pos: 71.5,1.5 parent: 2 - - uid: 11505 + - uid: 11489 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-0.5 + pos: 70.5,1.5 parent: 2 - - uid: 11506 + - uid: 11490 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,0.5 + pos: 69.5,1.5 parent: 2 - - uid: 11526 + - uid: 11491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-2.5 + rot: -1.5707963267948966 rad + pos: 68.5,1.5 parent: 2 - - uid: 11527 + - uid: 11492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-2.5 + rot: -1.5707963267948966 rad + pos: 67.5,1.5 parent: 2 - - uid: 12142 + - uid: 11493 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,33.5 + pos: 66.5,1.5 parent: 2 - - uid: 12143 + - uid: 11494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,32.5 + pos: 65.5,1.5 parent: 2 - - uid: 12144 + - uid: 11495 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,31.5 + pos: 64.5,1.5 parent: 2 - - uid: 12158 + - uid: 11496 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,0.5 + pos: 63.5,1.5 parent: 2 - - uid: 12159 + - uid: 11497 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,1.5 + pos: 62.5,1.5 parent: 2 - - uid: 12161 + - uid: 11498 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,2.5 + pos: 61.5,1.5 parent: 2 - - uid: 12834 + - uid: 11499 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-5.5 + pos: 60.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 1657 -- proto: FirelockElectronics - entities: - - uid: 1045 + - uid: 11500 components: - type: Transform - pos: 32.473473,-30.370909 + rot: -1.5707963267948966 rad + pos: 59.5,1.5 parent: 2 -- proto: FirelockGlass - entities: - - uid: 169 + - uid: 11501 components: - type: Transform - pos: 21.5,-29.5 + rot: -1.5707963267948966 rad + pos: 58.5,1.5 parent: 2 - - uid: 554 + - uid: 11502 components: - type: Transform - pos: 37.5,-4.5 + rot: -1.5707963267948966 rad + pos: 57.5,1.5 parent: 2 - - uid: 558 + - uid: 11503 components: - type: Transform - pos: 37.5,-3.5 + rot: -1.5707963267948966 rad + pos: 56.5,1.5 parent: 2 - - uid: 742 + - uid: 11504 components: - type: Transform - pos: 37.5,-6.5 + rot: -1.5707963267948966 rad + pos: 55.5,1.5 parent: 2 - - uid: 873 + - uid: 11776 components: - type: Transform - pos: 37.5,-5.5 + rot: 1.5707963267948966 rad + pos: 55.5,-0.5 parent: 2 - - uid: 1018 + - uid: 12425 components: - type: Transform - pos: 21.5,-33.5 + rot: 3.141592653589793 rad + pos: 46.5,-1.5 parent: 2 - - uid: 1024 + - uid: 12458 components: - type: Transform - pos: 31.5,-29.5 + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 parent: 2 - - uid: 1162 + - uid: 12460 components: - type: Transform - pos: 53.5,14.5 + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 parent: 2 - - uid: 1252 + - uid: 12461 components: - type: Transform - pos: 53.5,13.5 + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 parent: 2 - - uid: 1510 + - uid: 12464 components: - type: Transform - pos: 40.5,-7.5 + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 parent: 2 - - uid: 1511 + - uid: 12465 components: - type: Transform - pos: 34.5,-8.5 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 parent: 2 - - uid: 1513 + - uid: 12466 components: - type: Transform - pos: 36.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 parent: 2 - - uid: 1514 + - uid: 12467 components: - type: Transform - pos: 37.5,-7.5 + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 parent: 2 - - uid: 1515 + - uid: 12468 components: - type: Transform - pos: 35.5,-8.5 + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 parent: 2 - - uid: 4919 + - uid: 12469 components: - type: Transform - pos: 39.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 parent: 2 - - uid: 5144 + - uid: 12482 components: - type: Transform - pos: 39.5,1.5 + pos: 27.5,2.5 parent: 2 - - uid: 5656 + - uid: 12491 components: - type: Transform - pos: 26.5,-34.5 + pos: 27.5,1.5 parent: 2 - - uid: 5657 + - uid: 12837 components: - type: Transform - pos: 31.5,-33.5 + pos: 26.5,-27.5 parent: 2 - - uid: 6473 + - uid: 12838 components: - type: Transform - pos: 53.5,15.5 + pos: 26.5,-26.5 parent: 2 - - uid: 6509 + - uid: 13586 components: - type: Transform - pos: 43.5,-2.5 + pos: 33.5,28.5 parent: 2 - - uid: 6523 + - uid: 13587 components: - type: Transform - pos: 40.5,-6.5 + pos: 33.5,27.5 parent: 2 - - uid: 6568 + - uid: 13588 components: - type: Transform - pos: 44.5,-2.5 + pos: 33.5,26.5 parent: 2 - - uid: 6645 + - uid: 13589 components: - type: Transform - pos: 38.5,-8.5 + pos: 33.5,25.5 parent: 2 - - uid: 7011 + - uid: 13590 components: - type: Transform - pos: 39.5,-0.5 + pos: 33.5,24.5 parent: 2 - - uid: 7740 + - uid: 14130 components: - type: Transform - pos: -2.5,-2.5 + rot: 1.5707963267948966 rad + pos: 76.5,23.5 parent: 2 - - uid: 8237 + - uid: 14158 components: - type: Transform - pos: 16.5,22.5 + rot: 1.5707963267948966 rad + pos: 75.5,23.5 parent: 2 - - uid: 8238 + - uid: 14176 components: - type: Transform - pos: 16.5,20.5 + rot: 1.5707963267948966 rad + pos: 77.5,23.5 parent: 2 - - uid: 8823 + - uid: 14177 components: - type: Transform - pos: 49.5,-19.5 + rot: 1.5707963267948966 rad + pos: 78.5,23.5 parent: 2 - - uid: 9351 + - uid: 14179 components: - type: Transform - pos: 38.5,13.5 + rot: 3.141592653589793 rad + pos: 79.5,24.5 parent: 2 - - uid: 9352 + - uid: 14180 components: - type: Transform - pos: 38.5,15.5 + rot: 3.141592653589793 rad + pos: 79.5,25.5 parent: 2 - - uid: 9353 + - uid: 14181 components: - type: Transform - pos: 38.5,14.5 + rot: 3.141592653589793 rad + pos: 79.5,26.5 parent: 2 - - uid: 10205 + - uid: 14182 components: - type: Transform - pos: 24.5,-11.5 + rot: 3.141592653589793 rad + pos: 79.5,27.5 parent: 2 - - uid: 10206 + - uid: 14183 components: - type: Transform - pos: 24.5,-10.5 + rot: 3.141592653589793 rad + pos: 79.5,28.5 parent: 2 - - uid: 10413 + - uid: 14184 components: - type: Transform - pos: 58.5,21.5 + rot: 3.141592653589793 rad + pos: 79.5,29.5 parent: 2 - - uid: 10414 + - uid: 15009 components: - type: Transform - pos: 59.5,21.5 + rot: 3.141592653589793 rad + pos: 46.5,-2.5 parent: 2 - - uid: 10415 + - uid: 15037 components: - type: Transform - pos: 60.5,21.5 + rot: 3.141592653589793 rad + pos: 46.5,-3.5 parent: 2 - - uid: 10416 + - uid: 15038 components: - type: Transform - pos: 58.5,16.5 + rot: 3.141592653589793 rad + pos: 46.5,-4.5 parent: 2 - - uid: 10417 + - uid: 15039 components: - type: Transform - pos: 59.5,16.5 + rot: 3.141592653589793 rad + pos: 46.5,-5.5 parent: 2 - - uid: 10418 +- proto: DisposalTrunk + entities: + - uid: 183 components: - type: Transform - pos: 60.5,16.5 + rot: 1.5707963267948966 rad + pos: 57.5,22.5 parent: 2 - - uid: 10735 + - uid: 184 components: - type: Transform - pos: 61.5,-8.5 + rot: 3.141592653589793 rad + pos: 50.5,17.5 parent: 2 - - uid: 11016 + - uid: 358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-23.5 + pos: -1.5,0.5 parent: 2 - - uid: 11243 + - uid: 1227 components: - type: Transform - pos: 16.5,-2.5 + rot: 3.141592653589793 rad + pos: 34.5,-10.5 parent: 2 - - uid: 11265 + - uid: 2320 components: - type: Transform - pos: 7.5,-15.5 + pos: 4.5,13.5 parent: 2 - - uid: 11266 + - uid: 5143 components: - type: Transform - pos: 7.5,-16.5 + pos: 32.5,2.5 parent: 2 - - uid: 11267 + - uid: 5692 components: - type: Transform - pos: 1.5,-14.5 + pos: 16.5,-33.5 parent: 2 - - uid: 11268 + - uid: 5693 components: - type: Transform - pos: 0.5,-14.5 + rot: -1.5707963267948966 rad + pos: 27.5,-33.5 parent: 2 - - uid: 11271 + - uid: 5694 components: - type: Transform - pos: 52.5,-16.5 + rot: -1.5707963267948966 rad + pos: 27.5,-25.5 parent: 2 - - uid: 11272 + - uid: 5839 components: - type: Transform - pos: 47.5,-17.5 + pos: 2.5,-28.5 parent: 2 - - uid: 11273 + - uid: 5878 components: - type: Transform - pos: 43.5,43.5 + rot: 1.5707963267948966 rad + pos: 17.5,7.5 parent: 2 - - uid: 11274 + - uid: 5969 components: - type: Transform - pos: 44.5,43.5 + pos: 22.5,15.5 parent: 2 - - uid: 11279 + - uid: 6008 components: - type: Transform - pos: 40.5,42.5 + rot: 1.5707963267948966 rad + pos: 30.5,42.5 parent: 2 - - uid: 11280 + - uid: 7288 components: - type: Transform - pos: 40.5,41.5 + rot: -1.5707963267948966 rad + pos: 36.5,-2.5 parent: 2 - - uid: 11283 + - uid: 7392 components: - type: Transform - pos: 44.5,40.5 + rot: 3.141592653589793 rad + pos: 29.5,-11.5 parent: 2 - - uid: 11284 + - uid: 7398 components: - type: Transform - pos: 45.5,40.5 + rot: 3.141592653589793 rad + pos: 41.5,-1.5 parent: 2 - - uid: 11285 + - uid: 7540 components: - type: Transform - pos: 50.5,48.5 + rot: 3.141592653589793 rad + pos: -22.5,-2.5 parent: 2 - - uid: 11286 + - uid: 8849 components: - type: Transform - pos: 62.5,48.5 + rot: -1.5707963267948966 rad + pos: 15.5,23.5 parent: 2 - - uid: 11287 + - uid: 9404 components: - type: Transform - pos: 72.5,18.5 + rot: 1.5707963267948966 rad + pos: 27.5,44.5 parent: 2 - - uid: 11288 + - uid: 9420 components: - type: Transform - pos: 74.5,14.5 + rot: -1.5707963267948966 rad + pos: 28.5,34.5 parent: 2 - - uid: 11294 + - uid: 10254 components: - type: Transform - pos: 86.5,-13.5 + pos: 20.5,-2.5 parent: 2 - - uid: 11295 + - uid: 10585 components: - type: Transform - pos: 83.5,-15.5 + rot: -1.5707963267948966 rad + pos: 55.5,11.5 parent: 2 - - uid: 11296 + - uid: 11434 components: - type: Transform - pos: 72.5,-15.5 + rot: 3.141592653589793 rad + pos: 53.5,-7.5 parent: 2 - - uid: 11297 + - uid: 11437 components: - type: Transform - pos: 83.5,-16.5 + rot: 1.5707963267948966 rad + pos: 54.5,-9.5 parent: 2 - - uid: 11298 + - uid: 11457 components: - type: Transform - pos: 72.5,-16.5 + pos: 52.5,4.5 parent: 2 - - uid: 11299 + - uid: 11478 components: - type: Transform - pos: 71.5,-12.5 + rot: -1.5707963267948966 rad + pos: 81.5,1.5 parent: 2 - - uid: 11300 + - uid: 12479 components: - type: Transform - pos: 58.5,-19.5 + pos: 27.5,3.5 parent: 2 - - uid: 11301 + - uid: 13581 components: - type: Transform - pos: 68.5,-19.5 + rot: 1.5707963267948966 rad + pos: 32.5,31.5 parent: 2 - - uid: 11329 + - uid: 14126 components: - type: Transform - pos: 12.5,-21.5 + rot: 1.5707963267948966 rad + pos: 74.5,23.5 parent: 2 - - uid: 11334 + - uid: 14185 components: - type: Transform - pos: 7.5,-23.5 + pos: 79.5,30.5 parent: 2 - - uid: 11335 + - uid: 15040 components: - type: Transform - pos: 7.5,-24.5 + rot: -1.5707963267948966 rad + pos: 47.5,-6.5 parent: 2 - - uid: 11349 +- proto: DisposalUnit + entities: + - uid: 374 components: - type: Transform - pos: 51.5,-16.5 + pos: 15.5,23.5 parent: 2 - - uid: 11351 + - uid: 394 components: - type: Transform - pos: 88.5,-17.5 + pos: 4.5,13.5 parent: 2 - - uid: 11353 + - uid: 469 components: - type: Transform - pos: 67.5,25.5 + pos: -22.5,-2.5 parent: 2 - - uid: 11354 + - uid: 1150 components: - type: Transform - pos: 66.5,25.5 + pos: 25.5,5.5 parent: 2 - - uid: 11379 + - uid: 1229 components: - type: Transform - pos: 72.5,11.5 + pos: 34.5,-10.5 parent: 2 - - uid: 11383 + - uid: 1321 components: - type: Transform - pos: 72.5,10.5 + pos: 29.5,-11.5 parent: 2 - - uid: 11384 + - uid: 1531 components: - type: Transform - pos: 65.5,7.5 + pos: 36.5,-2.5 parent: 2 - - uid: 11385 + - uid: 4697 components: - type: Transform - pos: 66.5,7.5 + pos: 22.5,15.5 parent: 2 - - uid: 11386 + - uid: 4979 components: - type: Transform - pos: 76.5,12.5 + pos: 27.5,44.5 parent: 2 - - uid: 11391 + - uid: 5047 components: - type: Transform - pos: 23.5,9.5 + pos: 52.5,4.5 parent: 2 - - uid: 11392 + - uid: 5075 components: - type: Transform - pos: 22.5,9.5 + pos: 53.5,-7.5 parent: 2 - - uid: 11393 + - uid: 5150 components: - type: Transform - pos: 21.5,3.5 + pos: 32.5,2.5 parent: 2 - - uid: 11412 + - uid: 5209 components: - type: Transform - pos: 48.5,6.5 + pos: 70.5,8.5 parent: 2 - - uid: 11531 + - uid: 5228 components: - type: Transform - pos: 73.5,14.5 + pos: 82.5,-3.5 parent: 2 - - uid: 11754 + - uid: 5341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 + pos: 57.5,22.5 parent: 2 - - uid: 11810 + - uid: 5392 components: - type: Transform - pos: 30.5,11.5 + pos: 55.5,11.5 parent: 2 - - uid: 11858 + - uid: 5411 components: - type: Transform - pos: 50.5,-3.5 + pos: 30.5,42.5 parent: 2 - - uid: 12075 + - uid: 6427 components: - type: Transform - pos: 54.5,-4.5 + pos: 17.5,7.5 parent: 2 - - uid: 12076 + - uid: 7297 components: - type: Transform - pos: 54.5,-5.5 + pos: 27.5,-33.5 parent: 2 - - uid: 12077 + - uid: 7300 components: - type: Transform - pos: 48.5,-7.5 + pos: 16.5,-33.5 parent: 2 - - uid: 12085 + - uid: 7397 components: - type: Transform - pos: 28.5,25.5 + pos: 41.5,-1.5 parent: 2 - - uid: 12086 + - uid: 8361 components: - type: Transform - pos: 21.5,22.5 + pos: 27.5,-25.5 parent: 2 - - uid: 12087 + - uid: 8435 components: - type: Transform - pos: 48.5,18.5 + pos: 32.5,31.5 parent: 2 - - uid: 12394 + - uid: 8848 components: - type: Transform - pos: 49.5,-18.5 + pos: 105.5,-10.5 parent: 2 - - uid: 13442 + - uid: 8857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 + pos: 100.5,-10.5 parent: 2 - - uid: 13452 + - uid: 9431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-24.5 + pos: 28.5,34.5 parent: 2 -- proto: Fireplace - entities: - - uid: 380 + - uid: 10069 components: - type: Transform - pos: 36.5,43.5 + pos: 54.5,-9.5 parent: 2 -- proto: Flash - entities: - - uid: 4987 + - uid: 10118 components: - type: Transform - pos: 30.4376,48.510555 + pos: 50.5,17.5 parent: 2 -- proto: FlashlightLantern - entities: - - uid: 5714 + - uid: 10253 components: - type: Transform - pos: 76.49909,-12.519633 + pos: 20.5,-2.5 parent: 2 - - uid: 10814 + - uid: 11433 components: - type: Transform - pos: 81.401146,12.491636 + pos: 81.5,1.5 parent: 2 -- proto: Floodlight - entities: - - uid: 4500 + - uid: 12492 components: - type: Transform - pos: 34.356434,-54.33789 + pos: 27.5,3.5 parent: 2 -- proto: FloorDrain - entities: - - uid: 741 + - uid: 13277 components: - type: Transform - pos: 30.5,-11.5 + pos: -1.5,0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 1859 + - uid: 14125 components: - type: Transform - pos: 12.5,12.5 + pos: 74.5,23.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 5254 + - uid: 14186 components: - type: Transform - pos: 78.5,-0.5 + pos: 79.5,30.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 6865 + - uid: 15042 components: - type: Transform - pos: 40.5,35.5 + pos: 47.5,-6.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 8960 +- proto: DisposalYJunction + entities: + - uid: 2442 components: - type: Transform - pos: 102.5,-13.5 + pos: 5.5,10.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 10447 + - uid: 5696 components: - type: Transform - pos: 51.5,15.5 + rot: 3.141592653589793 rad + pos: 26.5,-28.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11900 + - uid: 5801 components: - type: Transform - pos: 78.5,10.5 + rot: -1.5707963267948966 rad + pos: 26.5,-21.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 12288 + - uid: 7305 components: - type: Transform - pos: 51.5,-5.5 + pos: 26.5,0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 12290 + - uid: 7356 components: - type: Transform - pos: 4.5,-4.5 + rot: -1.5707963267948966 rad + pos: 19.5,10.5 parent: 2 - - type: Fixtures - fixtures: {} -- proto: FoodBanana - entities: - - uid: 9595 + - uid: 8820 components: - type: Transform - pos: 27.618341,6.6818295 + rot: 1.5707963267948966 rad + pos: 5.5,0.5 parent: 2 - - uid: 9596 +- proto: DogBed + entities: + - uid: 8393 components: - type: Transform - pos: 27.618341,6.6818295 + pos: 36.5,19.5 parent: 2 - - uid: 9597 + - uid: 9716 components: - type: Transform - pos: 27.618341,6.6818295 + pos: 51.5,-8.5 parent: 2 - - uid: 9598 + - uid: 10280 components: - type: Transform - pos: 27.618341,6.6818295 + pos: 19.5,-5.5 parent: 2 - - uid: 9599 + - uid: 14739 components: - type: Transform - pos: 27.618341,6.6818295 + pos: 5.5,15.5 parent: 2 -- proto: FoodBowlBig +- proto: DonkpocketBoxSpawner entities: - - uid: 5507 + - uid: 11431 components: - type: Transform - pos: 70.488464,33.529522 + pos: 76.5,4.5 parent: 2 -- proto: FoodBowlBigTrash +- proto: DoorElectronics entities: - - uid: 5881 + - uid: 1046 components: - type: Transform - pos: -0.3447714,-23.649889 + pos: 32.489098,-30.527159 parent: 2 -- proto: FoodBoxDonkpocket - entities: - - uid: 8862 + - uid: 1047 components: - type: Transform - pos: 107.64995,-11.344688 + pos: 32.489098,-30.324034 parent: 2 -- proto: FoodBoxDonkpocketBerry - entities: - - uid: 8863 + - uid: 5440 components: - type: Transform - pos: 107.3062,-11.344688 + pos: 9.474669,-14.422774 parent: 2 -- proto: FoodBoxDonkpocketPizza +- proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 8861 + - uid: 5530 components: - type: Transform - pos: 107.35307,-10.954063 + pos: 74.515,18.613554 parent: 2 -- proto: FoodBoxDonut + - type: GasTank + toggleActionEntity: 5500 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 5500 +- proto: DresserCaptainFilled entities: - - uid: 4982 + - uid: 10279 components: - type: Transform - pos: 33.510082,46.65118 + pos: 37.5,40.5 parent: 2 - - uid: 6761 +- proto: DresserChiefEngineerFilled + entities: + - uid: 13469 components: - type: Transform - pos: 37.49929,-7.4188547 + pos: 9.5,-40.5 parent: 2 -- proto: FoodBreadBananaSlice +- proto: DresserChiefMedicalOfficerFilled entities: - - uid: 8651 + - uid: 1179 components: - type: Transform - rot: 4.008621544926427E-05 rad - pos: 83.58996,8.734995 + pos: 58.5,-10.5 parent: 2 -- proto: FoodCakeChocolateSlice + - type: Storage + storedItems: + 542: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 542 +- proto: DresserHeadOfPersonnelFilled entities: - - uid: 10832 + - uid: 9438 components: - type: Transform - rot: 3.7838042771909386E-05 rad - pos: 70.43763,11.734996 + pos: 18.5,-5.5 parent: 2 -- proto: FoodCartCold + - type: Storage + storedItems: + 544: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 544 +- proto: DresserHeadOfSecurityFilled entities: - - uid: 1551 + - uid: 386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 + pos: 45.5,22.5 parent: 2 -- proto: FoodCondimentBottleEnzyme +- proto: DresserQuarterMasterFilled entities: - - uid: 296 + - uid: 14963 components: - type: Transform - pos: 36.20302,-12.346379 + pos: 6.5,16.5 parent: 2 - - uid: 363 +- proto: DresserResearchDirectorFilled + entities: + - uid: 565 components: - type: Transform - pos: 36.093643,-12.174504 + pos: 60.5,11.5 parent: 2 - - uid: 6868 + - type: Storage + storedItems: + 4300: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 4300 +- proto: DrinkFlask + entities: + - uid: 9223 components: - type: Transform - pos: 40.839993,34.745388 + pos: 37.68926,43.584465 parent: 2 -- proto: FoodFrozenPopsicleTrash +- proto: DrinkFlaskBar entities: - - uid: 5885 + - uid: 12497 components: - type: Transform - pos: 1.6864786,-25.212389 + pos: 63.594597,-16.258825 parent: 2 -- proto: FoodFrozenSnowconeRainbow +- proto: DrinkGlass entities: - - uid: 12702 + - uid: 11829 components: - type: Transform - pos: 106.40823,-18.308239 + pos: 67.3298,-14.594364 parent: 2 - - uid: 12703 + - uid: 11831 components: - type: Transform - pos: 106.54886,-18.401989 + pos: 67.6423,-14.594364 parent: 2 - - uid: 12704 +- proto: DrinkGoldenCup + entities: + - uid: 12097 components: - type: Transform - pos: 106.68948,-18.276989 + pos: 19.490185,41.41655 parent: 2 -- proto: FoodFrozenSnowconeTrash +- proto: DrinkHotCoco entities: - - uid: 5884 + - uid: 5451 components: - type: Transform - pos: -0.0010213852,-26.399889 + pos: 71.508354,37.570084 parent: 2 -- proto: FoodMeat +- proto: DrinkHotCoffee entities: - - uid: 566 + - uid: 8334 components: - type: Transform - pos: 31.219597,-12.667201 + pos: 34.950523,17.590809 parent: 2 - - uid: 1176 +- proto: DrinkLemonadeGlass + entities: + - uid: 5452 components: - type: Transform - pos: 31.625847,-12.667201 + pos: 71.477104,40.663834 parent: 2 - - uid: 1178 +- proto: DrinkMugBlack + entities: + - uid: 8212 components: - type: Transform - pos: 31.657097,-12.292201 + pos: 6.3375144,19.735584 parent: 2 - - uid: 1496 +- proto: DrinkMugDog + entities: + - uid: 11968 components: - type: Transform - pos: 31.422722,-12.542201 + pos: 55.92937,-10.550333 parent: 2 - - uid: 1535 + - uid: 14631 components: - type: Transform - pos: 31.453972,-12.339076 + pos: 74.58324,22.689823 parent: 2 -- proto: FoodPieBananaCream +- proto: DrinkMugMetal entities: - - uid: 9590 + - uid: 14600 components: - type: Transform - pos: 27.383966,6.5099545 + pos: 55.15004,41.505497 parent: 2 - - uid: 9591 + - uid: 14663 components: - type: Transform - pos: 27.383966,6.5099545 + pos: 5.063261,40.729393 parent: 2 - - uid: 9592 - components: +- proto: DrinkMugOne + entities: + - uid: 12405 + components: - type: Transform - pos: 27.383966,6.5099545 + pos: 78.602234,4.557168 parent: 2 - - uid: 9593 + - uid: 14567 components: - type: Transform - pos: 27.383966,6.5099545 + pos: 89.5,28.5 parent: 2 - - uid: 9594 +- proto: DrinkMugRainbow + entities: + - uid: 12701 components: - type: Transform - pos: 27.383966,6.5099545 + pos: 107.25198,-16.370739 parent: 2 -- proto: FoodPlateSmallTrash +- proto: DrinkShaker entities: - - uid: 5882 + - uid: 590 components: - type: Transform - pos: 2.1083536,-26.524889 + pos: 38.536613,-9.567179 parent: 2 - - uid: 5883 + - uid: 11828 components: - type: Transform - pos: -0.9697714,-25.884264 + pos: 67.47043,-15.094364 parent: 2 -- proto: FoodPoppy +- proto: DrinkWaterCup entities: - - uid: 12099 + - uid: 5644 components: - type: Transform - pos: 19.740185,41.04155 + pos: 16.679596,-23.530558 parent: 2 -- proto: FoodShakerPepper - entities: - - uid: 6758 + - uid: 5645 components: - type: Transform - pos: 33.484684,-5.5126047 + pos: 16.678108,-23.473524 parent: 2 -- proto: FoodShakerSalt - entities: - - uid: 6655 + - uid: 5646 components: - type: Transform - pos: 33.71906,-5.5126047 + pos: 16.67348,-23.408709 parent: 2 -- proto: FoodSnackChocolate - entities: - - uid: 12495 + - uid: 5647 components: - type: Transform - pos: 11.536887,-11.535692 + pos: 16.678108,-23.343895 parent: 2 -- proto: FoodTinBeansTrash - entities: - - uid: 5886 + - uid: 10898 components: - type: Transform - pos: -1.0166464,-26.540514 + pos: 64.36203,13.455295 parent: 2 - - uid: 5887 + - uid: 10899 components: - type: Transform - pos: 0.4677286,-25.024889 + pos: 64.36203,13.580295 parent: 2 -- proto: FoodTinMRE - entities: - - uid: 5711 + - uid: 10900 components: - type: Transform - pos: 77.34284,-13.410258 + pos: 64.36203,13.72092 parent: 2 -- proto: FoodTinMRETrash +- proto: DrinkWhiskeyBottleFull entities: - - uid: 5888 + - uid: 6809 components: - type: Transform - pos: 0.8896036,-25.587389 + pos: 57.63163,-13.7188425 parent: 2 -- proto: FoodTinPeachesMaint +- proto: DungeonMasterCircuitBoard entities: - - uid: 5476 + - uid: 14279 components: - type: Transform - pos: 67.5,38.5 + pos: 84.42593,28.556656 parent: 2 -- proto: ForkPlastic +- proto: ElectricGuitarInstrument entities: - - uid: 6759 + - uid: 14550 components: - type: Transform - pos: 33.59406,-4.5126047 - parent: 2 -- proto: GasFilterFlipped + parent: 13753 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyLight entities: - - uid: 3290 + - uid: 323 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-25.5 + pos: 10.5,21.5 parent: 2 - - uid: 3294 + - uid: 1547 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-27.5 + rot: 1.5707963267948966 rad + pos: 25.5,-14.5 parent: 2 - - uid: 3297 + - uid: 11333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-29.5 + rot: -1.5707963267948966 rad + pos: 27.5,33.5 parent: 2 - - uid: 3309 + - type: ActiveEmergencyLight + - uid: 12374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-31.5 + pos: 10.5,1.5 parent: 2 - - uid: 3310 + - type: ActiveEmergencyLight + - uid: 12375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-23.5 + pos: 36.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3455 + - type: ActiveEmergencyLight + - uid: 12376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-33.5 + rot: -1.5707963267948966 rad + pos: 62.5,-0.5 parent: 2 - - uid: 4903 + - type: ActiveEmergencyLight + - uid: 12377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-39.5 + pos: 16.5,-33.5 parent: 2 - - uid: 11767 + - type: ActiveEmergencyLight + - uid: 12379 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,0.5 + pos: 36.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasMinerCarbonDioxide - entities: - - uid: 5220 + - type: ActiveEmergencyLight + - uid: 12380 components: - type: Transform - pos: 49.5,-27.5 + rot: 3.141592653589793 rad + pos: 25.5,44.5 parent: 2 -- proto: GasMinerNitrogenStationLarge - entities: - - uid: 7285 + - type: ActiveEmergencyLight + - uid: 12382 components: - type: Transform - pos: 49.5,-23.5 + pos: 33.5,15.5 parent: 2 -- proto: GasMinerOxygenStationLarge - entities: - - uid: 5529 + - type: ActiveEmergencyLight + - uid: 12383 components: - type: Transform - pos: 49.5,-25.5 + rot: -1.5707963267948966 rad + pos: 60.5,18.5 parent: 2 -- proto: GasMinerWaterVapor - entities: - - uid: 5132 + - type: ActiveEmergencyLight + - uid: 14641 components: - type: Transform - pos: 49.5,-29.5 + rot: 3.141592653589793 rad + pos: 73.5,22.5 parent: 2 -- proto: GasMixer - entities: - - uid: 2072 + - uid: 14642 components: - type: Transform - pos: 43.5,-27.5 + pos: 79.5,31.5 parent: 2 - - uid: 3970 + - uid: 14644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-34.5 + pos: 94.5,33.5 parent: 2 -- proto: GasMixerFlipped - entities: - - uid: 1557 + - uid: 14645 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-30.5 + pos: 94.5,27.5 parent: 2 - - uid: 1570 + - uid: 14778 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-22.5 + pos: 6.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1933 + - uid: 14974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-32.5 + rot: 1.5707963267948966 rad + pos: 53.5,36.5 parent: 2 - - uid: 3521 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 9622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-28.5 + pos: 45.379837,4.5137033 parent: 2 - - uid: 4924 +- proto: Emitter + entities: + - uid: 748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-40.5 + anchored: False + pos: 9.5,-29.5 parent: 2 -- proto: GasOutletInjector - entities: - - uid: 95 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 + - uid: 749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-29.5 + anchored: False + pos: 9.5,-30.5 parent: 2 - - uid: 1220 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 + - uid: 10875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-25.5 + rot: 1.5707963267948966 rad + pos: 14.5,-47.5 parent: 2 - - uid: 4120 + - uid: 10876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-31.5 + rot: 1.5707963267948966 rad + pos: 14.5,-55.5 parent: 2 - - uid: 4176 + - uid: 10904 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-23.5 + pos: 28.5,-47.5 parent: 2 - - uid: 4189 + - uid: 10958 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-27.5 + pos: 28.5,-55.5 parent: 2 - - uid: 4355 + - uid: 10963 components: - type: Transform - pos: 35.5,-32.5 + rot: 3.141592653589793 rad + pos: 17.5,-58.5 parent: 2 - - uid: 4434 + - uid: 10965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-33.5 + rot: 3.141592653589793 rad + pos: 25.5,-58.5 parent: 2 - - uid: 12882 +- proto: EncryptionKeyCargo + entities: + - uid: 412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-45.5 - parent: 2 -- proto: GasPassiveVent + parent: 5183 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand entities: - - uid: 3951 + - uid: 413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3953 + parent: 10443 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4102 + parent: 12111 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 535 components: - type: Transform - pos: 50.5,-29.5 - parent: 2 - - uid: 4107 + parent: 533 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 421 components: - type: Transform - pos: 50.5,-33.5 - parent: 2 - - uid: 4118 + parent: 12112 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 422 components: - type: Transform - pos: 50.5,-27.5 - parent: 2 - - uid: 4119 + parent: 12232 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 423 components: - type: Transform - pos: 50.5,-23.5 + parent: 12233 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 424 + components: + - type: Transform + parent: 12395 + - type: Physics + canCollide: False +- proto: ExosuitFabricator + entities: + - uid: 12579 + components: + - type: Transform + pos: 51.5,11.5 parent: 2 - - uid: 4179 +- proto: ExplosivesSignMed + entities: + - uid: 10438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-35.5 + pos: 61.5,28.5 parent: 2 - - uid: 4354 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 315 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-30.5 + pos: 7.5,4.5 parent: 2 - - uid: 4432 + - uid: 582 components: - type: Transform - pos: 50.5,-31.5 + pos: 21.5,-4.5 parent: 2 - - uid: 4433 + - uid: 783 components: - type: Transform - pos: 50.5,-25.5 + pos: 20.5,-22.5 parent: 2 - - uid: 5265 + - uid: 1947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-9.5 + pos: 32.5,-29.5 parent: 2 - - uid: 8677 + - uid: 4177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,33.5 + pos: 6.5,36.5 parent: 2 - - uid: 10426 + - uid: 5111 components: - type: Transform - pos: 63.5,28.5 + pos: 52.5,12.5 parent: 2 - - uid: 10427 + - uid: 5336 components: - type: Transform - pos: 64.5,28.5 + pos: 53.5,22.5 parent: 2 - - uid: 11587 + - uid: 5337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-48.5 + pos: 50.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11588 + - uid: 5347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-48.5 + pos: 62.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPipeBend - entities: - - uid: 34 + - uid: 5348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-35.5 + pos: 68.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 87 + - uid: 5658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,2.5 + pos: 29.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 383 + - uid: 5659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 + pos: 23.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 387 + - uid: 6026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-25.5 + pos: 8.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 393 + - uid: 6069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 + pos: 14.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 746 + - uid: 6635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-34.5 + pos: 40.5,-5.5 parent: 2 - - uid: 889 + - uid: 8985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 + pos: 36.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 891 + - uid: 9399 components: - type: Transform - pos: 27.5,-25.5 + pos: 33.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1039 + - uid: 9628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-24.5 + pos: 47.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1040 + - uid: 11066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-23.5 + pos: 14.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1149 + - uid: 14569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,0.5 + rot: -1.5707963267948966 rad + pos: 87.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1235 +- proto: FaxMachineBase + entities: + - uid: 1622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-46.5 + pos: 63.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1236 + - type: FaxMachine + name: RD Office + - uid: 1649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-48.5 + pos: 8.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1258 + - type: FaxMachine + name: Library + - uid: 2394 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-47.5 + pos: 12.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1306 + - type: FaxMachine + name: CE Office + - uid: 7566 components: - type: Transform - pos: 31.5,-32.5 + pos: 45.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1456 + - type: FaxMachine + name: HoS Office + - uid: 7668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 + pos: 15.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1506 + - type: FaxMachine + name: Cargo + - uid: 7728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-1.5 + pos: -1.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1534 + - type: FaxMachine + name: Law Office + - uid: 8080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,1.5 + pos: 9.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1685 + - type: FaxMachine + name: Quartermaster + - uid: 8320 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - type: FaxMachine + name: Security + - uid: 9006 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - type: FaxMachine + name: Court House + - uid: 10070 + components: + - type: Transform + pos: 58.5,-9.5 + parent: 2 + - type: FaxMachine + name: CMO Office + - uid: 10271 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - type: FaxMachine + name: HoP Office + - uid: 11002 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - type: FaxMachine + name: Engineering + - uid: 11947 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - type: FaxMachine + name: Conference Room + - uid: 14996 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - type: FaxMachine + name: Medical + - uid: 14997 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - type: FaxMachine + name: Science +- proto: FaxMachineCaptain + entities: + - uid: 1465 + components: + - type: Transform + pos: 30.5,41.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 108 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: 73.5,-0.5 + parent: 2 + - uid: 14753 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 7834 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 +- proto: filingCabinetTallRandom + entities: + - uid: 5198 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 194 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 36 + - 6952 + - 11245 + - 11244 + - 12449 + - 6931 + - 6930 + - 11247 + - 11246 + - uid: 1016 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 1018 + - 12396 + - 5620 + - 5619 + - 5656 + - 5657 + - 5617 + - 5618 + - 831 + - 802 + - 5621 + - 5622 + - uid: 1657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 6641 + - 6644 + - 6643 + - 6642 + - 6636 + - 1514 + - 742 + - 873 + - 554 + - 558 + - 1511 + - 1515 + - 1513 + - 12834 + - uid: 2123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 193 + - 241 + - 14065 + - 14064 + - uid: 2474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 12559 + - 10413 + - 10414 + - 10415 + - uid: 4049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 5657 + - 5656 + - 1018 + - 169 + - 1024 + - 5684 + - uid: 5077 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 6800 + - 6799 + - 6790 + - 6801 + - 6802 + - 6803 + - 8317 + - 253 + - 7709 + - 2315 + - 7938 + - 8003 + - 8004 + - 6644 + - 6641 + - 6642 + - 6643 + - 6621 + - 4919 + - 7011 + - 6620 + - 5144 + - uid: 6633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 1511 + - 1515 + - 1513 + - 6645 + - 6637 + - uid: 6634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 1514 + - 742 + - 873 + - 554 + - 558 + - 6638 + - 6523 + - 1510 + - uid: 6683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 6523 + - 1510 + - 6509 + - 6568 + - 12077 + - 6684 + - uid: 7013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 30 + - 8238 + - 29 + - 12086 + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 2125 + - 7740 + - 7895 + - 6854 + - 7663 + - 7889 + - 131 + - 7950 + - 13967 + - 13894 + - 13973 + - 14066 + - 192 + - 1317 + - uid: 8005 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + - uid: 8006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + - uid: 8007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 8004 + - 8003 + - 7938 + - 2315 + - 7709 + - 253 + - 7950 + - 131 + - 7889 + - 7663 + - 6854 + - 7895 + - 8008 + - 36 + - 6952 + - 11244 + - 11245 + - uid: 8316 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 6800 + - 6799 + - 6790 + - 6801 + - 6802 + - 6803 + - 8317 + - 253 + - 7709 + - 2315 + - 7938 + - 8003 + - 8004 + - 6644 + - 6641 + - 6642 + - 6643 + - 6621 + - 4919 + - 7011 + - 6620 + - 5144 + - uid: 8920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 8923 + - 6801 + - 6802 + - 6803 + - 6790 + - 6799 + - 6800 + - 10206 + - 10205 + - 5093 + - uid: 9588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 9586 + - 9585 + - 9584 + - 9589 + - 9236 + - 13510 + - uid: 10208 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 10216 + - 10205 + - 10206 + - uid: 10956 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 8659 + - uid: 10964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 1103 + - 1104 + - 11472 + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 12516 + - 12085 + - 9586 + - 9585 + - 9584 + - uid: 11507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 11509 + - 11526 + - 11527 + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 3983 + - 2993 + - 2994 + - 11321 + - 11320 + - 11319 + - 8293 + - 8291 + - 5026 + - 5144 + - 4919 + - 7011 + - 6509 + - 6568 + - 14994 + - 14992 + - 12161 + - uid: 12153 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 11317 + - 5176 + - 11325 + - 5188 + - 5190 + - 11332 + - 11355 + - 12162 + - uid: 12154 + components: + - type: Transform + pos: 69.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 11254 + - 11255 + - 11256 + - 11506 + - 11505 + - 6616 + - 11317 + - 5176 + - 11325 + - 5188 + - 5190 + - 11332 + - 11355 + - 12162 + - 9896 + - 9897 + - 9858 + - uid: 12474 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11247 + - 11246 + - 12472 + - 11264 + - 11263 + - 6928 + - 6929 + - 6930 + - 6931 + - uid: 12477 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11264 + - 11263 + - 1103 + - 1104 + - 11472 + - 12475 + - 6928 + - 6929 + - 3457 + - 3458 + - 3459 + - 9352 + - 9353 + - 9351 + - uid: 12483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 11746 + - 8293 + - 8291 + - 5026 + - 11321 + - 11320 + - 11319 + - 11251 + - 11252 + - 11253 + - 9364 + - 9363 + - 9362 + - uid: 12487 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 12485 + - 9364 + - 9363 + - 9362 + - 11251 + - 11252 + - 11253 + - 11413 + - 9351 + - 9353 + - 9352 + - 12087 + - uid: 12489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 12077 + - 11858 + - 12075 + - 12490 + - 12076 + - uid: 12517 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 12518 + - uid: 12549 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 12550 + - 12087 + - uid: 12556 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 10416 + - 10417 + - 10418 + - 12554 + - 1252 + - 1162 + - 6473 + - uid: 12557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 10416 + - 10417 + - 10418 + - 185 + - 10413 + - 10414 + - 10415 + - uid: 14041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 14063 + - 14061 + - 14062 + - 13974 + - 13975 + - 13976 + - 13979 + - 13978 + - 13977 + - 13983 + - 13982 + - 13981 + - uid: 14737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 8106 + - 14672 + - 29 + - 8238 + - 371 +- proto: FireAxeCabinetFilled + entities: + - uid: 1571 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,44.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 5722 + components: + - type: Transform + pos: 73.5,-12.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + pos: 80.48026,-16.378305 + parent: 2 + - uid: 10826 + components: + - type: Transform + pos: 81.454414,9.641975 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: 44.52368,28.548758 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2123 + - 2124 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - uid: 802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-38.5 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-38.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,15.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 2315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-38.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-38.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-38.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8920 + - uid: 5176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-3.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-3.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-3.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-30.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-30.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-3.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - uid: 6928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - uid: 7709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 + - uid: 7938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9587 + - 9588 + - uid: 9362 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,28.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + pos: 68.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12154 + - 12152 + - uid: 11244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - uid: 11245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 11247 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,22.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - uid: 11250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,20.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,11.5 + parent: 2 + - uid: 11253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,11.5 + parent: 2 + - uid: 11254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,0.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - uid: 11264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,1.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,1.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,1.5 + parent: 2 + - uid: 11322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-3.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-3.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-3.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,12.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 2 + - uid: 11506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + - uid: 11526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-2.5 + parent: 2 + - uid: 11527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-2.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11508 + - uid: 12834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1657 + - uid: 13507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9587 + - 9588 + - uid: 13514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 + - uid: 13894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 13967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 13973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 14067 + - uid: 13974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13977 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13978 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13979 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 13983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14041 + - 13984 + - uid: 14551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 + - uid: 14622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 + - uid: 14992 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11508 + - uid: 14994 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11507 + - 11508 +- proto: FirelockElectronics + entities: + - uid: 1045 + components: + - type: Transform + pos: 32.473473,-30.370909 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7013 + - 14737 + - 5 + - 14754 + - uid: 169 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 + - 14737 + - 5 + - uid: 8238 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14737 + - 5 + - 7013 + - 14754 + - uid: 8823 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 9351 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 9352 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 9353 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12154 + - 12152 + - 12163 + - uid: 9897 + components: + - type: Transform + pos: 70.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12154 + - 12152 + - 12163 + - uid: 10205 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + pos: 60.5,21.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + pos: 61.5,-8.5 + parent: 2 + - uid: 11016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 2 + - uid: 11243 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 11265 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 11267 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 11268 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 11271 + components: + - type: Transform + pos: 52.5,-16.5 + parent: 2 + - uid: 11272 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: 43.5,43.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + pos: 45.5,40.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + pos: 72.5,18.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + pos: 74.5,14.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + pos: 86.5,-13.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: 83.5,-15.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + pos: 72.5,-15.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + pos: 83.5,-16.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + pos: 72.5,-16.5 + parent: 2 + - uid: 11300 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 11335 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + pos: 51.5,-16.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + pos: 88.5,-17.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + pos: 67.5,25.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: 66.5,25.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + pos: 72.5,10.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: 76.5,12.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 11392 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + pos: 73.5,14.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 2 + - uid: 11810 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: 54.5,-4.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7013 + - 14754 + - uid: 12087 + components: + - type: Transform + pos: 48.5,18.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-24.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - uid: 14672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 + - 14737 + - 5 + - uid: 15002 + components: + - type: Transform + pos: 71.5,-11.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 380 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 +- proto: Flash + entities: + - uid: 4987 + components: + - type: Transform + pos: 30.4376,48.510555 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 5714 + components: + - type: Transform + pos: 76.49909,-12.519633 + parent: 2 + - uid: 10814 + components: + - type: Transform + pos: 81.401146,12.491636 + parent: 2 +- proto: Floodlight + entities: + - uid: 4500 + components: + - type: Transform + pos: 34.356434,-54.33789 + parent: 2 +- proto: FloorDrain + entities: + - uid: 741 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1859 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 5254 + components: + - type: Transform + pos: 78.5,-0.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8960 + components: + - type: Transform + pos: 102.5,-13.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 10447 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11900 + components: + - type: Transform + pos: 78.5,10.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 12288 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 12290 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13606 + components: + - type: Transform + pos: 59.5,36.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FoodBanana + entities: + - uid: 9595 + components: + - type: Transform + pos: 27.618341,6.6818295 + parent: 2 + - uid: 9596 + components: + - type: Transform + pos: 27.618341,6.6818295 + parent: 2 + - uid: 9597 + components: + - type: Transform + pos: 27.618341,6.6818295 + parent: 2 + - uid: 9598 + components: + - type: Transform + pos: 27.618341,6.6818295 + parent: 2 + - uid: 9599 + components: + - type: Transform + pos: 27.618341,6.6818295 + parent: 2 +- proto: FoodBowlBig + entities: + - uid: 5507 + components: + - type: Transform + pos: 70.488464,33.529522 + parent: 2 +- proto: FoodBowlBigTrash + entities: + - uid: 5881 + components: + - type: Transform + pos: -0.3447714,-23.649889 + parent: 2 +- proto: FoodBoxDonkpocket + entities: + - uid: 8862 + components: + - type: Transform + pos: 107.64995,-11.344688 + parent: 2 +- proto: FoodBoxDonkpocketBerry + entities: + - uid: 8863 + components: + - type: Transform + pos: 107.3062,-11.344688 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 8861 + components: + - type: Transform + pos: 107.35307,-10.954063 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 4982 + components: + - type: Transform + pos: 33.510082,46.65118 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: 37.49929,-7.4188547 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: 35.53611,17.66077 + parent: 2 +- proto: FoodBreadBananaSlice + entities: + - uid: 8651 + components: + - type: Transform + rot: 4.008621544926427E-05 rad + pos: 83.58996,8.734995 + parent: 2 +- proto: FoodCakeChocolateSlice + entities: + - uid: 10832 + components: + - type: Transform + rot: 3.7838042771909386E-05 rad + pos: 70.43763,11.734996 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 1551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 296 + components: + - type: Transform + pos: 36.20302,-12.346379 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 36.093643,-12.174504 + parent: 2 +- proto: FoodFrozenPopsicleTrash + entities: + - uid: 5885 + components: + - type: Transform + pos: 1.6864786,-25.212389 + parent: 2 +- proto: FoodFrozenSnowconeRainbow + entities: + - uid: 12702 + components: + - type: Transform + pos: 106.40823,-18.308239 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: 106.54886,-18.401989 + parent: 2 + - uid: 12704 + components: + - type: Transform + pos: 106.68948,-18.276989 + parent: 2 +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 5884 + components: + - type: Transform + pos: -0.0010213852,-26.399889 + parent: 2 +- proto: FoodMeat + entities: + - uid: 566 + components: + - type: Transform + pos: 31.219597,-12.667201 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 31.625847,-12.667201 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 31.657097,-12.292201 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 31.422722,-12.542201 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 31.453972,-12.339076 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 9590 + components: + - type: Transform + pos: 27.383966,6.5099545 + parent: 2 + - uid: 9591 + components: + - type: Transform + pos: 27.383966,6.5099545 + parent: 2 + - uid: 9592 + components: + - type: Transform + pos: 27.383966,6.5099545 + parent: 2 + - uid: 9593 + components: + - type: Transform + pos: 27.383966,6.5099545 + parent: 2 + - uid: 9594 + components: + - type: Transform + pos: 27.383966,6.5099545 + parent: 2 +- proto: FoodPlateSmallTrash + entities: + - uid: 5882 + components: + - type: Transform + pos: 2.1083536,-26.524889 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: -0.9697714,-25.884264 + parent: 2 +- proto: FoodPoppy + entities: + - uid: 12099 + components: + - type: Transform + pos: 19.740185,41.04155 + parent: 2 +- proto: FoodShakerPepper + entities: + - uid: 6758 + components: + - type: Transform + pos: 33.484684,-5.5126047 + parent: 2 +- proto: FoodShakerSalt + entities: + - uid: 6655 + components: + - type: Transform + pos: 33.71906,-5.5126047 + parent: 2 +- proto: FoodSnackChocolate + entities: + - uid: 12495 + components: + - type: Transform + pos: 11.536887,-11.535692 + parent: 2 +- proto: FoodTinBeansTrash + entities: + - uid: 5886 + components: + - type: Transform + pos: -1.0166464,-26.540514 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 0.4677286,-25.024889 + parent: 2 +- proto: FoodTinMRE + entities: + - uid: 5711 + components: + - type: Transform + pos: 77.34284,-13.410258 + parent: 2 +- proto: FoodTinMRETrash + entities: + - uid: 5888 + components: + - type: Transform + pos: 0.8896036,-25.587389 + parent: 2 +- proto: FoodTinPeachesMaint + entities: + - uid: 5476 + components: + - type: Transform + pos: 67.5,38.5 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 6759 + components: + - type: Transform + pos: 33.59406,-4.5126047 + parent: 2 +- proto: GasFilterFlipped + entities: + - uid: 3290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-25.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-27.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-29.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-31.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-33.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-39.5 + parent: 2 + - uid: 11767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 5220 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 7285 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 5529 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 5132 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 2072 + components: + - type: Transform + pos: 43.5,-27.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 +- proto: GasMixerFlipped + entities: + - uid: 1557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-30.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-32.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-28.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-40.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-29.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-25.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-31.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-23.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-27.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-33.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-45.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 3951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4102 + components: + - type: Transform + pos: 50.5,-29.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: 50.5,-33.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: 50.5,-27.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: 50.5,-23.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-35.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-30.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 50.5,-25.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-9.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: 63.5,28.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: 64.5,28.5 + parent: 2 + - uid: 11587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14345 + components: + - type: Transform + pos: 82.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14621 + components: + - type: Transform + pos: 71.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeBend + entities: + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-34.5 + parent: 2 + - uid: 889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 891 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1306 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 3066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-35.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3780 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 3960 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-26.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-30.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4219 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-24.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-28.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-34.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-32.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6428 + components: + - type: Transform + pos: 32.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7217 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8206 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8662 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9555 + components: + - type: Transform + pos: 28.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10639 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10667 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11579 + components: + - type: Transform + pos: 41.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 11707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11768 + components: + - type: Transform + pos: 61.5,0.5 + parent: 2 + - uid: 11786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 2 + - uid: 11789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-1.5 + parent: 2 + - uid: 11797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,0.5 + parent: 2 + - uid: 11798 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12301 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-43.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-45.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-27.5 + parent: 2 + - uid: 13520 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14418 + components: + - type: Transform + pos: 90.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14425 + components: + - type: Transform + pos: 92.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14604 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeFourway + entities: + - uid: 62 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 350 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 463 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3965 + components: + - type: Transform + pos: 37.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4021 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4770 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5169 + components: + - type: Transform + pos: 72.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5181 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5200 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5240 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6520 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6623 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8581 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8589 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10054 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10374 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11732 + components: + - type: Transform + pos: 60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11787 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeStraight + entities: + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 53 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 68 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 107 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 352 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 353 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 354 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 375 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 390 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 395 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 396 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 402 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 431 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 442 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 444 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 447 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 448 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 609 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 667 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 671 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 672 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-34.5 + parent: 2 + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-34.5 + parent: 2 + - uid: 755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-34.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 820 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 825 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 833 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 835 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-32.5 + parent: 2 + - uid: 879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-27.5 + parent: 2 + - uid: 901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-32.5 + parent: 2 + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-32.5 + parent: 2 + - uid: 904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-34.5 + parent: 2 + - uid: 905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-34.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 912 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 914 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-31.5 + parent: 2 + - uid: 933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-29.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-33.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-34.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1019 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1020 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1043 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1207 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1223 + components: + - type: Transform + pos: 46.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 1249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-25.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-25.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-26.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1328 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1329 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-27.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-26.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-24.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1488 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1528 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-23.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-23.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1562 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1604 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1606 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1607 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1608 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1609 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1610 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1611 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1654 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1666 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1667 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1668 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1669 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1670 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1671 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1719 + components: + - type: Transform + pos: 25.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1730 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1749 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1762 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1764 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1769 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1770 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1771 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1772 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1774 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1800 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1801 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1803 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1804 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1805 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1875 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1876 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1878 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1919 + components: + - type: Transform + pos: 42.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1920 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1921 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1934 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-29.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-29.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-30.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1961 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2029 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2032 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2062 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2063 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-34.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-30.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-28.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-26.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2302 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2305 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2316 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2317 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2322 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2396 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-31.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2416 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2452 + components: + - type: Transform + pos: 27.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2453 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2488 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2490 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2546 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2560 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-32.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-33.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-32.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-34.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-30.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3252 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-24.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-28.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-32.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-26.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-31.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-34.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-33.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3704 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 3955 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 3958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4009 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4022 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4068 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-30.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-28.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-28.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4085 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-26.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-25.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-24.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-24.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4184 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4185 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-31.5 + pos: -4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4202 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4203 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4283 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4288 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4289 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4290 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4291 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4356 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-30.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-30.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-28.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-26.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-26.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-23.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-24.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4445 + components: + - type: Transform + pos: 32.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4446 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4448 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4449 + components: + - type: Transform + pos: 32.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1691 + - uid: 4451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-28.5 + pos: 32.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1698 + - uid: 4461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,0.5 + pos: 22.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1799 + - uid: 4462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 + pos: 20.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1807 + - uid: 4463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 + pos: 20.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1814 + color: '#0335FCFF' + - uid: 4480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,1.5 + pos: 40.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1816 + color: '#03FCD3FF' + - uid: 4493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,0.5 + rot: 1.5707963267948966 rad + pos: 44.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1819 + - uid: 4495 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 45.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1820 + color: '#FF1212FF' + - uid: 4827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 + pos: 7.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2073 + - uid: 4907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-22.5 + pos: 7.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2383 + color: '#0335FCFF' + - uid: 4970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-23.5 + pos: 27.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2609 + color: '#0335FCFF' + - uid: 5009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 + pos: 55.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3518 + - uid: 5023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-35.5 + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 parent: 2 - - uid: 3688 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,1.5 + rot: -1.5707963267948966 rad + pos: 59.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3690 + color: '#0335FCFF' + - uid: 5025 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-2.5 + pos: 58.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3780 + - uid: 5036 components: - type: Transform - pos: 37.5,-25.5 + pos: 56.5,-0.5 parent: 2 - - uid: 3946 + - uid: 5038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,0.5 + parent: 2 + - uid: 5040 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-22.5 + pos: 60.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3956 + - uid: 5042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-47.5 + rot: -1.5707963267948966 rad + pos: 58.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3960 + color: '#FF1212FF' + - uid: 5044 components: - type: Transform - pos: 44.5,-21.5 + rot: -1.5707963267948966 rad + pos: 46.5,-27.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-28.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3961 + - uid: 5083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-21.5 + pos: 57.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4014 + color: '#0335FCFF' + - uid: 5102 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-26.5 + pos: 53.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4015 + color: '#0335FCFF' + - uid: 5110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-23.5 + pos: 46.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4016 + - uid: 5184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-22.5 + pos: 57.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4028 + color: '#0335FCFF' + - uid: 5192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 + pos: 55.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4031 + - uid: 5206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 + pos: 57.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4050 + color: '#0335FCFF' + - uid: 5208 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-36.5 + pos: 43.5,-25.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-26.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: 79.5,-8.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4091 + - uid: 5302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 + pos: 7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5303 + components: + - type: Transform + pos: 55.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4097 + - uid: 5429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-26.5 + rot: 3.141592653589793 rad + pos: 11.5,6.5 parent: 2 - - uid: 4098 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-30.5 + pos: 11.5,-36.5 parent: 2 - - uid: 4099 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-24.5 + pos: 8.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4219 + color: '#FF1212FF' + - uid: 5666 components: - type: Transform - pos: 41.5,-0.5 + rot: -1.5707963267948966 rad + pos: 17.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4427 + - uid: 5667 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-24.5 + pos: 16.5,-35.5 parent: 2 - - uid: 4428 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5668 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-28.5 + pos: 15.5,-35.5 parent: 2 - - uid: 4429 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5669 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-34.5 + pos: 14.5,-35.5 parent: 2 - - uid: 4430 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5670 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-32.5 + pos: 16.5,-34.5 parent: 2 - - uid: 4443 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5671 components: - type: Transform - pos: 32.5,-35.5 + rot: -1.5707963267948966 rad + pos: 15.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4498 + color: '#FF1212FF' + - uid: 5672 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-48.5 + pos: 14.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4914 + - uid: 5673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 + pos: 10.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5010 + - uid: 5683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,14.5 + pos: 38.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5028 + color: '#03FCD3FF' + - uid: 6337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-25.5 + pos: 48.5,34.5 parent: 2 - - uid: 5108 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,15.5 + rot: 3.141592653589793 rad + pos: 47.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5109 + - uid: 6339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,18.5 + rot: 3.141592653589793 rad + pos: 47.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5765 + - uid: 6425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + rot: 3.141592653589793 rad + pos: 32.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6428 + - uid: 6426 components: - type: Transform - pos: 32.5,46.5 + rot: 3.141592653589793 rad + pos: 32.5,44.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6489 + - uid: 6479 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 30.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6482 + components: + - type: Transform + pos: 33.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6499 + - uid: 6484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-3.5 + pos: 33.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6500 + - uid: 6488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-6.5 + pos: 46.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6569 + - uid: 6490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-6.5 + rot: 1.5707963267948966 rad + pos: 43.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6777 + - uid: 6498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,9.5 + pos: 44.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6503 + components: + - type: Transform + pos: 27.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6833 + - uid: 6507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 + rot: 1.5707963267948966 rad + pos: 35.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8023 + - uid: 6508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 + pos: 46.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8198 + color: '#0335FCFF' + - uid: 6536 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,21.5 + pos: 47.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8199 + - uid: 6550 components: - type: Transform - pos: 17.5,22.5 + pos: 33.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8202 + - uid: 6551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,22.5 + pos: 33.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8203 + - uid: 6553 components: - type: Transform - pos: 14.5,23.5 + pos: 33.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8204 + - uid: 6554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 + pos: 33.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8205 + - uid: 6556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,20.5 + pos: 35.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8206 + - uid: 6557 components: - type: Transform - pos: 13.5,21.5 + pos: 35.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8228 + - uid: 6559 components: - type: Transform - pos: 13.5,25.5 + pos: 35.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8338 + color: '#0335FCFF' + - uid: 6560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,37.5 + pos: 35.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8599 + color: '#0335FCFF' + - uid: 6561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,22.5 + pos: 35.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8620 + color: '#0335FCFF' + - uid: 6562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,17.5 + pos: 35.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8621 + - uid: 6563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 + pos: 35.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8628 + color: '#0335FCFF' + - uid: 6564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,17.5 + pos: 35.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8663 + - uid: 6566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,30.5 + pos: 44.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8672 + color: '#FF1212FF' + - uid: 6567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,30.5 + pos: 46.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9545 + - uid: 6575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,45.5 + pos: 42.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9547 + - uid: 6576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,45.5 + pos: 42.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9555 + - uid: 6577 components: - type: Transform - pos: 28.5,40.5 + rot: -1.5707963267948966 rad + pos: 40.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9556 + - uid: 6579 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,39.5 + pos: 38.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9572 + - uid: 6580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,35.5 + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10169 + - uid: 6581 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-11.5 + pos: 36.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10200 + - uid: 6585 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-7.5 + rot: -1.5707963267948966 rad + pos: 34.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10334 + color: '#0335FCFF' + - uid: 6586 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,10.5 + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10335 + - uid: 6587 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,10.5 + pos: 32.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10364 + - uid: 6589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,19.5 + pos: 30.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10382 + - uid: 6594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,13.5 + rot: 3.141592653589793 rad + pos: 33.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10384 + - uid: 6596 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,15.5 + pos: 34.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10399 + - uid: 6597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,9.5 + rot: 1.5707963267948966 rad + pos: 35.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10639 + - uid: 6598 components: - type: Transform - pos: 29.5,10.5 + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10644 + color: '#FF1212FF' + - uid: 6599 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,7.5 + pos: 37.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10645 + - uid: 6600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,6.5 + rot: 1.5707963267948966 rad + pos: 38.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10667 + - uid: 6602 components: - type: Transform - pos: 43.5,-22.5 + rot: 3.141592653589793 rad + pos: 39.5,-5.5 parent: 2 - - uid: 11512 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6603 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,-6.5 + pos: 39.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11578 + - uid: 6604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-45.5 + rot: 3.141592653589793 rad + pos: 39.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11579 + color: '#0335FCFF' + - uid: 6605 components: - type: Transform - pos: 41.5,-47.5 + rot: 3.141592653589793 rad + pos: 39.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11707 + color: '#0335FCFF' + - uid: 6606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-9.5 + rot: 3.141592653589793 rad + pos: 39.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11720 + - uid: 6612 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-4.5 + pos: 27.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11721 + - uid: 6613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-4.5 + rot: 1.5707963267948966 rad + pos: 28.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11722 + - uid: 6624 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-1.5 + pos: 35.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11765 + - uid: 6625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,1.5 + rot: 1.5707963267948966 rad + pos: 36.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11768 - components: - - type: Transform - pos: 61.5,0.5 - parent: 2 - - uid: 11786 + - uid: 6626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-1.5 + rot: 1.5707963267948966 rad + pos: 37.5,-6.5 parent: 2 - - uid: 11789 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6672 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-1.5 + pos: 47.5,22.5 parent: 2 - - uid: 11797 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,0.5 + rot: 3.141592653589793 rad + pos: -6.5,-1.5 parent: 2 - - uid: 11798 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6835 components: - type: Transform - pos: 56.5,-1.5 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11799 + color: '#FF1212FF' + - uid: 6844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-2.5 + pos: 7.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11954 + - uid: 6859 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,4.5 + pos: -5.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11955 + - uid: 6865 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,4.5 + pos: 43.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12301 + - uid: 6909 components: - type: Transform - pos: 49.5,-47.5 + rot: 1.5707963267948966 rad + pos: 6.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12858 + color: '#0335FCFF' + - uid: 6915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-45.5 + pos: 10.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12869 + - uid: 6916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-53.5 + pos: 10.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12870 + color: '#FF1212FF' + - uid: 6917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-53.5 + pos: 10.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-43.5 - parent: 2 - - uid: 12881 + color: '#FF1212FF' + - uid: 6918 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-45.5 - parent: 2 - - uid: 12883 - components: - - type: Transform - pos: 49.5,-44.5 + pos: 9.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12884 + - uid: 6919 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-46.5 + pos: -6.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12885 + - uid: 6946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-46.5 + pos: 18.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13431 + - uid: 6947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-27.5 + pos: 18.5,8.5 parent: 2 -- proto: GasPipeFourway - entities: - - uid: 62 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6948 components: - type: Transform - pos: 35.5,-0.5 + pos: 18.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 350 + color: '#FF1212FF' + - uid: 7006 components: - type: Transform - pos: 19.5,9.5 + pos: 27.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 463 + - uid: 7170 components: - type: Transform - pos: 18.5,10.5 + rot: 1.5707963267948966 rad + pos: 17.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3965 + - uid: 7171 components: - type: Transform - pos: 37.5,-44.5 + rot: 3.141592653589793 rad + pos: 14.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4021 + - uid: 7172 components: - type: Transform - pos: 55.5,-5.5 + rot: 3.141592653589793 rad + pos: 14.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4770 + - uid: 7218 components: - type: Transform - pos: 12.5,-0.5 + rot: -1.5707963267948966 rad + pos: 13.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5169 + color: '#FF1212FF' + - uid: 7220 components: - type: Transform - pos: 72.5,2.5 + rot: 1.5707963267948966 rad + pos: 16.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5181 + - uid: 7224 components: - type: Transform - pos: 25.5,-10.5 + rot: -1.5707963267948966 rad + pos: 15.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5200 + - uid: 7242 components: - type: Transform - pos: 42.5,13.5 + rot: 3.141592653589793 rad + pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5240 + color: '#FF1212FF' + - uid: 7247 components: - type: Transform - pos: 44.5,0.5 + pos: 9.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6520 + - uid: 7249 components: - type: Transform - pos: 46.5,-1.5 + pos: 9.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6623 + - uid: 7410 components: - type: Transform - pos: 35.5,-3.5 + rot: 3.141592653589793 rad + pos: -6.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8581 + color: '#FF1212FF' + - uid: 7411 components: - type: Transform - pos: 39.5,24.5 + rot: 3.141592653589793 rad + pos: -6.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8589 + color: '#FF1212FF' + - uid: 7413 components: - type: Transform - pos: 40.5,23.5 + rot: 3.141592653589793 rad + pos: -6.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10054 + - uid: 7416 components: - type: Transform - pos: 59.5,18.5 + rot: 3.141592653589793 rad + pos: -6.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10374 + color: '#FF1212FF' + - uid: 7418 components: - type: Transform - pos: 58.5,19.5 + rot: 3.141592653589793 rad + pos: -6.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11732 + - uid: 7419 components: - type: Transform - pos: 60.5,-5.5 + rot: 3.141592653589793 rad + pos: -6.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11787 + - uid: 7420 components: - type: Transform - pos: 57.5,-2.5 + rot: 3.141592653589793 rad + pos: -6.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasPipeStraight - entities: - - uid: 26 + color: '#FF1212FF' + - uid: 7421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,13.5 + rot: 3.141592653589793 rad + pos: -5.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 33 + - uid: 7422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-35.5 + rot: 3.141592653589793 rad + pos: -5.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 53 + - uid: 7423 components: - type: Transform - pos: 19.5,8.5 + rot: 3.141592653589793 rad + pos: -5.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 68 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 74 + - uid: 7424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-1.5 + rot: 3.141592653589793 rad + pos: -5.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 86 + - uid: 7425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 + rot: 3.141592653589793 rad + pos: -5.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 91 + - uid: 7426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 + rot: 3.141592653589793 rad + pos: -5.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 107 + - uid: 7427 components: - type: Transform - pos: 11.5,-37.5 + rot: 3.141592653589793 rad + pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 117 + - uid: 7429 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,15.5 + pos: -5.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 122 + color: '#0335FCFF' + - uid: 7430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,15.5 + rot: 3.141592653589793 rad + pos: -5.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 143 + color: '#0335FCFF' + - uid: 7431 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,8.5 + pos: -5.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 153 + - uid: 7432 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,7.5 + pos: -5.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 168 + - uid: 7472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,19.5 + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 175 + - uid: 7483 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + pos: -12.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 234 + - uid: 7503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,10.5 + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 235 + color: '#0335FCFF' + - uid: 7504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,9.5 + rot: -1.5707963267948966 rad + pos: -14.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 236 + - uid: 7578 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,8.5 + pos: 62.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 352 + color: '#0335FCFF' + - uid: 7745 components: - type: Transform - pos: 3.5,4.5 + pos: 8.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 353 + - uid: 7758 components: - type: Transform - pos: 3.5,8.5 + rot: 1.5707963267948966 rad + pos: 55.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 354 + color: '#0335FCFF' + - uid: 7789 components: - type: Transform - pos: 3.5,9.5 + rot: 1.5707963267948966 rad + pos: 58.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 375 + color: '#0335FCFF' + - uid: 7790 components: - type: Transform - pos: 3.5,2.5 + rot: 1.5707963267948966 rad + pos: 54.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 390 + color: '#0335FCFF' + - uid: 7878 components: - type: Transform - pos: 3.5,6.5 + pos: 7.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 395 + color: '#0335FCFF' + - uid: 8012 components: - type: Transform - pos: 3.5,3.5 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 396 + color: '#0335FCFF' + - uid: 8013 components: - type: Transform - pos: 3.5,5.5 + pos: 12.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 402 + color: '#0335FCFF' + - uid: 8014 components: - type: Transform - pos: 3.5,1.5 + pos: 12.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 425 + color: '#0335FCFF' + - uid: 8015 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,13.5 + pos: 14.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 432 + - uid: 8018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,13.5 + pos: 16.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 436 + color: '#FF1212FF' + - uid: 8019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-22.5 + pos: 16.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 439 + - uid: 8020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-23.5 + pos: 16.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 440 + - uid: 8021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,9.5 + pos: 16.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 442 + color: '#FF1212FF' + - uid: 8022 components: - type: Transform - pos: 25.5,-26.5 + pos: 16.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 444 + - uid: 8111 components: - type: Transform - pos: 25.5,-17.5 + rot: 1.5707963267948966 rad + pos: 8.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 447 + color: '#0335FCFF' + - uid: 8179 components: - type: Transform - pos: 25.5,-22.5 + rot: -1.5707963267948966 rad + pos: 25.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 512 + color: '#0335FCFF' + - uid: 8180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-34.5 + rot: -1.5707963267948966 rad + pos: 24.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 609 + color: '#0335FCFF' + - uid: 8181 components: - type: Transform - pos: 10.5,-36.5 + rot: -1.5707963267948966 rad + pos: 23.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 611 + color: '#0335FCFF' + - uid: 8183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-34.5 + rot: -1.5707963267948966 rad + pos: 21.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 617 + color: '#0335FCFF' + - uid: 8184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-31.5 + rot: -1.5707963267948966 rad + pos: 20.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 666 + - uid: 8186 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,13.5 + pos: 18.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 667 + - uid: 8187 components: - type: Transform - pos: 55.5,-6.5 + rot: -1.5707963267948966 rad + pos: 17.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8188 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,13.5 + pos: 16.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 672 + - uid: 8190 components: - type: Transform - pos: 31.5,-26.5 + rot: -1.5707963267948966 rad + pos: 14.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 678 + color: '#0335FCFF' + - uid: 8191 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-34.5 + pos: 24.5,21.5 parent: 2 - - uid: 743 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8193 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-34.5 + pos: 22.5,21.5 parent: 2 - - uid: 755 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8194 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-34.5 + pos: 21.5,21.5 parent: 2 - - uid: 817 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8195 components: - type: Transform - pos: 42.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 818 + color: '#FF1212FF' + - uid: 8196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-24.5 + rot: -1.5707963267948966 rad + pos: 19.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 820 + color: '#FF1212FF' + - uid: 8198 components: - type: Transform - pos: 31.5,-25.5 + pos: 7.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 825 + color: '#0335FCFF' + - uid: 8204 components: - type: Transform - pos: 42.5,3.5 + pos: 7.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 833 + - uid: 8209 components: - type: Transform - pos: 42.5,5.5 + rot: 1.5707963267948966 rad + pos: 12.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 835 + - uid: 8210 components: - type: Transform - pos: 42.5,4.5 + rot: 1.5707963267948966 rad + pos: 11.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 871 + - uid: 8211 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-32.5 + pos: 10.5,21.5 parent: 2 - - uid: 879 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-45.5 + pos: 8.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 887 + - uid: 8214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-27.5 + pos: 8.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 888 + color: '#FF1212FF' + - uid: 8215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-26.5 + pos: 8.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 890 + color: '#FF1212FF' + - uid: 8224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-21.5 + rot: -1.5707963267948966 rad + pos: 12.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 893 + color: '#FF1212FF' + - uid: 8225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,14.5 + rot: -1.5707963267948966 rad + pos: 11.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 894 + color: '#FF1212FF' + - uid: 8226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,15.5 + rot: -1.5707963267948966 rad + pos: 10.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 896 + color: '#FF1212FF' + - uid: 8295 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,13.5 + pos: 24.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 897 + - uid: 8297 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,13.5 + pos: 25.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 898 + - uid: 8298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 + rot: -1.5707963267948966 rad + pos: 26.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 899 + - uid: 8300 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-27.5 + pos: 24.5,37.5 parent: 2 - - uid: 901 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-1.5 + pos: 27.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-32.5 - parent: 2 - - uid: 903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 2 - - uid: 904 + - uid: 8308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-34.5 + pos: 27.5,37.5 parent: 2 - - uid: 905 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 2 - - uid: 906 - components: - - type: Transform - pos: 25.5,0.5 + pos: 34.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 907 + color: '#0335FCFF' + - uid: 8318 components: - type: Transform - pos: 56.5,29.5 + pos: 27.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 908 + - uid: 8321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,1.5 + pos: 27.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 910 + color: '#0335FCFF' + - uid: 8322 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,1.5 + pos: 29.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 911 + color: '#0335FCFF' + - uid: 8384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 + rot: 1.5707963267948966 rad + pos: 47.5,34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 912 + - uid: 8397 components: - type: Transform - pos: 25.5,-19.5 + rot: 3.141592653589793 rad + pos: 47.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 914 + - uid: 8398 components: - type: Transform - pos: 25.5,-4.5 + rot: 3.141592653589793 rad + pos: 47.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 923 + - uid: 8399 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-31.5 + pos: 50.5,35.5 parent: 2 - - uid: 933 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-29.5 + rot: 3.141592653589793 rad + pos: 45.5,34.5 parent: 2 - - uid: 938 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8401 components: - type: Transform - pos: 25.5,-3.5 + rot: 3.141592653589793 rad + pos: 47.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-33.5 - parent: 2 - - uid: 1006 + - uid: 8402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-34.5 + rot: -1.5707963267948966 rad + pos: 42.5,31.5 parent: 2 - - uid: 1019 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8403 components: - type: Transform - pos: 25.5,-2.5 + rot: -1.5707963267948966 rad + pos: 44.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1020 + - uid: 8406 components: - type: Transform - pos: 25.5,-1.5 + rot: 1.5707963267948966 rad + pos: 51.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1037 + color: '#0335FCFF' + - uid: 8409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-23.5 + rot: 1.5707963267948966 rad + pos: 51.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1038 + color: '#FF1212FF' + - uid: 8410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-23.5 + rot: 1.5707963267948966 rad + pos: 52.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1043 + color: '#0335FCFF' + - uid: 8549 components: - type: Transform - pos: 25.5,-0.5 + rot: 1.5707963267948966 rad + pos: 27.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1044 + - uid: 8550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,1.5 + rot: 1.5707963267948966 rad + pos: 28.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1106 + - uid: 8551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,0.5 + rot: 1.5707963267948966 rad + pos: 29.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1107 + - uid: 8552 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,9.5 + pos: 30.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1157 + color: '#FF1212FF' + - uid: 8553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 + rot: 1.5707963267948966 rad + pos: 31.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1158 + color: '#FF1212FF' + - uid: 8554 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + pos: 32.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1181 + color: '#FF1212FF' + - uid: 8556 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,9.5 + pos: 28.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1183 + - uid: 8557 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,9.5 + pos: 29.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1206 + - uid: 8558 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,9.5 + pos: 30.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1207 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1212 + - uid: 8559 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,9.5 + pos: 31.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1213 + - uid: 8560 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,9.5 + pos: 32.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1214 + - uid: 8576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,9.5 + rot: -1.5707963267948966 rad + pos: 35.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1217 + color: '#FF1212FF' + - uid: 8577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-44.5 + rot: -1.5707963267948966 rad + pos: 36.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1222 + - uid: 8578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-44.5 + rot: -1.5707963267948966 rad + pos: 37.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1224 + - uid: 8579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-44.5 + rot: -1.5707963267948966 rad + pos: 38.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1226 + - uid: 8580 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-44.5 + pos: 39.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1237 + - uid: 8582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-45.5 + rot: -1.5707963267948966 rad + pos: 41.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1245 + color: '#FF1212FF' + - uid: 8583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-47.5 + rot: -1.5707963267948966 rad + pos: 42.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1249 + color: '#FF1212FF' + - uid: 8586 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,-45.5 + pos: 42.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1300 + color: '#0335FCFF' + - uid: 8587 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-25.5 + pos: 41.5,24.5 parent: 2 - - uid: 1301 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8588 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-25.5 + pos: 40.5,24.5 parent: 2 - - uid: 1302 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8590 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-26.5 + pos: 38.5,24.5 parent: 2 - - uid: 1303 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-21.5 + rot: -1.5707963267948966 rad + pos: 37.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1346 + color: '#0335FCFF' + - uid: 8593 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-27.5 + pos: 36.5,24.5 parent: 2 - - uid: 1371 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8600 components: - type: Transform - pos: 31.5,-33.5 + rot: 3.141592653589793 rad + pos: 40.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1373 + - uid: 8604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-26.5 + rot: 3.141592653589793 rad + pos: 40.5,25.5 parent: 2 - - uid: 1472 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-24.5 + rot: 3.141592653589793 rad + pos: 39.5,25.5 parent: 2 - - uid: 1476 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-24.5 + rot: 3.141592653589793 rad + pos: 39.5,26.5 parent: 2 - - uid: 1485 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8611 components: - type: Transform - pos: 31.5,-34.5 + pos: 33.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1488 + - uid: 8612 components: - type: Transform - pos: 31.5,-35.5 + pos: 33.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1489 + - uid: 8613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-35.5 + pos: 33.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1490 + color: '#FF1212FF' + - uid: 8614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-35.5 + pos: 35.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1521 + - uid: 8615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 + pos: 35.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1528 + - uid: 8616 components: - type: Transform - pos: 42.5,6.5 + pos: 35.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1538 + - uid: 8617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-36.5 + pos: 35.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1541 + color: '#0335FCFF' + - uid: 8618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-36.5 + pos: 35.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1548 + color: '#0335FCFF' + - uid: 8619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-23.5 + pos: 35.5,18.5 parent: 2 - - uid: 1549 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-23.5 + rot: 1.5707963267948966 rad + pos: 34.5,19.5 parent: 2 - - uid: 1559 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8623 components: - type: Transform - pos: 55.5,-2.5 + rot: 1.5707963267948966 rad + pos: 35.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1562 + - uid: 8624 components: - type: Transform - pos: 55.5,-3.5 + rot: 1.5707963267948966 rad + pos: 36.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1564 + - uid: 8625 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,18.5 + rot: 1.5707963267948966 rad + pos: 37.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1572 + - uid: 8626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-36.5 + rot: 1.5707963267948966 rad + pos: 36.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1573 + color: '#0335FCFF' + - uid: 8627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-36.5 + rot: 1.5707963267948966 rad + pos: 37.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1574 + color: '#0335FCFF' + - uid: 8631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-36.5 + rot: 3.141592653589793 rad + pos: 33.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1594 + color: '#0335FCFF' + - uid: 8632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-36.5 + rot: 3.141592653589793 rad + pos: 33.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1595 + color: '#0335FCFF' + - uid: 8633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-36.5 + rot: 3.141592653589793 rad + pos: 33.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1600 + color: '#0335FCFF' + - uid: 8634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-36.5 + rot: 3.141592653589793 rad + pos: 33.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1601 + color: '#0335FCFF' + - uid: 8636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-36.5 + rot: 1.5707963267948966 rad + pos: 34.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1602 + color: '#0335FCFF' + - uid: 8637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-36.5 + rot: 1.5707963267948966 rad + pos: 35.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1603 + color: '#0335FCFF' + - uid: 8638 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-36.5 + pos: 39.5,-34.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1604 + color: '#0335FCFF' + - uid: 8655 components: - type: Transform - pos: 17.5,-35.5 + rot: 1.5707963267948966 rad + pos: 37.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1606 + color: '#0335FCFF' + - uid: 8660 components: - type: Transform - pos: 17.5,-33.5 + rot: 1.5707963267948966 rad + pos: 38.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1607 + color: '#0335FCFF' + - uid: 8672 components: - type: Transform - pos: 17.5,-32.5 + rot: 3.141592653589793 rad + pos: 47.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1608 + - uid: 8673 components: - type: Transform - pos: 17.5,-31.5 + rot: 1.5707963267948966 rad + pos: 53.5,34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1609 + - uid: 8678 components: - type: Transform - pos: 17.5,-30.5 + rot: 3.141592653589793 rad + pos: 42.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1610 + color: '#0335FCFF' + - uid: 8680 components: - type: Transform - pos: 17.5,-29.5 + rot: 3.141592653589793 rad + pos: 42.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1611 + color: '#0335FCFF' + - uid: 8681 components: - type: Transform - pos: 17.5,-28.5 + rot: 3.141592653589793 rad + pos: 41.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1612 + - uid: 8683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-27.5 + rot: 3.141592653589793 rad + pos: 41.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1620 + - uid: 8713 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-17.5 + pos: 54.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1621 + - uid: 8924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 + rot: 3.141592653589793 rad + pos: 43.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1624 + - uid: 8980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-27.5 + pos: 42.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1631 + - uid: 8982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-33.5 + pos: 42.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1632 + - uid: 9309 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-34.5 + pos: 67.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1633 + - uid: 9534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-28.5 + pos: 26.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1636 + color: '#FF1212FF' + - uid: 9535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-28.5 + pos: 26.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1654 + color: '#FF1212FF' + - uid: 9537 components: - type: Transform - pos: 33.5,-0.5 + pos: 26.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1666 + - uid: 9538 components: - type: Transform - pos: 18.5,-29.5 + pos: 26.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1667 + color: '#FF1212FF' + - uid: 9539 components: - type: Transform - pos: 18.5,-30.5 + pos: 26.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1668 + color: '#FF1212FF' + - uid: 9540 components: - type: Transform - pos: 18.5,-31.5 + pos: 26.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1669 + color: '#FF1212FF' + - uid: 9541 components: - type: Transform - pos: 18.5,-32.5 + pos: 25.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1670 + color: '#FF1212FF' + - uid: 9542 components: - type: Transform - pos: 18.5,-33.5 + pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1671 + color: '#FF1212FF' + - uid: 9543 components: - type: Transform - pos: 18.5,-34.5 + pos: 25.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1672 + color: '#FF1212FF' + - uid: 9544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-35.5 + rot: -1.5707963267948966 rad + pos: 27.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1676 + color: '#FF1212FF' + - uid: 9548 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-35.5 + pos: 25.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1677 + color: '#FF1212FF' + - uid: 9549 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-35.5 + pos: 24.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1679 + color: '#FF1212FF' + - uid: 9550 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-35.5 + pos: 23.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1680 + color: '#FF1212FF' + - uid: 9551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-35.5 + pos: 22.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1681 + color: '#FF1212FF' + - uid: 9552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-35.5 + pos: 22.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1682 + color: '#FF1212FF' + - uid: 9553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 + pos: 22.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1683 + color: '#FF1212FF' + - uid: 9561 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-35.5 + pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1684 + - uid: 9562 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-35.5 + pos: 24.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1686 + - uid: 9563 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-27.5 + pos: 23.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1687 + color: '#0335FCFF' + - uid: 9564 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-27.5 + pos: 22.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1689 + color: '#0335FCFF' + - uid: 9566 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-27.5 + pos: 21.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1693 + color: '#0335FCFF' + - uid: 9567 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-27.5 + pos: 20.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1696 + color: '#0335FCFF' + - uid: 9568 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-27.5 + pos: 19.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1719 + color: '#0335FCFF' + - uid: 9575 components: - type: Transform - pos: 25.5,33.5 + rot: 3.141592653589793 rad + pos: 18.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1730 + color: '#0335FCFF' + - uid: 9576 components: - type: Transform - pos: 25.5,32.5 + rot: 3.141592653589793 rad + pos: 18.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1749 + color: '#0335FCFF' + - uid: 9577 components: - type: Transform - pos: 25.5,31.5 + rot: 3.141592653589793 rad + pos: 18.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1762 + color: '#0335FCFF' + - uid: 9578 components: - type: Transform - pos: 25.5,30.5 + rot: 1.5707963267948966 rad + pos: 17.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1763 + color: '#0335FCFF' + - uid: 9579 components: - type: Transform - pos: 25.5,29.5 + rot: 1.5707963267948966 rad + pos: 16.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1764 + color: '#0335FCFF' + - uid: 9580 components: - type: Transform - pos: 25.5,28.5 + rot: 1.5707963267948966 rad + pos: 15.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1769 + color: '#0335FCFF' + - uid: 9629 components: - type: Transform - pos: 25.5,27.5 + rot: 3.141592653589793 rad + pos: 44.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1770 + - uid: 9630 components: - type: Transform - pos: 25.5,26.5 + rot: 3.141592653589793 rad + pos: 44.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1771 + - uid: 9631 components: - type: Transform - pos: 25.5,25.5 + rot: 3.141592653589793 rad + pos: 47.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1772 + color: '#0335FCFF' + - uid: 9632 components: - type: Transform - pos: 25.5,24.5 + rot: 3.141592653589793 rad + pos: 47.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1774 + color: '#0335FCFF' + - uid: 9633 components: - type: Transform - pos: 25.5,22.5 + rot: 3.141592653589793 rad + pos: 47.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1800 + color: '#0335FCFF' + - uid: 9634 components: - type: Transform - pos: 25.5,20.5 + rot: 3.141592653589793 rad + pos: 47.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1801 + color: '#0335FCFF' + - uid: 9654 components: - type: Transform - pos: 25.5,19.5 + pos: 42.5,-23.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1803 + color: '#0335FCFF' + - uid: 10046 components: - type: Transform - pos: 25.5,18.5 + rot: 1.5707963267948966 rad + pos: 53.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1804 + color: '#0335FCFF' + - uid: 10049 components: - type: Transform - pos: 25.5,17.5 + rot: 3.141592653589793 rad + pos: 59.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1805 + color: '#0335FCFF' + - uid: 10050 components: - type: Transform - pos: 25.5,16.5 + rot: 3.141592653589793 rad + pos: 59.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1822 + color: '#0335FCFF' + - uid: 10051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1823 + color: '#0335FCFF' + - uid: 10052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1824 + color: '#0335FCFF' + - uid: 10053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1825 + color: '#0335FCFF' + - uid: 10055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1826 + color: '#0335FCFF' + - uid: 10056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1827 + color: '#0335FCFF' + - uid: 10058 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,1.5 + pos: 58.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1829 + color: '#0335FCFF' + - uid: 10059 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,1.5 + pos: 57.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1830 + color: '#0335FCFF' + - uid: 10060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,1.5 + pos: 56.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1832 + color: '#0335FCFF' + - uid: 10061 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,1.5 + pos: 55.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1834 + color: '#0335FCFF' + - uid: 10063 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,1.5 + pos: 53.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1835 + color: '#0335FCFF' + - uid: 10064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,1.5 + pos: 52.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1836 + color: '#0335FCFF' + - uid: 10065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,0.5 + pos: 51.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1837 + color: '#0335FCFF' + - uid: 10066 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,0.5 + pos: 50.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1839 + color: '#0335FCFF' + - uid: 10067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: 49.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1840 + color: '#0335FCFF' + - uid: 10068 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,0.5 + pos: 48.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1841 + color: '#0335FCFF' + - uid: 10076 + components: + - type: Transform + pos: 79.5,-6.5 + parent: 2 + - uid: 10079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,0.5 + pos: 57.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1844 + color: '#0335FCFF' + - uid: 10115 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,0.5 + pos: 57.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1845 + color: '#0335FCFF' + - uid: 10117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 + pos: 77.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1846 + color: '#0335FCFF' + - uid: 10127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 + pos: 55.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1848 + - uid: 10134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 + pos: 57.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1849 + color: '#0335FCFF' + - uid: 10145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: 1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1850 + color: '#0335FCFF' + - uid: 10146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 + pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1860 + color: '#0335FCFF' + - uid: 10147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,10.5 + pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1861 + color: '#0335FCFF' + - uid: 10148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,10.5 + pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1862 + color: '#0335FCFF' + - uid: 10149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,10.5 + pos: 2.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1863 + color: '#0335FCFF' + - uid: 10150 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,10.5 + pos: 3.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1864 + color: '#0335FCFF' + - uid: 10151 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,10.5 + pos: 0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1867 + color: '#0335FCFF' + - uid: 10152 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,10.5 + pos: -0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1868 + color: '#0335FCFF' + - uid: 10153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1869 + color: '#0335FCFF' + - uid: 10154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1870 + color: '#0335FCFF' + - uid: 10155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1871 + color: '#0335FCFF' + - uid: 10156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1872 + color: '#0335FCFF' + - uid: 10158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1873 + color: '#0335FCFF' + - uid: 10159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1874 + color: '#0335FCFF' + - uid: 10160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1875 + color: '#0335FCFF' + - uid: 10161 components: - type: Transform - pos: 18.5,11.5 + rot: 3.141592653589793 rad + pos: 9.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1876 + color: '#0335FCFF' + - uid: 10162 components: - type: Transform - pos: 18.5,12.5 + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1878 + color: '#0335FCFF' + - uid: 10164 components: - type: Transform - pos: 18.5,13.5 + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1879 + color: '#0335FCFF' + - uid: 10165 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,14.5 + pos: 5.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1880 + color: '#0335FCFF' + - uid: 10166 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,14.5 + pos: 4.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1881 + color: '#0335FCFF' + - uid: 10167 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,14.5 + pos: 3.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1882 + color: '#0335FCFF' + - uid: 10168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,14.5 + pos: 2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1883 + color: '#0335FCFF' + - uid: 10175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,14.5 + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1884 + color: '#0335FCFF' + - uid: 10176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,14.5 + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1885 + color: '#0335FCFF' + - uid: 10177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,15.5 + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1886 + color: '#0335FCFF' + - uid: 10183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,15.5 + pos: 4.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1887 + - uid: 10184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,15.5 + pos: 4.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1888 + - uid: 10185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,15.5 + pos: 4.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1890 + - uid: 10186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,15.5 + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1891 + - uid: 10187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,15.5 + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1892 + - uid: 10188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,15.5 + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1893 + - uid: 10189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,15.5 + rot: 3.141592653589793 rad + pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1894 + - uid: 10190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,15.5 + rot: 3.141592653589793 rad + pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1895 + - uid: 10191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,15.5 + rot: 3.141592653589793 rad + pos: -0.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1896 + - uid: 10192 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,15.5 + pos: 9.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1897 + - uid: 10193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,15.5 + pos: 8.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1898 + - uid: 10194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,15.5 + pos: 8.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1899 + - uid: 10195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,15.5 + pos: 8.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1900 + - uid: 10196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,15.5 + pos: 8.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1901 + - uid: 10197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,15.5 + pos: 8.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1903 + - uid: 10198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,14.5 + pos: 8.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1904 + - uid: 10199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,13.5 + pos: 8.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1905 + - uid: 10209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,12.5 + rot: -1.5707963267948966 rad + pos: 26.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1906 + color: '#0335FCFF' + - uid: 10210 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1907 + color: '#0335FCFF' + - uid: 10211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,10.5 + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1908 + color: '#0335FCFF' + - uid: 10212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,9.5 + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1909 + - uid: 10213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,8.5 + rot: -1.5707963267948966 rad + pos: 23.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1912 + - uid: 10242 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,5.5 + pos: 26.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1913 + - uid: 10243 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,4.5 + pos: 26.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1914 + - uid: 10244 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,3.5 + pos: 26.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1915 + color: '#0335FCFF' + - uid: 10245 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,2.5 + pos: 26.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1916 + color: '#0335FCFF' + - uid: 10247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,0.5 + rot: 3.141592653589793 rad + pos: 26.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1917 + color: '#0335FCFF' + - uid: 10323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,0.5 + pos: 54.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1918 + color: '#0335FCFF' + - uid: 10324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,0.5 + pos: 54.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1919 + color: '#0335FCFF' + - uid: 10325 components: - type: Transform - pos: 42.5,10.5 + pos: 54.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1920 + - uid: 10326 components: - type: Transform - pos: 42.5,9.5 + rot: -1.5707963267948966 rad + pos: 53.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1921 + - uid: 10327 components: - type: Transform - pos: 42.5,11.5 + rot: -1.5707963267948966 rad + pos: 52.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1934 + - uid: 10328 components: - type: Transform - pos: 42.5,12.5 + rot: -1.5707963267948966 rad + pos: 51.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1935 + - uid: 10329 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,5.5 + rot: -1.5707963267948966 rad + pos: 50.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1937 + - uid: 10330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-31.5 + rot: -1.5707963267948966 rad + pos: 49.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1938 + - uid: 10332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-29.5 + rot: 3.141592653589793 rad + pos: 47.5,11.5 parent: 2 - - uid: 1939 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10333 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-16.5 + pos: 47.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1942 + - uid: 10337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-29.5 + pos: 62.5,13.5 parent: 2 - - uid: 1943 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10338 components: - type: Transform - pos: 44.5,-22.5 + pos: 62.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1944 + color: '#0335FCFF' + - uid: 10339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-30.5 + pos: 62.5,11.5 parent: 2 - - uid: 1959 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 + rot: -1.5707963267948966 rad + pos: 61.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1960 + - uid: 10341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 + rot: -1.5707963267948966 rad + pos: 60.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1961 + - uid: 10342 components: - type: Transform - pos: 21.5,-29.5 + rot: -1.5707963267948966 rad + pos: 63.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1962 + - uid: 10344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-31.5 + rot: -1.5707963267948966 rad + pos: 65.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1963 + - uid: 10345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-2.5 + rot: -1.5707963267948966 rad + pos: 66.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1964 + - uid: 10348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 + rot: -1.5707963267948966 rad + pos: 58.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1965 + - uid: 10349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-1.5 + rot: -1.5707963267948966 rad + pos: 57.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1966 + - uid: 10350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-5.5 + rot: -1.5707963267948966 rad + pos: 56.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1969 + - uid: 10353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-1.5 + rot: -1.5707963267948966 rad + pos: 60.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1970 + - uid: 10354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 + rot: -1.5707963267948966 rad + pos: 61.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 1971 + - uid: 10359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-7.5 + pos: 46.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2021 + color: '#FF1212FF' + - uid: 10361 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 + rot: -1.5707963267948966 rad + pos: 48.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2029 + - uid: 10362 components: - type: Transform - pos: 11.5,-38.5 + rot: -1.5707963267948966 rad + pos: 49.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2032 + color: '#FF1212FF' + - uid: 10367 components: - type: Transform - pos: 11.5,-39.5 + rot: 1.5707963267948966 rad + pos: 51.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2052 + color: '#FF1212FF' + - uid: 10368 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-0.5 + pos: 52.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2062 + color: '#FF1212FF' + - uid: 10369 components: - type: Transform - pos: 10.5,-37.5 + rot: 1.5707963267948966 rad + pos: 53.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2063 + - uid: 10370 components: - type: Transform - pos: 25.5,-9.5 + rot: 1.5707963267948966 rad + pos: 54.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2071 + - uid: 10371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-34.5 + rot: 1.5707963267948966 rad + pos: 55.5,19.5 parent: 2 - - uid: 2089 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10372 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-22.5 + pos: 56.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2116 + color: '#FF1212FF' + - uid: 10373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-30.5 + rot: 1.5707963267948966 rad + pos: 57.5,19.5 parent: 2 - - uid: 2130 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-22.5 + rot: 3.141592653589793 rad + pos: 58.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2139 + color: '#FF1212FF' + - uid: 10377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-23.5 + rot: 3.141592653589793 rad + pos: 58.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2143 + color: '#FF1212FF' + - uid: 10378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-28.5 + rot: 3.141592653589793 rad + pos: 58.5,15.5 parent: 2 - - uid: 2148 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10379 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-26.5 + pos: 58.5,14.5 parent: 2 - - uid: 2161 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-1.5 + pos: 63.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2304 + color: '#FF1212FF' + - uid: 10386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-22.5 + pos: 63.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2316 + - uid: 10387 components: - type: Transform - pos: 25.5,-12.5 + pos: 63.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2317 + - uid: 10388 components: - type: Transform - pos: 25.5,-11.5 + rot: -1.5707963267948966 rad + pos: 64.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2322 + - uid: 10389 components: - type: Transform - pos: 25.5,-13.5 + rot: -1.5707963267948966 rad + pos: 65.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2326 + - uid: 10390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,14.5 + rot: -1.5707963267948966 rad + pos: 66.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2381 + color: '#FF1212FF' + - uid: 10391 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,0.5 + pos: 62.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2384 + - uid: 10392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-31.5 + rot: -1.5707963267948966 rad + pos: 61.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2385 + color: '#FF1212FF' + - uid: 10393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-31.5 + rot: -1.5707963267948966 rad + pos: 60.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2386 + color: '#FF1212FF' + - uid: 10394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-31.5 + rot: -1.5707963267948966 rad + pos: 59.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2388 + color: '#FF1212FF' + - uid: 10395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-31.5 + rot: -1.5707963267948966 rad + pos: 56.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2396 + color: '#FF1212FF' + - uid: 10396 components: - type: Transform - pos: 25.5,-6.5 + rot: 3.141592653589793 rad + pos: 55.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2397 + - uid: 10397 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-29.5 + pos: 55.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2398 + color: '#FF1212FF' + - uid: 10398 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,8.5 + pos: 55.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2399 + color: '#FF1212FF' + - uid: 10405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,9.5 + pos: 58.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2412 + color: '#FF1212FF' + - uid: 10406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,17.5 + pos: 58.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2413 + color: '#FF1212FF' + - uid: 10407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-20.5 + pos: 58.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2414 + color: '#FF1212FF' + - uid: 10408 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-31.5 + pos: 59.5,23.5 parent: 2 - - uid: 2415 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10409 components: - type: Transform - pos: 42.5,7.5 + rot: -1.5707963267948966 rad + pos: 60.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2416 + color: '#FF1212FF' + - uid: 10410 components: - type: Transform - pos: 42.5,-0.5 + rot: -1.5707963267948966 rad + pos: 61.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2417 + color: '#FF1212FF' + - uid: 10428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-1.5 + pos: 63.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2418 + - uid: 10429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,18.5 + pos: 63.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2419 + - uid: 10430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 + pos: 63.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2423 + - uid: 10431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 + pos: 63.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2436 + - uid: 10432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,0.5 + pos: 64.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2452 + - uid: 10433 components: - type: Transform - pos: 27.5,44.5 + pos: 64.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2453 + - uid: 10434 components: - type: Transform - pos: 27.5,45.5 + pos: 64.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2454 + - uid: 10435 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 10453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,42.5 + pos: 28.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2455 + - uid: 10641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,43.5 + rot: -1.5707963267948966 rad + pos: 27.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2472 + - uid: 10642 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-19.5 + pos: 29.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2484 + - uid: 10646 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,0.5 + pos: 35.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2487 + - uid: 10647 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,1.5 + pos: 34.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2488 + - uid: 10648 components: - type: Transform - pos: 25.5,-5.5 + rot: -1.5707963267948966 rad + pos: 33.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2490 + - uid: 10649 components: - type: Transform - pos: 25.5,-21.5 + rot: -1.5707963267948966 rad + pos: 37.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2530 + - uid: 10650 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,46.5 + pos: 38.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2532 + color: '#FF1212FF' + - uid: 10651 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,46.5 + pos: 39.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2546 + color: '#FF1212FF' + - uid: 10663 components: - type: Transform - pos: 25.5,-15.5 + pos: 43.5,-23.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2560 + - uid: 11101 components: - type: Transform - pos: 25.5,-8.5 + rot: 3.141592653589793 rad + pos: 43.5,-29.5 + parent: 2 + - uid: 11278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2561 + color: '#0335FCFF' + - uid: 11281 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,9.5 + pos: 53.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2667 + - uid: 11282 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,9.5 + pos: 54.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2718 + - uid: 11290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-32.5 + rot: 1.5707963267948966 rad + pos: 55.5,-1.5 parent: 2 - - uid: 2730 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-33.5 + pos: 62.5,-0.5 parent: 2 - - uid: 2731 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-8.5 + pos: 62.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 2751 + - uid: 11313 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-32.5 + pos: 54.5,0.5 parent: 2 - - uid: 2781 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-34.5 + rot: -1.5707963267948966 rad + pos: 53.5,0.5 parent: 2 - - uid: 2782 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-30.5 + rot: -1.5707963267948966 rad + pos: 52.5,0.5 parent: 2 - - uid: 3289 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-24.5 + rot: 1.5707963267948966 rad + pos: 64.5,1.5 parent: 2 - - uid: 3292 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11326 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-28.5 + rot: 1.5707963267948966 rad + pos: 66.5,1.5 parent: 2 - - uid: 3295 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-32.5 + rot: 1.5707963267948966 rad + pos: 67.5,1.5 parent: 2 - - uid: 3301 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-26.5 + rot: 1.5707963267948966 rad + pos: 68.5,1.5 parent: 2 - - uid: 3302 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-31.5 + rot: 1.5707963267948966 rad + pos: 69.5,1.5 parent: 2 - - uid: 3307 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-34.5 + rot: 1.5707963267948966 rad + pos: 70.5,1.5 parent: 2 - - uid: 3312 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-33.5 + rot: 1.5707963267948966 rad + pos: 72.5,1.5 parent: 2 - - uid: 3522 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-21.5 + pos: 73.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3553 + color: '#0335FCFF' + - uid: 11338 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-0.5 + pos: 74.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3592 + - uid: 11339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 + rot: 1.5707963267948966 rad + pos: 75.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3595 + - uid: 11340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 + rot: 1.5707963267948966 rad + pos: 76.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3657 + - uid: 11341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-24.5 + rot: 1.5707963267948966 rad + pos: 62.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3686 + - uid: 11342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 + rot: 1.5707963267948966 rad + pos: 63.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3695 + color: '#FF1212FF' + - uid: 11343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-0.5 + rot: 1.5707963267948966 rad + pos: 64.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3704 + - uid: 11344 components: - type: Transform - pos: 21.5,-30.5 + rot: 1.5707963267948966 rad + pos: 65.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3736 + color: '#FF1212FF' + - uid: 11345 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-0.5 + pos: 66.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3775 + color: '#FF1212FF' + - uid: 11346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-24.5 + rot: 1.5707963267948966 rad + pos: 67.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3835 + color: '#FF1212FF' + - uid: 11347 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-0.5 + pos: 68.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3843 + color: '#FF1212FF' + - uid: 11348 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-1.5 + pos: 69.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3845 + color: '#FF1212FF' + - uid: 11350 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-0.5 + pos: 70.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3846 + color: '#FF1212FF' + - uid: 11352 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-0.5 + pos: 71.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3947 + color: '#FF1212FF' + - uid: 11356 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-21.5 + pos: 73.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3952 + - uid: 11357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,13.5 + rot: 1.5707963267948966 rad + pos: 74.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3954 + color: '#FF1212FF' + - uid: 11358 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-48.5 + pos: 75.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3955 + color: '#FF1212FF' + - uid: 11359 components: - type: Transform - pos: 38.5,-46.5 + rot: 1.5707963267948966 rad + pos: 76.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3958 + color: '#FF1212FF' + - uid: 11361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,13.5 + pos: 77.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3959 + - uid: 11362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,13.5 + pos: 77.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3962 + - uid: 11363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-21.5 + pos: 77.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3963 + color: '#0335FCFF' + - uid: 11364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-21.5 + pos: 77.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3974 + color: '#0335FCFF' + - uid: 11517 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,6.5 + pos: 66.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3975 + - uid: 11518 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-13.5 + pos: 66.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3976 + - uid: 11519 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,7.5 + pos: 65.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 3997 + - uid: 11523 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,3.5 + pos: 65.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4003 + - uid: 11524 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,1.5 + pos: 65.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4004 + - uid: 11525 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,0.5 + pos: 65.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4007 + - uid: 11528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-22.5 + rot: 3.141592653589793 rad + pos: 65.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4009 + color: '#0335FCFF' + - uid: 11529 components: - type: Transform - pos: 19.5,12.5 + rot: 3.141592653589793 rad + pos: 65.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4013 + - uid: 11530 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4022 - components: - - type: Transform - pos: 19.5,7.5 + pos: 67.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4023 + - uid: 11581 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,13.5 + pos: 39.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4024 + color: '#03FCD3FF' + - uid: 11699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,13.5 + rot: 1.5707963267948966 rad + pos: 68.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4025 + - uid: 11700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,13.5 + rot: 1.5707963267948966 rad + pos: 69.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4032 + - uid: 11701 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-27.5 + pos: 70.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4043 + color: '#0335FCFF' + - uid: 11702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 + pos: 71.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4045 + - uid: 11703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 + pos: 71.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4048 + - uid: 11704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,0.5 + pos: 71.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4058 + color: '#0335FCFF' + - uid: 11705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-28.5 + pos: 71.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4060 + - uid: 11706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-28.5 + pos: 71.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4062 + - uid: 11711 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,1.5 + pos: 56.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4063 + - uid: 11712 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,1.5 + pos: 57.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4064 + - uid: 11713 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,1.5 + pos: 58.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4065 + - uid: 11714 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,1.5 + pos: 59.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4067 + - uid: 11716 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4068 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-24.5 + pos: 61.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4070 + - uid: 11717 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,0.5 + pos: 62.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4073 + - uid: 11718 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-1.5 + pos: 63.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 2 - - uid: 4081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-28.5 - parent: 2 - - uid: 4082 + color: '#FF1212FF' + - uid: 11723 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-28.5 - parent: 2 - - uid: 4083 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-25.5 + pos: 65.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4084 + - uid: 11724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-22.5 + pos: 66.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4085 + - uid: 11725 components: - type: Transform - pos: 19.5,10.5 + pos: 66.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-26.5 - parent: 2 - - uid: 4088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-25.5 - parent: 2 - - uid: 4094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-24.5 - parent: 2 - - uid: 4095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-24.5 - parent: 2 - - uid: 4103 + color: '#FF1212FF' + - uid: 11727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-0.5 + pos: 72.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4104 + color: '#FF1212FF' + - uid: 11728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 + pos: 72.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4105 + color: '#FF1212FF' + - uid: 11738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 55.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4106 + - uid: 11739 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 54.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4108 + - uid: 11740 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,29.5 + rot: -1.5707963267948966 rad + pos: 53.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4109 + - uid: 11741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-15.5 + rot: -1.5707963267948966 rad + pos: 54.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4111 + color: '#FF1212FF' + - uid: 11742 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-1.5 + pos: 53.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4114 + color: '#FF1212FF' + - uid: 11756 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,30.5 + pos: 43.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4124 + - uid: 11764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 + rot: 1.5707963267948966 rad + pos: 58.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4125 + - uid: 11788 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,21.5 + pos: 57.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4155 + - uid: 11790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,22.5 + pos: 61.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4159 + - uid: 11796 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-35.5 + pos: 57.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4160 + - uid: 11925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,32.5 + pos: 61.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4161 + - uid: 11926 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,27.5 + pos: 61.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4162 + - uid: 11927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,31.5 + pos: 61.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4163 + - uid: 11928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-14.5 + pos: 61.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4164 + - uid: 11929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,33.5 + pos: 61.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4165 + - uid: 11930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 + pos: 61.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4180 + - uid: 11931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-12.5 + pos: 61.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4184 + - uid: 11932 components: - type: Transform - pos: 46.5,-3.5 + pos: 60.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4185 + color: '#FF1212FF' + - uid: 11933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 + pos: 60.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4192 + color: '#FF1212FF' + - uid: 11934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,26.5 + pos: 60.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4193 + color: '#FF1212FF' + - uid: 11935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-0.5 + pos: 60.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4194 + color: '#FF1212FF' + - uid: 11949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 + rot: 3.141592653589793 rad + pos: 71.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4195 + - uid: 11950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-0.5 + rot: 3.141592653589793 rad + pos: 71.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4196 + - uid: 11951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 + rot: 3.141592653589793 rad + pos: 71.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4197 + - uid: 11952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-0.5 + rot: 3.141592653589793 rad + pos: 72.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4198 + color: '#FF1212FF' + - uid: 12729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 + pos: 8.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4200 + color: '#FF1212FF' + - uid: 12821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 + pos: 8.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4201 + color: '#FF1212FF' + - uid: 12859 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4202 - components: - - type: Transform - pos: 42.5,0.5 + pos: 41.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4203 + color: '#03FCD3FF' + - uid: 12860 components: - type: Transform - pos: 42.5,1.5 + rot: 3.141592653589793 rad + pos: 43.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4205 + color: '#03FCD3FF' + - uid: 12867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,13.5 + pos: 43.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4206 + color: '#03FCD3FF' + - uid: 12868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,13.5 + pos: 41.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4207 + color: '#03FCD3FF' + - uid: 12879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,13.5 + rot: 3.141592653589793 rad + pos: 44.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4208 + - uid: 12880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,13.5 + rot: 1.5707963267948966 rad + pos: 45.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4209 + - uid: 12887 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,13.5 + pos: 46.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4210 + color: '#FF1212FF' + - uid: 12902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,13.5 + rot: 3.141592653589793 rad + pos: 49.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4211 + color: '#FF1212FF' + - uid: 12903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,13.5 + rot: 3.141592653589793 rad + pos: 47.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4212 + color: '#FF1212FF' + - uid: 13143 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,13.5 + pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4214 + - uid: 13144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,13.5 + pos: -13.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4216 + color: '#FF1212FF' + - uid: 13279 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,13.5 + pos: -8.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4217 + - uid: 13435 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,13.5 + pos: 40.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4221 + - uid: 13448 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-0.5 + pos: 41.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4222 + - uid: 13453 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-0.5 + pos: 42.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4223 + - uid: 13498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-0.5 + pos: 46.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4224 + color: '#FF1212FF' + - uid: 13519 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-0.5 + pos: 55.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4225 + color: '#FF1212FF' + - uid: 13522 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-0.5 + pos: 55.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4226 + - uid: 13524 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-0.5 + pos: 54.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4228 + color: '#FF1212FF' + - uid: 13525 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,25.5 + pos: 56.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4231 + - uid: 13548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-31.5 + rot: 3.141592653589793 rad + pos: 45.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4232 + - uid: 13551 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-28.5 + pos: 46.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4233 + - uid: 13552 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-4.5 + pos: 45.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4234 + - uid: 13553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-28.5 + rot: 3.141592653589793 rad + pos: 45.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4235 + - uid: 13554 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-0.5 + pos: 52.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4237 + color: '#FF1212FF' + - uid: 13555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-1.5 + rot: -1.5707963267948966 rad + pos: 47.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4238 + - uid: 13575 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-9.5 + pos: 46.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4239 + color: '#FF1212FF' + - uid: 13986 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-10.5 + pos: -6.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4240 + color: '#FF1212FF' + - uid: 13987 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-6.5 + pos: -6.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4241 + color: '#FF1212FF' + - uid: 13988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-0.5 + rot: 3.141592653589793 rad + pos: -6.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4242 + color: '#FF1212FF' + - uid: 13989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-0.5 + rot: 3.141592653589793 rad + pos: -5.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4274 + - uid: 13990 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-18.5 + pos: -5.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4281 + - uid: 13991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-31.5 + rot: 3.141592653589793 rad + pos: -5.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4283 + - uid: 13992 components: - type: Transform - pos: 19.5,11.5 + rot: 3.141592653589793 rad + pos: -5.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4285 + - uid: 13995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,1.5 + rot: 1.5707963267948966 rad + pos: -15.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4286 + - uid: 13996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,1.5 + rot: 1.5707963267948966 rad + pos: -16.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4287 + - uid: 13997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,1.5 + rot: 1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4288 + - uid: 13998 components: - type: Transform - pos: 25.5,-14.5 + rot: 1.5707963267948966 rad + pos: -18.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4289 + - uid: 13999 components: - type: Transform - pos: 25.5,-16.5 + rot: 1.5707963267948966 rad + pos: -19.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4290 + - uid: 14000 components: - type: Transform - pos: 25.5,-20.5 + rot: 1.5707963267948966 rad + pos: -20.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4291 + - uid: 14001 components: - type: Transform - pos: 25.5,-18.5 + rot: 1.5707963267948966 rad + pos: -21.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4352 + - uid: 14002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-23.5 + rot: 1.5707963267948966 rad + pos: -22.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4353 + color: '#FF1212FF' + - uid: 14003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-23.5 + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4356 - components: - - type: Transform - pos: 35.5,-33.5 - parent: 2 - - uid: 4357 + color: '#0335FCFF' + - uid: 14004 components: - type: Transform - pos: 35.5,-29.5 + rot: 1.5707963267948966 rad + pos: -16.5,-1.5 parent: 2 - - uid: 4358 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14005 components: - type: Transform - pos: 35.5,-28.5 + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 parent: 2 - - uid: 4359 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14006 components: - type: Transform - pos: 35.5,-27.5 + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 parent: 2 - - uid: 4420 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14007 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-30.5 + pos: -19.5,-1.5 parent: 2 - - uid: 4421 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-30.5 + pos: -20.5,-1.5 parent: 2 - - uid: 4422 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14009 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-28.5 + pos: -21.5,-1.5 parent: 2 - - uid: 4423 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-26.5 + rot: 3.141592653589793 rad + pos: -24.5,-0.5 parent: 2 - - uid: 4424 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-26.5 + rot: 3.141592653589793 rad + pos: -24.5,-1.5 parent: 2 - - uid: 4425 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-23.5 + rot: 3.141592653589793 rad + pos: -24.5,-2.5 parent: 2 - - uid: 4426 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-24.5 + rot: 3.141592653589793 rad + pos: -24.5,-3.5 parent: 2 - - uid: 4444 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14020 components: - type: Transform - pos: 32.5,-36.5 + rot: 3.141592653589793 rad + pos: -24.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4445 + color: '#FF1212FF' + - uid: 14021 components: - type: Transform - pos: 32.5,-37.5 + rot: 3.141592653589793 rad + pos: -24.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4446 + color: '#FF1212FF' + - uid: 14022 components: - type: Transform - pos: 31.5,-37.5 + rot: 3.141592653589793 rad + pos: -24.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4448 + - uid: 14024 components: - type: Transform - pos: 31.5,-38.5 + rot: 3.141592653589793 rad + pos: -22.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4449 + color: '#0335FCFF' + - uid: 14025 components: - type: Transform - pos: 32.5,-38.5 + rot: 3.141592653589793 rad + pos: -22.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4451 + - uid: 14026 components: - type: Transform - pos: 32.5,-39.5 + rot: 3.141592653589793 rad + pos: -22.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4461 + - uid: 14027 components: - type: Transform - pos: 22.5,-37.5 + rot: 3.141592653589793 rad + pos: -22.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4462 + color: '#0335FCFF' + - uid: 14034 components: - type: Transform - pos: 20.5,-36.5 + rot: 3.141592653589793 rad + pos: -22.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4463 + - uid: 14035 components: - type: Transform - pos: 20.5,-37.5 + rot: 3.141592653589793 rad + pos: -22.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4480 + - uid: 14036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-48.5 + rot: 3.141592653589793 rad + pos: -22.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4493 + color: '#0335FCFF' + - uid: 14037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-44.5 + rot: 3.141592653589793 rad + pos: -22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4495 + color: '#0335FCFF' + - uid: 14038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-44.5 + rot: 3.141592653589793 rad + pos: -22.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4970 + color: '#0335FCFF' + - uid: 14039 components: - type: Transform - pos: 27.5,34.5 + rot: 3.141592653589793 rad + pos: -22.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5009 + - uid: 14040 components: - type: Transform - pos: 55.5,-1.5 + rot: 3.141592653589793 rad + pos: -22.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5023 + color: '#0335FCFF' + - uid: 14042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-2.5 + rot: 3.141592653589793 rad + pos: -22.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5024 + - uid: 14043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-2.5 + rot: 3.141592653589793 rad + pos: -22.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5025 + - uid: 14044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-2.5 + rot: 3.141592653589793 rad + pos: -22.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5036 + - uid: 14045 components: - type: Transform - pos: 56.5,-0.5 + rot: 3.141592653589793 rad + pos: -22.5,-18.5 parent: 2 - - uid: 5038 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,0.5 + rot: 3.141592653589793 rad + pos: -22.5,-20.5 parent: 2 - - uid: 5040 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,1.5 + rot: 3.141592653589793 rad + pos: -22.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5042 + color: '#0335FCFF' + - uid: 14048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,1.5 + rot: 3.141592653589793 rad + pos: -24.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5044 + - uid: 14049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-27.5 + rot: 3.141592653589793 rad + pos: -24.5,-16.5 parent: 2 - - uid: 5065 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-28.5 + rot: 3.141592653589793 rad + pos: -24.5,-15.5 parent: 2 - - uid: 5081 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,1.5 + rot: 3.141592653589793 rad + pos: -24.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5083 + - uid: 14052 components: - type: Transform - pos: 57.5,-7.5 + rot: 3.141592653589793 rad + pos: -24.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5110 + color: '#FF1212FF' + - uid: 14053 components: - type: Transform - pos: 46.5,16.5 + rot: 3.141592653589793 rad + pos: -24.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5184 + - uid: 14054 components: - type: Transform - pos: 57.5,-8.5 + rot: 3.141592653589793 rad + pos: -24.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5192 + color: '#FF1212FF' + - uid: 14055 components: - type: Transform - pos: 55.5,-7.5 + rot: 3.141592653589793 rad + pos: -24.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5194 + - uid: 14056 components: - type: Transform - pos: 56.5,27.5 + rot: 3.141592653589793 rad + pos: -24.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5206 + color: '#FF1212FF' + - uid: 14057 components: - type: Transform - pos: 57.5,-6.5 + rot: 3.141592653589793 rad + pos: -24.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5208 + color: '#FF1212FF' + - uid: 14058 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-25.5 + pos: -24.5,-7.5 parent: 2 - - uid: 5216 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-26.5 + rot: 3.141592653589793 rad + pos: 64.5,15.5 parent: 2 - - uid: 5258 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14172 components: - type: Transform - pos: 79.5,-8.5 + rot: 3.141592653589793 rad + pos: 82.5,34.5 parent: 2 - - uid: 5259 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14328 components: - type: Transform - pos: 79.5,-7.5 + rot: 1.5707963267948966 rad + pos: 65.5,18.5 parent: 2 - - uid: 5273 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14370 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,2.5 + pos: 82.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5303 + - uid: 14371 components: - type: Transform - pos: 55.5,-4.5 + rot: 3.141592653589793 rad + pos: 82.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5429 + - uid: 14375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,6.5 + rot: -1.5707963267948966 rad + pos: 83.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5430 + color: '#FF1212FF' + - uid: 14378 components: - type: Transform - pos: 11.5,-36.5 + rot: 1.5707963267948966 rad + pos: 83.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5666 + - uid: 14379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-35.5 + rot: 1.5707963267948966 rad + pos: 84.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5667 + - uid: 14383 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-35.5 + pos: 86.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5668 + - uid: 14387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-35.5 + rot: 1.5707963267948966 rad + pos: 82.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5669 + - uid: 14388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 + pos: 81.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 5670 + - uid: 14389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 + pos: 81.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5671 + color: '#0335FCFF' + - uid: 14413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-34.5 + rot: 1.5707963267948966 rad + pos: 85.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5672 + - uid: 14414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 + rot: 1.5707963267948966 rad + pos: 86.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5673 + - uid: 14415 components: - type: Transform - pos: 10.5,-38.5 + rot: 1.5707963267948966 rad + pos: 87.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5683 - components: - - type: Transform - pos: 38.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 6425 + - uid: 14416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,45.5 + rot: 1.5707963267948966 rad + pos: 87.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6426 + - uid: 14417 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,44.5 + rot: 1.5707963267948966 rad + pos: 88.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6479 + - uid: 14423 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,46.5 + pos: 90.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6482 - components: - - type: Transform - pos: 33.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6484 + - uid: 14424 components: - type: Transform - pos: 33.5,-3.5 + rot: -1.5707963267948966 rad + pos: 91.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6488 + color: '#0335FCFF' + - uid: 14426 components: - type: Transform - pos: 46.5,-5.5 + pos: 92.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6490 + - uid: 14427 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-3.5 + pos: 88.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6498 + - uid: 14428 components: - type: Transform - pos: 44.5,-2.5 + rot: -1.5707963267948966 rad + pos: 89.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6503 + - uid: 14430 components: - type: Transform - pos: 27.5,39.5 + rot: -1.5707963267948966 rad + pos: 91.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6507 + color: '#FF1212FF' + - uid: 14584 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,42.5 + pos: 66.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6508 + - uid: 14585 components: - type: Transform - pos: 46.5,-4.5 + rot: 3.141592653589793 rad + pos: 67.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6536 + - uid: 14588 components: - type: Transform - pos: 56.5,28.5 + rot: 3.141592653589793 rad + pos: 64.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6550 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6551 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6553 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6554 + - uid: 14589 components: - type: Transform - pos: 33.5,-8.5 + rot: 3.141592653589793 rad + pos: 64.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6556 + color: '#0335FCFF' + - uid: 14601 components: - type: Transform - pos: 35.5,-1.5 + rot: 3.141592653589793 rad + pos: 67.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6557 + - uid: 14602 components: - type: Transform - pos: 35.5,-2.5 + rot: 3.141592653589793 rad + pos: 67.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6559 + - uid: 14606 components: - type: Transform - pos: 35.5,-4.5 + rot: 1.5707963267948966 rad + pos: 68.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6560 + - uid: 14607 components: - type: Transform - pos: 35.5,-5.5 + pos: 69.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6561 + - uid: 14608 components: - type: Transform - pos: 35.5,-6.5 + pos: 69.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6562 + - uid: 14609 components: - type: Transform - pos: 35.5,-7.5 + rot: -1.5707963267948966 rad + pos: 70.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6563 + - uid: 14610 components: - type: Transform - pos: 35.5,-8.5 + rot: -1.5707963267948966 rad + pos: 71.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6564 + - uid: 14612 components: - type: Transform - pos: 35.5,-9.5 + rot: 3.141592653589793 rad + pos: 72.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6566 + - uid: 14618 components: - type: Transform - pos: 44.5,-1.5 + rot: 3.141592653589793 rad + pos: 71.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6567 + - uid: 14619 components: - type: Transform - pos: 46.5,-2.5 + rot: 3.141592653589793 rad + pos: 71.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6575 + color: '#FF1212FF' + - uid: 14620 components: - type: Transform - pos: 42.5,-4.5 + rot: 3.141592653589793 rad + pos: 71.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6576 + - uid: 14665 components: - type: Transform - pos: 42.5,-5.5 + pos: 8.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6577 + - uid: 14666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-3.5 + pos: 8.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6579 + color: '#FF1212FF' + - uid: 14668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-3.5 + pos: 7.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6580 + - uid: 14957 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-3.5 + pos: 6.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6581 + color: '#FF1212FF' + - uid: 14961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: 5.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6585 + color: '#FF1212FF' + - uid: 14962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-10.5 + rot: 3.141592653589793 rad + pos: 6.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6586 + - uid: 14964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-10.5 + pos: 5.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6587 + color: '#FF1212FF' +- proto: GasPipeTJunction + entities: + - uid: 14 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-10.5 + pos: 31.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6589 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 2 - - uid: 6594 + - uid: 39 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-10.5 + rot: 1.5707963267948966 rad + pos: 18.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6596 + - uid: 347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 + pos: 18.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6597 + - uid: 355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 + rot: 3.141592653589793 rad + pos: 13.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6598 + - uid: 356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-9.5 + pos: 13.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6599 + color: '#0335FCFF' + - uid: 362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 + pos: 22.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6600 + color: '#0335FCFF' + - uid: 426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-9.5 + pos: 9.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6602 + - uid: 434 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-5.5 + pos: 11.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6603 + - uid: 756 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-6.5 + pos: 27.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6604 + - uid: 892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-7.5 + pos: 19.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6605 + - uid: 1036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-8.5 + rot: -1.5707963267948966 rad + pos: 17.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6606 + color: '#FF1212FF' + - uid: 1148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-9.5 + rot: -1.5707963267948966 rad + pos: 33.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6612 + color: '#FF1212FF' + - uid: 1215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 + pos: 43.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6613 + color: '#03FCD3FF' + - uid: 1221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 + rot: 3.141592653589793 rad + pos: 30.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6624 + color: '#0335FCFF' + - uid: 1225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-6.5 + pos: 43.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6625 + - uid: 1234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-6.5 + rot: -1.5707963267948966 rad + pos: 43.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6626 + - uid: 1257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-6.5 + pos: 41.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6774 + - uid: 1259 components: - type: Transform - pos: 56.5,26.5 + pos: 26.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 6818 + - uid: 1260 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-1.5 + pos: 28.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6835 + - uid: 1261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 + pos: 22.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6859 + - uid: 1262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 + rot: 3.141592653589793 rad + pos: 18.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6915 + color: '#0335FCFF' + - uid: 1263 components: - type: Transform - pos: 10.5,-40.5 + pos: 20.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6916 + color: '#0335FCFF' + - uid: 1304 components: - type: Transform - pos: 10.5,-39.5 + pos: 24.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6917 + color: '#0335FCFF' + - uid: 1372 components: - type: Transform - pos: 10.5,-35.5 + pos: 26.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6918 + - uid: 1516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,7.5 + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6919 + - uid: 1619 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-2.5 + pos: 26.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6946 + color: '#0335FCFF' + - uid: 1653 components: - type: Transform - pos: 18.5,9.5 + pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6947 + - uid: 1690 components: - type: Transform - pos: 18.5,8.5 + rot: 3.141592653589793 rad + pos: 21.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6948 + color: '#0335FCFF' + - uid: 1692 components: - type: Transform - pos: 18.5,7.5 + pos: 21.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7006 + color: '#0335FCFF' + - uid: 1694 components: - type: Transform - pos: 27.5,36.5 + rot: 1.5707963267948966 rad + pos: 21.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7410 + - uid: 1695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-5.5 + rot: 1.5707963267948966 rad + pos: 21.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7411 + color: '#0335FCFF' + - uid: 1717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 + rot: -1.5707963267948966 rad + pos: 40.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7413 + - uid: 1718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-8.5 + pos: 40.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7416 + - uid: 1806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-9.5 + rot: 1.5707963267948966 rad + pos: 25.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7418 + - uid: 1813 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-10.5 + pos: 3.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7419 + - uid: 1821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-11.5 + pos: 25.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7420 + - uid: 2043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-12.5 + pos: -6.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7421 + - uid: 2068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-13.5 + pos: -5.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7422 + - uid: 2069 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-12.5 + pos: 36.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7423 + - uid: 2162 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-11.5 + pos: 5.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7424 + - uid: 2435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-10.5 + rot: 1.5707963267948966 rad + pos: 43.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7425 + - uid: 2529 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-9.5 + pos: 32.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7426 + - uid: 2608 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-8.5 + pos: -4.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7427 + color: '#FF1212FF' + - uid: 3124 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-7.5 + pos: -2.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7429 + - uid: 3258 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-5.5 + pos: 50.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7430 + color: '#FF1212FF' + - uid: 3691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-4.5 + rot: -1.5707963267948966 rad + pos: 42.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7431 + - uid: 3694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-3.5 + rot: -1.5707963267948966 rad + pos: 57.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7432 + - uid: 3902 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - uid: 3964 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-2.5 + pos: 38.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7433 + color: '#03FCD3FF' + - uid: 4002 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-13.5 + pos: 3.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7434 + - uid: 4011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 + rot: 3.141592653589793 rad + pos: 25.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7435 + - uid: 4029 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-13.5 + pos: 26.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7436 + color: '#0335FCFF' + - uid: 4036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-13.5 + rot: 3.141592653589793 rad + pos: 26.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7437 + color: '#0335FCFF' + - uid: 4037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 + rot: -1.5707963267948966 rad + pos: 27.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7438 + color: '#0335FCFF' + - uid: 4039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-13.5 + rot: -1.5707963267948966 rad + pos: 25.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7439 + - uid: 4059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-13.5 + rot: 3.141592653589793 rad + pos: 27.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7440 + color: '#0335FCFF' + - uid: 4089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-13.5 + pos: 16.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7441 + - uid: 4126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-14.5 + pos: 14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7442 + color: '#FF1212FF' + - uid: 4131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + rot: -1.5707963267948966 rad + pos: 33.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7443 + - uid: 4188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 + rot: 3.141592653589793 rad + pos: 39.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7444 + - uid: 4199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-14.5 + pos: 27.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7445 + - uid: 4236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-14.5 + rot: 3.141592653589793 rad + pos: 42.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7446 + - uid: 4361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 + rot: 3.141592653589793 rad + pos: 47.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7447 + color: '#FF1212FF' + - uid: 4494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 + pos: 47.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7448 + color: '#FF1212FF' + - uid: 4496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 + pos: 48.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7449 + color: '#FF1212FF' + - uid: 4497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 + pos: 45.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7450 + color: '#FF1212FF' + - uid: 4499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-14.5 + pos: 46.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7578 + color: '#FF1212FF' + - uid: 4768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-1.5 + rot: -1.5707963267948966 rad + pos: 5.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 7670 + - uid: 5019 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: 27.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7758 + color: '#0335FCFF' + - uid: 5029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,24.5 + pos: 35.5,-25.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: 59.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7789 + color: '#FF1212FF' + - uid: 5076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,24.5 + pos: 25.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7790 + color: '#FF1212FF' + - uid: 5099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,24.5 + rot: 3.141592653589793 rad + pos: 56.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8012 + color: '#FF1212FF' + - uid: 5104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 + pos: 45.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8013 + color: '#FF1212FF' + - uid: 5112 components: - type: Transform - pos: 12.5,-2.5 + rot: -1.5707963267948966 rad + pos: 29.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8014 + color: '#FF1212FF' + - uid: 5113 components: - type: Transform - pos: 12.5,-1.5 + rot: -1.5707963267948966 rad + pos: 27.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8015 + - uid: 5114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-3.5 + pos: 26.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8018 + - uid: 5115 components: - type: Transform - pos: 16.5,0.5 + rot: 3.141592653589793 rad + pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8019 + - uid: 5118 components: - type: Transform - pos: 16.5,-0.5 + pos: 9.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8020 + color: '#0335FCFF' + - uid: 5138 components: - type: Transform - pos: 16.5,-1.5 + pos: 8.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8021 + - uid: 5160 components: - type: Transform - pos: 16.5,-2.5 + pos: 4.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8022 + - uid: 5161 components: - type: Transform - pos: 16.5,-3.5 + pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8179 + - uid: 5162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,20.5 + rot: 3.141592653589793 rad + pos: 63.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8180 + - uid: 5163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,20.5 + pos: 30.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8181 + color: '#FF1212FF' + - uid: 5165 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,20.5 + pos: 65.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8183 + - uid: 5168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,20.5 + rot: 3.141592653589793 rad + pos: 71.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8184 + - uid: 5170 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,20.5 + pos: 55.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8186 + color: '#FF1212FF' + - uid: 5171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,20.5 + pos: 61.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8187 + - uid: 5177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,20.5 + pos: 40.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8188 + color: '#FF1212FF' + - uid: 5178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,20.5 + pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8189 + - uid: 5179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,20.5 + rot: 3.141592653589793 rad + pos: 41.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8190 + - uid: 5180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,20.5 + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8191 + color: '#FF1212FF' + - uid: 5233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,21.5 + rot: 3.141592653589793 rad + pos: 47.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8193 + color: '#0335FCFF' + - uid: 5237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,21.5 + rot: 3.141592653589793 rad + pos: 32.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8194 + color: '#0335FCFF' + - uid: 5238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,21.5 + rot: 1.5707963267948966 rad + pos: 25.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8195 + - uid: 5239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,21.5 + rot: 3.141592653589793 rad + pos: 41.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8196 + - uid: 5241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,21.5 + rot: 1.5707963267948966 rad + pos: 27.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8200 + color: '#0335FCFF' + - uid: 5242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,22.5 + pos: 26.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8201 + - uid: 5284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,22.5 + pos: 25.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8209 + - uid: 5509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,21.5 + rot: 3.141592653589793 rad + pos: 64.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8210 + - uid: 6336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,21.5 + pos: 48.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8211 + - uid: 6423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,21.5 + rot: -1.5707963267948966 rad + pos: 27.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8212 + - uid: 6552 components: - type: Transform - pos: 9.5,20.5 + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8213 + color: '#FF1212FF' + - uid: 6555 components: - type: Transform - pos: 8.5,24.5 + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8214 + - uid: 6558 components: - type: Transform - pos: 8.5,23.5 + pos: 34.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8215 + - uid: 6565 components: - type: Transform - pos: 8.5,22.5 + rot: 1.5707963267948966 rad + pos: 44.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8216 + - uid: 6578 components: - type: Transform - pos: 8.5,21.5 + pos: 39.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8217 + color: '#0335FCFF' + - uid: 6584 components: - type: Transform - pos: 8.5,20.5 + rot: -1.5707963267948966 rad + pos: 35.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8218 + color: '#0335FCFF' + - uid: 6588 components: - type: Transform - pos: 8.5,19.5 + rot: 1.5707963267948966 rad + pos: 30.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8219 + - uid: 6601 components: - type: Transform - pos: 8.5,18.5 + rot: -1.5707963267948966 rad + pos: 39.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8223 + color: '#0335FCFF' + - uid: 6611 components: - type: Transform - pos: 13.5,24.5 + rot: 3.141592653589793 rad + pos: 26.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8224 + - uid: 6819 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,25.5 + pos: 47.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8225 + color: '#0335FCFF' + - uid: 7169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,25.5 + rot: 3.141592653589793 rad + pos: 15.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8226 + color: '#0335FCFF' + - uid: 7219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 + rot: 1.5707963267948966 rad + pos: 14.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8227 + - uid: 7244 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 9.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8295 + - uid: 7245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,41.5 + rot: 3.141592653589793 rad + pos: 9.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8297 + - uid: 7274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,41.5 + rot: 3.141592653589793 rad + pos: 60.5,-1.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8298 + color: '#FF1212FF' + - uid: 7428 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,41.5 + pos: -5.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8300 + - uid: 7519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,37.5 + pos: -12.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8303 + - uid: 7532 components: - type: Transform - pos: 27.5,43.5 + rot: 3.141592653589793 rad + pos: -10.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8308 + - uid: 7802 components: - type: Transform - pos: 27.5,37.5 + pos: 50.5,24.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8310 + color: '#FF1212FF' + - uid: 8163 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,42.5 + pos: 7.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8318 + - uid: 8182 components: - type: Transform - pos: 27.5,38.5 + rot: 3.141592653589793 rad + pos: 23.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8321 + color: '#FF1212FF' + - uid: 8185 components: - type: Transform - pos: 27.5,42.5 + rot: 3.141592653589793 rad + pos: 19.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8322 + - uid: 8192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,46.5 + rot: 3.141592653589793 rad + pos: 22.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8549 + - uid: 8197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,23.5 + rot: 3.141592653589793 rad + pos: 18.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8550 + - uid: 8208 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,23.5 + pos: 8.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8551 + - uid: 8309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,23.5 + pos: 27.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8552 + color: '#0335FCFF' + - uid: 8555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,23.5 + rot: 3.141592653589793 rad + pos: 33.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8553 + color: '#0335FCFF' + - uid: 8561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,23.5 + pos: 33.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8554 + - uid: 8562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,23.5 + pos: 34.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8556 + - uid: 8563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,24.5 + rot: 3.141592653589793 rad + pos: 34.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8557 + - uid: 8594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,24.5 + pos: 35.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8558 + - uid: 8981 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,24.5 + pos: 42.5,-26.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-1.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: 26.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8559 + color: '#FF1212FF' + - uid: 9536 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,24.5 + pos: 26.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8560 + - uid: 9560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,24.5 + rot: 3.141592653589793 rad + pos: 26.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8576 + - uid: 9573 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,23.5 + pos: 18.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8577 + color: '#0335FCFF' + - uid: 10047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,23.5 + rot: 3.141592653589793 rad + pos: 56.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8578 + color: '#0335FCFF' + - uid: 10048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,23.5 + pos: 59.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8579 + color: '#0335FCFF' + - uid: 10057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 + rot: 3.141592653589793 rad + pos: 59.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8580 + color: '#0335FCFF' + - uid: 10062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 + pos: 54.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8582 + color: '#0335FCFF' + - uid: 10116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,23.5 + rot: 1.5707963267948966 rad + pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8583 + color: '#0335FCFF' + - uid: 10141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,23.5 + pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8586 + color: '#0335FCFF' + - uid: 10142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,24.5 + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8587 + - uid: 10143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,24.5 + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8588 + - uid: 10144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,24.5 + pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8590 + - uid: 10157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,24.5 + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8591 + - uid: 10174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,24.5 + pos: 7.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8593 + - uid: 10246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,24.5 + rot: 1.5707963267948966 rad + pos: 26.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8600 + - uid: 10336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,24.5 + pos: 62.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8604 + color: '#0335FCFF' + - uid: 10357 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,25.5 + pos: 48.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8605 + - uid: 10363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,25.5 + rot: -1.5707963267948966 rad + pos: 50.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8606 + color: '#FF1212FF' + - uid: 10380 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,26.5 + pos: 58.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8611 + color: '#FF1212FF' + - uid: 10381 components: - type: Transform - pos: 33.5,22.5 + rot: 3.141592653589793 rad + pos: 57.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8612 + - uid: 10383 components: - type: Transform - pos: 33.5,21.5 + rot: -1.5707963267948966 rad + pos: 63.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8613 + - uid: 10404 components: - type: Transform - pos: 33.5,20.5 + pos: 58.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8614 + - uid: 10846 components: - type: Transform - pos: 35.5,23.5 + rot: 3.141592653589793 rad + pos: 40.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8615 + - uid: 11360 components: - type: Transform - pos: 35.5,22.5 + pos: 77.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8616 + - uid: 11510 components: - type: Transform - pos: 35.5,21.5 + pos: 65.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8617 + - uid: 11511 components: - type: Transform - pos: 35.5,20.5 + rot: 1.5707963267948966 rad + pos: 66.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8618 + - uid: 11513 components: - type: Transform - pos: 35.5,19.5 + rot: -1.5707963267948966 rad + pos: 66.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8619 + - uid: 11580 components: - type: Transform - pos: 35.5,18.5 + rot: -1.5707963267948966 rad + pos: 41.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8622 + color: '#03FCD3FF' + - uid: 11710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,19.5 + rot: -1.5707963267948966 rad + pos: 64.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8623 + - uid: 11715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,19.5 + pos: 56.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8624 + color: '#0335FCFF' + - uid: 11745 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,19.5 + pos: 40.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8625 + - uid: 11766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,19.5 + rot: 3.141592653589793 rad + pos: 58.5,-1.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8626 + color: '#03FCD3FF' + - uid: 12864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,17.5 + rot: -1.5707963267948966 rad + pos: 43.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8627 + color: '#03FCD3FF' + - uid: 12865 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,17.5 + pos: 41.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8631 + color: '#03FCD3FF' + - uid: 12866 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,25.5 + rot: 1.5707963267948966 rad + pos: 41.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8632 + color: '#03FCD3FF' + - uid: 12876 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,26.5 + pos: 42.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8633 + - uid: 12877 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,27.5 + pos: 43.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8634 + - uid: 12878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,28.5 + rot: -1.5707963267948966 rad + pos: 44.5,-43.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: 47.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8635 + color: '#FF1212FF' + - uid: 12900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,29.5 + pos: 48.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8636 + color: '#FF1212FF' + - uid: 12901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,30.5 + rot: 3.141592653589793 rad + pos: 48.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8637 + color: '#FF1212FF' + - uid: 12990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,30.5 + rot: 3.141592653589793 rad + pos: 37.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8638 + color: '#03FCD3FF' + - uid: 13577 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,-34.5 + pos: 46.5,31.5 parent: 2 - - uid: 8654 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,30.5 + pos: -23.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8655 + color: '#FF1212FF' + - uid: 14013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,30.5 + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8660 + - uid: 14023 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,30.5 + pos: -24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8661 + color: '#FF1212FF' + - uid: 14033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,30.5 + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8662 + - uid: 14372 components: - type: Transform - pos: 40.5,31.5 + rot: 3.141592653589793 rad + pos: 82.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8675 + color: '#FF1212FF' + - uid: 14376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,33.5 + pos: 84.5,31.5 parent: 2 - - uid: 8676 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,33.5 + pos: 85.5,30.5 parent: 2 - - uid: 8678 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,15.5 + rot: 1.5707963267948966 rad + pos: 81.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8680 + - uid: 14419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,16.5 + pos: 89.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8681 + - uid: 14429 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,16.5 + pos: 90.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8683 +- proto: GasPort + entities: + - uid: 1945 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,17.5 + pos: 37.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8702 + - uid: 3781 components: - type: Transform - pos: 56.5,33.5 + rot: 3.141592653589793 rad + pos: 36.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8924 + - uid: 3945 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-31.5 + pos: 49.5,-11.5 parent: 2 - - uid: 8980 + - uid: 4010 components: - type: Transform - pos: 42.5,-25.5 + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 parent: 2 - - uid: 8982 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4038 components: - type: Transform - pos: 42.5,-24.5 + rot: -1.5707963267948966 rad + pos: 28.5,-23.5 parent: 2 - - uid: 9348 + - uid: 4913 components: - type: Transform - pos: 56.5,32.5 + rot: -1.5707963267948966 rad + pos: 41.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9534 + - uid: 4920 components: - type: Transform - pos: 26.5,44.5 + rot: -1.5707963267948966 rad + pos: 39.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9535 + - uid: 4921 components: - type: Transform - pos: 26.5,43.5 + rot: 1.5707963267948966 rad + pos: 42.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9537 + - uid: 4922 components: - type: Transform - pos: 26.5,41.5 + pos: 43.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9538 + - uid: 4923 components: - type: Transform - pos: 26.5,40.5 + rot: -1.5707963267948966 rad + pos: 44.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9539 + - uid: 4925 components: - type: Transform - pos: 26.5,39.5 + rot: 3.141592653589793 rad + pos: 45.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9540 + - uid: 4926 components: - type: Transform - pos: 26.5,38.5 + rot: 1.5707963267948966 rad + pos: 44.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9541 + - uid: 4927 components: - type: Transform - pos: 25.5,36.5 + rot: -1.5707963267948966 rad + pos: 46.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9542 + - uid: 6480 components: - type: Transform - pos: 25.5,35.5 + pos: 37.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9543 + - uid: 7882 components: - type: Transform - pos: 25.5,34.5 + pos: 38.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9544 + - uid: 10420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,45.5 + rot: 3.141592653589793 rad + pos: 63.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9548 + - uid: 10425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,45.5 + rot: 3.141592653589793 rad + pos: 64.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9549 + - uid: 12871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,45.5 + pos: 41.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9550 + - uid: 12872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,45.5 + pos: 42.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9551 + - uid: 12873 components: - type: Transform - pos: 22.5,44.5 + pos: 43.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9552 + - uid: 12874 components: - type: Transform - pos: 22.5,43.5 + pos: 44.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9553 + - uid: 14391 components: - type: Transform - pos: 22.5,42.5 + pos: 81.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9561 + color: '#0335FCFF' +- proto: GasPressurePump + entities: + - uid: 670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,35.5 + pos: 31.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9562 + - uid: 2437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9563 + - uid: 3293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9564 + - uid: 3304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9566 + - uid: 3308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9567 + - uid: 3311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9568 + - uid: 3314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,35.5 + rot: -1.5707963267948966 rad + pos: 44.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9575 + - uid: 3519 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,37.5 + pos: 35.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9576 + - uid: 4033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,38.5 + rot: 1.5707963267948966 rad + pos: 27.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9577 + - uid: 5037 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,39.5 + pos: 57.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9578 + - uid: 6583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9579 + - uid: 7803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,36.5 + rot: -1.5707963267948966 rad + pos: 51.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9580 + - uid: 7883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,36.5 + pos: 37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9629 + color: '#FF1212FF' + - uid: 10423 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,1.5 + pos: 63.5,23.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + pos: 38.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9630 + color: '#03FCD3FF' + - uid: 14374 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,2.5 + pos: 82.5,33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9631 + - uid: 14390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-0.5 + pos: 81.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9632 +- proto: GasThermoMachineFreezer + entities: + - uid: 3966 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,0.5 + pos: 33.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9633 + - uid: 4912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,1.5 + rot: 1.5707963267948966 rad + pos: 40.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9634 + - uid: 7984 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,2.5 + pos: 50.5,23.5 + parent: 2 + - uid: 11775 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9654 + color: '#03FCD3FF' +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 1156 components: - type: Transform - pos: 42.5,-23.5 + pos: 30.5,-9.5 parent: 2 - - uid: 9726 + - type: GasThermoMachine + targetTemperature: 0 +- proto: GasThermoMachineHeater + entities: + - uid: 1216 components: - type: Transform - pos: 56.5,31.5 + rot: 1.5707963267948966 rad + pos: 36.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10045 + color: '#FF1212FF' + - uid: 3885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 2 + - uid: 4906 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,24.5 + pos: 38.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10046 +- proto: GasValve + entities: + - uid: 1233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,24.5 + pos: 42.5,-47.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10049 + color: '#03FCD3FF' + - uid: 4150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,23.5 + rot: -1.5707963267948966 rad + pos: 46.5,-35.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10050 + color: '#FF1212FF' + - uid: 4250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,22.5 + rot: -1.5707963267948966 rad + pos: 44.5,-48.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10051 + color: '#FF1212FF' + - uid: 11586 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,21.5 + rot: -1.5707963267948966 rad + pos: 44.5,-47.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10052 + color: '#FF1212FF' +- proto: GasVentPump + entities: + - uid: 408 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,20.5 + pos: 26.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10053 + - uid: 429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,19.5 + pos: 9.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10055 + - uid: 851 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,17.5 + pos: 39.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10056 + - uid: 1161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,16.5 + pos: -2.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10058 + - uid: 1560 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,14.5 + pos: 21.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10059 + - uid: 1625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 + rot: -1.5707963267948966 rad + pos: 22.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10060 + - uid: 2301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,14.5 + rot: -1.5707963267948966 rad + pos: 41.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10061 + - uid: 2393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,14.5 + pos: 30.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10063 + - uid: 3152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,14.5 + pos: 56.5,37.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10064 + - uid: 3692 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,14.5 + pos: 41.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10065 + - uid: 4027 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,14.5 + pos: 15.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10066 + - uid: 4035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,14.5 + rot: 3.141592653589793 rad + pos: 19.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10067 + - uid: 4460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,14.5 + rot: 3.141592653589793 rad + pos: 32.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10068 + - uid: 4465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 + rot: 3.141592653589793 rad + pos: 20.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10076 - components: - - type: Transform - pos: 79.5,-6.5 - parent: 2 - - uid: 10079 + - uid: 4551 components: - type: Transform - pos: 57.5,-3.5 + rot: 3.141592653589793 rad + pos: 24.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10115 + - uid: 5103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,24.5 + pos: 41.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10117 + - uid: 5189 components: - type: Transform - pos: 77.5,0.5 + rot: 3.141592653589793 rad + pos: 57.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10127 + - uid: 5422 components: - type: Transform - pos: 55.5,-8.5 + rot: 3.141592653589793 rad + pos: 11.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10134 + color: '#0335FCFF' + - uid: 5533 components: - type: Transform - pos: 57.5,-5.5 + rot: -1.5707963267948966 rad + pos: 36.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10145 + - uid: 5678 components: - type: Transform - pos: 1.5,-9.5 + rot: 3.141592653589793 rad + pos: 13.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10146 + - uid: 5964 components: - type: Transform - pos: 1.5,-8.5 + rot: 3.141592653589793 rad + pos: 11.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10147 + - uid: 6570 components: - type: Transform - pos: 1.5,-7.5 + rot: 1.5707963267948966 rad + pos: 45.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10148 + - uid: 6590 components: - type: Transform - pos: 1.5,-6.5 + rot: 3.141592653589793 rad + pos: 30.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10149 + - uid: 6593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 + rot: 3.141592653589793 rad + pos: 35.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10150 + - uid: 6609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 + rot: 1.5707963267948966 rad + pos: 38.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10151 + - uid: 6620 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-4.5 + pos: 36.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10152 + - uid: 6627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 + rot: 1.5707963267948966 rad + pos: 34.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10153 + - uid: 6640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 + pos: 46.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10154 + - uid: 6774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-3.5 + pos: 39.5,31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10155 + - uid: 6778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-4.5 + rot: 1.5707963267948966 rad + pos: 4.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10156 + - uid: 6804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 + pos: 26.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10158 + - uid: 6908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 + rot: 1.5707963267948966 rad + pos: 5.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10159 + - uid: 6927 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-8.5 + pos: 22.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10160 + - uid: 6951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-9.5 + rot: -1.5707963267948966 rad + pos: 20.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10161 + - uid: 7469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-10.5 + pos: -10.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10162 + - uid: 7801 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-11.5 + pos: 49.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10164 + - uid: 7838 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-11.5 + pos: -6.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10165 + - uid: 8009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 + pos: 12.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10166 + - uid: 8016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10167 + - uid: 8236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 + pos: 19.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14754 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10168 + - uid: 8240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 + pos: 26.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10175 + - uid: 8242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 + pos: 22.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10176 + - uid: 8296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 + rot: 1.5707963267948966 rad + pos: 26.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10177 + - uid: 8301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 + rot: 1.5707963267948966 rad + pos: 23.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10183 + - uid: 8344 components: - type: Transform - pos: 4.5,-0.5 + rot: 1.5707963267948966 rad + pos: 31.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10184 + color: '#0335FCFF' + - uid: 8349 components: - type: Transform - pos: 4.5,-1.5 + rot: 3.141592653589793 rad + pos: 48.5,34.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10185 + color: '#0335FCFF' + - uid: 8575 components: - type: Transform - pos: 4.5,-2.5 + pos: 34.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10186 + color: '#0335FCFF' + - uid: 8596 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-7.5 + pos: 43.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10187 + color: '#0335FCFF' + - uid: 8597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 + rot: 3.141592653589793 rad + pos: 39.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10188 + color: '#0335FCFF' + - uid: 8607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 + pos: 39.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10189 + color: '#0335FCFF' + - uid: 8629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 + pos: 38.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10190 + color: '#0335FCFF' + - uid: 8684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-1.5 + pos: 42.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10191 + color: '#0335FCFF' + - uid: 9358 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 + pos: 32.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10192 + color: '#0335FCFF' + - uid: 9558 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-7.5 + pos: 27.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10193 + color: '#0335FCFF' + - uid: 9570 components: - type: Transform - pos: 8.5,-6.5 + pos: 26.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10194 + color: '#0335FCFF' + - uid: 9581 components: - type: Transform - pos: 8.5,-5.5 + pos: 18.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10195 + color: '#0335FCFF' + - uid: 9582 components: - type: Transform - pos: 8.5,-4.5 + rot: 1.5707963267948966 rad + pos: 14.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10196 + color: '#0335FCFF' + - uid: 9635 components: - type: Transform - pos: 8.5,-3.5 + pos: 47.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10197 + color: '#0335FCFF' + - uid: 10163 components: - type: Transform - pos: 8.5,-2.5 + rot: 3.141592653589793 rad + pos: 7.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10198 + color: '#0335FCFF' + - uid: 10170 components: - type: Transform - pos: 8.5,-1.5 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10199 + color: '#0335FCFF' + - uid: 10171 components: - type: Transform - pos: 8.5,-0.5 + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10209 + color: '#0335FCFF' + - uid: 10172 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-11.5 + pos: 4.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10210 + - uid: 10173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-11.5 + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10211 + - uid: 10178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10212 + - uid: 10214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 + rot: 1.5707963267948966 rad + pos: 23.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10213 + color: '#0335FCFF' + - uid: 10248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 + rot: 3.141592653589793 rad + pos: 26.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10242 + color: '#0335FCFF' + - uid: 10331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,3.5 + pos: 48.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10243 + color: '#0335FCFF' + - uid: 10346 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,4.5 + pos: 62.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10244 + color: '#0335FCFF' + - uid: 10347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,12.5 + rot: -1.5707963267948966 rad + pos: 67.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10245 + - uid: 10351 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 + rot: 1.5707963267948966 rad + pos: 55.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10247 + - uid: 10352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,9.5 + rot: -1.5707963267948966 rad + pos: 57.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10323 + - uid: 10355 components: - type: Transform - pos: 54.5,13.5 + rot: -1.5707963267948966 rad + pos: 62.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10324 + - uid: 10356 components: - type: Transform - pos: 54.5,12.5 + rot: -1.5707963267948966 rad + pos: 60.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10325 + - uid: 10358 components: - type: Transform - pos: 54.5,11.5 + rot: -1.5707963267948966 rad + pos: 60.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10326 + - uid: 10452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,10.5 + rot: 1.5707963267948966 rad + pos: 31.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10327 + - uid: 10643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,10.5 + rot: 3.141592653589793 rad + pos: 29.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10328 + - uid: 11365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,10.5 + rot: 3.141592653589793 rad + pos: 77.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10329 + - uid: 11366 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,10.5 + pos: 78.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10330 + - uid: 11514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,10.5 + rot: 1.5707963267948966 rad + pos: 64.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10332 + - uid: 11515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,11.5 + pos: 66.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10333 + - uid: 11516 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,12.5 + pos: 66.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10337 + - uid: 11709 components: - type: Transform - pos: 62.5,13.5 + pos: 71.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10338 + - uid: 11743 components: - type: Transform - pos: 62.5,12.5 + rot: 1.5707963267948966 rad + pos: 52.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10339 + - uid: 11924 components: - type: Transform - pos: 62.5,11.5 + rot: 3.141592653589793 rad + pos: 56.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10340 + - uid: 11937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,14.5 + rot: 3.141592653589793 rad + pos: 61.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10341 + - uid: 11945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,14.5 + pos: 63.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10342 + - uid: 11956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,14.5 + pos: 71.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10343 + - uid: 13980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,14.5 + rot: 1.5707963267948966 rad + pos: -6.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10344 + - uid: 14014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,14.5 + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10345 + - uid: 14029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 + rot: 1.5707963267948966 rad + pos: -23.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10348 + - uid: 14030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,18.5 + rot: 1.5707963267948966 rad + pos: -23.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10349 + - uid: 14384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,18.5 + pos: 86.5,30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10350 + - uid: 14385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,18.5 + rot: 3.141592653589793 rad + pos: 81.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10353 + - uid: 14420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,24.5 + rot: 3.141592653589793 rad + pos: 89.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10354 + - uid: 14433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,24.5 + rot: 3.141592653589793 rad + pos: 92.5,28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10359 + - uid: 14613 components: - type: Transform - pos: 46.5,17.5 + pos: 72.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10360 + color: '#0335FCFF' + - uid: 14669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,18.5 + pos: 7.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10361 + color: '#0335FCFF' + - uid: 14736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,18.5 + pos: 15.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10362 + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 1232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 + rot: 3.141592653589793 rad + pos: -4.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10367 + - uid: 1305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,19.5 + pos: 30.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10368 + - uid: 1324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,19.5 + rot: 3.141592653589793 rad + pos: 10.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10369 + - uid: 1336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,19.5 + rot: 3.141592653589793 rad + pos: -12.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14067 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10370 + - uid: 2263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,19.5 + rot: -1.5707963267948966 rad + pos: 29.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10371 + - uid: 3475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,19.5 + pos: 79.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10372 + - uid: 3693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,19.5 + rot: -1.5707963267948966 rad + pos: 41.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10373 + - uid: 4092 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,19.5 + pos: 15.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10376 + - uid: 4183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,17.5 + rot: -1.5707963267948966 rad + pos: 19.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10377 + - uid: 4414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,16.5 + pos: 50.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10378 + - uid: 4447 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,15.5 + pos: 31.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10379 + - uid: 4464 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,14.5 + pos: 22.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10385 + - uid: 4552 components: - type: Transform - pos: 63.5,14.5 + pos: 28.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10386 + - uid: 4553 components: - type: Transform - pos: 63.5,12.5 + rot: 3.141592653589793 rad + pos: 26.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10387 + - uid: 5679 components: - type: Transform - pos: 63.5,11.5 + pos: 13.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10388 + - uid: 5968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,15.5 + rot: 3.141592653589793 rad + pos: 9.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10389 + - uid: 6571 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,15.5 + pos: 43.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10390 + - uid: 6595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,15.5 + rot: 3.141592653589793 rad + pos: 33.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10391 + - uid: 6610 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,13.5 + pos: 39.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10392 + - uid: 6614 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,13.5 + pos: 29.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10393 + - uid: 6621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,13.5 + rot: 1.5707963267948966 rad + pos: 32.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10394 + - uid: 6622 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,13.5 + pos: 38.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10395 + - uid: 6628 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,13.5 + pos: 45.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10396 + - uid: 6629 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,12.5 + pos: 34.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10397 + - uid: 6805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,11.5 + pos: 26.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10398 + - uid: 6911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,10.5 + rot: -1.5707963267948966 rad + pos: 9.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10405 + - uid: 6949 components: - type: Transform - pos: 58.5,20.5 + rot: 3.141592653589793 rad + pos: 18.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10406 + - uid: 6950 components: - type: Transform - pos: 58.5,21.5 + rot: -1.5707963267948966 rad + pos: 20.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10407 + - uid: 7708 components: - type: Transform - pos: 58.5,22.5 + rot: -1.5707963267948966 rad + pos: 4.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10408 + - uid: 7760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,23.5 + rot: 1.5707963267948966 rad + pos: 41.5,31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10988 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10409 + - uid: 7837 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,23.5 + pos: -5.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10410 + - uid: 8010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,23.5 + rot: 3.141592653589793 rad + pos: 14.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10428 + - uid: 8017 components: - type: Transform - pos: 63.5,24.5 + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 parent: 2 - - uid: 10429 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8203 components: - type: Transform - pos: 63.5,25.5 + pos: 9.5,27.5 parent: 2 - - uid: 10430 + - type: DeviceNetwork + deviceLists: + - 5 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8235 components: - type: Transform - pos: 63.5,26.5 + pos: 18.5,22.5 parent: 2 - - uid: 10431 + - type: DeviceNetwork + deviceLists: + - 14754 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8243 components: - type: Transform - pos: 63.5,27.5 + pos: 23.5,22.5 parent: 2 - - uid: 10432 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8564 components: - type: Transform - pos: 64.5,27.5 + rot: 3.141592653589793 rad + pos: 34.5,22.5 parent: 2 - - uid: 10433 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8595 components: - type: Transform - pos: 64.5,26.5 + rot: -1.5707963267948966 rad + pos: 43.5,23.5 parent: 2 - - uid: 10434 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8598 components: - type: Transform - pos: 64.5,25.5 + rot: 1.5707963267948966 rad + pos: 39.5,22.5 parent: 2 - - uid: 10435 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8610 components: - type: Transform - pos: 64.5,24.5 + pos: 40.5,26.5 parent: 2 - - uid: 10640 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8630 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,10.5 + pos: 38.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10641 + color: '#FF1212FF' + - uid: 8685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 + pos: 41.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10642 + color: '#FF1212FF' + - uid: 8810 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,9.5 + pos: 26.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10646 + color: '#FF1212FF' + - uid: 9359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,6.5 + rot: 3.141592653589793 rad + pos: 30.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10647 + - uid: 9546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,6.5 + pos: 28.5,46.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10648 + - uid: 9554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,6.5 + rot: 3.141592653589793 rad + pos: 22.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10649 + - uid: 9557 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,7.5 + pos: 27.5,42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10650 + - uid: 9569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,7.5 + rot: 1.5707963267948966 rad + pos: 23.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10651 + - uid: 9636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,7.5 + pos: 44.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10663 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 2 - - uid: 11101 + - uid: 10128 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-29.5 - parent: 2 - - uid: 11278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-1.5 + pos: 55.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11281 + color: '#FF1212FF' + - uid: 10179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-1.5 + rot: 3.141592653589793 rad + pos: -0.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11282 + color: '#FF1212FF' + - uid: 10180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-1.5 + rot: 3.141592653589793 rad + pos: 4.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11290 + color: '#FF1212FF' + - uid: 10181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-1.5 + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11305 + color: '#FF1212FF' + - uid: 10182 components: - type: Transform - pos: 62.5,-0.5 + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11306 + color: '#FF1212FF' + - uid: 10215 components: - type: Transform - pos: 62.5,0.5 + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11313 + color: '#FF1212FF' + - uid: 10217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,0.5 + rot: 3.141592653589793 rad + pos: 29.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11314 + - uid: 10249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,0.5 + pos: 26.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11315 + - uid: 10365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,0.5 + rot: 3.141592653589793 rad + pos: 45.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11318 + - uid: 10366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,1.5 + rot: 3.141592653589793 rad + pos: 50.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11326 + color: '#FF1212FF' + - uid: 10375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,1.5 + rot: -1.5707963267948966 rad + pos: 59.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11327 + color: '#FF1212FF' + - uid: 10400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,1.5 + rot: -1.5707963267948966 rad + pos: 67.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11328 + color: '#FF1212FF' + - uid: 10401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,1.5 + rot: 3.141592653589793 rad + pos: 63.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11330 + color: '#FF1212FF' + - uid: 10402 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,1.5 + pos: 54.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11331 + color: '#FF1212FF' + - uid: 10403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,1.5 + pos: 57.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11336 + color: '#FF1212FF' + - uid: 10411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,1.5 + rot: -1.5707963267948966 rad + pos: 62.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11337 + color: '#FF1212FF' + - uid: 10412 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,1.5 + pos: 57.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11338 + color: '#FF1212FF' + - uid: 10652 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,1.5 + pos: 32.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11339 + color: '#FF1212FF' + - uid: 11367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,1.5 + rot: -1.5707963267948966 rad + pos: 77.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11340 + color: '#FF1212FF' + - uid: 11719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,1.5 + rot: 3.141592653589793 rad + pos: 64.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11341 + color: '#FF1212FF' + - uid: 11726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,2.5 + rot: -1.5707963267948966 rad + pos: 67.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11342 + - uid: 11729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,2.5 + rot: 3.141592653589793 rad + pos: 72.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11343 + - uid: 11744 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,2.5 + pos: 52.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11344 + - uid: 11923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,2.5 + pos: 60.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11345 + - uid: 11936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,2.5 + rot: 3.141592653589793 rad + pos: 60.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11346 + - uid: 11938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,2.5 + pos: 56.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11347 + - uid: 11957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,2.5 + pos: 73.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11348 + - uid: 13517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,2.5 + rot: 3.141592653589793 rad + pos: 56.5,33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13512 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11350 + - uid: 13985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,2.5 + rot: -1.5707963267948966 rad + pos: -5.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2124 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11352 + - uid: 14015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,2.5 + rot: 3.141592653589793 rad + pos: -23.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11356 + - uid: 14031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,2.5 + rot: -1.5707963267948966 rad + pos: -23.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11357 + - uid: 14032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,2.5 + rot: -1.5707963267948966 rad + pos: -23.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13984 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11358 + - uid: 14373 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,2.5 + pos: 81.5,31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11359 + - uid: 14377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,2.5 + rot: 3.141592653589793 rad + pos: 84.5,30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11361 + - uid: 14421 components: - type: Transform - pos: 77.5,-0.5 + rot: 3.141592653589793 rad + pos: 89.5,31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11362 + color: '#FF1212FF' + - uid: 14432 components: - type: Transform - pos: 77.5,-1.5 + pos: 92.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14247 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11363 + color: '#FF1212FF' + - uid: 14616 components: - type: Transform - pos: 77.5,-2.5 + rot: -1.5707963267948966 rad + pos: 72.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14615 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11364 + color: '#FF1212FF' + - uid: 14667 components: - type: Transform - pos: 77.5,-3.5 + pos: 8.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14670 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11517 + color: '#FF1212FF' + - uid: 14735 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-8.5 + pos: 14.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11518 + color: '#FF1212FF' + - uid: 14960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-7.5 + rot: -1.5707963267948966 rad + pos: 6.5,16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7962 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11519 + color: '#FF1212FF' +- proto: GasVolumePump + entities: + - uid: 1238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-5.5 + rot: -1.5707963267948966 rad + pos: 38.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11523 + color: '#03FCD3FF' + - uid: 4501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-4.5 + rot: 1.5707963267948966 rad + pos: 38.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11524 + color: '#FF1212FF' +- proto: Gauze + entities: + - uid: 11966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-3.5 + pos: 67.46306,3.7913218 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11525 +- proto: GeneratorBasic15kW + entities: + - uid: 14392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-2.5 + pos: 79.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11528 +- proto: Girder + entities: + - uid: 1968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-0.5 + pos: 89.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11529 + - uid: 2379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,0.5 + pos: 84.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11530 + - uid: 2473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-9.5 + pos: 85.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11581 + - uid: 6238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-47.5 + pos: 88.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11699 + - uid: 6309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-9.5 + pos: 89.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11700 + - uid: 13044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-9.5 + pos: 36.5,-52.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11701 + - uid: 13045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-9.5 + pos: 32.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11702 +- proto: GlassBoxLaserFilled + entities: + - uid: 5106 components: - type: Transform - pos: 71.5,-8.5 + rot: -1.5707963267948966 rad + pos: 31.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11703 +- proto: GlowstickRed + entities: + - uid: 7565 components: - type: Transform - pos: 71.5,-7.5 + pos: 49.50738,-16.506752 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11704 +- proto: GravityGenerator + entities: + - uid: 8244 components: - type: Transform - pos: 71.5,-6.5 + pos: 14.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11705 +- proto: Grille + entities: + - uid: 18 components: - type: Transform - pos: 71.5,-5.5 + rot: 3.141592653589793 rad + pos: 57.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11706 + - uid: 19 components: - type: Transform - pos: 71.5,-4.5 + rot: 3.141592653589793 rad + pos: 55.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11711 + - uid: 85 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-5.5 + rot: 3.141592653589793 rad + pos: -8.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11712 + - uid: 103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 + pos: -3.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11713 + - uid: 104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-5.5 + pos: -2.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11714 + - uid: 105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-5.5 + pos: -1.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11716 + - uid: 115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-5.5 + pos: -4.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11717 + - uid: 116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-5.5 + pos: -4.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11718 + - uid: 129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-5.5 + pos: 26.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11723 + - uid: 147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-4.5 + pos: 27.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11724 + - uid: 244 components: - type: Transform - pos: 66.5,-3.5 + pos: 2.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11725 + - uid: 259 components: - type: Transform - pos: 66.5,-2.5 + pos: 7.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11727 + - uid: 260 components: - type: Transform - pos: 72.5,1.5 + pos: 7.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11728 + - uid: 261 components: - type: Transform - pos: 72.5,0.5 + pos: 7.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11738 + - uid: 262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-4.5 + pos: 8.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11739 + - uid: 263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-4.5 + pos: 10.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11740 + - uid: 264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-4.5 + pos: 12.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11741 + - uid: 335 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-5.5 + pos: -19.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11742 + - uid: 392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-5.5 + rot: 1.5707963267948966 rad + pos: 47.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11756 + - uid: 406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-33.5 + rot: 1.5707963267948966 rad + pos: 47.5,-27.5 parent: 2 - - uid: 11764 + - uid: 407 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,0.5 + pos: 47.5,-29.5 parent: 2 - - uid: 11788 + - uid: 507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-1.5 + pos: 14.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11790 + - uid: 508 components: - type: Transform - pos: 61.5,-0.5 + pos: 15.5,-2.5 parent: 2 - - uid: 11796 + - uid: 511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 + pos: -4.5,-12.5 parent: 2 - - uid: 11925 + - uid: 612 components: - type: Transform - pos: 61.5,-3.5 + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11926 + - uid: 660 components: - type: Transform - pos: 61.5,-4.5 + pos: 17.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11927 + - uid: 661 components: - type: Transform - pos: 61.5,-5.5 + pos: 17.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11928 + - uid: 663 components: - type: Transform - pos: 61.5,-6.5 + pos: 19.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11929 + - uid: 664 components: - type: Transform - pos: 61.5,-7.5 + pos: 19.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11930 + - uid: 665 components: - type: Transform - pos: 61.5,-8.5 + pos: 19.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11931 + - uid: 698 components: - type: Transform - pos: 61.5,-9.5 + pos: 7.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11932 + - uid: 699 components: - type: Transform - pos: 60.5,-6.5 + pos: 6.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11933 + - uid: 700 components: - type: Transform - pos: 60.5,-7.5 + pos: 6.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11934 + - uid: 701 components: - type: Transform - pos: 60.5,-8.5 + pos: 6.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11935 + - uid: 702 components: - type: Transform - pos: 60.5,-9.5 + pos: 6.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11949 + - uid: 703 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,2.5 + pos: 5.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11950 + - uid: 764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,3.5 + rot: 1.5707963267948966 rad + pos: 47.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11951 + - uid: 811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,4.5 + pos: 25.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11952 + - uid: 812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,3.5 + pos: 27.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12859 + - uid: 854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-49.5 + pos: 19.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12860 + - uid: 855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-49.5 + pos: 19.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12867 + - uid: 856 components: - type: Transform - pos: 43.5,-50.5 + pos: 24.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12868 + - uid: 857 components: - type: Transform - pos: 41.5,-50.5 + pos: 25.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12879 + - uid: 858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-44.5 + pos: 28.5,-34.5 parent: 2 - - uid: 12880 + - uid: 859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-45.5 + pos: 27.5,-34.5 parent: 2 - - uid: 12887 + - uid: 860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-44.5 + pos: 33.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12902 + - uid: 861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-45.5 + pos: 33.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12903 + - uid: 921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-45.5 + pos: 13.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13435 + - uid: 922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-34.5 + pos: 12.5,-37.5 parent: 2 - - uid: 13448 + - uid: 924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-34.5 + pos: 10.5,-37.5 parent: 2 - - uid: 13453 + - uid: 925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-34.5 + pos: 14.5,-36.5 parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 14 + - uid: 926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-28.5 + pos: 14.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 39 + - uid: 927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,14.5 + pos: 14.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 347 + - uid: 959 components: - type: Transform - pos: 18.5,15.5 + pos: 24.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 355 + - uid: 960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-34.5 + pos: 23.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 356 + - uid: 961 components: - type: Transform - pos: 13.5,-35.5 + pos: 22.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 362 + - uid: 962 components: - type: Transform - pos: 22.5,13.5 + pos: 20.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 426 + - uid: 963 components: - type: Transform - pos: 9.5,10.5 + pos: 19.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 434 + - uid: 964 components: - type: Transform - pos: 11.5,9.5 + pos: 18.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 756 + - uid: 965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,13.5 + pos: 18.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 892 + - uid: 966 components: - type: Transform - pos: 19.5,13.5 + pos: 18.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1036 + - uid: 969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 + pos: 19.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1148 + - uid: 970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,0.5 + pos: 20.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1215 + - uid: 971 components: - type: Transform - pos: 43.5,-48.5 + pos: 21.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1221 + - uid: 972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-28.5 + pos: 22.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1225 + - uid: 973 components: - type: Transform - pos: 43.5,-44.5 + pos: 23.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1234 + - uid: 976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-46.5 + pos: 24.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1257 + - uid: 977 components: - type: Transform - pos: 41.5,-44.5 + pos: 24.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1259 + - uid: 978 components: - type: Transform - pos: 26.5,-28.5 + pos: 25.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1260 + - uid: 979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-36.5 + pos: 26.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1261 + - uid: 980 components: - type: Transform - pos: 22.5,-36.5 + pos: 17.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1262 + - uid: 981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-35.5 + pos: 16.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1263 + - uid: 1241 components: - type: Transform - pos: 20.5,-35.5 + pos: 38.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1304 + - uid: 1242 components: - type: Transform - pos: 24.5,-35.5 + pos: 36.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1372 + - uid: 1243 components: - type: Transform - pos: 26.5,-27.5 + pos: 33.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1516 + - uid: 1246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 + pos: 37.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1529 + - uid: 1248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-36.5 + pos: 34.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1619 + - uid: 1254 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-17.5 + pos: 38.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1653 + - uid: 1274 components: - type: Transform - pos: 33.5,1.5 + pos: 39.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1690 + - uid: 1338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-35.5 + pos: 1.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1692 + - uid: 1339 components: - type: Transform - pos: 21.5,-28.5 + pos: 0.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1694 + - uid: 1340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-32.5 + pos: -1.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1695 + - uid: 1341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-31.5 + pos: -1.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1717 + - uid: 1357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,1.5 + pos: 1.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1718 + - uid: 1358 components: - type: Transform - pos: 40.5,15.5 + pos: 0.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1806 + - uid: 1359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,15.5 + pos: -0.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1813 + - uid: 1360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 + pos: 1.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1821 + - uid: 1361 components: - type: Transform - pos: 25.5,1.5 + pos: 0.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2069 + - uid: 1362 components: - type: Transform - pos: 36.5,-25.5 + pos: -0.5,-36.5 parent: 2 - - uid: 2162 + - uid: 1508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 + pos: 34.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2435 + - uid: 1540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-24.5 + pos: 28.5,-6.5 parent: 2 - - uid: 2529 + - uid: 1545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,42.5 + pos: -13.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3691 + - uid: 1546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,8.5 + pos: -8.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3694 + - uid: 1565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-4.5 + pos: 28.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3902 + - uid: 1575 components: - type: Transform - pos: 34.5,-25.5 + pos: 28.5,-4.5 parent: 2 - - uid: 3964 + - uid: 1675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-48.5 + pos: 45.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4002 + - uid: 1713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 + pos: 42.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4011 + - uid: 1714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-27.5 + pos: 42.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4029 + - uid: 1715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-23.5 + pos: 42.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4036 + - uid: 1741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,20.5 + pos: 28.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4037 + - uid: 1742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,20.5 + pos: 28.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4039 + - uid: 1773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-23.5 + pos: -6.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4059 + - uid: 1856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-28.5 + pos: -3.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4089 + - uid: 1967 components: - type: Transform - pos: 16.5,1.5 + pos: 88.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4126 + - uid: 1998 components: - type: Transform - pos: 14.5,1.5 + pos: -5.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4199 + - uid: 1999 components: - type: Transform - pos: 27.5,-0.5 + pos: 5.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4236 + - uid: 2000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-1.5 + pos: 4.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4494 + - uid: 2001 components: - type: Transform - pos: 47.5,-47.5 + pos: -4.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4496 + - uid: 2002 components: - type: Transform - pos: 48.5,-47.5 + pos: -3.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4497 + - uid: 2006 components: - type: Transform - pos: 45.5,-47.5 + pos: 5.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4499 + - uid: 2007 components: - type: Transform - pos: 46.5,-47.5 + pos: 4.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4768 + - uid: 2009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,4.5 + pos: 5.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5019 + - uid: 2010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,40.5 + pos: 4.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5029 + - uid: 2013 components: - type: Transform - pos: 35.5,-25.5 + pos: 4.5,16.5 parent: 2 - - uid: 5035 + - uid: 2031 components: - type: Transform - pos: 57.5,0.5 + pos: -7.5,-5.5 parent: 2 - - uid: 5041 + - uid: 2036 components: - type: Transform - pos: 59.5,1.5 + rot: -1.5707963267948966 rad + pos: 16.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5076 + - uid: 2079 components: - type: Transform - pos: 25.5,37.5 + pos: 21.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5099 + - uid: 2080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,1.5 + pos: 21.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5104 + - uid: 2182 components: - type: Transform - pos: 45.5,15.5 + pos: 24.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5112 + - uid: 2183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 + pos: 24.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5113 + - uid: 2236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-11.5 + pos: 28.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5114 + - uid: 2237 components: - type: Transform - pos: 26.5,13.5 + pos: 28.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5115 + - uid: 2238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,1.5 + pos: 28.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5118 + - uid: 2239 components: - type: Transform - pos: 9.5,-1.5 + pos: 28.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5138 + - uid: 2254 components: - type: Transform - pos: 8.5,0.5 + pos: 31.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5160 + - uid: 2255 components: - type: Transform - pos: 4.5,0.5 + pos: 31.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5161 + - uid: 2281 components: - type: Transform - pos: -0.5,0.5 + pos: 44.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5162 + - uid: 2282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,1.5 + pos: 44.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5163 + - uid: 2283 components: - type: Transform - pos: 30.5,15.5 + pos: 44.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5165 + - uid: 2351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-1.5 + pos: 37.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5168 + - uid: 2352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,1.5 + pos: 37.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5170 + - uid: 2357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,0.5 + pos: 41.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5171 + - uid: 2358 components: - type: Transform - pos: 61.5,-2.5 + pos: 37.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5177 + - uid: 2359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,7.5 + pos: 38.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5178 + - uid: 2365 components: - type: Transform - pos: 1.5,-1.5 + pos: 38.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5179 + - uid: 2371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,13.5 + pos: 42.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5180 + - uid: 2372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 + pos: 42.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5199 + - uid: 2392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,25.5 + pos: 67.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5233 + - uid: 2433 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-1.5 + pos: 24.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5237 + - uid: 2434 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,13.5 + pos: 28.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5238 + - uid: 2456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,23.5 + pos: 43.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5239 + - uid: 2457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,15.5 + pos: 41.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5241 + - uid: 2512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,24.5 + pos: 39.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5242 + - uid: 2513 components: - type: Transform - pos: 26.5,23.5 + pos: 39.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5284 + - uid: 2514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,21.5 + pos: 39.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6423 + - uid: 2515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,41.5 + pos: 39.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6552 + - uid: 2618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-6.5 + pos: 21.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6555 + - uid: 2619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 + pos: 22.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6558 + - uid: 2620 components: - type: Transform - pos: 34.5,-6.5 + pos: 23.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6565 + - uid: 2621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-0.5 + pos: 24.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6578 + - uid: 2622 components: - type: Transform - pos: 39.5,-3.5 + pos: 21.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6584 + - uid: 2623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-10.5 + pos: 24.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6588 + - uid: 2624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-10.5 + pos: 27.5,38.5 parent: 2 - - uid: 6601 + - uid: 2625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-4.5 + pos: 27.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6611 + - uid: 2649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-10.5 + pos: 15.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6819 + - uid: 2650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,13.5 + pos: 14.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7274 + - uid: 2651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-1.5 + pos: 13.5,42.5 parent: 2 - - uid: 7409 + - uid: 2676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 + pos: 24.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7428 + - uid: 2677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-6.5 + pos: 23.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7802 + - uid: 2678 components: - type: Transform - pos: 50.5,24.5 + pos: 22.5,33.5 parent: 2 - - uid: 8182 + - uid: 2679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,21.5 + pos: 22.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8185 + - uid: 2680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,20.5 + pos: 22.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8192 + - uid: 2681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 + pos: 22.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8197 + - uid: 2734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,21.5 + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8207 + - uid: 2735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,21.5 + pos: -4.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8208 + - uid: 2737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,25.5 + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8309 + - uid: 2740 components: - type: Transform - pos: 27.5,46.5 + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8555 + - uid: 2789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 + pos: 22.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8561 + - uid: 2790 components: - type: Transform - pos: 33.5,23.5 + pos: 23.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8562 + - uid: 2791 components: - type: Transform - pos: 34.5,23.5 + pos: 24.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8563 + - uid: 2792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,24.5 + pos: 25.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8594 + - uid: 2793 components: - type: Transform - pos: 35.5,24.5 + pos: 26.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8981 + - uid: 2794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-26.5 + pos: 27.5,49.5 parent: 2 - - uid: 9367 + - uid: 2795 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-1.5 + pos: 28.5,49.5 parent: 2 - - uid: 9533 + - uid: 2796 components: - type: Transform - pos: 26.5,45.5 + pos: 29.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9536 + - uid: 2797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,42.5 + pos: 30.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9559 + - uid: 2798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,35.5 + pos: 31.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9560 + - uid: 2799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,35.5 + pos: 32.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9573 + - uid: 2806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,36.5 + pos: 36.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10044 + - uid: 2807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,30.5 + pos: 36.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10047 + - uid: 2808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,24.5 + pos: 18.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10048 + - uid: 2809 components: - type: Transform - pos: 59.5,24.5 + pos: 18.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10057 + - uid: 2830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,14.5 + pos: -7.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10062 + - uid: 2836 components: - type: Transform - pos: 54.5,14.5 + pos: 59.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10116 + - uid: 2837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,15.5 + pos: 60.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10141 + - uid: 2838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 + pos: 62.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10142 + - uid: 2839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 + pos: 61.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10143 + - uid: 2840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 + pos: 63.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10144 + - uid: 2841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 + pos: 60.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10157 + - uid: 2842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 + pos: 61.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10174 + - uid: 2843 components: - type: Transform - pos: 7.5,-11.5 + pos: 62.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10246 + - uid: 2844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,10.5 + pos: 63.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10336 + - uid: 2845 components: - type: Transform - pos: 62.5,14.5 + pos: 60.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10357 + - uid: 2846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,10.5 + pos: 62.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10363 + - uid: 2847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,18.5 + pos: 63.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10380 + - uid: 2878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,13.5 + pos: 58.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10381 + - uid: 2879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,13.5 + pos: 59.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10383 + - uid: 2880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,13.5 + pos: 60.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10404 + - uid: 2881 components: - type: Transform - pos: 58.5,23.5 + pos: 66.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11360 + - uid: 2882 components: - type: Transform - pos: 77.5,1.5 + pos: 65.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11510 + - uid: 2961 components: - type: Transform - pos: 65.5,1.5 + pos: 49.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11511 + - uid: 2962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-9.5 + pos: 54.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11513 + - uid: 2964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-6.5 + pos: 44.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11580 + - uid: 2966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-48.5 + pos: 46.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11710 + - uid: 2967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-5.5 + pos: 47.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11715 + - uid: 2968 components: - type: Transform - pos: 56.5,-4.5 + pos: 48.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11745 + - uid: 2986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,6.5 + pos: 52.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11766 + - uid: 2987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-1.5 + pos: 53.5,-0.5 parent: 2 - - uid: 12863 + - uid: 3015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-51.5 + pos: 57.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12864 + - uid: 3016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-52.5 + pos: 55.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12865 + - uid: 3017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-52.5 + pos: 67.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12866 + - uid: 3018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-51.5 + pos: 66.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12876 + - uid: 3019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-43.5 + pos: 65.5,-2.5 parent: 2 - - uid: 12877 + - uid: 3020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-43.5 + pos: 64.5,-2.5 parent: 2 - - uid: 12878 + - uid: 3045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-43.5 + pos: 55.5,12.5 parent: 2 - - uid: 12886 + - uid: 3046 components: - type: Transform - pos: 47.5,-44.5 + pos: 53.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12900 + - uid: 3067 components: - type: Transform - pos: 48.5,-44.5 + pos: 42.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12901 + - uid: 3068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-46.5 + pos: 41.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12990 + - uid: 3090 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-48.5 + pos: 43.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasPort - entities: - - uid: 1945 + - uid: 3091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-26.5 + pos: 44.5,47.5 parent: 2 - - uid: 3781 + - uid: 3092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-26.5 + pos: 45.5,47.5 parent: 2 - - uid: 3945 + - uid: 3093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-11.5 + pos: 45.5,48.5 parent: 2 - - uid: 4010 + - uid: 3094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-23.5 + pos: 46.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4038 + - uid: 3095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-23.5 + pos: 47.5,48.5 parent: 2 - - uid: 4913 + - uid: 3096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-40.5 + pos: 48.5,48.5 parent: 2 - - uid: 4920 + - uid: 3097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-40.5 + pos: 48.5,49.5 parent: 2 - - uid: 4921 + - uid: 3106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-40.5 + pos: 46.5,45.5 parent: 2 - - uid: 4922 + - uid: 3107 components: - type: Transform - pos: 43.5,-39.5 + pos: 47.5,45.5 parent: 2 - - uid: 4923 + - uid: 3108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-40.5 + pos: 48.5,45.5 parent: 2 - - uid: 4925 + - uid: 3109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-40.5 + pos: 49.5,45.5 parent: 2 - - uid: 4926 + - uid: 3114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-39.5 + pos: 50.5,46.5 parent: 2 - - uid: 4927 + - uid: 3115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-39.5 + pos: 50.5,47.5 parent: 2 - - uid: 6480 + - uid: 3116 components: - type: Transform - pos: 37.5,-42.5 + pos: 51.5,47.5 parent: 2 - - uid: 7882 + - uid: 3117 components: - type: Transform - pos: 38.5,-42.5 + pos: 52.5,47.5 parent: 2 - - uid: 10420 + - uid: 3126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,22.5 + pos: 62.5,47.5 parent: 2 - - uid: 10425 + - uid: 3136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,22.5 + pos: 60.5,47.5 parent: 2 - - uid: 12871 + - uid: 3137 components: - type: Transform - pos: 41.5,-42.5 + pos: 61.5,47.5 parent: 2 - - uid: 12872 + - uid: 3139 components: - type: Transform - pos: 42.5,-42.5 + pos: 47.5,39.5 parent: 2 - - uid: 12873 + - uid: 3140 components: - type: Transform - pos: 43.5,-42.5 + pos: 47.5,38.5 parent: 2 - - uid: 12874 + - uid: 3141 components: - type: Transform - pos: 44.5,-42.5 + pos: 47.5,37.5 parent: 2 -- proto: GasPressurePump - entities: - - uid: 670 + - uid: 3161 components: - type: Transform - pos: 31.5,-27.5 + rot: 3.141592653589793 rad + pos: 47.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2437 + - uid: 3166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-26.5 + rot: 1.5707963267948966 rad + pos: 56.5,26.5 parent: 2 - - uid: 3293 + - uid: 3213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-34.5 + pos: 62.5,46.5 parent: 2 - - uid: 3304 + - uid: 3291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-30.5 + rot: 1.5707963267948966 rad + pos: 47.5,-31.5 parent: 2 - - uid: 3308 + - uid: 3317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-24.5 + pos: 64.5,49.5 parent: 2 - - uid: 3311 + - uid: 3320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-32.5 + pos: 65.5,48.5 parent: 2 - - uid: 3314 + - uid: 3322 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-28.5 + pos: -21.5,-15.5 parent: 2 - - uid: 3519 + - uid: 3323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-26.5 + pos: 50.5,49.5 parent: 2 - - uid: 4033 + - uid: 3324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-23.5 + pos: 51.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5037 + - uid: 3325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-0.5 + pos: 52.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6583 + - uid: 3326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 + pos: 53.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7803 + - uid: 3329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 + pos: 59.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7883 + - uid: 3330 components: - type: Transform - pos: 37.5,-43.5 + pos: 60.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10423 + - uid: 3331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,23.5 + pos: 61.5,49.5 parent: 2 - - uid: 10424 + - uid: 3332 components: - type: Transform - pos: 64.5,23.5 + pos: 62.5,49.5 parent: 2 - - uid: 11577 + - uid: 3341 components: - type: Transform - pos: 38.5,-43.5 + pos: 66.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasThermoMachineFreezer - entities: - - uid: 3966 + - uid: 3342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-26.5 + pos: 64.5,48.5 parent: 2 - - uid: 4912 + - uid: 3349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-40.5 + pos: 67.5,48.5 parent: 2 - - uid: 7984 + - uid: 3350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,23.5 + pos: 67.5,47.5 parent: 2 - - uid: 11775 + - uid: 3351 components: - type: Transform - pos: 59.5,-0.5 + pos: 68.5,47.5 parent: 2 - - uid: 12989 + - uid: 3364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-48.5 + pos: 72.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 1156 + - uid: 3365 components: - type: Transform - pos: 30.5,-9.5 + pos: 73.5,46.5 parent: 2 - - type: GasThermoMachine - targetTemperature: 0 -- proto: GasThermoMachineHeater - entities: - - uid: 1216 + - uid: 3366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-44.5 + pos: 74.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3885 + - uid: 3367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-26.5 + pos: 72.5,44.5 parent: 2 - - uid: 4906 + - uid: 3368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-40.5 + pos: 73.5,44.5 parent: 2 -- proto: GasValve - entities: - - uid: 1233 + - uid: 3369 components: - type: Transform - pos: 42.5,-47.5 + pos: 74.5,44.5 parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4150 + - uid: 3477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-35.5 + pos: 57.5,26.5 parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4250 + - uid: 3478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-48.5 + pos: 58.5,26.5 parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11586 + - uid: 3489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-47.5 + pos: 48.5,19.5 parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasVentPump - entities: - - uid: 408 + - uid: 3495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-29.5 + pos: 55.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 851 + - uid: 3496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-10.5 + pos: 48.5,17.5 parent: 2 - - uid: 1560 + - uid: 3497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 + pos: 54.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1625 + - uid: 3529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-32.5 + pos: 75.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2393 + - uid: 3530 components: - type: Transform - pos: 30.5,-27.5 + pos: 75.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3692 + - uid: 3531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,8.5 + pos: 75.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4027 + - uid: 3532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,13.5 + pos: 78.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4035 + - uid: 3533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,6.5 + pos: 79.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4460 + - uid: 3534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-40.5 + pos: 80.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4465 + - uid: 3535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-38.5 + pos: 77.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4551 + - uid: 3543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-36.5 + pos: 90.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5103 + - uid: 3546 components: - type: Transform - pos: 41.5,14.5 + pos: 91.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5189 + - uid: 3568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-9.5 + pos: 88.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5422 + - uid: 3588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-40.5 + pos: 90.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5533 + - uid: 3606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,42.5 + pos: 90.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5678 + - uid: 3610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-36.5 + pos: 88.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5964 + - uid: 3652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,5.5 + pos: 65.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6570 + - uid: 3653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-6.5 + pos: 65.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6590 + - uid: 3677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 + pos: 60.5,12.5 parent: 2 - - uid: 6593 + - uid: 3678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-11.5 + pos: 61.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6609 + - uid: 3679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-4.5 + pos: 63.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6620 + - uid: 3768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,0.5 + pos: 82.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6627 + - uid: 3769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-3.5 + pos: 81.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6640 + - uid: 3770 components: - type: Transform - pos: 46.5,-0.5 + pos: 80.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6778 + - uid: 3771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 + pos: 79.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6804 + - uid: 3851 components: - type: Transform - pos: 26.5,-16.5 + pos: 73.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6927 + - uid: 3852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,12.5 + pos: 74.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6951 + - uid: 3853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,9.5 + pos: 75.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7469 + - uid: 3854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 + pos: 76.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7801 + - uid: 3855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,24.5 + pos: 77.5,-17.5 parent: 2 - - uid: 7838 + - uid: 3856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 + pos: 78.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8009 + - uid: 3857 components: - type: Transform - pos: 12.5,0.5 + pos: 79.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8016 + - uid: 3858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-3.5 + pos: 80.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8220 + - uid: 3859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,19.5 + pos: 81.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8222 + - uid: 3860 components: - type: Transform - pos: 9.5,22.5 + pos: 82.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8236 + - uid: 3861 components: - type: Transform - pos: 19.5,21.5 + pos: 83.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8240 + - uid: 3862 components: - type: Transform - pos: 26.5,21.5 + pos: 84.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8242 + - uid: 3863 components: - type: Transform - pos: 22.5,21.5 + pos: 85.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8296 + - uid: 3864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,46.5 + pos: 86.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8301 + - uid: 3889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,41.5 + pos: 96.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8344 + - uid: 3892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,42.5 + pos: 94.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8575 + - uid: 3893 components: - type: Transform - pos: 34.5,25.5 + pos: 98.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8596 + - uid: 3903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,24.5 + pos: 97.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8597 + - uid: 3957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,23.5 + pos: 40.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8607 + - uid: 3969 components: - type: Transform - pos: 39.5,27.5 + pos: 39.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8629 + - uid: 3973 components: - type: Transform - pos: 38.5,18.5 + pos: 18.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8673 + - uid: 3977 components: - type: Transform - pos: 40.5,32.5 + pos: 19.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8684 + - uid: 3978 components: - type: Transform - pos: 42.5,17.5 + pos: 24.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8700 + - uid: 3981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,30.5 + pos: 17.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8701 + - uid: 3985 components: - type: Transform - pos: 56.5,34.5 + pos: 19.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9358 + - uid: 3987 components: - type: Transform - pos: 32.5,14.5 + pos: 14.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9558 + - uid: 3998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,39.5 + pos: 13.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9570 + - uid: 4047 components: - type: Transform - pos: 26.5,36.5 + pos: 34.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9581 + - uid: 4051 components: - type: Transform - pos: 18.5,40.5 + pos: 36.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9582 + - uid: 4066 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,36.5 + pos: -21.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9635 + - uid: 4074 components: - type: Transform - pos: 47.5,3.5 + pos: 25.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10163 + - uid: 4153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-12.5 + rot: 1.5707963267948966 rad + pos: 47.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10170 + - uid: 4243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-12.5 + pos: 24.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10171 + - uid: 4296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 + pos: 24.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10172 + - uid: 4319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 + pos: 7.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10173 + - uid: 4320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 + pos: 6.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10178 + - uid: 4338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 + pos: 34.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10214 + - uid: 4339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-11.5 + pos: 36.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10248 + - uid: 4340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,8.5 + pos: 37.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10331 + - uid: 4341 components: - type: Transform - pos: 48.5,11.5 + pos: 37.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10346 + - uid: 4342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,10.5 + pos: 37.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10347 + - uid: 4343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,14.5 + pos: 36.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10351 + - uid: 4344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,18.5 + pos: 34.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10352 + - uid: 4345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,25.5 + pos: 33.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10355 + - uid: 4350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,24.5 + pos: 37.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10356 + - uid: 4376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,18.5 + pos: 33.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10358 + - uid: 4377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,15.5 + pos: 33.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10643 + - uid: 4378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,8.5 + pos: 33.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11365 + - uid: 4379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-4.5 + pos: 37.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11366 + - uid: 4380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,1.5 + pos: 37.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11514 + - uid: 4381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-1.5 + pos: 37.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11515 + - uid: 4400 components: - type: Transform - pos: 66.5,-5.5 + rot: -1.5707963267948966 rad + pos: 52.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11516 + - uid: 4401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-10.5 + rot: -1.5707963267948966 rad + pos: 52.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11709 + - uid: 4402 components: - type: Transform - pos: 71.5,-3.5 + rot: -1.5707963267948966 rad + pos: 60.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11743 + - uid: 4404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-4.5 + rot: 3.141592653589793 rad + pos: 65.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11924 + - uid: 4405 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-5.5 + pos: 65.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11937 + - uid: 4408 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-10.5 + pos: 40.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11945 + - uid: 4409 components: - type: Transform - pos: 63.5,2.5 + rot: 3.141592653589793 rad + pos: 39.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11956 + - uid: 4410 components: - type: Transform - pos: 71.5,5.5 + rot: -1.5707963267948966 rad + pos: 57.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasVentScrubber - entities: - - uid: 1305 + - uid: 4411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,30.5 + parent: 2 + - uid: 4412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-32.5 + rot: -1.5707963267948966 rad + pos: 55.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1324 + - uid: 4415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-41.5 + pos: 35.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3475 + - uid: 4419 components: - type: Transform - pos: 79.5,-5.5 + pos: 46.5,-36.5 parent: 2 - - uid: 3693 + - uid: 4455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,6.5 + pos: 33.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4092 + - uid: 4456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,15.5 + pos: 33.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4183 + - uid: 4457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,15.5 + pos: 33.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4447 + - uid: 4458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-39.5 + pos: 32.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4464 + - uid: 4459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-38.5 + pos: 31.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4552 + - uid: 4467 components: - type: Transform - pos: 28.5,-35.5 + pos: 39.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4553 + - uid: 4469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-28.5 + pos: 41.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5679 + - uid: 4473 components: - type: Transform - pos: 13.5,-33.5 + pos: 43.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5968 + - uid: 4487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,5.5 + pos: 47.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6571 + - uid: 4488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-6.5 + pos: 47.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6595 + - uid: 4489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-11.5 + pos: 47.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6610 + - uid: 4490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-9.5 + pos: 47.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6614 + - uid: 5248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 + pos: 45.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6621 + - uid: 5250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 + pos: 45.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6622 + - uid: 5288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-6.5 + rot: 1.5707963267948966 rad + pos: 10.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6628 + - uid: 5431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-0.5 + pos: 45.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6629 + - uid: 5483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-7.5 + pos: 72.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6805 + - uid: 5484 components: - type: Transform - pos: 26.5,-9.5 + pos: 72.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6949 + - uid: 5485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,6.5 + pos: 72.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6950 + - uid: 5486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,10.5 + pos: 72.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7472 + - uid: 5487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 + pos: 72.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7708 + - uid: 5488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,7.5 + pos: 72.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7837 + - uid: 5581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-4.5 + rot: 1.5707963267948966 rad + pos: 9.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8010 + - uid: 5743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8017 + - uid: 5751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 + pos: 21.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8221 + - uid: 5752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,17.5 + pos: 22.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8229 + - uid: 5753 components: - type: Transform - pos: 8.5,26.5 + pos: 23.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8235 + - uid: 5754 components: - type: Transform - pos: 18.5,22.5 + pos: 24.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8243 + - uid: 5755 components: - type: Transform - pos: 23.5,22.5 + pos: 25.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8564 + - uid: 5756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,22.5 + pos: 26.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8595 + - uid: 5757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,23.5 + pos: 27.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8598 + - uid: 5758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,22.5 + pos: 28.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8610 + - uid: 5759 components: - type: Transform - pos: 40.5,26.5 + pos: 29.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8630 + - uid: 5760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,19.5 + pos: 30.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8674 + - uid: 5761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,33.5 + pos: 31.5,53.5 parent: 2 - - uid: 8685 + - uid: 5762 components: - type: Transform - pos: 41.5,18.5 + pos: 32.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8810 + - uid: 5763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,22.5 + pos: 33.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9359 + - uid: 5765 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,14.5 + pos: 56.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9546 + - uid: 5966 components: - type: Transform - pos: 28.5,46.5 + rot: 3.141592653589793 rad + pos: 56.5,50.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9554 + - uid: 6119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,41.5 + pos: 12.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9557 + - uid: 6124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,42.5 + pos: 8.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9569 + - uid: 6125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,37.5 + pos: 8.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9636 + - uid: 6126 components: - type: Transform - pos: 44.5,3.5 + pos: 9.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10128 + - uid: 6127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-9.5 + pos: 10.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10179 + - uid: 6129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 + pos: 12.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10180 + - uid: 6130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 + pos: 8.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10181 + - uid: 6131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 + pos: 8.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10182 + - uid: 6132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 + pos: 9.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10215 + - uid: 6133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-10.5 + pos: 11.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10217 + - uid: 6324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-28.5 + rot: -1.5707963267948966 rad + pos: 99.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10249 + - uid: 6501 components: - type: Transform - pos: 26.5,5.5 + pos: 42.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10365 + - uid: 6607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,14.5 + pos: 45.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10366 + - uid: 6608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 + pos: 45.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10375 + - uid: 6618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,19.5 + pos: 45.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10400 + - uid: 6658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,15.5 + pos: 45.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10401 + - uid: 6760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,10.5 + pos: 45.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10402 + - uid: 6764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 + pos: 45.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10403 + - uid: 6806 components: - type: Transform - pos: 57.5,14.5 + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10411 + - uid: 6821 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,23.5 + pos: -26.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10412 + - uid: 6830 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,23.5 + pos: 1.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10652 + - uid: 6831 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,6.5 + pos: 4.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11367 + - uid: 6836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,2.5 + rot: 1.5707963267948966 rad + pos: 11.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11719 + - uid: 6837 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-6.5 + rot: 1.5707963267948966 rad + pos: 4.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11726 + - uid: 6842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-1.5 + pos: -4.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11729 + - uid: 6845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-0.5 + rot: -1.5707963267948966 rad + pos: -9.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11744 + - uid: 6860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-5.5 + pos: -20.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11923 + - uid: 6874 components: - type: Transform - pos: 60.5,-4.5 + pos: -16.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11936 + - uid: 6886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-10.5 + rot: -1.5707963267948966 rad + pos: -13.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11938 + - uid: 6887 components: - type: Transform - pos: 56.5,2.5 + rot: -1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11957 + - uid: 6891 components: - type: Transform - pos: 73.5,5.5 + rot: -1.5707963267948966 rad + pos: -15.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasVolumePump - entities: - - uid: 1238 + - uid: 6892 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-47.5 + pos: -18.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4501 + - uid: 6895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-45.5 + rot: -1.5707963267948966 rad + pos: -23.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: Gauze - entities: - - uid: 11966 + - uid: 6902 components: - type: Transform - pos: 67.46306,3.7913218 - parent: 2 -- proto: Girder - entities: - - uid: 1968 + pos: -14.5,16.5 + parent: 2 + - uid: 7010 components: - type: Transform - pos: 89.5,-1.5 + pos: 45.5,-25.5 parent: 2 - - uid: 2379 + - uid: 7433 components: - type: Transform - pos: 84.5,6.5 + rot: -1.5707963267948966 rad + pos: -22.5,1.5 parent: 2 - - uid: 2473 + - uid: 7434 components: - type: Transform - pos: 85.5,1.5 + rot: -1.5707963267948966 rad + pos: -19.5,1.5 parent: 2 - - uid: 6006 + - uid: 7444 components: - type: Transform - pos: 66.5,21.5 + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 parent: 2 - - uid: 6007 + - uid: 7445 components: - type: Transform - pos: 66.5,18.5 + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 parent: 2 - - uid: 6238 + - uid: 7446 components: - type: Transform - pos: 88.5,-3.5 + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 parent: 2 - - uid: 6309 + - uid: 7447 components: - type: Transform - pos: 89.5,-3.5 + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 parent: 2 - - uid: 13044 + - uid: 7448 components: - type: Transform - pos: 36.5,-52.5 + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 parent: 2 - - uid: 13045 + - uid: 7465 components: - type: Transform - pos: 32.5,-56.5 + rot: -1.5707963267948966 rad + pos: -9.5,-10.5 parent: 2 - - uid: 13340 + - uid: 7559 components: - type: Transform - pos: -27.5,-10.5 + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 parent: 2 - - uid: 13341 + - uid: 7588 components: - type: Transform - pos: -27.5,0.5 + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 parent: 2 - - uid: 13342 + - uid: 7590 components: - type: Transform - pos: -28.5,-13.5 + rot: -1.5707963267948966 rad + pos: -8.5,-13.5 parent: 2 - - uid: 13343 + - uid: 7606 components: - type: Transform - pos: -25.5,-18.5 + rot: 3.141592653589793 rad + pos: -11.5,1.5 parent: 2 - - uid: 13681 + - uid: 7608 components: - type: Transform - pos: -27.5,9.5 + rot: 3.141592653589793 rad + pos: -11.5,0.5 parent: 2 -- proto: GlassBoxLaserFilled - entities: - - uid: 5106 + - uid: 7609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,39.5 + rot: 3.141592653589793 rad + pos: -11.5,2.5 parent: 2 -- proto: GlowstickRed - entities: - - uid: 7565 + - uid: 7666 components: - type: Transform - pos: 49.50738,-16.506752 + pos: 2.5,6.5 parent: 2 -- proto: GravityGenerator - entities: - - uid: 8244 + - uid: 7667 components: - type: Transform - pos: 14.5,40.5 + pos: 6.5,20.5 parent: 2 -- proto: Grille - entities: - - uid: 8 + - uid: 7670 components: - type: Transform - pos: -14.5,-20.5 + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 parent: 2 - - uid: 12 + - uid: 7671 components: - type: Transform - pos: -18.5,14.5 + pos: 7.5,20.5 parent: 2 - - uid: 15 + - uid: 7706 components: - type: Transform - pos: -4.5,-18.5 + rot: -1.5707963267948966 rad + pos: 9.5,44.5 parent: 2 - - uid: 16 + - uid: 7710 components: - type: Transform - pos: -4.5,-16.5 + rot: 1.5707963267948966 rad + pos: 1.5,35.5 parent: 2 - - uid: 19 + - uid: 7721 components: - type: Transform - pos: -6.5,-18.5 + pos: -3.5,2.5 parent: 2 - - uid: 20 + - uid: 7733 components: - type: Transform - pos: -4.5,-17.5 + pos: -4.5,-4.5 parent: 2 - - uid: 44 + - uid: 7734 components: - type: Transform - pos: -6.5,-17.5 + pos: -3.5,-2.5 parent: 2 - - uid: 83 + - uid: 7735 components: - type: Transform - pos: -7.5,-0.5 + pos: -1.5,-2.5 parent: 2 - - uid: 103 + - uid: 7744 components: - type: Transform - pos: -3.5,-13.5 + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 parent: 2 - - uid: 104 + - uid: 7753 components: - type: Transform - pos: -2.5,-13.5 + rot: 3.141592653589793 rad + pos: 65.5,35.5 parent: 2 - - uid: 105 + - uid: 7764 components: - type: Transform - pos: -1.5,-13.5 + rot: 1.5707963267948966 rad + pos: -21.5,-5.5 parent: 2 - - uid: 115 + - uid: 7784 components: - type: Transform - pos: -4.5,-9.5 + rot: -1.5707963267948966 rad + pos: 9.5,45.5 parent: 2 - - uid: 116 + - uid: 7795 components: - type: Transform - pos: -4.5,-8.5 + pos: 52.5,25.5 parent: 2 - - uid: 129 + - uid: 7799 components: - type: Transform - pos: 26.5,-30.5 + pos: 52.5,23.5 parent: 2 - - uid: 130 + - uid: 7814 components: - type: Transform - pos: -18.5,-10.5 + pos: 4.5,18.5 parent: 2 - - uid: 141 + - uid: 7817 components: - type: Transform - pos: -20.5,-21.5 + pos: 45.5,-32.5 parent: 2 - - uid: 144 + - uid: 7833 components: - type: Transform - pos: -18.5,-21.5 + pos: 4.5,19.5 parent: 2 - - uid: 147 + - uid: 7867 components: - type: Transform - pos: 27.5,-30.5 + pos: -3.5,1.5 parent: 2 - - uid: 196 + - uid: 7868 components: - type: Transform - pos: 1.5,-17.5 + pos: 1.5,1.5 parent: 2 - - uid: 197 + - uid: 7869 components: - type: Transform - pos: 0.5,-17.5 + pos: -1.5,1.5 parent: 2 - - uid: 240 + - uid: 7871 components: - type: Transform - pos: -10.5,-19.5 + pos: -5.5,1.5 parent: 2 - - uid: 241 + - uid: 7872 components: - type: Transform - pos: -19.5,-21.5 + pos: 2.5,3.5 parent: 2 - - uid: 244 + - uid: 7873 components: - type: Transform - pos: 2.5,11.5 + pos: 2.5,2.5 parent: 2 - - uid: 259 + - uid: 7874 components: - type: Transform - pos: 7.5,7.5 + pos: 2.5,4.5 parent: 2 - - uid: 260 + - uid: 7877 components: - type: Transform - pos: 7.5,6.5 + pos: 2.5,12.5 parent: 2 - - uid: 261 + - uid: 7887 components: - type: Transform - pos: 7.5,5.5 + pos: -5.5,2.5 parent: 2 - - uid: 262 + - uid: 7893 components: - type: Transform - pos: 8.5,8.5 + pos: 2.5,10.5 parent: 2 - - uid: 263 + - uid: 7941 components: - type: Transform - pos: 10.5,8.5 + pos: -1.5,2.5 parent: 2 - - uid: 264 + - uid: 7944 components: - type: Transform - pos: 12.5,8.5 + pos: 2.5,7.5 parent: 2 - - uid: 331 + - uid: 7948 components: - type: Transform - pos: -11.5,-15.5 + pos: 0.5,1.5 parent: 2 - - uid: 332 + - uid: 7951 components: - type: Transform - pos: -12.5,-15.5 + pos: 2.5,8.5 parent: 2 - - uid: 333 + - uid: 7961 components: - type: Transform - pos: -13.5,-15.5 + pos: -15.5,16.5 parent: 2 - - uid: 334 + - uid: 7964 components: - type: Transform - pos: -18.5,-15.5 + pos: 2.5,16.5 parent: 2 - - uid: 335 + - uid: 7970 components: - type: Transform - pos: -19.5,-15.5 + rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - - uid: 336 + - uid: 8028 components: - type: Transform - pos: -20.5,-15.5 + pos: -17.5,16.5 parent: 2 - - uid: 337 + - uid: 8084 components: - type: Transform - pos: -22.5,-14.5 + pos: -11.5,16.5 parent: 2 - - uid: 339 + - uid: 8085 components: - type: Transform - pos: -22.5,-13.5 + pos: -9.5,16.5 parent: 2 - - uid: 341 + - uid: 8110 components: - type: Transform - pos: -22.5,-12.5 + pos: -21.5,16.5 parent: 2 - - uid: 346 + - uid: 8158 components: - type: Transform - pos: -13.5,-20.5 + rot: -1.5707963267948966 rad + pos: -4.5,-16.5 parent: 2 - - uid: 392 + - uid: 8200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-23.5 + pos: 1.5,16.5 parent: 2 - - uid: 403 + - uid: 8201 components: - type: Transform - pos: -4.5,14.5 + pos: -0.5,16.5 parent: 2 - - uid: 406 + - uid: 8253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-27.5 + pos: 17.5,-37.5 parent: 2 - - uid: 407 + - uid: 8389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-29.5 + rot: 3.141592653589793 rad + pos: 47.5,31.5 parent: 2 - - uid: 428 + - uid: 8667 components: - type: Transform - pos: -6.5,14.5 + pos: 64.5,26.5 parent: 2 - - uid: 429 + - uid: 8668 components: - type: Transform - pos: 5.5,20.5 + pos: 63.5,26.5 parent: 2 - - uid: 438 + - uid: 8703 components: - type: Transform - pos: -9.5,14.5 + rot: -1.5707963267948966 rad + pos: 55.5,42.5 parent: 2 - - uid: 471 + - uid: 8719 components: - type: Transform - pos: -10.5,14.5 + pos: 92.5,-17.5 parent: 2 - - uid: 507 + - uid: 8721 components: - type: Transform - pos: 14.5,-2.5 + pos: 95.5,-17.5 parent: 2 - - uid: 508 + - uid: 8722 components: - type: Transform - pos: 15.5,-2.5 + pos: 97.5,-22.5 parent: 2 - - uid: 511 + - uid: 8725 components: - type: Transform - pos: -4.5,-12.5 + pos: 96.5,-17.5 parent: 2 - - uid: 607 + - uid: 8727 components: - type: Transform - pos: 0.5,14.5 + pos: 98.5,-17.5 parent: 2 - - uid: 610 + - uid: 8729 components: - type: Transform - pos: -0.5,14.5 + pos: 93.5,-17.5 parent: 2 - - uid: 614 + - uid: 8732 components: - type: Transform - pos: -1.5,14.5 + pos: 95.5,-22.5 parent: 2 - - uid: 660 + - uid: 8733 components: - type: Transform - pos: 17.5,-16.5 + pos: 94.5,-22.5 parent: 2 - - uid: 661 + - uid: 8734 components: - type: Transform - pos: 17.5,-18.5 + pos: 93.5,-22.5 parent: 2 - - uid: 662 + - uid: 8735 components: - type: Transform - pos: 18.5,-18.5 + pos: 92.5,-22.5 parent: 2 - - uid: 663 + - uid: 8775 components: - type: Transform - pos: 19.5,-18.5 + pos: 105.5,-9.5 parent: 2 - - uid: 664 + - uid: 8776 components: - type: Transform - pos: 19.5,-17.5 + pos: 106.5,-9.5 parent: 2 - - uid: 665 + - uid: 8777 components: - type: Transform - pos: 19.5,-16.5 + pos: 107.5,-9.5 parent: 2 - - uid: 674 + - uid: 8783 components: - type: Transform - pos: -25.5,-12.5 + pos: 99.5,-17.5 parent: 2 - - uid: 687 + - uid: 8784 components: - type: Transform - pos: -2.5,14.5 + pos: 100.5,-17.5 parent: 2 - - uid: 694 + - uid: 8785 components: - type: Transform - pos: -27.5,-14.5 + pos: 100.5,-22.5 parent: 2 - - uid: 697 + - uid: 8786 components: - type: Transform - pos: -3.5,14.5 + pos: 99.5,-22.5 parent: 2 - - uid: 698 + - uid: 8799 components: - type: Transform - pos: 7.5,-25.5 + pos: 105.5,-25.5 parent: 2 - - uid: 699 + - uid: 8800 components: - type: Transform - pos: 6.5,-25.5 + pos: 106.5,-25.5 parent: 2 - - uid: 700 + - uid: 8801 components: - type: Transform - pos: 6.5,-26.5 + pos: 107.5,-25.5 parent: 2 - - uid: 701 + - uid: 8806 components: - type: Transform - pos: 6.5,-27.5 + pos: 105.5,-20.5 parent: 2 - - uid: 702 + - uid: 8807 components: - type: Transform - pos: 6.5,-30.5 + pos: 107.5,-20.5 parent: 2 - - uid: 703 + - uid: 8837 components: - type: Transform - pos: 6.5,-31.5 + pos: 105.5,-14.5 parent: 2 - - uid: 704 + - uid: 8838 components: - type: Transform - pos: 6.5,-32.5 + pos: 107.5,-14.5 parent: 2 - - uid: 706 + - uid: 8871 components: - type: Transform - pos: 5.5,-32.5 + pos: 115.5,-20.5 parent: 2 - - uid: 764 + - uid: 8872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-33.5 + pos: 114.5,-20.5 parent: 2 - - uid: 811 + - uid: 8873 components: - type: Transform - pos: 25.5,-26.5 + pos: 112.5,-20.5 parent: 2 - - uid: 812 + - uid: 8874 components: - type: Transform - pos: 27.5,-26.5 + pos: 111.5,-20.5 parent: 2 - - uid: 854 + - uid: 8889 components: - type: Transform - pos: 19.5,-30.5 + pos: 110.5,-21.5 parent: 2 - - uid: 855 + - uid: 8890 components: - type: Transform - pos: 19.5,-32.5 + pos: 110.5,-22.5 parent: 2 - - uid: 856 + - uid: 8891 components: - type: Transform - pos: 24.5,-34.5 + pos: 110.5,-23.5 parent: 2 - - uid: 857 + - uid: 8892 components: - type: Transform - pos: 25.5,-34.5 + pos: 110.5,-24.5 parent: 2 - - uid: 858 + - uid: 8893 components: - type: Transform - pos: 28.5,-34.5 + pos: 110.5,-25.5 parent: 2 - - uid: 859 + - uid: 8894 components: - type: Transform - pos: 27.5,-34.5 + pos: 111.5,-25.5 parent: 2 - - uid: 860 + - uid: 8895 components: - type: Transform - pos: 33.5,-32.5 + pos: 112.5,-25.5 parent: 2 - - uid: 861 + - uid: 8896 components: - type: Transform - pos: 33.5,-30.5 + pos: 113.5,-25.5 parent: 2 - - uid: 921 + - uid: 8897 components: - type: Transform - pos: 13.5,-37.5 + pos: 114.5,-25.5 parent: 2 - - uid: 922 + - uid: 8898 components: - type: Transform - pos: 12.5,-37.5 + pos: 115.5,-25.5 parent: 2 - - uid: 924 + - uid: 8899 components: - type: Transform - pos: 10.5,-37.5 + pos: 116.5,-25.5 parent: 2 - - uid: 925 + - uid: 8900 components: - type: Transform - pos: 14.5,-36.5 + pos: 116.5,-24.5 parent: 2 - - uid: 926 + - uid: 8901 components: - type: Transform - pos: 14.5,-35.5 + pos: 116.5,-23.5 parent: 2 - - uid: 927 + - uid: 8902 components: - type: Transform - pos: 14.5,-33.5 + pos: 116.5,-22.5 parent: 2 - - uid: 959 + - uid: 8903 components: - type: Transform - pos: 24.5,-38.5 + pos: 116.5,-21.5 parent: 2 - - uid: 960 + - uid: 8938 components: - type: Transform - pos: 23.5,-37.5 + pos: 111.5,-14.5 parent: 2 - - uid: 961 + - uid: 8939 components: - type: Transform - pos: 22.5,-37.5 + pos: 112.5,-14.5 parent: 2 - - uid: 962 + - uid: 8940 components: - type: Transform - pos: 20.5,-37.5 + pos: 114.5,-14.5 parent: 2 - - uid: 963 + - uid: 8941 components: - type: Transform - pos: 19.5,-37.5 + pos: 115.5,-14.5 parent: 2 - - uid: 964 + - uid: 8951 components: - type: Transform - pos: 18.5,-38.5 + pos: 116.5,-15.5 parent: 2 - - uid: 965 + - uid: 8952 components: - type: Transform - pos: 18.5,-41.5 + pos: 116.5,-16.5 parent: 2 - - uid: 966 + - uid: 8953 components: - type: Transform - pos: 18.5,-42.5 + pos: 116.5,-18.5 parent: 2 - - uid: 967 + - uid: 8954 components: - type: Transform - pos: 18.5,-43.5 + pos: 116.5,-19.5 parent: 2 - - uid: 968 + - uid: 8987 components: - type: Transform - pos: 18.5,-44.5 + pos: 110.5,-13.5 parent: 2 - - uid: 969 + - uid: 8988 components: - type: Transform - pos: 19.5,-44.5 + pos: 110.5,-12.5 parent: 2 - - uid: 970 + - uid: 8989 components: - type: Transform - pos: 20.5,-44.5 + pos: 110.5,-11.5 parent: 2 - - uid: 971 + - uid: 8990 components: - type: Transform - pos: 21.5,-44.5 + pos: 110.5,-10.5 parent: 2 - - uid: 972 + - uid: 8991 components: - type: Transform - pos: 22.5,-44.5 + pos: 110.5,-9.5 parent: 2 - - uid: 973 + - uid: 8992 components: - type: Transform - pos: 23.5,-44.5 + pos: 111.5,-9.5 parent: 2 - - uid: 974 + - uid: 8993 components: - type: Transform - pos: 24.5,-44.5 + pos: 112.5,-9.5 parent: 2 - - uid: 975 + - uid: 8994 components: - type: Transform - pos: 24.5,-43.5 + pos: 113.5,-9.5 parent: 2 - - uid: 976 + - uid: 8995 components: - type: Transform - pos: 24.5,-42.5 + pos: 114.5,-9.5 parent: 2 - - uid: 977 + - uid: 8996 components: - type: Transform - pos: 24.5,-41.5 + pos: 115.5,-9.5 parent: 2 - - uid: 978 + - uid: 8997 components: - type: Transform - pos: 25.5,-43.5 + pos: 116.5,-9.5 parent: 2 - - uid: 979 + - uid: 8998 components: - type: Transform - pos: 26.5,-43.5 + pos: 116.5,-10.5 parent: 2 - - uid: 980 + - uid: 8999 components: - type: Transform - pos: 17.5,-43.5 + pos: 116.5,-11.5 parent: 2 - - uid: 981 + - uid: 9000 components: - type: Transform - pos: 16.5,-43.5 + pos: 116.5,-12.5 parent: 2 - - uid: 1108 + - uid: 9001 components: - type: Transform - pos: -27.5,-12.5 + pos: 116.5,-13.5 parent: 2 - - uid: 1180 + - uid: 9065 components: - type: Transform - pos: -11.5,-10.5 + pos: 117.5,-14.5 parent: 2 - - uid: 1241 + - uid: 9066 components: - type: Transform - pos: 38.5,-58.5 + pos: 118.5,-14.5 parent: 2 - - uid: 1242 + - uid: 9067 components: - type: Transform - pos: 36.5,-58.5 + pos: 119.5,-14.5 parent: 2 - - uid: 1243 + - uid: 9068 components: - type: Transform - pos: 33.5,-58.5 + pos: 120.5,-14.5 parent: 2 - - uid: 1246 + - uid: 9069 components: - type: Transform - pos: 37.5,-58.5 + pos: 121.5,-14.5 parent: 2 - - uid: 1248 + - uid: 9070 components: - type: Transform - pos: 34.5,-58.5 + pos: 121.5,-15.5 parent: 2 - - uid: 1254 + - uid: 9071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-10.5 + pos: 121.5,-16.5 parent: 2 - - uid: 1316 + - uid: 9072 components: - type: Transform - pos: -11.5,-11.5 + pos: 121.5,-17.5 parent: 2 - - uid: 1317 + - uid: 9073 components: - type: Transform - pos: -13.5,-11.5 + pos: 121.5,-18.5 parent: 2 - - uid: 1330 + - uid: 9074 components: - type: Transform - pos: -12.5,14.5 + pos: 121.5,-19.5 parent: 2 - - uid: 1336 + - uid: 9075 components: - type: Transform - pos: -15.5,-11.5 + pos: 121.5,-20.5 parent: 2 - - uid: 1338 + - uid: 9076 components: - type: Transform - pos: 1.5,-27.5 + pos: 120.5,-20.5 parent: 2 - - uid: 1339 + - uid: 9077 components: - type: Transform - pos: 0.5,-27.5 + pos: 119.5,-20.5 parent: 2 - - uid: 1340 + - uid: 9078 components: - type: Transform - pos: -1.5,-28.5 + pos: 118.5,-20.5 parent: 2 - - uid: 1341 + - uid: 9079 components: - type: Transform - pos: -1.5,-29.5 + pos: 117.5,-20.5 parent: 2 - - uid: 1357 + - uid: 9349 components: - type: Transform - pos: 1.5,-34.5 + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 parent: 2 - - uid: 1358 + - uid: 10138 components: - type: Transform - pos: 0.5,-34.5 + pos: 28.5,29.5 parent: 2 - - uid: 1359 + - uid: 10343 components: - type: Transform - pos: -0.5,-34.5 + pos: 43.5,40.5 parent: 2 - - uid: 1360 + - uid: 10801 components: - type: Transform - pos: 1.5,-36.5 + pos: 85.5,-14.5 parent: 2 - - uid: 1361 + - uid: 10951 components: - type: Transform - pos: 0.5,-36.5 + pos: 27.5,-59.5 parent: 2 - - uid: 1362 + - uid: 10952 components: - type: Transform - pos: -0.5,-36.5 + pos: 28.5,-59.5 parent: 2 - - uid: 1508 + - uid: 10961 components: - type: Transform - pos: 34.5,-1.5 + pos: 25.5,-59.5 parent: 2 - - uid: 1540 + - uid: 10974 components: - type: Transform - pos: 28.5,-6.5 + pos: 41.5,32.5 parent: 2 - - uid: 1546 + - uid: 10975 components: - type: Transform - pos: -7.5,14.5 + rot: 1.5707963267948966 rad + pos: 7.5,43.5 parent: 2 - - uid: 1556 + - uid: 10976 components: - type: Transform - pos: -16.5,-11.5 + rot: 1.5707963267948966 rad + pos: 8.5,43.5 parent: 2 - - uid: 1565 + - uid: 10977 components: - type: Transform - pos: 28.5,-3.5 + rot: 1.5707963267948966 rad + pos: 6.5,43.5 parent: 2 - - uid: 1575 + - uid: 10983 components: - type: Transform - pos: 28.5,-4.5 + rot: 1.5707963267948966 rad + pos: 4.5,43.5 parent: 2 - - uid: 1675 + - uid: 11309 components: - type: Transform - pos: 45.5,-2.5 + pos: 58.5,-3.5 parent: 2 - - uid: 1710 + - uid: 11310 components: - type: Transform - pos: 46.5,-14.5 + pos: 58.5,-4.5 parent: 2 - - uid: 1711 + - uid: 11414 components: - type: Transform - pos: 46.5,-15.5 + pos: 58.5,-7.5 parent: 2 - - uid: 1712 + - uid: 11532 components: - type: Transform - pos: 46.5,-16.5 + pos: 77.5,19.5 parent: 2 - - uid: 1713 + - uid: 11533 components: - type: Transform - pos: 42.5,-16.5 + pos: 78.5,18.5 parent: 2 - - uid: 1714 + - uid: 11534 components: - type: Transform - pos: 42.5,-15.5 + pos: 79.5,18.5 parent: 2 - - uid: 1715 + - uid: 11535 components: - type: Transform - pos: 42.5,-14.5 + pos: 80.5,16.5 parent: 2 - - uid: 1741 + - uid: 11536 components: - type: Transform - pos: 28.5,-14.5 + pos: 81.5,16.5 parent: 2 - - uid: 1742 + - uid: 11537 components: - type: Transform - pos: 28.5,-17.5 + pos: 84.5,15.5 parent: 2 - - uid: 1773 + - uid: 11538 components: - type: Transform - pos: -5.5,14.5 + pos: 83.5,15.5 parent: 2 - - uid: 1854 + - uid: 11539 components: - type: Transform - pos: -14.5,-19.5 + pos: 82.5,15.5 parent: 2 - - uid: 1856 + - uid: 11540 components: - type: Transform - pos: -3.5,0.5 + pos: 86.5,-23.5 parent: 2 - - uid: 1967 + - uid: 11541 components: - type: Transform - pos: 88.5,-6.5 + pos: 87.5,-23.5 parent: 2 - - uid: 1998 + - uid: 11542 components: - type: Transform - pos: 6.5,22.5 + pos: 85.5,-25.5 parent: 2 - - uid: 1999 + - uid: 11543 components: - type: Transform - pos: 5.5,22.5 + pos: 84.5,-25.5 parent: 2 - - uid: 2000 + - uid: 11544 components: - type: Transform - pos: 4.5,22.5 + pos: 83.5,-25.5 parent: 2 - - uid: 2005 + - uid: 11545 components: - type: Transform - pos: 6.5,25.5 + pos: 82.5,-25.5 parent: 2 - - uid: 2006 + - uid: 11546 components: - type: Transform - pos: 5.5,25.5 + pos: 80.5,-24.5 parent: 2 - - uid: 2007 + - uid: 11547 components: - type: Transform - pos: 4.5,25.5 + pos: 79.5,-24.5 parent: 2 - - uid: 2008 + - uid: 11548 components: - type: Transform - pos: 6.5,28.5 + pos: 77.5,-24.5 parent: 2 - - uid: 2009 + - uid: 11549 components: - type: Transform - pos: 5.5,28.5 + pos: 76.5,-24.5 parent: 2 - - uid: 2010 + - uid: 11550 components: - type: Transform - pos: 4.5,28.5 + pos: 58.5,-25.5 parent: 2 - - uid: 2023 + - uid: 11551 components: - type: Transform - pos: -12.5,-20.5 + pos: 58.5,-26.5 parent: 2 - - uid: 2031 + - uid: 11552 components: - type: Transform - pos: -7.5,-5.5 + pos: 58.5,-27.5 parent: 2 - - uid: 2035 + - uid: 11553 components: - type: Transform - pos: 11.5,29.5 + pos: 58.5,-28.5 parent: 2 - - uid: 2036 + - uid: 11554 components: - type: Transform - pos: 13.5,29.5 + pos: 58.5,-29.5 parent: 2 - - uid: 2076 + - uid: 11555 components: - type: Transform - pos: 16.5,21.5 + pos: 58.5,-30.5 parent: 2 - - uid: 2077 + - uid: 11556 components: - type: Transform - pos: 7.5,20.5 + pos: 58.5,-31.5 parent: 2 - - uid: 2079 + - uid: 11557 components: - type: Transform - pos: 21.5,23.5 + pos: 58.5,-32.5 parent: 2 - - uid: 2080 + - uid: 11558 components: - type: Transform - pos: 21.5,24.5 + pos: 58.5,-33.5 parent: 2 - - uid: 2182 + - uid: 11559 components: - type: Transform - pos: 24.5,15.5 + pos: 58.5,-34.5 parent: 2 - - uid: 2183 + - uid: 11560 components: - type: Transform - pos: 24.5,12.5 + pos: 57.5,-34.5 parent: 2 - - uid: 2236 + - uid: 11561 components: - type: Transform - pos: 28.5,21.5 + pos: 56.5,-34.5 parent: 2 - - uid: 2237 + - uid: 11562 components: - type: Transform - pos: 28.5,20.5 + pos: 74.5,-25.5 parent: 2 - - uid: 2238 + - uid: 11563 components: - type: Transform - pos: 28.5,18.5 + pos: 73.5,-25.5 parent: 2 - - uid: 2239 + - uid: 11564 components: - type: Transform - pos: 28.5,17.5 + pos: 72.5,-25.5 parent: 2 - - uid: 2254 + - uid: 11565 components: - type: Transform - pos: 31.5,21.5 + pos: 70.5,-25.5 parent: 2 - - uid: 2255 + - uid: 11566 components: - type: Transform - pos: 31.5,17.5 + pos: 69.5,-25.5 parent: 2 - - uid: 2274 + - uid: 11567 components: - type: Transform - pos: 42.5,32.5 + pos: 67.5,-25.5 parent: 2 - - uid: 2279 + - uid: 11568 components: - type: Transform - pos: 42.5,31.5 + pos: 66.5,-25.5 parent: 2 - - uid: 2280 + - uid: 11569 components: - type: Transform - pos: 42.5,33.5 + pos: 65.5,-25.5 parent: 2 - - uid: 2281 + - uid: 11570 components: - type: Transform - pos: 44.5,34.5 + pos: 64.5,-25.5 parent: 2 - - uid: 2282 + - uid: 11571 components: - type: Transform - pos: 44.5,35.5 + pos: 63.5,-25.5 parent: 2 - - uid: 2283 + - uid: 11572 components: - type: Transform - pos: 44.5,36.5 + pos: 59.5,-25.5 parent: 2 - - uid: 2351 + - uid: 11573 components: - type: Transform - pos: 37.5,24.5 + pos: 60.5,-25.5 parent: 2 - - uid: 2352 + - uid: 11574 components: - type: Transform - pos: 37.5,23.5 + pos: 61.5,-25.5 parent: 2 - - uid: 2353 + - uid: 11575 components: - type: Transform - pos: 37.5,26.5 + pos: 29.5,-60.5 parent: 2 - - uid: 2354 + - uid: 11582 components: - type: Transform - pos: 37.5,27.5 + pos: 52.5,-36.5 parent: 2 - - uid: 2355 + - uid: 11583 components: - type: Transform - pos: 37.5,28.5 + pos: 52.5,-37.5 parent: 2 - - uid: 2357 + - uid: 11584 components: - type: Transform - pos: 41.5,25.5 + pos: 52.5,-38.5 parent: 2 - - uid: 2358 + - uid: 11585 components: - type: Transform - pos: 37.5,21.5 + pos: 52.5,-39.5 parent: 2 - - uid: 2359 + - uid: 11589 components: - type: Transform - pos: 38.5,20.5 + pos: 47.5,-55.5 parent: 2 - - uid: 2365 + - uid: 11590 components: - type: Transform - pos: 38.5,25.5 + pos: 48.5,-55.5 parent: 2 - - uid: 2371 + - uid: 11591 components: - type: Transform - pos: 42.5,24.5 + pos: 47.5,-57.5 parent: 2 - - uid: 2372 + - uid: 11592 components: - type: Transform - pos: 42.5,22.5 + pos: 47.5,-58.5 parent: 2 - - uid: 2392 + - uid: 11593 components: - type: Transform - pos: 67.5,-18.5 + pos: 47.5,-59.5 parent: 2 - - uid: 2433 + - uid: 11594 components: - type: Transform - pos: 24.5,-27.5 + pos: 47.5,-60.5 parent: 2 - - uid: 2434 + - uid: 11595 components: - type: Transform - pos: 28.5,-27.5 + pos: 45.5,-60.5 parent: 2 - - uid: 2456 + - uid: 11596 components: - type: Transform - pos: 43.5,16.5 + pos: 44.5,-60.5 parent: 2 - - uid: 2457 + - uid: 11597 components: - type: Transform - pos: 41.5,16.5 + pos: 43.5,-60.5 parent: 2 - - uid: 2512 + - uid: 11598 components: - type: Transform - pos: 39.5,8.5 + pos: 41.5,-60.5 parent: 2 - - uid: 2513 + - uid: 11599 components: - type: Transform - pos: 39.5,9.5 + pos: 40.5,-60.5 parent: 2 - - uid: 2514 + - uid: 11600 components: - type: Transform - pos: 39.5,6.5 + pos: 54.5,-35.5 parent: 2 - - uid: 2515 + - uid: 11601 components: - type: Transform - pos: 39.5,5.5 + pos: -2.5,-28.5 parent: 2 - - uid: 2618 + - uid: 11602 components: - type: Transform - pos: 21.5,38.5 + pos: -3.5,-28.5 parent: 2 - - uid: 2619 + - uid: 11603 components: - type: Transform - pos: 22.5,38.5 + pos: -4.5,-28.5 parent: 2 - - uid: 2620 + - uid: 11604 components: - type: Transform - pos: 23.5,38.5 + pos: -5.5,-28.5 parent: 2 - - uid: 2621 + - uid: 11605 components: - type: Transform - pos: 24.5,38.5 + pos: -6.5,-28.5 parent: 2 - - uid: 2622 + - uid: 11606 components: - type: Transform - pos: 21.5,43.5 + pos: -7.5,-28.5 parent: 2 - - uid: 2623 + - uid: 11607 components: - type: Transform - pos: 24.5,43.5 + pos: -8.5,-28.5 parent: 2 - - uid: 2624 + - uid: 11608 components: - type: Transform - pos: 27.5,38.5 + pos: -9.5,-28.5 parent: 2 - - uid: 2625 + - uid: 11610 components: - type: Transform - pos: 27.5,43.5 + pos: -11.5,-28.5 parent: 2 - - uid: 2649 + - uid: 11611 components: - type: Transform - pos: 15.5,42.5 + pos: -12.5,-28.5 parent: 2 - - uid: 2650 + - uid: 11612 components: - type: Transform - pos: 14.5,42.5 + pos: -13.5,-28.5 parent: 2 - - uid: 2651 + - uid: 11614 components: - type: Transform - pos: 13.5,42.5 + pos: -15.5,-28.5 parent: 2 - - uid: 2676 + - uid: 11615 components: - type: Transform - pos: 24.5,34.5 + pos: -16.5,-28.5 parent: 2 - - uid: 2677 + - uid: 11616 components: - type: Transform - pos: 23.5,34.5 + pos: -16.5,-29.5 parent: 2 - - uid: 2678 + - uid: 11617 components: - type: Transform - pos: 22.5,33.5 + pos: -16.5,-30.5 parent: 2 - - uid: 2679 + - uid: 11618 components: - type: Transform - pos: 22.5,32.5 + pos: -16.5,-32.5 parent: 2 - - uid: 2680 + - uid: 11619 components: - type: Transform - pos: 22.5,30.5 + pos: -17.5,-32.5 parent: 2 - - uid: 2681 + - uid: 11620 components: - type: Transform - pos: 22.5,29.5 + pos: -18.5,-32.5 parent: 2 - - uid: 2729 + - uid: 11621 components: - type: Transform - pos: -13.5,1.5 + pos: -18.5,-33.5 parent: 2 - - uid: 2732 + - uid: 11622 components: - type: Transform - pos: -25.5,-13.5 + pos: -18.5,-34.5 parent: 2 - - uid: 2735 + - uid: 11623 components: - type: Transform - pos: -4.5,-14.5 + pos: -18.5,-35.5 parent: 2 - - uid: 2736 + - uid: 11624 components: - type: Transform - pos: -11.5,1.5 + pos: -18.5,-36.5 parent: 2 - - uid: 2740 + - uid: 11626 components: - type: Transform - pos: -25.5,-14.5 + pos: -18.5,-38.5 parent: 2 - - uid: 2741 + - uid: 11627 components: - type: Transform - pos: -9.5,1.5 + pos: -17.5,-38.5 parent: 2 - - uid: 2742 + - uid: 11628 components: - type: Transform - pos: -14.5,1.5 + pos: -16.5,-38.5 parent: 2 - - uid: 2743 + - uid: 11629 components: - type: Transform - pos: -10.5,1.5 + pos: -2.5,-41.5 parent: 2 - - uid: 2789 + - uid: 11630 components: - type: Transform - pos: 22.5,49.5 + pos: -2.5,-42.5 parent: 2 - - uid: 2790 + - uid: 11631 components: - type: Transform - pos: 23.5,49.5 + pos: -3.5,-42.5 parent: 2 - - uid: 2791 + - uid: 11633 components: - type: Transform - pos: 24.5,49.5 + pos: -5.5,-42.5 parent: 2 - - uid: 2792 + - uid: 11634 components: - type: Transform - pos: 25.5,49.5 + pos: -6.5,-42.5 parent: 2 - - uid: 2793 + - uid: 11635 components: - type: Transform - pos: 26.5,49.5 + pos: -7.5,-42.5 parent: 2 - - uid: 2794 + - uid: 11636 components: - type: Transform - pos: 27.5,49.5 + pos: -8.5,-42.5 parent: 2 - - uid: 2795 + - uid: 11637 components: - type: Transform - pos: 28.5,49.5 + pos: -9.5,-42.5 parent: 2 - - uid: 2796 + - uid: 11638 components: - type: Transform - pos: 29.5,49.5 + pos: -10.5,-42.5 parent: 2 - - uid: 2797 + - uid: 11639 components: - type: Transform - pos: 30.5,49.5 + pos: -11.5,-42.5 parent: 2 - - uid: 2798 + - uid: 11640 components: - type: Transform - pos: 31.5,49.5 + pos: -12.5,-42.5 parent: 2 - - uid: 2799 + - uid: 11641 components: - type: Transform - pos: 32.5,49.5 + pos: -13.5,-42.5 parent: 2 - - uid: 2806 + - uid: 11643 components: - type: Transform - pos: 36.5,45.5 + pos: -16.5,-40.5 parent: 2 - - uid: 2807 + - uid: 11644 components: - type: Transform - pos: 36.5,46.5 + pos: -16.5,-41.5 parent: 2 - - uid: 2808 + - uid: 11645 components: - type: Transform - pos: 18.5,44.5 + pos: -16.5,-42.5 parent: 2 - - uid: 2809 + - uid: 11646 components: - type: Transform - pos: 18.5,45.5 + pos: -15.5,-42.5 parent: 2 - - uid: 2828 + - uid: 11647 components: - type: Transform - pos: -20.5,-10.5 + pos: 89.5,42.5 parent: 2 - - uid: 2830 + - uid: 11648 components: - type: Transform - pos: -7.5,-4.5 + pos: 90.5,42.5 parent: 2 - - uid: 2836 + - uid: 11649 components: - type: Transform - pos: 59.5,-14.5 + pos: 91.5,42.5 parent: 2 - - uid: 2837 + - uid: 11651 components: - type: Transform - pos: 60.5,-12.5 + pos: 91.5,44.5 parent: 2 - - uid: 2838 + - uid: 11652 components: - type: Transform - pos: 62.5,-12.5 + pos: 91.5,45.5 parent: 2 - - uid: 2839 + - uid: 11653 components: - type: Transform - pos: 61.5,-12.5 + pos: 91.5,46.5 parent: 2 - - uid: 2840 + - uid: 11654 components: - type: Transform - pos: 63.5,-12.5 + pos: 91.5,47.5 parent: 2 - - uid: 2841 + - uid: 11655 components: - type: Transform - pos: 60.5,-14.5 + pos: 91.5,48.5 parent: 2 - - uid: 2842 + - uid: 11656 components: - type: Transform - pos: 61.5,-14.5 + pos: 90.5,48.5 parent: 2 - - uid: 2843 + - uid: 11657 components: - type: Transform - pos: 62.5,-14.5 + pos: 89.5,48.5 parent: 2 - - uid: 2844 + - uid: 11658 components: - type: Transform - pos: 63.5,-14.5 + pos: 74.5,51.5 parent: 2 - - uid: 2845 + - uid: 11659 components: - type: Transform - pos: 60.5,-8.5 + pos: 75.5,51.5 parent: 2 - - uid: 2846 + - uid: 11660 components: - type: Transform - pos: 62.5,-8.5 + pos: 76.5,51.5 parent: 2 - - uid: 2847 + - uid: 11661 components: - type: Transform - pos: 63.5,-8.5 + pos: 77.5,51.5 parent: 2 - - uid: 2878 + - uid: 11662 components: - type: Transform - pos: 58.5,-17.5 + pos: 78.5,51.5 parent: 2 - - uid: 2879 + - uid: 11663 components: - type: Transform - pos: 59.5,-18.5 + pos: 79.5,51.5 parent: 2 - - uid: 2880 + - uid: 11664 components: - type: Transform - pos: 60.5,-18.5 + pos: 81.5,51.5 parent: 2 - - uid: 2881 + - uid: 11665 components: - type: Transform - pos: 66.5,-18.5 + pos: 80.5,51.5 parent: 2 - - uid: 2882 + - uid: 11667 components: - type: Transform - pos: 65.5,-18.5 + pos: 83.5,51.5 parent: 2 - - uid: 2961 + - uid: 11668 components: - type: Transform - pos: 49.5,-3.5 + pos: 84.5,51.5 parent: 2 - - uid: 2962 + - uid: 11669 components: - type: Transform - pos: 54.5,-3.5 + pos: 85.5,51.5 parent: 2 - - uid: 2964 + - uid: 11670 components: - type: Transform - pos: 44.5,1.5 + pos: 86.5,51.5 parent: 2 - - uid: 2965 + - uid: 11671 components: - type: Transform - pos: 43.5,1.5 + pos: 87.5,51.5 parent: 2 - - uid: 2966 + - uid: 11672 components: - type: Transform - pos: 46.5,1.5 + pos: 88.5,51.5 parent: 2 - - uid: 2967 + - uid: 11673 components: - type: Transform - pos: 47.5,1.5 + pos: 76.5,38.5 parent: 2 - - uid: 2968 + - uid: 11674 components: - type: Transform - pos: 48.5,4.5 + pos: 77.5,38.5 parent: 2 - - uid: 2986 + - uid: 11675 components: - type: Transform - pos: 52.5,1.5 + pos: 78.5,38.5 parent: 2 - - uid: 2987 + - uid: 11677 components: - type: Transform - pos: 53.5,-0.5 + pos: 80.5,38.5 parent: 2 - - uid: 3015 + - uid: 11678 components: - type: Transform - pos: 57.5,-8.5 + pos: 81.5,38.5 parent: 2 - - uid: 3016 + - uid: 11679 components: - type: Transform - pos: 55.5,-8.5 + pos: 82.5,38.5 parent: 2 - - uid: 3017 + - uid: 11680 components: - type: Transform - pos: 67.5,-2.5 + pos: 83.5,38.5 parent: 2 - - uid: 3018 + - uid: 11681 components: - type: Transform - pos: 66.5,-2.5 + pos: 84.5,38.5 parent: 2 - - uid: 3019 + - uid: 11682 components: - type: Transform - pos: 65.5,-2.5 + pos: 85.5,38.5 parent: 2 - - uid: 3020 + - uid: 11683 components: - type: Transform - pos: 64.5,-2.5 + pos: 86.5,38.5 parent: 2 - - uid: 3045 + - uid: 11684 components: - type: Transform - pos: 55.5,12.5 + pos: 87.5,38.5 parent: 2 - - uid: 3046 + - uid: 11685 components: - type: Transform - pos: 53.5,12.5 + pos: 88.5,38.5 parent: 2 - - uid: 3067 + - uid: 11686 components: - type: Transform - pos: 42.5,40.5 + pos: 15.5,47.5 parent: 2 - - uid: 3068 + - uid: 11687 components: - type: Transform - pos: 41.5,40.5 + pos: 14.5,47.5 parent: 2 - - uid: 3090 + - uid: 11688 components: - type: Transform - pos: 43.5,47.5 + pos: 13.5,47.5 parent: 2 - - uid: 3091 + - uid: 11689 components: - type: Transform - pos: 44.5,47.5 + pos: -1.5,16.5 parent: 2 - - uid: 3092 + - uid: 11695 components: - type: Transform - pos: 45.5,47.5 + pos: 41.5,52.5 parent: 2 - - uid: 3093 + - uid: 11696 components: - type: Transform - pos: 45.5,48.5 + pos: 40.5,52.5 parent: 2 - - uid: 3094 + - uid: 11697 components: - type: Transform - pos: 46.5,48.5 + pos: 38.5,52.5 parent: 2 - - uid: 3095 + - uid: 11698 components: - type: Transform - pos: 47.5,48.5 + pos: 39.5,52.5 parent: 2 - - uid: 3096 + - uid: 11757 components: - type: Transform - pos: 48.5,48.5 + pos: 8.5,-41.5 parent: 2 - - uid: 3097 + - uid: 11759 components: - type: Transform - pos: 48.5,49.5 + pos: 10.5,-43.5 parent: 2 - - uid: 3106 + - uid: 11821 components: - type: Transform - pos: 46.5,45.5 + pos: 45.5,-16.5 parent: 2 - - uid: 3107 + - uid: 11826 components: - type: Transform - pos: 47.5,45.5 + pos: 45.5,-15.5 parent: 2 - - uid: 3108 + - uid: 11840 components: - type: Transform - pos: 48.5,45.5 + pos: 45.5,-14.5 parent: 2 - - uid: 3109 + - uid: 11886 components: - type: Transform - pos: 49.5,45.5 + pos: 69.5,4.5 parent: 2 - - uid: 3114 + - uid: 11887 components: - type: Transform - pos: 50.5,46.5 + pos: 69.5,5.5 parent: 2 - - uid: 3115 + - uid: 11888 components: - type: Transform - pos: 50.5,47.5 + pos: 69.5,6.5 parent: 2 - - uid: 3116 + - uid: 11889 components: - type: Transform - pos: 51.5,47.5 + pos: 70.5,3.5 parent: 2 - - uid: 3117 + - uid: 11891 components: - type: Transform - pos: 52.5,47.5 + pos: 72.5,3.5 parent: 2 - - uid: 3118 + - uid: 11894 components: - type: Transform - pos: 53.5,47.5 + pos: 73.5,3.5 parent: 2 - - uid: 3119 + - uid: 11970 components: - type: Transform - pos: 54.5,47.5 + pos: 45.5,-28.5 parent: 2 - - uid: 3120 + - uid: 11972 components: - type: Transform - pos: 55.5,47.5 + pos: 45.5,-21.5 parent: 2 - - uid: 3121 + - uid: 12220 components: - type: Transform - pos: 56.5,47.5 + pos: 45.5,-22.5 parent: 2 - - uid: 3122 + - uid: 12295 components: - type: Transform - pos: 57.5,47.5 + pos: 45.5,-23.5 parent: 2 - - uid: 3123 + - uid: 12370 components: - type: Transform - pos: 59.5,47.5 + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 parent: 2 - - uid: 3124 + - uid: 12422 components: - type: Transform - pos: 58.5,47.5 + rot: -1.5707963267948966 rad + pos: -21.5,-7.5 parent: 2 - - uid: 3126 + - uid: 12426 components: - type: Transform - pos: 62.5,47.5 + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 parent: 2 - - uid: 3136 + - uid: 12429 components: - type: Transform - pos: 60.5,47.5 + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 parent: 2 - - uid: 3137 + - uid: 12430 components: - type: Transform - pos: 61.5,47.5 + rot: 3.141592653589793 rad + pos: 56.5,51.5 parent: 2 - - uid: 3138 + - uid: 12437 components: - type: Transform - pos: 47.5,40.5 + rot: 3.141592653589793 rad + pos: 54.5,46.5 parent: 2 - - uid: 3139 + - uid: 12441 components: - type: Transform - pos: 47.5,39.5 + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 parent: 2 - - uid: 3140 + - uid: 12445 components: - type: Transform - pos: 47.5,38.5 + rot: -1.5707963267948966 rad + pos: -25.5,-9.5 parent: 2 - - uid: 3141 + - uid: 12456 components: - type: Transform - pos: 47.5,37.5 + rot: 3.141592653589793 rad + pos: -9.5,2.5 parent: 2 - - uid: 3213 + - uid: 12457 components: - type: Transform - pos: 62.5,46.5 + rot: -1.5707963267948966 rad + pos: -7.5,-15.5 parent: 2 - - uid: 3223 + - uid: 12725 components: - type: Transform - pos: 50.5,32.5 + rot: 3.141592653589793 rad + pos: 16.5,23.5 parent: 2 - - uid: 3224 + - uid: 12731 components: - type: Transform - pos: 50.5,33.5 + rot: 3.141592653589793 rad + pos: -13.5,2.5 parent: 2 - - uid: 3225 + - uid: 12822 components: - type: Transform - pos: 50.5,34.5 + rot: 3.141592653589793 rad + pos: 11.5,45.5 parent: 2 - - uid: 3226 + - uid: 12912 components: - type: Transform - pos: 50.5,35.5 + pos: 45.5,-48.5 parent: 2 - - uid: 3227 + - uid: 12913 components: - type: Transform - pos: 50.5,36.5 + pos: 45.5,-47.5 parent: 2 - - uid: 3228 + - uid: 12914 components: - type: Transform - pos: 50.5,37.5 + pos: 45.5,-46.5 parent: 2 - - uid: 3229 + - uid: 12915 components: - type: Transform - pos: 50.5,38.5 + pos: 45.5,-45.5 parent: 2 - - uid: 3230 + - uid: 12916 components: - type: Transform - pos: 50.5,39.5 + pos: 45.5,-44.5 parent: 2 - - uid: 3231 + - uid: 12917 components: - type: Transform - pos: 51.5,39.5 + pos: 43.5,-49.5 parent: 2 - - uid: 3232 + - uid: 12918 components: - type: Transform - pos: 51.5,40.5 + pos: 42.5,-49.5 parent: 2 - - uid: 3233 + - uid: 12919 components: - type: Transform - pos: 52.5,40.5 + pos: 41.5,-49.5 parent: 2 - - uid: 3234 + - uid: 12938 components: - type: Transform - pos: 53.5,40.5 + rot: 3.141592653589793 rad + pos: -6.5,1.5 parent: 2 - - uid: 3235 + - uid: 13245 components: - type: Transform - pos: 53.5,41.5 + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 parent: 2 - - uid: 3236 + - uid: 13246 components: - type: Transform - pos: 54.5,41.5 + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 parent: 2 - - uid: 3237 + - uid: 13251 components: - type: Transform - pos: 55.5,41.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 2 - - uid: 3238 + - uid: 13267 components: - type: Transform - pos: 56.5,41.5 + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 parent: 2 - - uid: 3239 + - uid: 13268 components: - type: Transform - pos: 57.5,41.5 + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 parent: 2 - - uid: 3240 + - uid: 13269 components: - type: Transform - pos: 58.5,41.5 + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 parent: 2 - - uid: 3241 + - uid: 13270 components: - type: Transform - pos: 59.5,41.5 + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 parent: 2 - - uid: 3242 + - uid: 13282 components: - type: Transform - pos: 59.5,40.5 + rot: 3.141592653589793 rad + pos: 58.5,46.5 parent: 2 - - uid: 3243 + - uid: 13290 components: - type: Transform - pos: 60.5,40.5 + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 parent: 2 - - uid: 3244 + - uid: 13292 components: - type: Transform - pos: 61.5,40.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 2 - - uid: 3245 + - uid: 13320 components: - type: Transform - pos: 61.5,39.5 + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 parent: 2 - - uid: 3246 + - uid: 13333 components: - type: Transform - pos: 62.5,39.5 + pos: -20.5,-11.5 parent: 2 - - uid: 3247 + - uid: 13334 components: - type: Transform - pos: 62.5,38.5 + pos: -20.5,-12.5 parent: 2 - - uid: 3248 + - uid: 13337 components: - type: Transform - pos: 62.5,37.5 + pos: -8.5,-12.5 parent: 2 - - uid: 3249 + - uid: 13338 components: - type: Transform - pos: 62.5,36.5 + pos: -8.5,-11.5 parent: 2 - - uid: 3250 + - uid: 13340 components: - type: Transform - pos: 62.5,35.5 + pos: -25.5,-16.5 parent: 2 - - uid: 3251 + - uid: 13341 components: - type: Transform - pos: 62.5,34.5 + pos: -25.5,-17.5 parent: 2 - - uid: 3252 + - uid: 13355 components: - type: Transform - pos: 62.5,33.5 + pos: 30.5,-62.5 parent: 2 - - uid: 3253 + - uid: 13387 components: - type: Transform - pos: 62.5,32.5 + pos: 29.5,-62.5 parent: 2 - - uid: 3291 + - uid: 13388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-31.5 + pos: 28.5,-62.5 parent: 2 - - uid: 3317 + - uid: 13389 components: - type: Transform - pos: 64.5,49.5 + pos: 27.5,-62.5 parent: 2 - - uid: 3320 + - uid: 13390 components: - type: Transform - pos: 65.5,48.5 + pos: 26.5,-62.5 parent: 2 - - uid: 3323 + - uid: 13391 components: - type: Transform - pos: 50.5,49.5 + pos: 25.5,-62.5 parent: 2 - - uid: 3324 + - uid: 13392 components: - type: Transform - pos: 51.5,49.5 + pos: 24.5,-62.5 parent: 2 - - uid: 3325 + - uid: 13393 components: - type: Transform - pos: 52.5,49.5 + pos: 23.5,-62.5 parent: 2 - - uid: 3326 + - uid: 13394 components: - type: Transform - pos: 53.5,49.5 + pos: 22.5,-62.5 parent: 2 - - uid: 3327 + - uid: 13395 components: - type: Transform - pos: 54.5,49.5 + pos: 21.5,-62.5 parent: 2 - - uid: 3328 + - uid: 13396 components: - type: Transform - pos: 58.5,49.5 + pos: 20.5,-62.5 parent: 2 - - uid: 3329 + - uid: 13397 components: - type: Transform - pos: 59.5,49.5 + pos: 19.5,-62.5 parent: 2 - - uid: 3330 + - uid: 13398 components: - type: Transform - pos: 60.5,49.5 + pos: 18.5,-62.5 parent: 2 - - uid: 3331 + - uid: 13399 components: - type: Transform - pos: 61.5,49.5 + pos: 16.5,-62.5 parent: 2 - - uid: 3332 + - uid: 13400 components: - type: Transform - pos: 62.5,49.5 + pos: 15.5,-62.5 parent: 2 - - uid: 3333 + - uid: 13401 components: - type: Transform - pos: 55.5,49.5 + pos: 17.5,-62.5 parent: 2 - - uid: 3334 + - uid: 13402 components: - type: Transform - pos: 57.5,49.5 + pos: 13.5,-62.5 parent: 2 - - uid: 3341 + - uid: 13403 components: - type: Transform - pos: 66.5,48.5 + pos: 12.5,-62.5 parent: 2 - - uid: 3342 + - uid: 13404 components: - type: Transform - pos: 64.5,48.5 + pos: 11.5,-62.5 parent: 2 - - uid: 3349 + - uid: 13405 components: - type: Transform - pos: 67.5,48.5 + pos: 10.5,-62.5 parent: 2 - - uid: 3350 + - uid: 13406 components: - type: Transform - pos: 67.5,47.5 + pos: 14.5,-62.5 parent: 2 - - uid: 3351 + - uid: 13407 components: - type: Transform - pos: 68.5,47.5 + pos: 6.5,-54.5 parent: 2 - - uid: 3364 + - uid: 13408 components: - type: Transform - pos: 72.5,46.5 + pos: 6.5,-53.5 parent: 2 - - uid: 3365 + - uid: 13409 components: - type: Transform - pos: 73.5,46.5 + pos: 6.5,-52.5 parent: 2 - - uid: 3366 + - uid: 13410 components: - type: Transform - pos: 74.5,46.5 + pos: 6.5,-51.5 parent: 2 - - uid: 3367 + - uid: 13411 components: - type: Transform - pos: 72.5,44.5 + pos: 6.5,-50.5 parent: 2 - - uid: 3368 + - uid: 13412 components: - type: Transform - pos: 73.5,44.5 + pos: 6.5,-49.5 parent: 2 - - uid: 3369 + - uid: 13413 components: - type: Transform - pos: 74.5,44.5 + pos: 6.5,-48.5 parent: 2 - - uid: 3476 + - uid: 13414 components: - type: Transform - pos: 57.5,27.5 + pos: 6.5,-47.5 parent: 2 - - uid: 3477 + - uid: 13415 components: - type: Transform - pos: 57.5,26.5 + pos: 6.5,-46.5 parent: 2 - - uid: 3478 + - uid: 13416 components: - type: Transform - pos: 58.5,26.5 + pos: 7.5,-62.5 parent: 2 - - uid: 3489 + - uid: 13417 components: - type: Transform - pos: 48.5,19.5 + pos: 6.5,-62.5 parent: 2 - - uid: 3493 + - uid: 13418 components: - type: Transform - pos: 55.5,27.5 + pos: 6.5,-61.5 parent: 2 - - uid: 3495 + - uid: 13419 components: - type: Transform - pos: 55.5,26.5 + pos: 6.5,-60.5 parent: 2 - - uid: 3496 + - uid: 13420 components: - type: Transform - pos: 48.5,17.5 + pos: 6.5,-59.5 parent: 2 - - uid: 3497 + - uid: 13421 components: - type: Transform - pos: 54.5,26.5 + pos: 6.5,-58.5 parent: 2 - - uid: 3529 + - uid: 13423 components: - type: Transform - pos: 75.5,16.5 + pos: 32.5,-61.5 parent: 2 - - uid: 3530 + - uid: 13424 components: - type: Transform - pos: 75.5,17.5 + pos: 33.5,-61.5 parent: 2 - - uid: 3531 + - uid: 13425 components: - type: Transform - pos: 75.5,15.5 + pos: 34.5,-61.5 parent: 2 - - uid: 3532 + - uid: 13426 components: - type: Transform - pos: 78.5,13.5 + pos: 35.5,-61.5 parent: 2 - - uid: 3533 + - uid: 13427 components: - type: Transform - pos: 79.5,13.5 + pos: 36.5,-61.5 parent: 2 - - uid: 3534 + - uid: 13428 components: - type: Transform - pos: 80.5,13.5 + pos: 37.5,-61.5 parent: 2 - - uid: 3535 + - uid: 13429 components: - type: Transform - pos: 77.5,13.5 + pos: 38.5,-61.5 parent: 2 - - uid: 3543 + - uid: 13430 components: - type: Transform - pos: 90.5,-6.5 + pos: 39.5,-61.5 parent: 2 - - uid: 3546 + - uid: 13545 components: - type: Transform - pos: 91.5,-6.5 + rot: -1.5707963267948966 rad + pos: 56.5,42.5 parent: 2 - - uid: 3568 + - uid: 13547 components: - type: Transform - pos: 88.5,-5.5 + rot: -1.5707963267948966 rad + pos: 57.5,42.5 parent: 2 - - uid: 3588 + - uid: 13658 components: - type: Transform - pos: 90.5,0.5 + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 parent: 2 - - uid: 3606 + - uid: 13660 components: - type: Transform - pos: 90.5,1.5 + pos: -25.5,-6.5 parent: 2 - - uid: 3610 + - uid: 13661 components: - type: Transform - pos: 88.5,-4.5 + pos: -25.5,-5.5 parent: 2 - - uid: 3652 + - uid: 13662 components: - type: Transform - pos: 65.5,16.5 + pos: -25.5,-4.5 parent: 2 - - uid: 3653 + - uid: 13663 components: - type: Transform - pos: 65.5,14.5 + pos: -25.5,-7.5 parent: 2 - - uid: 3677 + - uid: 13664 components: - type: Transform - pos: 60.5,12.5 + pos: -27.5,-21.5 parent: 2 - - uid: 3678 + - uid: 13665 components: - type: Transform - pos: 61.5,12.5 + pos: -26.5,-21.5 parent: 2 - - uid: 3679 + - uid: 13666 components: - type: Transform - pos: 63.5,12.5 + pos: -25.5,-21.5 parent: 2 - - uid: 3768 + - uid: 13667 components: - type: Transform - pos: 82.5,-8.5 + pos: -22.5,-23.5 parent: 2 - - uid: 3769 + - uid: 13668 components: - type: Transform - pos: 81.5,-8.5 + pos: -23.5,-23.5 parent: 2 - - uid: 3770 + - uid: 13920 components: - type: Transform - pos: 80.5,-8.5 + rot: 1.5707963267948966 rad + pos: -23.5,3.5 parent: 2 - - uid: 3771 + - uid: 13921 components: - type: Transform - pos: 79.5,-8.5 + rot: 1.5707963267948966 rad + pos: -23.5,4.5 parent: 2 - - uid: 3851 + - uid: 13922 components: - type: Transform - pos: 73.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,5.5 parent: 2 - - uid: 3852 + - uid: 13924 components: - type: Transform - pos: 74.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,7.5 parent: 2 - - uid: 3853 + - uid: 13925 components: - type: Transform - pos: 75.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,8.5 parent: 2 - - uid: 3854 + - uid: 13926 components: - type: Transform - pos: 76.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,9.5 parent: 2 - - uid: 3855 + - uid: 13927 components: - type: Transform - pos: 77.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,10.5 parent: 2 - - uid: 3856 + - uid: 13928 components: - type: Transform - pos: 78.5,-17.5 + pos: -7.5,-7.5 parent: 2 - - uid: 3857 + - uid: 13929 components: - type: Transform - pos: 79.5,-17.5 + rot: 1.5707963267948966 rad + pos: -23.5,12.5 parent: 2 - - uid: 3858 + - uid: 13930 components: - type: Transform - pos: 80.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,2.5 parent: 2 - - uid: 3859 + - uid: 13931 components: - type: Transform - pos: 81.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,3.5 parent: 2 - - uid: 3860 + - uid: 13932 components: - type: Transform - pos: 82.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,4.5 parent: 2 - - uid: 3861 + - uid: 13933 components: - type: Transform - pos: 83.5,-17.5 + pos: -10.5,-24.5 parent: 2 - - uid: 3862 + - uid: 13934 components: - type: Transform - pos: 84.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,6.5 parent: 2 - - uid: 3863 + - uid: 13935 components: - type: Transform - pos: 85.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,7.5 parent: 2 - - uid: 3864 + - uid: 13937 components: - type: Transform - pos: 86.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,9.5 parent: 2 - - uid: 3889 + - uid: 13938 components: - type: Transform - pos: 96.5,-22.5 + rot: 1.5707963267948966 rad + pos: -25.5,10.5 parent: 2 - - uid: 3892 + - uid: 13939 components: - type: Transform - pos: 94.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,11.5 parent: 2 - - uid: 3893 + - uid: 13940 components: - type: Transform - pos: 98.5,-22.5 + rot: 1.5707963267948966 rad + pos: -25.5,12.5 parent: 2 - - uid: 3903 + - uid: 13942 components: - type: Transform - pos: 97.5,-17.5 + rot: 1.5707963267948966 rad + pos: -25.5,14.5 parent: 2 - - uid: 3957 + - uid: 13943 components: - type: Transform - pos: 40.5,-58.5 + rot: 1.5707963267948966 rad + pos: -23.5,14.5 parent: 2 - - uid: 3969 + - uid: 13944 components: - type: Transform - pos: 39.5,-58.5 + rot: 1.5707963267948966 rad + pos: -23.5,13.5 parent: 2 - - uid: 3973 + - uid: 13946 components: - type: Transform - pos: 18.5,-59.5 + pos: -9.5,-24.5 parent: 2 - - uid: 3977 + - uid: 13947 components: - type: Transform - pos: 19.5,-59.5 + pos: -13.5,-21.5 parent: 2 - - uid: 3978 + - uid: 13948 components: - type: Transform - pos: 24.5,-59.5 + pos: -14.5,-21.5 parent: 2 - - uid: 3981 + - uid: 13949 components: - type: Transform - pos: 17.5,-59.5 + pos: -15.5,-21.5 parent: 2 - - uid: 3985 + - uid: 13950 components: - type: Transform - pos: 19.5,-59.5 + pos: -18.5,-23.5 parent: 2 - - uid: 3987 + - uid: 13951 components: - type: Transform - pos: 14.5,-59.5 + pos: -19.5,-23.5 parent: 2 - - uid: 3998 + - uid: 13952 components: - type: Transform - pos: 13.5,-59.5 + pos: -7.5,-19.5 parent: 2 - - uid: 4047 + - uid: 13953 components: - type: Transform - pos: 34.5,-27.5 + pos: -7.5,-18.5 parent: 2 - - uid: 4051 + - uid: 13954 components: - type: Transform - pos: 36.5,-27.5 + pos: -2.5,-20.5 parent: 2 - - uid: 4066 + - uid: 13955 components: - type: Transform - pos: -18.5,-11.5 + pos: -0.5,-15.5 parent: 2 - - uid: 4074 + - uid: 13956 components: - type: Transform - pos: 25.5,-30.5 + pos: -21.5,-19.5 parent: 2 - - uid: 4153 + - uid: 13957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-25.5 + pos: -21.5,-18.5 parent: 2 - - uid: 4243 + - uid: 13958 components: - type: Transform - pos: 24.5,-12.5 + pos: -7.5,-6.5 parent: 2 - - uid: 4282 + - uid: 14073 components: - type: Transform - anchored: False - pos: -32.5,13.5 + pos: 2.5,-20.5 parent: 2 - - uid: 4296 + - uid: 14074 components: - type: Transform - pos: 24.5,-9.5 + pos: 4.5,-20.5 parent: 2 - - uid: 4338 + - uid: 14127 components: - type: Transform - pos: 34.5,-33.5 + rot: 3.141592653589793 rad + pos: 75.5,22.5 parent: 2 - - uid: 4339 + - uid: 14128 components: - type: Transform - pos: 36.5,-33.5 + rot: 3.141592653589793 rad + pos: 75.5,23.5 parent: 2 - - uid: 4340 + - uid: 14129 components: - type: Transform - pos: 37.5,-32.5 + rot: 3.141592653589793 rad + pos: 75.5,24.5 parent: 2 - - uid: 4341 + - uid: 14131 components: - type: Transform - pos: 37.5,-31.5 + rot: 3.141592653589793 rad + pos: 73.5,24.5 parent: 2 - - uid: 4342 + - uid: 14159 components: - type: Transform - pos: 37.5,-30.5 + rot: 1.5707963267948966 rad + pos: 74.5,24.5 parent: 2 - - uid: 4343 + - uid: 14196 components: - type: Transform - pos: 36.5,-29.5 + pos: 77.5,20.5 parent: 2 - - uid: 4344 + - uid: 14204 components: - type: Transform - pos: 34.5,-29.5 + pos: 83.5,36.5 parent: 2 - - uid: 4345 + - uid: 14205 components: - type: Transform - pos: 33.5,-28.5 + rot: 3.141592653589793 rad + pos: 78.5,31.5 parent: 2 - - uid: 4350 + - uid: 14206 components: - type: Transform - pos: 37.5,-28.5 + rot: 3.141592653589793 rad + pos: 78.5,30.5 parent: 2 - - uid: 4376 + - uid: 14207 components: - type: Transform - pos: 33.5,-36.5 + rot: 3.141592653589793 rad + pos: 78.5,29.5 parent: 2 - - uid: 4377 + - uid: 14208 components: - type: Transform - pos: 33.5,-35.5 + rot: 3.141592653589793 rad + pos: 79.5,28.5 parent: 2 - - uid: 4378 + - uid: 14299 components: - type: Transform - pos: 33.5,-34.5 + pos: 85.5,35.5 parent: 2 - - uid: 4379 + - uid: 14300 components: - type: Transform - pos: 37.5,-36.5 + pos: 86.5,35.5 parent: 2 - - uid: 4380 + - uid: 14301 components: - type: Transform - pos: 37.5,-35.5 + pos: 85.5,25.5 parent: 2 - - uid: 4381 + - uid: 14302 components: - type: Transform - pos: 37.5,-34.5 + pos: 86.5,25.5 parent: 2 - - uid: 4415 + - uid: 14309 components: - type: Transform - pos: 35.5,-27.5 + pos: 89.5,25.5 parent: 2 - - uid: 4419 + - uid: 14310 components: - type: Transform - pos: 46.5,-36.5 + pos: 90.5,25.5 parent: 2 - - uid: 4455 + - uid: 14319 components: - type: Transform - pos: 33.5,-44.5 + pos: 89.5,35.5 parent: 2 - - uid: 4456 + - uid: 14320 components: - type: Transform - pos: 33.5,-43.5 + pos: 90.5,35.5 parent: 2 - - uid: 4457 + - uid: 14326 components: - type: Transform - pos: 33.5,-42.5 + pos: 79.5,22.5 parent: 2 - - uid: 4458 + - uid: 14327 components: - type: Transform - pos: 32.5,-45.5 + pos: 80.5,22.5 parent: 2 - - uid: 4459 + - uid: 14330 components: - type: Transform - pos: 31.5,-45.5 + pos: 74.5,26.5 parent: 2 - - uid: 4467 + - uid: 14331 components: - type: Transform - pos: 39.5,-41.5 + pos: 75.5,26.5 parent: 2 - - uid: 4469 + - uid: 14332 components: - type: Transform - pos: 41.5,-41.5 + pos: 76.5,26.5 parent: 2 - - uid: 4473 + - uid: 14333 components: - type: Transform - pos: 43.5,-41.5 + pos: 77.5,26.5 parent: 2 - - uid: 4487 + - uid: 14334 components: - type: Transform - pos: 47.5,-40.5 + pos: 78.5,26.5 parent: 2 - - uid: 4488 + - uid: 14336 components: - type: Transform - pos: 47.5,-39.5 + pos: 74.5,34.5 parent: 2 - - uid: 4489 + - uid: 14337 components: - type: Transform - pos: 47.5,-38.5 + pos: 75.5,34.5 parent: 2 - - uid: 4490 + - uid: 14338 components: - type: Transform - pos: 47.5,-37.5 + pos: 76.5,34.5 parent: 2 - - uid: 4873 + - uid: 14339 components: - type: Transform - pos: -21.5,-20.5 + pos: 77.5,34.5 parent: 2 - - uid: 5248 + - uid: 14344 components: - type: Transform - pos: 45.5,-30.5 + rot: 1.5707963267948966 rad + pos: 81.5,36.5 parent: 2 - - uid: 5250 + - uid: 14409 components: - type: Transform - pos: 45.5,-27.5 + rot: 3.141592653589793 rad + pos: 82.5,35.5 parent: 2 - - uid: 5297 + - uid: 14508 components: - type: Transform - pos: -12.5,1.5 + rot: -1.5707963267948966 rad + pos: 99.5,28.5 parent: 2 - - uid: 5302 + - uid: 14512 components: - type: Transform - pos: 4.5,19.5 + rot: -1.5707963267948966 rad + pos: 99.5,32.5 parent: 2 - - uid: 5362 + - uid: 14514 components: - type: Transform - pos: 59.5,26.5 + pos: 95.5,31.5 parent: 2 - - uid: 5431 + - uid: 14516 components: - type: Transform - pos: 45.5,-33.5 + pos: 93.5,31.5 parent: 2 - - uid: 5483 + - uid: 14517 components: - type: Transform - pos: 72.5,33.5 + pos: 93.5,30.5 parent: 2 - - uid: 5484 + - uid: 14518 components: - type: Transform - pos: 72.5,32.5 + pos: 93.5,29.5 parent: 2 - - uid: 5485 + - uid: 14520 components: - type: Transform - pos: 72.5,31.5 + pos: 95.5,29.5 parent: 2 - - uid: 5486 + - uid: 14591 components: - type: Transform - pos: 72.5,29.5 + rot: -1.5707963267948966 rad + pos: 98.5,35.5 parent: 2 - - uid: 5487 + - uid: 14593 components: - type: Transform - pos: 72.5,28.5 + rot: -1.5707963267948966 rad + pos: 98.5,25.5 parent: 2 - - uid: 5488 + - uid: 14598 components: - type: Transform - pos: 72.5,27.5 + rot: -1.5707963267948966 rad + pos: 99.5,34.5 parent: 2 - - uid: 5681 + - uid: 14623 components: - type: Transform - pos: -8.5,14.5 + rot: 3.141592653589793 rad + pos: 72.5,25.5 parent: 2 - - uid: 5751 + - uid: 14762 components: - type: Transform - pos: 21.5,53.5 + pos: 16.5,22.5 parent: 2 - - uid: 5752 + - uid: 14780 components: - type: Transform - pos: 22.5,53.5 + rot: 3.141592653589793 rad + pos: 12.5,45.5 parent: 2 - - uid: 5753 + - uid: 14781 components: - type: Transform - pos: 23.5,53.5 + rot: 3.141592653589793 rad + pos: 15.5,45.5 parent: 2 - - uid: 5754 + - uid: 14782 components: - type: Transform - pos: 24.5,53.5 + rot: 3.141592653589793 rad + pos: 14.5,45.5 parent: 2 - - uid: 5755 + - uid: 14784 components: - type: Transform - pos: 25.5,53.5 + rot: 3.141592653589793 rad + pos: 43.5,1.5 parent: 2 - - uid: 5756 + - uid: 14787 components: - type: Transform - pos: 26.5,53.5 + rot: 3.141592653589793 rad + pos: 43.5,51.5 parent: 2 - - uid: 5757 + - uid: 14788 components: - type: Transform - pos: 27.5,53.5 + rot: 3.141592653589793 rad + pos: 44.5,51.5 parent: 2 - - uid: 5758 + - uid: 14789 components: - type: Transform - pos: 28.5,53.5 + rot: 3.141592653589793 rad + pos: 45.5,51.5 parent: 2 - - uid: 5759 + - uid: 14790 components: - type: Transform - pos: 29.5,53.5 + rot: 3.141592653589793 rad + pos: 46.5,51.5 parent: 2 - - uid: 5760 + - uid: 14791 components: - type: Transform - pos: 30.5,53.5 + pos: 36.5,52.5 parent: 2 - - uid: 5761 + - uid: 14793 components: - type: Transform - pos: 31.5,53.5 + pos: 48.5,51.5 parent: 2 - - uid: 5762 + - uid: 14794 components: - type: Transform - pos: 32.5,53.5 + pos: 35.5,52.5 parent: 2 - - uid: 5763 + - uid: 14796 components: - type: Transform - pos: 33.5,53.5 + pos: 39.5,47.5 parent: 2 - - uid: 5967 + - uid: 14797 components: - type: Transform - pos: -20.5,-11.5 + pos: 40.5,47.5 parent: 2 - - uid: 6119 + - uid: 14800 components: - type: Transform - pos: 12.5,-42.5 + pos: 101.5,35.5 parent: 2 - - uid: 6124 + - uid: 14801 components: - type: Transform - pos: 8.5,-40.5 + pos: 101.5,34.5 parent: 2 - - uid: 6125 + - uid: 14802 components: - type: Transform - pos: 8.5,-39.5 + pos: 101.5,25.5 parent: 2 - - uid: 6126 + - uid: 14803 components: - type: Transform - pos: 9.5,-39.5 + pos: 101.5,26.5 parent: 2 - - uid: 6127 + - uid: 14804 components: - type: Transform - pos: 10.5,-39.5 + pos: 101.5,27.5 parent: 2 - - uid: 6129 + - uid: 14805 components: - type: Transform - pos: 12.5,-39.5 + pos: 101.5,29.5 parent: 2 - - uid: 6130 + - uid: 14806 components: - type: Transform - pos: 8.5,-42.5 + pos: 101.5,30.5 parent: 2 - - uid: 6131 + - uid: 14807 components: - type: Transform - pos: 8.5,-43.5 + pos: 101.5,33.5 parent: 2 - - uid: 6132 + - uid: 14819 components: - type: Transform - pos: 9.5,-43.5 + pos: 97.5,24.5 parent: 2 - - uid: 6133 + - uid: 14820 components: - type: Transform - pos: 11.5,-43.5 + pos: 91.5,24.5 parent: 2 - - uid: 6501 + - uid: 14821 components: - type: Transform - pos: 42.5,-2.5 + pos: 91.5,36.5 parent: 2 - - uid: 6607 + - uid: 14822 components: - type: Transform - pos: 45.5,-29.5 + pos: 97.5,36.5 parent: 2 - - uid: 6608 + - uid: 14824 components: - type: Transform - pos: 45.5,-34.5 + pos: 50.5,39.5 parent: 2 - - uid: 6618 + - uid: 14825 components: - type: Transform - pos: 45.5,-35.5 + pos: 50.5,40.5 parent: 2 - - uid: 6658 + - uid: 14826 components: - type: Transform - pos: 45.5,-31.5 + pos: 50.5,41.5 parent: 2 - - uid: 6760 + - uid: 14827 components: - type: Transform - pos: 45.5,-26.5 + pos: 50.5,42.5 parent: 2 - - uid: 6764 + - uid: 14829 components: - type: Transform - pos: 45.5,-24.5 + pos: 53.5,44.5 parent: 2 - - uid: 6779 + - uid: 14830 components: - type: Transform - pos: 1.5,14.5 + pos: 54.5,44.5 parent: 2 - - uid: 6781 + - uid: 14831 components: - type: Transform - pos: -11.5,14.5 + pos: 55.5,44.5 parent: 2 - - uid: 6806 + - uid: 14832 components: - type: Transform - pos: -7.5,-2.5 + pos: 56.5,44.5 parent: 2 - - uid: 6807 + - uid: 14833 components: - type: Transform - pos: -7.5,-6.5 + pos: 57.5,44.5 parent: 2 - - uid: 6810 + - uid: 14834 components: - type: Transform - pos: -13.5,-10.5 + pos: 58.5,44.5 parent: 2 - - uid: 6834 + - uid: 14836 components: - type: Transform - pos: -27.5,-13.5 + pos: 59.5,44.5 parent: 2 - - uid: 6842 + - uid: 14839 components: - type: Transform - pos: -4.5,-11.5 + pos: 62.5,32.5 parent: 2 - - uid: 6845 + - uid: 14840 components: - type: Transform - pos: -6.5,-16.5 + pos: 62.5,33.5 parent: 2 - - uid: 6884 + - uid: 14841 components: - type: Transform - pos: -7.5,-9.5 + pos: 62.5,34.5 parent: 2 - - uid: 6885 + - uid: 14842 components: - type: Transform - pos: -8.5,-11.5 + pos: 62.5,36.5 parent: 2 - - uid: 6886 + - uid: 14843 components: - type: Transform - pos: -7.5,-8.5 + pos: 62.5,37.5 parent: 2 - - uid: 6889 + - uid: 14844 components: - type: Transform - pos: -7.5,-1.5 + pos: 62.5,38.5 parent: 2 - - uid: 6890 + - uid: 14845 components: - type: Transform - pos: -7.5,-10.5 + pos: 62.5,39.5 parent: 2 - - uid: 6891 + - uid: 14846 components: - type: Transform - pos: -9.5,-11.5 + pos: 62.5,40.5 parent: 2 - - uid: 6892 + - uid: 14847 components: - type: Transform - pos: -6.5,-15.5 + pos: 62.5,35.5 parent: 2 - - uid: 7010 + - uid: 14953 components: - type: Transform - pos: 45.5,-25.5 + rot: -1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - - uid: 7455 + - uid: 14970 components: - type: Transform - pos: -15.5,14.5 + rot: -1.5707963267948966 rad + pos: 5.5,41.5 parent: 2 - - uid: 7456 + - uid: 14978 components: - type: Transform - pos: -16.5,14.5 + pos: 1.5,40.5 parent: 2 - - uid: 7465 + - uid: 14984 components: - type: Transform - pos: -8.5,1.5 + rot: 1.5707963267948966 rad + pos: 3.5,43.5 parent: 2 - - uid: 7564 + - uid: 14985 components: - type: Transform - pos: -17.5,14.5 + rot: 1.5707963267948966 rad + pos: 2.5,43.5 parent: 2 - - uid: 7666 + - uid: 14986 components: - type: Transform - pos: 2.5,6.5 + pos: 1.5,41.5 parent: 2 - - uid: 7706 + - uid: 14987 components: - type: Transform - pos: -13.5,14.5 + rot: 1.5707963267948966 rad + pos: 1.5,43.5 parent: 2 - - uid: 7721 +- proto: GrilleBroken + entities: + - uid: 1247 components: - type: Transform - pos: -3.5,2.5 + pos: 35.5,-58.5 parent: 2 - - uid: 7733 + - uid: 2401 components: - type: Transform - pos: -4.5,-4.5 + pos: 89.5,-6.5 parent: 2 - - uid: 7734 + - uid: 3986 components: - type: Transform - pos: -3.5,-2.5 + pos: 16.5,-59.5 parent: 2 - - uid: 7735 + - uid: 3988 components: - type: Transform - pos: -1.5,-2.5 + pos: 23.5,-59.5 parent: 2 - - uid: 7783 + - uid: 5352 components: - type: Transform - pos: -14.5,14.5 + pos: 1.5,36.5 parent: 2 - - uid: 7795 + - uid: 7603 components: - type: Transform - pos: 52.5,25.5 + rot: 3.141592653589793 rad + pos: 1.5,39.5 parent: 2 - - uid: 7799 + - uid: 10978 components: - type: Transform - pos: 52.5,23.5 + rot: 1.5707963267948966 rad + pos: 2.5,43.5 parent: 2 - - uid: 7817 + - uid: 14785 components: - type: Transform - pos: 45.5,-32.5 + rot: 3.141592653589793 rad + pos: 16.5,45.5 parent: 2 - - uid: 7867 + - uid: 15045 components: - type: Transform - pos: -3.5,1.5 + rot: -1.5707963267948966 rad + pos: 9.5,43.5 parent: 2 - - uid: 7868 +- proto: GrilleSpawner + entities: + - uid: 69 components: - type: Transform - pos: 1.5,1.5 + pos: 16.5,47.5 parent: 2 - - uid: 7869 + - uid: 1291 components: - type: Transform - pos: -1.5,1.5 + pos: 1.5,42.5 parent: 2 - - uid: 7871 + - uid: 5289 components: - type: Transform - pos: -5.5,1.5 + pos: 0.5,16.5 parent: 2 - - uid: 7872 + - uid: 6834 components: - type: Transform - pos: 2.5,3.5 + pos: -10.5,-28.5 parent: 2 - - uid: 7873 + - uid: 6839 components: - type: Transform - pos: 2.5,2.5 + pos: -18.5,-37.5 parent: 2 - - uid: 7874 + - uid: 6870 components: - type: Transform - pos: 2.5,4.5 + pos: -10.5,16.5 parent: 2 - - uid: 7877 + - uid: 6890 components: - type: Transform - pos: 2.5,12.5 + pos: -4.5,-42.5 parent: 2 - - uid: 7887 + - uid: 7460 components: - type: Transform - pos: -5.5,2.5 + pos: -19.5,16.5 parent: 2 - - uid: 7893 + - uid: 7712 components: - type: Transform - pos: 2.5,10.5 + pos: 9.5,46.5 parent: 2 - - uid: 7941 + - uid: 8105 components: - type: Transform - pos: -1.5,2.5 + pos: -7.5,16.5 parent: 2 - - uid: 7944 + - uid: 9461 components: - type: Transform - pos: 2.5,7.5 + pos: 91.5,43.5 parent: 2 - - uid: 7948 + - uid: 11089 components: - type: Transform - pos: 0.5,1.5 + pos: 82.5,51.5 parent: 2 - - uid: 7951 + - uid: 11094 components: - type: Transform - pos: 2.5,8.5 + pos: 79.5,38.5 parent: 2 - - uid: 8667 + - uid: 13763 components: - type: Transform - pos: 64.5,26.5 + pos: 12.5,47.5 parent: 2 - - uid: 8668 + - uid: 13923 components: - type: Transform - pos: 63.5,26.5 + pos: -23.5,6.5 parent: 2 - - uid: 8719 + - uid: 13936 components: - type: Transform - pos: 92.5,-17.5 + pos: -25.5,8.5 parent: 2 - - uid: 8721 + - uid: 13941 components: - type: Transform - pos: 95.5,-17.5 + pos: -25.5,13.5 parent: 2 - - uid: 8722 + - uid: 13945 components: - type: Transform - pos: 97.5,-22.5 + pos: -23.5,2.5 parent: 2 - - uid: 8725 + - uid: 14783 components: - type: Transform - pos: 96.5,-17.5 + pos: 13.5,45.5 parent: 2 - - uid: 8727 + - uid: 14786 components: - type: Transform - pos: 98.5,-17.5 + pos: 37.5,52.5 parent: 2 - - uid: 8729 + - uid: 14792 components: - type: Transform - pos: 93.5,-17.5 + pos: 47.5,51.5 parent: 2 - - uid: 8732 + - uid: 14795 components: - type: Transform - pos: 95.5,-22.5 + pos: 38.5,47.5 parent: 2 - - uid: 8733 + - uid: 14798 components: - type: Transform - pos: 94.5,-22.5 + pos: 73.5,51.5 parent: 2 - - uid: 8734 + - uid: 14799 components: - type: Transform - pos: 93.5,-22.5 + pos: 101.5,32.5 parent: 2 - - uid: 8735 + - uid: 14808 components: - type: Transform - pos: 92.5,-22.5 + pos: 101.5,28.5 parent: 2 - - uid: 8775 + - uid: 14988 components: - type: Transform - pos: 105.5,-9.5 + pos: 5.5,43.5 parent: 2 - - uid: 8776 +- proto: GunSafeLaserCarbine + entities: + - uid: 2126 components: - type: Transform - pos: 106.5,-9.5 + pos: 41.5,27.5 parent: 2 - - uid: 8777 +- proto: GunSafeRifleLecter + entities: + - uid: 2460 components: - type: Transform - pos: 107.5,-9.5 + pos: 38.5,26.5 parent: 2 - - uid: 8783 +- proto: GunSafeShotgunKammerer + entities: + - uid: 2117 components: - type: Transform - pos: 99.5,-17.5 + pos: 41.5,26.5 parent: 2 - - uid: 8784 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 2461 components: - type: Transform - pos: 100.5,-17.5 + pos: 38.5,27.5 parent: 2 - - uid: 8785 +- proto: Handcuffs + entities: + - uid: 9397 components: - type: Transform - pos: 100.5,-22.5 + pos: 25.512451,48.501656 parent: 2 - - uid: 8786 +- proto: HandheldHealthAnalyzer + entities: + - uid: 12160 components: - type: Transform - pos: 99.5,-22.5 + pos: 82.45164,-4.4459476 parent: 2 - - uid: 8799 + - uid: 12368 components: - type: Transform - pos: 105.5,-25.5 + pos: 38.482082,-17.438766 parent: 2 - - uid: 8800 +- proto: HandheldStationMap + entities: + - uid: 9400 components: - type: Transform - pos: 106.5,-25.5 + pos: 28.498549,47.61997 parent: 2 - - uid: 8801 +- proto: HandLabeler + entities: + - uid: 2291 components: - type: Transform - pos: 107.5,-25.5 + pos: 38.5,19.5 parent: 2 - - uid: 8806 + - uid: 5319 components: - type: Transform - pos: 105.5,-20.5 + pos: 49.532963,19.552088 parent: 2 - - uid: 8807 + - uid: 5320 components: - type: Transform - pos: 107.5,-20.5 + pos: 49.532963,17.552088 parent: 2 - - uid: 8837 +- proto: HarmonicaInstrument + entities: + - uid: 13630 components: - type: Transform - pos: 105.5,-14.5 + pos: 56.5,31.5 parent: 2 - - uid: 8838 +- proto: HarpInstrument + entities: + - uid: 8319 components: - type: Transform - pos: 107.5,-14.5 + pos: 20.5,-10.5 parent: 2 - - uid: 8871 +- proto: HeatExchanger + entities: + - uid: 4492 components: - type: Transform - pos: 115.5,-20.5 + rot: 1.5707963267948966 rad + pos: 42.5,-51.5 parent: 2 - - uid: 8872 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12861 components: - type: Transform - pos: 114.5,-20.5 + rot: 1.5707963267948966 rad + pos: 42.5,-52.5 parent: 2 - - uid: 8873 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12862 components: - type: Transform - pos: 112.5,-20.5 + rot: 1.5707963267948966 rad + pos: 42.5,-53.5 parent: 2 - - uid: 8874 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12904 components: - type: Transform - pos: 111.5,-20.5 + rot: 3.141592653589793 rad + pos: 48.5,-45.5 parent: 2 - - uid: 8889 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: Hemostat + entities: + - uid: 10071 components: - type: Transform - pos: 110.5,-21.5 + pos: 67.49741,-3.281434 parent: 2 - - uid: 8890 +- proto: HighSecCommandLocked + entities: + - uid: 1744 components: - type: Transform - pos: 110.5,-22.5 + pos: 39.5,-16.5 parent: 2 - - uid: 8891 + - uid: 9110 components: - type: Transform - pos: 110.5,-23.5 + pos: 18.5,38.5 parent: 2 - - uid: 8892 + - uid: 14242 components: - type: Transform - pos: 110.5,-24.5 + pos: 87.5,30.5 parent: 2 - - uid: 8893 + - uid: 14243 components: - type: Transform - pos: 110.5,-25.5 + pos: 83.5,30.5 parent: 2 - - uid: 8894 +- proto: HospitalCurtainsOpen + entities: + - uid: 3192 components: - type: Transform - pos: 111.5,-25.5 + rot: 1.5707963267948966 rad + pos: 59.5,32.5 parent: 2 - - uid: 8895 + - uid: 4682 components: - type: Transform - pos: 112.5,-25.5 + pos: 24.5,-11.5 parent: 2 - - uid: 8896 + - uid: 5049 components: - type: Transform - pos: 113.5,-25.5 + pos: 61.5,-8.5 parent: 2 - - uid: 8897 + - uid: 5744 components: - type: Transform - pos: 114.5,-25.5 + pos: 12.5,12.5 parent: 2 - - uid: 8898 + - uid: 5750 components: - type: Transform - pos: 115.5,-25.5 + pos: 24.5,-10.5 parent: 2 - - uid: 8899 + - uid: 8827 components: - type: Transform - pos: 116.5,-25.5 + pos: 102.5,-13.5 parent: 2 - - uid: 8900 + - uid: 11849 components: - type: Transform - pos: 116.5,-24.5 + pos: 58.5,-6.5 parent: 2 - - uid: 8901 + - uid: 11850 components: - type: Transform - pos: 116.5,-23.5 + pos: 58.5,-5.5 parent: 2 - - uid: 8902 + - uid: 11902 components: - type: Transform - pos: 116.5,-22.5 + pos: 78.5,10.5 parent: 2 - - uid: 8903 + - uid: 11903 components: - type: Transform - pos: 116.5,-21.5 + pos: 77.5,10.5 parent: 2 - - uid: 8938 + - uid: 12254 components: - type: Transform - pos: 111.5,-14.5 + pos: 16.5,12.5 parent: 2 - - uid: 8939 + - uid: 12255 components: - type: Transform - pos: 112.5,-14.5 + pos: 15.5,12.5 parent: 2 - - uid: 8940 + - uid: 12256 components: - type: Transform - pos: 114.5,-14.5 + pos: 14.5,12.5 parent: 2 - - uid: 8941 + - uid: 12257 components: - type: Transform - pos: 115.5,-14.5 + pos: 14.5,14.5 parent: 2 - - uid: 8951 + - uid: 12258 components: - type: Transform - pos: 116.5,-15.5 + pos: 15.5,14.5 parent: 2 - - uid: 8952 + - uid: 12259 components: - type: Transform - pos: 116.5,-16.5 + pos: 16.5,14.5 parent: 2 - - uid: 8953 + - uid: 12260 components: - type: Transform - pos: 116.5,-18.5 + pos: 16.5,16.5 parent: 2 - - uid: 8954 + - uid: 12261 components: - type: Transform - pos: 116.5,-19.5 + pos: 15.5,16.5 parent: 2 - - uid: 8987 + - uid: 12262 components: - type: Transform - pos: 110.5,-13.5 + pos: 14.5,16.5 parent: 2 - - uid: 8988 + - uid: 13639 components: - type: Transform - pos: 110.5,-12.5 + rot: 1.5707963267948966 rad + pos: 59.5,40.5 parent: 2 - - uid: 8989 +- proto: HydroponicsToolClippers + entities: + - uid: 3185 components: - type: Transform - pos: 110.5,-11.5 + pos: 56.15973,41.601078 parent: 2 - - uid: 8990 +- proto: HydroponicsToolHatchet + entities: + - uid: 11125 components: - type: Transform - pos: 110.5,-10.5 + pos: 54.473648,-13.481342 parent: 2 - - uid: 8991 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 3186 components: - type: Transform - pos: 110.5,-9.5 + pos: 54.460526,36.592915 parent: 2 - - uid: 8992 + - uid: 6755 components: - type: Transform - pos: 111.5,-9.5 + pos: 41.470776,-6.4772377 parent: 2 - - uid: 8993 +- proto: HydroponicsToolSpade + entities: + - uid: 13629 components: - type: Transform - pos: 112.5,-9.5 + pos: 54.56469,36.655457 parent: 2 - - uid: 8994 +- proto: hydroponicsTray + entities: + - uid: 6665 components: - type: Transform - pos: 113.5,-9.5 + pos: 43.5,-9.5 parent: 2 - - uid: 8995 + - uid: 6666 components: - type: Transform - pos: 114.5,-9.5 + pos: 43.5,-7.5 parent: 2 - - uid: 8996 + - uid: 6667 components: - type: Transform - pos: 115.5,-9.5 + pos: 44.5,-7.5 parent: 2 - - uid: 8997 + - uid: 6668 components: - type: Transform - pos: 116.5,-9.5 + pos: 45.5,-7.5 parent: 2 - - uid: 8998 + - uid: 6669 components: - type: Transform - pos: 116.5,-10.5 + pos: 47.5,-5.5 parent: 2 - - uid: 8999 + - uid: 6670 components: - type: Transform - pos: 116.5,-11.5 + pos: 47.5,-4.5 parent: 2 - - uid: 9000 + - uid: 6671 components: - type: Transform - pos: 116.5,-12.5 + pos: 45.5,-5.5 parent: 2 - - uid: 9001 + - uid: 6673 components: - type: Transform - pos: 116.5,-13.5 + pos: 43.5,-5.5 parent: 2 - - uid: 9065 + - uid: 6674 components: - type: Transform - pos: 117.5,-14.5 + pos: 41.5,-5.5 parent: 2 - - uid: 9066 + - uid: 6675 components: - type: Transform - pos: 118.5,-14.5 + pos: 41.5,-4.5 parent: 2 - - uid: 9067 + - uid: 13633 components: - type: Transform - pos: 119.5,-14.5 + pos: 53.5,39.5 parent: 2 - - uid: 9068 + - uid: 13634 components: - type: Transform - pos: 120.5,-14.5 + pos: 54.5,39.5 parent: 2 - - uid: 9069 + - uid: 13636 components: - type: Transform - pos: 121.5,-14.5 + pos: 53.5,38.5 parent: 2 - - uid: 9070 + - uid: 13637 components: - type: Transform - pos: 121.5,-15.5 + pos: 54.5,38.5 parent: 2 - - uid: 9071 +- proto: IDComputerCircuitboard + entities: + - uid: 12659 components: - type: Transform - pos: 121.5,-16.5 + pos: 41.5,-14.5 parent: 2 - - uid: 9072 +- proto: InflatableWall + entities: + - uid: 6524 components: - type: Transform - pos: 121.5,-17.5 + pos: 87.5,-7.5 parent: 2 - - uid: 9073 + - uid: 6729 components: - type: Transform - pos: 121.5,-18.5 + pos: 86.5,-7.5 parent: 2 - - uid: 9074 + - uid: 6730 components: - type: Transform - pos: 121.5,-19.5 + pos: 82.5,5.5 parent: 2 - - uid: 9075 + - uid: 6731 components: - type: Transform - pos: 121.5,-20.5 + pos: 82.5,4.5 parent: 2 - - uid: 9076 +- proto: IngotGold + entities: + - uid: 8824 components: - type: Transform - pos: 120.5,-20.5 + pos: 89.45974,-12.337885 parent: 2 - - uid: 9077 + - uid: 12098 components: - type: Transform - pos: 119.5,-20.5 + pos: 19.521435,41.66655 parent: 2 - - uid: 9078 +- proto: IngotSilver + entities: + - uid: 12100 components: - type: Transform - pos: 118.5,-20.5 + pos: 17.552685,41.54155 parent: 2 - - uid: 9079 +- proto: Intellicard + entities: + - uid: 14565 components: - type: Transform - pos: 117.5,-20.5 + pos: 89.5,32.5 parent: 2 - - uid: 10084 + - uid: 14566 components: - type: Transform - pos: 60.5,26.5 + pos: 90.5,32.5 parent: 2 - - uid: 10801 +- proto: IntercomAll + entities: + - uid: 14558 components: - type: Transform - pos: 85.5,-14.5 + pos: 94.5,31.5 parent: 2 - - uid: 10951 + - uid: 14561 components: - type: Transform - pos: 27.5,-59.5 + rot: 3.141592653589793 rad + pos: 94.5,29.5 parent: 2 - - uid: 10952 +- proto: IntercomCommand + entities: + - uid: 4587 components: - type: Transform - pos: 28.5,-59.5 + pos: 12.5,-34.5 parent: 2 - - uid: 10961 + - uid: 7583 components: - type: Transform - pos: 25.5,-59.5 + pos: 44.5,26.5 parent: 2 - - uid: 11070 + - uid: 9436 components: - type: Transform - pos: 6.5,19.5 + rot: 1.5707963267948966 rad + pos: 25.5,42.5 parent: 2 - - uid: 11309 + - uid: 9437 components: - type: Transform - pos: 58.5,-3.5 + pos: 33.5,41.5 parent: 2 - - uid: 11310 + - uid: 11408 components: - type: Transform - pos: 58.5,-4.5 + pos: 17.5,-2.5 parent: 2 - - uid: 11414 +- proto: IntercomCommon + entities: + - uid: 4989 components: - type: Transform - pos: 58.5,-7.5 + pos: 16.5,11.5 parent: 2 - - uid: 11532 + - uid: 8986 components: - type: Transform - pos: 77.5,19.5 + pos: 32.5,16.5 parent: 2 - - uid: 11533 +- proto: IntercomEngineering + entities: + - uid: 4692 components: - type: Transform - pos: 78.5,18.5 + pos: 30.5,-29.5 parent: 2 - - uid: 11534 + - uid: 4769 components: - type: Transform - pos: 79.5,18.5 + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 parent: 2 - - uid: 11535 +- proto: IntercomMedical + entities: + - uid: 11407 components: - type: Transform - pos: 80.5,16.5 + pos: 48.5,1.5 parent: 2 - - uid: 11536 +- proto: IntercomScience + entities: + - uid: 5107 components: - type: Transform - pos: 81.5,16.5 + pos: 48.5,20.5 parent: 2 - - uid: 11537 +- proto: IntercomSecurity + entities: + - uid: 2565 components: - type: Transform - pos: 84.5,15.5 + rot: 1.5707963267948966 rad + pos: 38.5,34.5 parent: 2 - - uid: 11538 + - uid: 7582 components: - type: Transform - pos: 83.5,15.5 + pos: 28.5,26.5 parent: 2 - - uid: 11539 +- proto: IntercomSupply + entities: + - uid: 7743 components: - type: Transform - pos: 82.5,15.5 + rot: 1.5707963267948966 rad + pos: 21.5,25.5 parent: 2 - - uid: 11540 + - uid: 12092 components: - type: Transform - pos: 86.5,-23.5 + rot: 3.141592653589793 rad + pos: 9.5,20.5 parent: 2 - - uid: 11541 +- proto: JanitorialTrolley + entities: + - uid: 12234 components: - type: Transform - pos: 87.5,-23.5 + pos: 4.5,-6.5 parent: 2 - - uid: 11542 +- proto: JetpackMiniFilled + entities: + - uid: 10308 components: - type: Transform - pos: 85.5,-25.5 + pos: 8.484015,-9.278149 parent: 2 - - uid: 11543 + - uid: 10309 components: - type: Transform - pos: 84.5,-25.5 + pos: 8.484015,-9.496899 parent: 2 - - uid: 11544 +- proto: JetpackSecurityFilled + entities: + - uid: 9478 components: - type: Transform - pos: 83.5,-25.5 + pos: 38.348988,28.699009 parent: 2 - - uid: 11545 +- proto: KitchenElectricGrill + entities: + - uid: 13167 components: - type: Transform - pos: 82.5,-25.5 + pos: 36.5,-10.5 parent: 2 - - uid: 11546 +- proto: KitchenKnife + entities: + - uid: 11124 components: - type: Transform - pos: 80.5,-24.5 + pos: 54.489273,-13.512592 parent: 2 - - uid: 11547 +- proto: KitchenMicrowave + entities: + - uid: 1578 components: - type: Transform - pos: 79.5,-24.5 + pos: 35.5,-10.5 parent: 2 - - uid: 11548 + - uid: 8860 components: - type: Transform - pos: 77.5,-24.5 + pos: 107.5,-10.5 parent: 2 - - uid: 11549 + - uid: 11429 components: - type: Transform - pos: 76.5,-24.5 + pos: 76.5,5.5 parent: 2 - - uid: 11550 + - uid: 13613 components: - type: Transform - pos: 58.5,-25.5 + pos: 54.5,41.5 parent: 2 - - uid: 11551 +- proto: KitchenReagentGrinder + entities: + - uid: 3968 components: - type: Transform - pos: 58.5,-26.5 + pos: 36.5,-12.5 parent: 2 - - uid: 11552 + - uid: 5056 components: - type: Transform - pos: 58.5,-27.5 + pos: 49.5,-6.5 parent: 2 - - uid: 11553 + - uid: 13619 components: - type: Transform - pos: 58.5,-28.5 + pos: 55.5,41.5 parent: 2 - - uid: 11554 +- proto: KitchenSpike + entities: + - uid: 364 components: - type: Transform - pos: 58.5,-29.5 + pos: 31.5,-12.5 parent: 2 - - uid: 11555 +- proto: Lamp + entities: + - uid: 5087 components: - type: Transform - pos: 58.5,-30.5 + pos: 30.398613,6.824299 parent: 2 - - uid: 11556 + - uid: 14146 components: - type: Transform - pos: 58.5,-31.5 + pos: 71.524376,22.947851 parent: 2 - - uid: 11557 +- proto: LampBanana + entities: + - uid: 9601 components: - type: Transform - pos: 58.5,-32.5 + pos: 27.665216,6.7443295 parent: 2 - - uid: 11558 +- proto: LampGold + entities: + - uid: 310 components: - type: Transform - pos: 58.5,-33.5 + pos: 10.438802,4.97286 parent: 2 - - uid: 11559 + - uid: 2722 components: - type: Transform - pos: 58.5,-34.5 + pos: 20.544691,33.624443 parent: 2 - - uid: 11560 + - uid: 2723 components: - type: Transform - pos: 57.5,-34.5 + pos: 20.529066,29.655691 parent: 2 - - uid: 11561 + - uid: 2780 components: - type: Transform - pos: 56.5,-34.5 + pos: 22.507973,40.51647 parent: 2 - - uid: 11562 + - uid: 4018 components: - type: Transform - pos: 74.5,-25.5 + pos: 32.49905,41.93212 parent: 2 - - uid: 11563 + - uid: 5474 components: - type: Transform - pos: 73.5,-25.5 + pos: 67.5,37.5 parent: 2 - - uid: 11564 + - uid: 11417 components: - type: Transform - pos: 72.5,-25.5 + pos: 54.632915,-10.081582 parent: 2 - - uid: 11565 + - uid: 11465 components: - type: Transform - pos: 70.5,-25.5 + rot: 1.5707963267948966 rad + pos: 43.568825,20.850296 parent: 2 - - uid: 11566 + - uid: 12116 components: - type: Transform - pos: 69.5,-25.5 + pos: 37.37405,43.99462 parent: 2 - - uid: 11567 + - uid: 13472 components: - type: Transform - pos: 67.5,-25.5 + pos: 9.400621,-42.048656 parent: 2 - - uid: 11568 +- proto: LampInterrogator + entities: + - uid: 13567 components: - type: Transform - pos: 66.5,-25.5 + pos: 40.512142,35.84228 parent: 2 - - uid: 11569 + - type: HandheldLight + toggleActionEntity: 13568 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 13568 + - type: Physics + canCollide: True + - type: ActionsContainer +- proto: LargeBeaker + entities: + - uid: 5323 components: - type: Transform - pos: 65.5,-25.5 + pos: 54.42104,17.661463 parent: 2 - - uid: 11570 +- proto: LightReplacer + entities: + - uid: 177 components: - type: Transform - pos: 64.5,-25.5 + pos: 5.600267,-3.347455 parent: 2 - - uid: 11571 +- proto: LiveLetLiveCircuitBoard + entities: + - uid: 14280 components: - type: Transform - pos: 63.5,-25.5 + pos: 84.53704,28.473265 parent: 2 - - uid: 11572 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 1458 components: - type: Transform - pos: 59.5,-25.5 + pos: 32.5,-31.5 parent: 2 - - uid: 11573 + - uid: 1459 components: - type: Transform - pos: 60.5,-25.5 + pos: 32.5,-32.5 parent: 2 - - uid: 11574 +- proto: LockerBoozeFilled + entities: + - uid: 2901 components: - type: Transform - pos: 61.5,-25.5 + pos: 67.5,-13.5 parent: 2 - - uid: 11575 + - uid: 4439 components: - type: Transform - pos: 29.5,-60.5 + pos: 40.5,-10.5 parent: 2 - - uid: 11582 +- proto: LockerBotanistFilled + entities: + - uid: 6679 components: - type: Transform - pos: 52.5,-36.5 + pos: 44.5,-10.5 parent: 2 - - uid: 11583 +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 4137 components: - type: Transform - pos: 52.5,-37.5 + pos: 37.5,41.5 parent: 2 - - uid: 11584 +- proto: LockerChemistryFilled + entities: + - uid: 9714 components: - type: Transform - pos: 52.5,-38.5 + pos: 52.5,-8.5 parent: 2 - - uid: 11585 +- proto: LockerChiefEngineerFilled + entities: + - uid: 4138 components: - type: Transform - pos: 52.5,-39.5 + pos: 10.5,-35.5 parent: 2 - - uid: 11589 +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 5191 components: - type: Transform - pos: 47.5,-55.5 + pos: 58.5,-11.5 parent: 2 - - uid: 11590 +- proto: LockerDetectiveFilled + entities: + - uid: 11476 components: - type: Transform - pos: 48.5,-55.5 + pos: 43.5,18.5 parent: 2 - - uid: 11591 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 882 components: - type: Transform - pos: 47.5,-57.5 + pos: 28.5,-33.5 parent: 2 - - uid: 11592 + - uid: 1760 components: - type: Transform - pos: 47.5,-58.5 + pos: 38.5,-14.5 parent: 2 - - uid: 11593 + - uid: 2321 components: - type: Transform - pos: 47.5,-59.5 + pos: 69.5,-11.5 parent: 2 - - uid: 11594 + - uid: 12352 components: - type: Transform - pos: 47.5,-60.5 + pos: 4.5,-8.5 parent: 2 - - uid: 11595 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 4904 components: - type: Transform - pos: 45.5,-60.5 + pos: 20.5,-32.5 parent: 2 - - uid: 11596 + - uid: 4905 components: - type: Transform - pos: 44.5,-60.5 + pos: 20.5,-31.5 parent: 2 - - uid: 11597 + - uid: 5182 components: - type: Transform - pos: 43.5,-60.5 + pos: 20.5,-30.5 parent: 2 - - uid: 11598 +- proto: LockerEvidence + entities: + - uid: 2430 components: - type: Transform - pos: 41.5,-60.5 + pos: 32.5,28.5 parent: 2 - - uid: 11599 + - uid: 5013 components: - type: Transform - pos: 40.5,-60.5 + pos: 32.5,21.5 parent: 2 - - uid: 11600 + - uid: 5018 components: - type: Transform - pos: 54.5,-35.5 + pos: 32.5,17.5 parent: 2 - - uid: 11601 + - uid: 7980 components: - type: Transform - pos: -2.5,-28.5 + pos: -2.5,-5.5 parent: 2 - - uid: 11602 + - uid: 9003 components: - type: Transform - pos: -3.5,-28.5 + pos: 17.5,29.5 parent: 2 - - uid: 11603 +- proto: LockerFreezer + entities: + - uid: 1646 components: - type: Transform - pos: -4.5,-28.5 + pos: 29.5,-12.5 parent: 2 - - uid: 11604 +- proto: LockerFreezerVaultFilled + entities: + - uid: 7391 components: - type: Transform - pos: -5.5,-28.5 + pos: 19.5,39.5 parent: 2 - - uid: 11605 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 10278 components: - type: Transform - pos: -6.5,-28.5 + pos: 17.5,-5.5 parent: 2 - - uid: 11606 +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 6422 components: - type: Transform - pos: -7.5,-28.5 + pos: 43.5,25.5 parent: 2 - - uid: 11607 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 545 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedical + entities: + - uid: 10911 components: - type: Transform - pos: -8.5,-28.5 + pos: 75.5,-1.5 parent: 2 - - uid: 11608 +- proto: LockerMedicalFilled + entities: + - uid: 11909 components: - type: Transform - pos: -9.5,-28.5 + pos: 70.5,5.5 parent: 2 - - uid: 11609 + - uid: 11910 components: - type: Transform - pos: -10.5,-28.5 + pos: 70.5,6.5 parent: 2 - - uid: 11610 +- proto: LockerMedicineFilled + entities: + - uid: 4115 components: - type: Transform - pos: -11.5,-28.5 + pos: 57.5,-15.5 parent: 2 - - uid: 11611 + - uid: 5098 components: - type: Transform - pos: -12.5,-28.5 + pos: 67.5,-6.5 parent: 2 - - uid: 11612 + - uid: 5653 components: - type: Transform - pos: -13.5,-28.5 + pos: 65.5,4.5 parent: 2 - - uid: 11613 + - uid: 6871 components: - type: Transform - pos: -14.5,-28.5 + pos: 62.5,4.5 parent: 2 - - uid: 11614 + - uid: 6872 components: - type: Transform - pos: -15.5,-28.5 + pos: 61.5,4.5 parent: 2 - - uid: 11615 + - uid: 11402 components: - type: Transform - pos: -16.5,-28.5 + pos: 67.5,-11.5 parent: 2 - - uid: 11616 + - uid: 11911 components: - type: Transform - pos: -16.5,-29.5 + pos: 74.5,5.5 parent: 2 - - uid: 11617 +- proto: LockerParamedicFilled + entities: + - uid: 9618 components: - type: Transform - pos: -16.5,-30.5 + pos: 44.5,4.5 parent: 2 - - uid: 11618 +- proto: LockerQuarterMasterFilled + entities: + - uid: 8104 components: - type: Transform - pos: -16.5,-32.5 + pos: 9.5,19.5 parent: 2 - - uid: 11619 +- proto: LockerResearchDirectorFilled + entities: + - uid: 10660 components: - type: Transform - pos: -17.5,-32.5 + pos: 61.5,11.5 parent: 2 - - uid: 11620 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 705 components: - type: Transform - pos: -18.5,-32.5 + pos: 6.5,30.5 parent: 2 - - uid: 11621 + - uid: 8202 components: - type: Transform - pos: -18.5,-33.5 + pos: 7.5,30.5 parent: 2 - - uid: 11622 +- proto: LockerScienceFilled + entities: + - uid: 5338 components: - type: Transform - pos: -18.5,-34.5 + pos: 55.5,22.5 parent: 2 - - uid: 11623 + - uid: 5339 components: - type: Transform - pos: -18.5,-35.5 + pos: 56.5,22.5 parent: 2 - - uid: 11624 + - uid: 12829 components: - type: Transform - pos: -18.5,-36.5 + pos: 57.5,25.5 parent: 2 - - uid: 11625 +- proto: LockerScientist + entities: + - uid: 5322 components: - type: Transform - pos: -18.5,-37.5 + pos: 51.5,21.5 parent: 2 - - uid: 11626 +- proto: LockerSecurityFilled + entities: + - uid: 8441 components: - type: Transform - pos: -18.5,-38.5 + pos: 29.5,30.5 parent: 2 - - uid: 11627 + - uid: 8443 components: - type: Transform - pos: -17.5,-38.5 + pos: 30.5,30.5 parent: 2 - - uid: 11628 + - uid: 13580 components: - type: Transform - pos: -16.5,-38.5 + pos: 31.5,30.5 parent: 2 - - uid: 11629 +- proto: LockerWallMedicalFilled + entities: + - uid: 8323 components: - type: Transform - pos: -2.5,-41.5 + pos: 46.5,5.5 parent: 2 - - uid: 11630 +- proto: LockerWardenFilled + entities: + - uid: 11210 components: - type: Transform - pos: -2.5,-42.5 + pos: 37.5,19.5 parent: 2 - - uid: 11631 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 883 components: - type: Transform - pos: -3.5,-42.5 + pos: 24.5,-33.5 parent: 2 - - uid: 11632 +- proto: MachineAnomalyGenerator + entities: + - uid: 5363 components: - type: Transform - pos: -4.5,-42.5 + pos: 70.5,15.5 parent: 2 - - uid: 11633 +- proto: MachineAnomalyVessel + entities: + - uid: 5380 components: - type: Transform - pos: -5.5,-42.5 + pos: 68.5,16.5 parent: 2 - - uid: 11634 + - uid: 10080 components: - type: Transform - pos: -6.5,-42.5 + pos: 67.5,16.5 parent: 2 - - uid: 11635 +- proto: MachineAPE + entities: + - uid: 5255 components: - type: Transform - pos: -7.5,-42.5 + rot: 1.5707963267948966 rad + pos: 66.5,13.5 parent: 2 - - uid: 11636 + - uid: 5272 components: - type: Transform - pos: -8.5,-42.5 + rot: 1.5707963267948966 rad + pos: 67.5,13.5 parent: 2 - - uid: 11637 +- proto: MachineArtifactAnalyzer + entities: + - uid: 8666 components: - type: Transform - pos: -9.5,-42.5 + pos: 64.5,27.5 parent: 2 - - uid: 11638 +- proto: MachineCentrifuge + entities: + - uid: 5074 components: - type: Transform - pos: -10.5,-42.5 + pos: 53.5,-5.5 parent: 2 - - uid: 11639 +- proto: MachineElectrolysisUnit + entities: + - uid: 5073 components: - type: Transform - pos: -11.5,-42.5 + pos: 52.5,-7.5 parent: 2 - - uid: 11640 +- proto: MachineFrame + entities: + - uid: 5731 components: - type: Transform - pos: -12.5,-42.5 + pos: 52.5,21.5 parent: 2 - - uid: 11641 +- proto: MachineParticleAcceleratorEmitterForeCircuitboard + entities: + - uid: 5610 components: - type: Transform - pos: -13.5,-42.5 + pos: 19.614614,-38.64791 parent: 2 - - uid: 11642 +- proto: MachineParticleAcceleratorEmitterPortCircuitboard + entities: + - uid: 11948 components: - type: Transform - pos: -14.5,-42.5 + pos: 19.50161,-38.48987 parent: 2 - - uid: 11643 +- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard + entities: + - uid: 1466 components: - type: Transform - pos: -16.5,-40.5 + pos: 19.434057,-38.4118 parent: 2 - - uid: 11644 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 348 components: - type: Transform - pos: -16.5,-41.5 + pos: 45.548477,23.915247 parent: 2 - - uid: 11645 + - uid: 7835 components: - type: Transform - pos: -16.5,-42.5 + pos: 45.548477,23.915247 parent: 2 - - uid: 11646 +- proto: MaintenanceFluffSpawner + entities: + - uid: 12286 components: - type: Transform - pos: -15.5,-42.5 + pos: 80.5,-12.5 parent: 2 - - uid: 11647 + - uid: 12842 components: - type: Transform - pos: 89.5,42.5 + pos: 23.5,4.5 parent: 2 - - uid: 11648 +- proto: MaintenancePlantSpawner + entities: + - uid: 12855 components: - type: Transform - pos: 90.5,42.5 + pos: 2.5,-8.5 parent: 2 - - uid: 11649 + - uid: 12856 components: - type: Transform - pos: 91.5,42.5 + pos: 54.5,-20.5 parent: 2 - - uid: 11650 + - uid: 12857 components: - type: Transform - pos: 91.5,43.5 + pos: 71.5,34.5 parent: 2 - - uid: 11651 +- proto: MaintenanceToolSpawner + entities: + - uid: 12284 components: - type: Transform - pos: 91.5,44.5 + pos: 4.5,-23.5 parent: 2 - - uid: 11652 + - uid: 14072 components: - type: Transform - pos: 91.5,45.5 + pos: 1.5,-21.5 parent: 2 - - uid: 11653 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 12285 components: - type: Transform - pos: 91.5,46.5 + pos: 74.5,-12.5 parent: 2 - - uid: 11654 +- proto: MaterialCloth + entities: + - uid: 10295 components: - type: Transform - pos: 91.5,47.5 + pos: 18.45301,-3.204442 parent: 2 - - uid: 11655 +- proto: MaterialDurathread + entities: + - uid: 10296 components: - type: Transform - pos: 91.5,48.5 + pos: 18.624886,-3.516942 parent: 2 - - uid: 11656 +- proto: MaterialWoodPlank + entities: + - uid: 2898 components: - type: Transform - pos: 90.5,48.5 + pos: 65.69583,-13.395477 parent: 2 - - uid: 11657 + - uid: 2899 components: - type: Transform - pos: 89.5,48.5 + pos: 65.43021,-13.629852 parent: 2 - - uid: 11658 +- proto: MechEquipmentGrabberSmall + entities: + - uid: 14752 components: - type: Transform - pos: 74.5,51.5 + pos: 15.466128,24.582924 parent: 2 - - uid: 11659 +- proto: MedicalBed + entities: + - uid: 1705 components: - type: Transform - pos: 75.5,51.5 + pos: 59.5,-4.5 parent: 2 - - uid: 11660 + - uid: 1710 components: - type: Transform - pos: 76.5,51.5 + pos: 62.5,-4.5 parent: 2 - - uid: 11661 + - uid: 4978 components: - type: Transform - pos: 77.5,51.5 + pos: 81.5,-1.5 parent: 2 - - uid: 11662 + - uid: 7800 components: - type: Transform - pos: 78.5,51.5 + pos: 81.5,-0.5 parent: 2 - - uid: 11663 + - uid: 10902 components: - type: Transform - pos: 79.5,51.5 + pos: 76.5,-6.5 parent: 2 - - uid: 11664 + - uid: 10903 components: - type: Transform - pos: 81.5,51.5 + pos: 77.5,-8.5 parent: 2 - - uid: 11665 + - uid: 11304 components: - type: Transform - pos: 80.5,51.5 + pos: 62.5,-10.5 parent: 2 - - uid: 11666 +- proto: MedicalTechFab + entities: + - uid: 9369 components: - type: Transform - pos: 82.5,51.5 + pos: 71.5,8.5 parent: 2 - - uid: 11667 +- proto: MedkitAdvancedFilled + entities: + - uid: 11919 components: - type: Transform - pos: 83.5,51.5 + pos: 56.50263,-10.253292 parent: 2 - - uid: 11668 +- proto: MedkitBruteFilled + entities: + - uid: 11915 components: - type: Transform - pos: 84.5,51.5 + pos: 72.38061,6.2433724 parent: 2 - - uid: 11669 +- proto: MedkitBurnFilled + entities: + - uid: 11914 components: - type: Transform - pos: 85.5,51.5 + pos: 72.61498,6.4464974 parent: 2 - - uid: 11670 +- proto: MedkitCombatFilled + entities: + - uid: 11920 components: - type: Transform - pos: 86.5,51.5 + pos: 63.555206,-11.384237 parent: 2 - - uid: 11671 +- proto: MedkitFilled + entities: + - uid: 4140 components: - type: Transform - pos: 87.5,51.5 + pos: 69.457695,-7.378622 parent: 2 - - uid: 11672 + - uid: 4996 components: - type: Transform - pos: 88.5,51.5 + pos: 32.5,48.5 parent: 2 - - uid: 11673 + - uid: 7390 components: - type: Transform - pos: 76.5,38.5 + pos: 18.523928,24.634445 parent: 2 - - uid: 11674 + - uid: 9625 components: - type: Transform - pos: 77.5,38.5 + pos: 46.54082,2.560578 parent: 2 - - uid: 11675 + - uid: 11307 components: - type: Transform - pos: 78.5,38.5 + pos: 72.38061,6.5246224 parent: 2 - - uid: 11676 + - uid: 11908 components: - type: Transform - pos: 79.5,38.5 + pos: 57.486534,-3.4860651 parent: 2 - - uid: 11677 +- proto: MedkitOxygenFilled + entities: + - uid: 11916 components: - type: Transform - pos: 80.5,38.5 + pos: 72.61498,6.0402474 parent: 2 - - uid: 11678 +- proto: MedkitRadiationFilled + entities: + - uid: 11917 components: - type: Transform - pos: 81.5,38.5 + pos: 72.34936,5.8058724 parent: 2 - - uid: 11679 +- proto: MedkitToxinFilled + entities: + - uid: 11918 components: - type: Transform - pos: 82.5,38.5 + pos: 72.61498,5.5714974 parent: 2 - - uid: 11680 +- proto: MicrophoneInstrument + entities: + - uid: 9739 components: - type: Transform - pos: 83.5,38.5 + pos: 19.519224,-9.931319 parent: 2 - - uid: 11681 +- proto: MinimoogInstrument + entities: + - uid: 12692 components: - type: Transform - pos: 84.5,38.5 + rot: -1.5707963267948966 rad + pos: 106.5,-17.5 parent: 2 - - uid: 11682 +- proto: Mirror + entities: + - uid: 9 components: - type: Transform - pos: 85.5,38.5 + pos: 10.5,14.5 parent: 2 - - uid: 11683 + - uid: 1532 components: - type: Transform - pos: 86.5,38.5 + pos: 11.5,14.5 parent: 2 - - uid: 11684 + - uid: 11907 components: - type: Transform - pos: 87.5,38.5 + pos: 76.5,8.5 parent: 2 - - uid: 11685 +- proto: MopBucket + entities: + - uid: 13116 components: - type: Transform - pos: 88.5,38.5 + pos: 5.687049,-5.5586905 parent: 2 - - uid: 11686 +- proto: MopItem + entities: + - uid: 13119 components: - type: Transform - pos: 15.5,47.5 + pos: 5.5737967,-5.4805655 parent: 2 - - uid: 11687 +- proto: Morgue + entities: + - uid: 1012 components: - type: Transform - pos: 14.5,47.5 + rot: 1.5707963267948966 rad + pos: 69.5,-5.5 parent: 2 - - uid: 11688 + - uid: 2119 components: - type: Transform - pos: 13.5,47.5 + rot: 1.5707963267948966 rad + pos: 69.5,-1.5 parent: 2 - - uid: 11689 + - uid: 4215 components: - type: Transform - pos: 7.5,47.5 + rot: 1.5707963267948966 rad + pos: 69.5,-2.5 parent: 2 - - uid: 11690 + - uid: 4314 components: - type: Transform - pos: 6.5,47.5 + rot: 1.5707963267948966 rad + pos: 69.5,-3.5 parent: 2 - - uid: 11691 + - uid: 4315 components: - type: Transform - pos: 5.5,46.5 + rot: 1.5707963267948966 rad + pos: 71.5,-0.5 parent: 2 - - uid: 11692 + - uid: 4316 components: - type: Transform - pos: 5.5,45.5 + rot: 1.5707963267948966 rad + pos: 71.5,-1.5 parent: 2 - - uid: 11693 + - uid: 4317 components: - type: Transform - pos: 5.5,44.5 + rot: 1.5707963267948966 rad + pos: 71.5,-2.5 parent: 2 - - uid: 11694 + - uid: 5122 components: - type: Transform - pos: 5.5,43.5 + rot: -1.5707963267948966 rad + pos: 74.5,-3.5 parent: 2 - - uid: 11695 + - uid: 9727 components: - type: Transform - pos: 41.5,52.5 + rot: -1.5707963267948966 rad + pos: 32.5,5.5 parent: 2 - - uid: 11696 + - uid: 9728 components: - type: Transform - pos: 40.5,52.5 + rot: -1.5707963267948966 rad + pos: 32.5,4.5 parent: 2 - - uid: 11697 + - uid: 12767 components: - type: Transform - pos: 38.5,52.5 + rot: 1.5707963267948966 rad + pos: 69.5,-4.5 parent: 2 - - uid: 11698 + - uid: 13495 components: - type: Transform - pos: 39.5,52.5 + rot: 1.5707963267948966 rad + pos: 71.5,-3.5 parent: 2 - - uid: 11757 + - uid: 13496 components: - type: Transform - pos: 8.5,-41.5 + rot: 1.5707963267948966 rad + pos: 71.5,-4.5 parent: 2 - - uid: 11759 +- proto: MouseTimedSpawner + entities: + - uid: 12800 components: - type: Transform - pos: 10.5,-43.5 + pos: 4.5,-29.5 parent: 2 - - uid: 11886 +- proto: Multitool + entities: + - uid: 4976 components: - type: Transform - pos: 69.5,4.5 + pos: 19.486778,46.604305 parent: 2 - - uid: 11887 + - uid: 5872 components: - type: Transform - pos: 69.5,5.5 + pos: 31.020313,-14.418215 parent: 2 - - uid: 11888 + - uid: 7451 components: - type: Transform - pos: 69.5,6.5 + pos: 17.945803,24.61882 parent: 2 - - uid: 11889 + - uid: 10792 components: - type: Transform - pos: 70.5,3.5 + pos: 69.28111,-15.352209 parent: 2 - - uid: 11891 +- proto: NetworkConfigurator + entities: + - uid: 909 components: - type: Transform - pos: 72.5,3.5 + pos: 27.306864,-29.442156 parent: 2 - - uid: 11894 + - uid: 8340 components: - type: Transform - pos: 73.5,3.5 + pos: 21.44037,46.69382 parent: 2 - - uid: 11970 +- proto: NitrogenCanister + entities: + - uid: 1928 components: - type: Transform - pos: 45.5,-28.5 + pos: 50.5,-23.5 parent: 2 - - uid: 11972 + - uid: 4306 components: - type: Transform - pos: 45.5,-21.5 + pos: 43.5,-37.5 parent: 2 - - uid: 12220 + - uid: 4311 components: - type: Transform - pos: 45.5,-22.5 + pos: 43.5,-38.5 parent: 2 - - uid: 12295 + - uid: 4571 components: - type: Transform - pos: 45.5,-23.5 + pos: 32.5,-27.5 parent: 2 - - uid: 12912 + - uid: 4815 components: - type: Transform - pos: 45.5,-48.5 + pos: 32.5,-46.5 parent: 2 - - uid: 12913 + - uid: 9094 components: - type: Transform - pos: 45.5,-47.5 + pos: 12.5,16.5 parent: 2 - - uid: 12914 + - uid: 9901 components: - type: Transform - pos: 45.5,-46.5 + pos: 46.5,-15.5 parent: 2 - - uid: 12915 + - uid: 10442 components: - type: Transform - pos: 45.5,-45.5 + pos: 58.5,11.5 parent: 2 - - uid: 12916 + - uid: 13968 components: - type: Transform - pos: 45.5,-44.5 + pos: -10.5,-23.5 parent: 2 - - uid: 12917 +- proto: NitrousOxideCanister + entities: + - uid: 4334 components: - type: Transform - pos: 43.5,-49.5 + pos: 44.5,-37.5 parent: 2 - - uid: 12918 +- proto: NTDefaultCircuitBoard + entities: + - uid: 14281 components: - type: Transform - pos: 42.5,-49.5 + pos: 86.43288,28.772083 parent: 2 - - uid: 12919 +- proto: NuclearBomb + entities: + - uid: 12093 components: - type: Transform - pos: 41.5,-49.5 + pos: 18.5,42.5 parent: 2 - - uid: 13146 +- proto: NutimovCircuitBoard + entities: + - uid: 14282 components: - type: Transform - pos: -15.5,1.5 + pos: 86.53704,28.660894 parent: 2 - - uid: 13147 +- proto: OperatingTable + entities: + - uid: 24 components: - type: Transform - pos: -16.5,1.5 + pos: 65.5,-4.5 parent: 2 - - uid: 13148 + - uid: 5085 components: - type: Transform - pos: -17.5,1.5 + pos: 56.5,-14.5 parent: 2 - - uid: 13149 + - uid: 5186 components: - type: Transform - pos: -18.5,1.5 + pos: 74.5,-2.5 parent: 2 - - uid: 13150 + - uid: 11399 components: - type: Transform - pos: -19.5,1.5 + pos: 66.5,-10.5 parent: 2 - - uid: 13152 + - uid: 12109 components: - type: Transform - pos: -20.5,1.5 + pos: 55.5,9.5 parent: 2 - - uid: 13181 +- proto: OreProcessor + entities: + - uid: 7673 components: - type: Transform - pos: -21.5,1.5 + pos: 9.5,29.5 parent: 2 - - uid: 13182 +- proto: OxygenCanister + entities: + - uid: 945 components: - type: Transform - pos: -22.5,1.5 + pos: 42.5,-38.5 parent: 2 - - uid: 13244 + - uid: 1467 components: - type: Transform - pos: -23.5,1.5 + pos: 50.5,-25.5 parent: 2 - - uid: 13245 + - uid: 2833 components: - type: Transform - pos: -25.5,1.5 + pos: 42.5,-37.5 parent: 2 - - uid: 13246 + - uid: 4570 components: - type: Transform - pos: -26.5,1.5 + pos: 32.5,-28.5 parent: 2 - - uid: 13247 + - uid: 6424 components: - type: Transform - pos: -27.5,1.5 + pos: 46.5,7.5 parent: 2 - - uid: 13248 + - uid: 7966 components: - type: Transform - pos: -24.5,1.5 + pos: 31.5,-46.5 parent: 2 - - uid: 13258 + - uid: 9620 components: - type: Transform - pos: -19.5,14.5 + pos: 47.5,2.5 parent: 2 - - uid: 13259 + - uid: 9902 components: - type: Transform - pos: -20.5,14.5 + pos: 46.5,-16.5 parent: 2 - - uid: 13260 + - uid: 10314 components: - type: Transform - pos: -21.5,14.5 + pos: 8.5,-5.5 parent: 2 - - uid: 13261 + - uid: 10441 components: - type: Transform - pos: -22.5,14.5 + pos: 58.5,10.5 parent: 2 - - uid: 13262 + - uid: 11650 components: - type: Transform - pos: -23.5,14.5 + pos: 5.5,32.5 parent: 2 - - uid: 13263 + - uid: 12997 components: - type: Transform - pos: -24.5,14.5 + pos: 34.5,-44.5 parent: 2 - - uid: 13264 + - uid: 13970 components: - type: Transform - pos: -25.5,14.5 + pos: -9.5,-23.5 parent: 2 - - uid: 13265 + - uid: 14225 components: - type: Transform - pos: -26.5,14.5 + pos: 82.5,27.5 parent: 2 - - uid: 13266 +- proto: OxygenTankFilled + entities: + - uid: 5720 components: - type: Transform - pos: -27.5,14.5 + pos: 73.5,-12.5 parent: 2 - - uid: 13267 + - uid: 5734 components: - type: Transform - pos: -23.5,-19.5 + pos: 72.5,-9.5 parent: 2 - - uid: 13268 + - uid: 10847 components: - type: Transform - pos: -24.5,-19.5 + pos: 44.5341,28.548758 parent: 2 - - uid: 13269 + - type: GasTank + toggleActionEntity: 6197 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6197 +- proto: PackPaperRollingFilters + entities: + - uid: 14654 components: - type: Transform - pos: -25.5,-19.5 + pos: 55.52354,31.733475 parent: 2 - - uid: 13270 +- proto: PaintingMonkey + entities: + - uid: 5783 components: - type: Transform - pos: -26.5,-19.5 + pos: 37.485016,-2.1577168 parent: 2 - - uid: 13271 +- proto: PaintingMoony + entities: + - uid: 12334 components: - type: Transform - pos: -27.5,-19.5 + pos: 28.5,6.5 parent: 2 - - uid: 13272 +- proto: PaintingOlympia + entities: + - uid: 1195 components: - type: Transform - pos: -27.5,-17.5 + pos: 35.5,42.5 parent: 2 - - uid: 13273 +- proto: PaintingSadClown + entities: + - uid: 12832 components: - type: Transform - pos: -26.5,-17.5 + pos: 28.5,8.5 parent: 2 - - uid: 13274 +- proto: PaladinCircuitBoard + entities: + - uid: 14283 components: - type: Transform - pos: -25.5,-17.5 + pos: 86.43288,28.584454 parent: 2 - - uid: 13275 +- proto: Paper + entities: + - uid: 15000 components: - type: Transform - pos: -24.5,-17.5 + pos: 51.50651,4.646573 parent: 2 - - uid: 13276 +- proto: PaperBin10 + entities: + - uid: 1483 components: - type: Transform - pos: -23.5,-17.5 + pos: 8.5,4.5 parent: 2 - - uid: 13303 +- proto: PaperBin5 + entities: + - uid: 6913 components: - type: Transform - pos: -30.5,-8.5 + pos: 43.5,19.5 parent: 2 - - uid: 13309 +- proto: ParticleAcceleratorControlBoxUnfinished + entities: + - uid: 4800 components: - type: Transform - pos: -30.5,-9.5 + pos: 20.5,-40.5 parent: 2 - - uid: 13315 +- proto: ParticleAcceleratorEmitterForeUnfinished + entities: + - uid: 4147 components: - type: Transform - pos: -30.5,-7.5 + pos: 21.5,-42.5 parent: 2 - - uid: 13316 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 4144 components: - type: Transform - pos: -30.5,-6.5 + pos: 22.5,-42.5 parent: 2 - - uid: 13317 +- proto: ParticleAcceleratorEmitterStarboardUnfinished + entities: + - uid: 4143 components: - type: Transform - pos: -30.5,-5.5 + pos: 20.5,-42.5 parent: 2 - - uid: 13318 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 4145 components: - type: Transform - pos: -30.5,-4.5 + pos: 21.5,-39.5 parent: 2 - - uid: 13319 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 4148 components: - type: Transform - pos: -30.5,-2.5 + pos: 21.5,-40.5 parent: 2 - - uid: 13320 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 4142 components: - type: Transform - pos: -30.5,-1.5 + pos: 21.5,-41.5 parent: 2 - - uid: 13321 +- proto: PartRodMetal + entities: + - uid: 2896 components: - type: Transform - pos: -30.5,-3.5 + pos: 65.52396,-13.395477 parent: 2 - - uid: 13322 + - uid: 2897 components: - type: Transform - pos: -32.5,-1.5 + pos: 65.85208,-13.442352 parent: 2 - - uid: 13323 + - uid: 5641 components: - type: Transform - pos: -32.5,-3.5 + pos: 17.877897,-26.451574 parent: 2 - - uid: 13324 + - uid: 5642 components: - type: Transform - pos: -32.5,-4.5 + pos: 17.877897,-26.451574 parent: 2 - - uid: 13325 + - uid: 9708 components: - type: Transform - pos: -32.5,-5.5 + pos: 5.4799275,40.593884 parent: 2 - - uid: 13326 + - uid: 11126 components: - type: Transform - pos: -32.5,-6.5 + pos: 54.520523,-14.325092 parent: 2 - - uid: 13327 + - uid: 14760 components: - type: Transform - pos: -32.5,-7.5 + pos: 5.5,31.5 parent: 2 - - uid: 13328 +- proto: Pen + entities: + - uid: 137 components: - type: Transform - pos: -32.5,-8.5 + pos: -2.0928464,-12.376232 parent: 2 - - uid: 13329 + - uid: 312 components: - type: Transform - pos: -32.5,-9.5 + pos: 11.095052,4.613485 parent: 2 - - uid: 13330 + - uid: 7415 components: - type: Transform - pos: -32.5,-2.5 + pos: 23.446625,15.655876 parent: 2 - - uid: 13331 + - uid: 7761 components: - type: Transform - pos: -34.5,-9.5 + pos: 39.66111,17.754585 parent: 2 - - uid: 13332 + - uid: 11973 components: - type: Transform - pos: -34.5,-8.5 + pos: 55.38082,-10.156126 parent: 2 - - uid: 13333 + - uid: 11975 components: - type: Transform - pos: -34.5,-7.5 + pos: 18.920185,-2.2376757 parent: 2 - - uid: 13334 + - uid: 11976 components: - type: Transform - pos: -34.5,-6.5 + pos: -2.4757,-12.360289 parent: 2 - - uid: 13335 + - uid: 11977 components: - type: Transform - pos: -34.5,-5.5 + pos: 10.85696,4.4728694 parent: 2 - - uid: 13336 + - uid: 11978 components: - type: Transform - pos: -34.5,-4.5 + pos: 21.523584,22.514828 parent: 2 - - uid: 13337 + - uid: 11979 components: - type: Transform - pos: -34.5,-3.5 + pos: 44.764744,23.837742 parent: 2 - - uid: 13338 + - uid: 11980 components: - type: Transform - pos: -34.5,-2.5 + pos: 63.3999,10.027362 parent: 2 - - uid: 13339 + - uid: 14632 components: - type: Transform - pos: -34.5,-1.5 + pos: 74.38532,22.554312 parent: 2 - - uid: 13355 + - uid: 15001 components: - type: Transform - pos: 30.5,-62.5 + pos: 51.110676,4.5944533 parent: 2 - - uid: 13387 +- proto: PersonalAI + entities: + - uid: 7414 components: - type: Transform - pos: 29.5,-62.5 + pos: 23.509125,15.577751 parent: 2 - - uid: 13388 + - uid: 11216 components: - type: Transform - pos: 28.5,-62.5 + pos: 26.514572,47.589886 parent: 2 - - uid: 13389 + - uid: 11217 components: - type: Transform - pos: 27.5,-62.5 + pos: 70.51922,36.549946 parent: 2 - - uid: 13390 + - uid: 13621 components: - type: Transform - pos: 26.5,-62.5 - parent: 2 - - uid: 13391 + parent: 13620 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PhoneInstrument + entities: + - uid: 7008 components: - type: Transform - pos: 25.5,-62.5 + pos: 34.02968,41.62158 parent: 2 - - uid: 13392 +- proto: PianoInstrument + entities: + - uid: 1663 components: - type: Transform - pos: 24.5,-62.5 + rot: -1.5707963267948966 rad + pos: 29.5,-7.5 parent: 2 - - uid: 13393 +- proto: Pickaxe + entities: + - uid: 14759 components: - type: Transform - pos: 23.5,-62.5 + rot: 1.5707963267948966 rad + pos: 5.5,31.5 parent: 2 - - uid: 13394 +- proto: PlantBGoneSpray + entities: + - uid: 6754 components: - type: Transform - pos: 22.5,-62.5 + pos: 45.80647,-6.7391644 parent: 2 - - uid: 13395 +- proto: PlaqueAtmos + entities: + - uid: 4576 components: - type: Transform - pos: 21.5,-62.5 + pos: 29.5,-25.5 parent: 2 - - uid: 13396 +- proto: PlasmaCanister + entities: + - uid: 1678 components: - type: Transform - pos: 20.5,-62.5 + pos: 50.5,-31.5 parent: 2 - - uid: 13397 + - uid: 12995 components: - type: Transform - pos: 19.5,-62.5 + pos: 44.5,-38.5 parent: 2 - - uid: 13398 + - uid: 12996 components: - type: Transform - pos: 18.5,-62.5 + pos: 34.5,-43.5 parent: 2 - - uid: 13399 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 2092 components: - type: Transform - pos: 16.5,-62.5 + rot: -1.5707963267948966 rad + pos: 78.5,-6.5 parent: 2 - - uid: 13400 + - uid: 5245 components: - type: Transform - pos: 15.5,-62.5 + rot: -1.5707963267948966 rad + pos: 78.5,-7.5 parent: 2 - - uid: 13401 + - uid: 7794 components: - type: Transform - pos: 17.5,-62.5 + pos: 81.5,-2.5 parent: 2 - - uid: 13402 + - uid: 10120 components: - type: Transform - pos: 13.5,-62.5 + pos: 76.5,-5.5 parent: 2 - - uid: 13403 + - uid: 10135 components: - type: Transform - pos: 12.5,-62.5 + rot: 1.5707963267948966 rad + pos: 38.5,24.5 parent: 2 - - uid: 13404 + - uid: 12081 components: - type: Transform - pos: 11.5,-62.5 + rot: 1.5707963267948966 rad + pos: 46.5,9.5 parent: 2 - - uid: 13405 + - uid: 12107 components: - type: Transform - pos: 10.5,-62.5 + rot: 1.5707963267948966 rad + pos: 46.5,11.5 parent: 2 - - uid: 13406 + - uid: 12270 components: - type: Transform - pos: 14.5,-62.5 + rot: -1.5707963267948966 rad + pos: 41.5,24.5 parent: 2 - - uid: 13407 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 7707 components: - type: Transform - pos: 6.5,-54.5 + pos: 41.5,24.5 parent: 2 - - uid: 13408 + - uid: 13582 components: - type: Transform - pos: 6.5,-53.5 + pos: 38.5,24.5 parent: 2 - - uid: 13409 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 451 components: - type: Transform - pos: 6.5,-52.5 + pos: 7.5,35.5 parent: 2 - - uid: 13410 + - uid: 5576 components: - type: Transform - pos: 6.5,-51.5 + pos: 5.5,27.5 parent: 2 - - uid: 13411 + - uid: 5577 components: - type: Transform - pos: 6.5,-50.5 + pos: 5.5,23.5 parent: 2 - - uid: 13412 + - uid: 5874 components: - type: Transform - pos: 6.5,-49.5 + pos: -0.5,-27.5 parent: 2 - - uid: 13413 + - uid: 7552 components: - type: Transform - pos: 6.5,-48.5 + pos: 3.5,27.5 parent: 2 - - uid: 13414 + - uid: 8229 components: - type: Transform - pos: 6.5,-47.5 + pos: 3.5,23.5 parent: 2 - - uid: 13415 + - uid: 14767 components: - type: Transform - pos: 6.5,-46.5 + pos: 7.5,36.5 parent: 2 - - uid: 13416 +- proto: PlayerStationAi + entities: + - uid: 14506 components: - type: Transform - pos: 7.5,-62.5 + pos: 94.5,30.5 parent: 2 - - uid: 13417 +- proto: Plunger + entities: + - uid: 9718 components: - type: Transform - pos: 6.5,-62.5 + pos: 10.992045,13.876669 parent: 2 - - uid: 13418 + - uid: 9719 components: - type: Transform - pos: 6.5,-61.5 + pos: 6.0254927,-3.2604024 parent: 2 - - uid: 13419 +- proto: PlushieNar + entities: + - uid: 5400 components: - type: Transform - pos: 6.5,-60.5 + pos: 62.48992,18.519245 parent: 2 - - uid: 13420 +- proto: PlushieSharkGrey + entities: + - uid: 5727 components: - type: Transform - pos: 6.5,-59.5 + pos: 25.597736,6.3236885 parent: 2 - - uid: 13421 +- proto: PlushieSharkPink + entities: + - uid: 13077 components: - type: Transform - pos: 6.5,-58.5 + pos: 6.6388106,-13.475947 parent: 2 - - uid: 13423 +- proto: PlushieSpaceLizard + entities: + - uid: 7441 components: - type: Transform - pos: 32.5,-61.5 + pos: -3.4634295,-18.46823 parent: 2 - - uid: 13424 +- proto: PortableFlasher + entities: + - uid: 8412 components: - type: Transform - pos: 33.5,-61.5 + pos: 31.5,26.5 parent: 2 - - uid: 13425 +- proto: PortableGeneratorJrPacman + entities: + - uid: 801 components: - type: Transform - pos: 34.5,-61.5 + pos: 13.5,-28.5 parent: 2 - - uid: 13426 + - uid: 3176 components: - type: Transform - pos: 35.5,-61.5 + pos: 35.5,36.5 parent: 2 - - uid: 13427 + - uid: 4181 components: - type: Transform - pos: 36.5,-61.5 + pos: 70.5,-7.5 parent: 2 - - uid: 13428 + - uid: 5741 components: - type: Transform - pos: 37.5,-61.5 + pos: 12.5,17.5 parent: 2 - - uid: 13429 + - uid: 7854 components: - type: Transform - pos: 38.5,-61.5 + pos: 23.5,-7.5 parent: 2 - - uid: 13430 + - uid: 7855 components: - type: Transform - pos: 39.5,-61.5 + pos: 6.5,-9.5 parent: 2 - - uid: 13656 + - uid: 11881 components: - type: Transform - anchored: False - pos: -32.5,12.5 + pos: 23.5,5.5 parent: 2 - - uid: 13657 + - uid: 12360 components: - type: Transform - anchored: False - pos: -32.5,11.5 + pos: 9.5,-22.5 parent: 2 - - uid: 13658 + - uid: 12362 components: - type: Transform - anchored: False - pos: -32.5,10.5 + pos: 67.5,11.5 parent: 2 - - uid: 13659 + - uid: 13153 components: - type: Transform - anchored: False - pos: -32.5,9.5 + pos: 57.5,5.5 parent: 2 - - uid: 13660 + - uid: 14071 components: - type: Transform - anchored: False - pos: -32.5,8.5 + pos: -6.5,-23.5 parent: 2 - - uid: 13661 +- proto: PortableGeneratorPacman + entities: + - uid: 4301 components: - type: Transform - anchored: False - pos: -32.5,7.5 + pos: 9.5,-31.5 parent: 2 - - uid: 13662 + - uid: 14410 components: - type: Transform - anchored: False - pos: -32.5,6.5 + pos: 80.5,33.5 parent: 2 - - uid: 13663 +- proto: PortableScrubber + entities: + - uid: 4977 components: - type: Transform - anchored: False - pos: -32.5,5.5 + pos: 47.5,7.5 parent: 2 - - uid: 13664 + - uid: 6765 components: - type: Transform - anchored: False - pos: -32.5,3.5 + pos: 46.5,-40.5 parent: 2 - - uid: 13665 + - uid: 7807 components: - type: Transform - anchored: False - pos: -32.5,2.5 + pos: 24.5,-23.5 parent: 2 - - uid: 13666 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 5294 components: - type: Transform - anchored: False - pos: -32.5,1.5 + pos: 30.5,-22.5 parent: 2 - - uid: 13667 +- proto: PosterContrabandClown + entities: + - uid: 11021 components: - type: Transform - anchored: False - pos: -32.5,4.5 + pos: 27.5,4.5 parent: 2 - - uid: 13668 +- proto: PosterContrabandDonk + entities: + - uid: 13090 components: - type: Transform - pos: -34.5,1.5 + pos: 58.5,-16.5 parent: 2 - - uid: 13669 + - uid: 14084 components: - type: Transform - pos: -34.5,2.5 + rot: 1.5707963267948966 rad + pos: 60.5,34.5 parent: 2 - - uid: 13670 +- proto: PosterContrabandEAT + entities: + - uid: 6763 components: - type: Transform - pos: -34.5,3.5 + pos: 30.5,-8.5 parent: 2 - - uid: 13671 +- proto: PosterContrabandGreyTide + entities: + - uid: 739 components: - type: Transform - pos: -34.5,4.5 + pos: 30.5,-18.5 parent: 2 - - uid: 13672 +- proto: PosterContrabandHackingGuide + entities: + - uid: 8671 components: - type: Transform - pos: -34.5,5.5 + pos: 31.5,-13.5 parent: 2 - - uid: 13673 +- proto: PosterContrabandHaveaPuff + entities: + - uid: 13100 components: - type: Transform - pos: -34.5,6.5 + pos: 44.5,-8.5 parent: 2 - - uid: 13674 +- proto: PosterContrabandMissingGloves + entities: + - uid: 11068 components: - type: Transform - pos: -34.5,8.5 + pos: 34.5,-18.5 parent: 2 - - uid: 13675 +- proto: PosterContrabandMoth + entities: + - uid: 13102 components: - type: Transform - pos: -34.5,9.5 + pos: 77.5,-14.5 parent: 2 - - uid: 13676 +- proto: PosterContrabandRedRum + entities: + - uid: 7286 components: - type: Transform - pos: -34.5,10.5 + pos: 40.5,-2.5 parent: 2 - - uid: 13677 +- proto: PosterLegit12Gauge + entities: + - uid: 8434 components: - type: Transform - pos: -34.5,11.5 + rot: 1.5707963267948966 rad + pos: 37.5,27.5 parent: 2 - - uid: 13678 +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 11289 components: - type: Transform - pos: -34.5,12.5 + pos: 56.5,21.5 parent: 2 - - uid: 13679 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 12830 components: - type: Transform - pos: -34.5,13.5 + pos: 60.5,5.5 parent: 2 - - uid: 13680 +- proto: PosterLegitCarpMount + entities: + - uid: 7 components: - type: Transform - pos: -34.5,7.5 + pos: 18.5,25.5 parent: 2 - - uid: 13718 +- proto: PosterLegitCleanliness + entities: + - uid: 11818 components: - type: Transform - pos: -30.5,1.5 + rot: 3.141592653589793 rad + pos: 5.5,-2.5 parent: 2 - - uid: 13719 +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 7287 components: - type: Transform - pos: -30.5,2.5 + pos: 28.5,-7.5 parent: 2 - - uid: 13720 +- proto: PosterLegitDickGumshue + entities: + - uid: 13089 components: - type: Transform - pos: -30.5,3.5 + pos: 68.5,-14.5 parent: 2 - - uid: 13721 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 14643 components: - type: Transform - pos: -30.5,4.5 + rot: 3.141592653589793 rad + pos: 42.5,34.5 parent: 2 - - uid: 13722 +- proto: PosterLegitEnlist + entities: + - uid: 13104 components: - type: Transform - pos: -30.5,5.5 + pos: 42.5,26.5 parent: 2 - - uid: 13723 +- proto: PosterLegitFoamForceAd + entities: + - uid: 11022 components: - type: Transform - pos: -30.5,6.5 + pos: 20.5,16.5 parent: 2 - - uid: 13724 +- proto: PosterLegitFruitBowl + entities: + - uid: 13101 components: - type: Transform - pos: -30.5,7.5 + pos: 41.5,-9.5 parent: 2 - - uid: 13725 +- proto: PosterLegitHighClassMartini + entities: + - uid: 13099 components: - type: Transform - pos: -30.5,9.5 + pos: 38.5,-1.5 parent: 2 - - uid: 13726 +- proto: PosterLegitIan + entities: + - uid: 10251 components: - type: Transform - pos: -30.5,10.5 + pos: 17.5,-6.5 parent: 2 - - uid: 13727 +- proto: PosterLegitIonRifle + entities: + - uid: 13103 components: - type: Transform - pos: -30.5,8.5 + pos: 42.5,28.5 parent: 2 - - uid: 13728 +- proto: PosterLegitLoveIan + entities: + - uid: 10252 components: - type: Transform - pos: -30.5,11.5 + pos: 21.5,-3.5 parent: 2 - - uid: 13729 +- proto: PosterLegitMime + entities: + - uid: 12831 components: - type: Transform - pos: -30.5,12.5 + pos: 24.5,5.5 parent: 2 - - uid: 13730 +- proto: PosterLegitNanomichiAd + entities: + - uid: 12320 components: - type: Transform - pos: -30.5,13.5 + pos: 13.5,-4.5 parent: 2 -- proto: GrilleBroken +- proto: PosterLegitNanotrasenLogo entities: - - uid: 6 + - uid: 404 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-21.5 + pos: 29.5,37.5 parent: 2 - - uid: 192 + - uid: 7464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-20.5 + pos: 17.5,-1.5 parent: 2 - - uid: 239 + - uid: 11092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-21.5 + pos: 17.5,38.5 parent: 2 - - uid: 242 + - uid: 11854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 parent: 2 - - uid: 1247 + - uid: 12318 components: - type: Transform - pos: 35.5,-58.5 + pos: 29.5,43.5 parent: 2 - - uid: 1335 + - uid: 12319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 + pos: 20.5,47.5 parent: 2 - - uid: 2401 +- proto: PosterLegitNTTGC + entities: + - uid: 13097 components: - type: Transform - pos: 89.5,-6.5 + pos: 13.5,8.5 parent: 2 - - uid: 3986 +- proto: PosterLegitPeriodicTable + entities: + - uid: 13093 components: - type: Transform - pos: 16.5,-59.5 + pos: 59.5,11.5 parent: 2 - - uid: 3988 + - uid: 13094 components: - type: Transform - pos: 23.5,-59.5 + pos: 54.5,-7.5 parent: 2 - - uid: 5966 +- proto: PosterLegitRenault + entities: + - uid: 13092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-20.5 + pos: 35.5,41.5 parent: 2 -- proto: GunSafeLaserCarbine +- proto: PosterLegitReportCrimes entities: - - uid: 2126 + - uid: 13096 components: - type: Transform - pos: 41.5,27.5 + pos: 37.5,16.5 parent: 2 -- proto: GunSafeRifleLecter +- proto: PosterLegitSafetyEyeProtection entities: - - uid: 2460 + - uid: 13083 components: - type: Transform - pos: 38.5,26.5 + pos: 40.5,-41.5 parent: 2 -- proto: GunSafeShotgunKammerer - entities: - - uid: 2117 + - uid: 13087 components: - type: Transform - pos: 41.5,26.5 + pos: 55.5,16.5 parent: 2 -- proto: GunSafeSubMachineGunDrozd +- proto: PosterLegitSafetyInternals entities: - - uid: 2461 + - uid: 13084 components: - type: Transform - pos: 38.5,27.5 + pos: 42.5,-41.5 parent: 2 -- proto: Handcuffs - entities: - - uid: 9397 + - uid: 13088 components: - type: Transform - pos: 25.512451,48.501656 + pos: 54.5,16.5 parent: 2 -- proto: HandheldHealthAnalyzer +- proto: PosterLegitSafetyMothDelam entities: - - uid: 12160 + - uid: 13081 components: - type: Transform - pos: 82.45164,-4.4459476 + pos: 32.5,-33.5 parent: 2 - - uid: 12368 + - uid: 14648 components: - type: Transform - pos: 38.482082,-17.438766 + rot: -1.5707963267948966 rad + pos: 70.5,22.5 parent: 2 -- proto: HandheldStationMap +- proto: PosterLegitSafetyMothEpi entities: - - uid: 9400 + - uid: 13085 components: - type: Transform - pos: 28.498549,47.61997 + pos: 53.5,-2.5 parent: 2 -- proto: HandLabeler - entities: - - uid: 5319 + - uid: 13111 components: - type: Transform - pos: 49.532963,19.552088 + pos: 79.5,4.5 parent: 2 - - uid: 5320 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 13080 components: - type: Transform - pos: 49.532963,17.552088 + pos: 23.5,-29.5 parent: 2 -- proto: HarmonicaInstrument +- proto: PosterLegitSafetyMothMeth entities: - - uid: 2957 + - uid: 13086 components: - type: Transform - pos: 39.821617,32.534893 + pos: 49.5,-9.5 parent: 2 -- proto: HarpInstrument +- proto: PosterLegitSafetyMothPiping entities: - - uid: 8319 + - uid: 3782 components: - type: Transform - pos: 20.5,-10.5 + pos: 37.5,-21.5 parent: 2 -- proto: HeatExchanger - entities: - - uid: 4492 + - uid: 13082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-51.5 + pos: 38.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12861 +- proto: PosterLegitSafetyReport + entities: + - uid: 13095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-52.5 + pos: 22.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12862 +- proto: PosterLegitSecWatch + entities: + - uid: 7732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-53.5 + pos: -2.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12904 + - uid: 8983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-45.5 + rot: 1.5707963267948966 rad + pos: 35.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: Hemostat +- proto: PosterLegitStateLaws entities: - - uid: 10071 + - uid: 7731 components: - type: Transform - pos: 67.49741,-3.281434 + pos: -4.5,-10.5 parent: 2 -- proto: HighSecCommandLocked +- proto: PosterLegitUeNo entities: - - uid: 1744 + - uid: 11093 components: - type: Transform - pos: 39.5,-16.5 + pos: 23.5,26.5 parent: 2 - - uid: 9110 +- proto: PosterLegitVacation + entities: + - uid: 13098 components: - type: Transform - pos: 18.5,38.5 + pos: 22.5,2.5 parent: 2 - - uid: 13591 +- proto: PosterMapPacked + entities: + - uid: 12314 components: - type: Transform - pos: 56.5,28.5 + pos: 15.5,2.5 parent: 2 - - uid: 13592 + - uid: 12315 components: - type: Transform - pos: 56.5,32.5 + pos: 37.5,2.5 parent: 2 -- proto: HospitalCurtainsOpen - entities: - - uid: 4682 + - uid: 12316 components: - type: Transform - pos: 24.5,-11.5 + pos: 33.5,16.5 parent: 2 - - uid: 5049 + - uid: 12317 components: - type: Transform - pos: 61.5,-8.5 + pos: 34.5,47.5 parent: 2 - - uid: 5744 + - uid: 12335 components: - type: Transform - pos: 12.5,12.5 + pos: 30.5,-13.5 parent: 2 - - uid: 5750 +- proto: PottedPlant1 + entities: + - uid: 6619 components: - type: Transform - pos: 24.5,-10.5 + pos: 32.48526,-7.8502135 parent: 2 - - uid: 8827 +- proto: PottedPlant19 + entities: + - uid: 2615 components: - type: Transform - pos: 102.5,-13.5 + pos: 13.5,-33.5 parent: 2 - - uid: 11849 +- proto: PottedPlant2 + entities: + - uid: 12720 components: - type: Transform - pos: 58.5,-6.5 + pos: 29.477802,5.1889386 parent: 2 - - uid: 11850 +- proto: PottedPlant22 + entities: + - uid: 2909 components: - type: Transform - pos: 58.5,-5.5 + pos: 19.5,44.5 parent: 2 - - uid: 11902 + - uid: 12726 components: - type: Transform - pos: 78.5,10.5 + pos: 30.5,44.5 parent: 2 - - uid: 11903 +- proto: PottedPlantBioluminscent + entities: + - uid: 14998 components: - type: Transform - pos: 77.5,10.5 + pos: 52.5,2.5 parent: 2 - - uid: 12254 +- proto: PottedPlantRandom + entities: + - uid: 47 components: - type: Transform - pos: 16.5,12.5 + pos: -25.5,-14.5 parent: 2 - - uid: 12255 + - uid: 81 components: - type: Transform - pos: 15.5,12.5 + pos: -7.5,-11.5 parent: 2 - - uid: 12256 + - uid: 2533 components: - type: Transform - pos: 14.5,12.5 + pos: 34.5,9.5 parent: 2 - - uid: 12257 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 4698 components: - type: Transform - pos: 14.5,14.5 + pos: 20.5,12.5 parent: 2 - - uid: 12258 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 5314 components: - type: Transform - pos: 15.5,14.5 + pos: 54.5,20.5 parent: 2 - - uid: 12259 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 5340 components: - type: Transform - pos: 16.5,14.5 + pos: 54.5,22.5 parent: 2 - - uid: 12260 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 5344 components: - type: Transform - pos: 16.5,16.5 + pos: 59.5,25.5 parent: 2 - - uid: 12261 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 7298 components: - type: Transform - pos: 15.5,16.5 + pos: 15.5,-33.5 parent: 2 - - uid: 12262 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 7299 components: - type: Transform - pos: 14.5,16.5 + pos: 15.5,-35.5 parent: 2 -- proto: HydroponicsToolHatchet - entities: - - uid: 11125 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 7999 components: - type: Transform - pos: 54.473648,-13.481342 + pos: 3.5,1.5 parent: 2 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 6755 + - uid: 8000 components: - type: Transform - pos: 41.470776,-6.4772377 + pos: 3.5,13.5 parent: 2 -- proto: hydroponicsTray - entities: - - uid: 2300 + - uid: 11003 components: - type: Transform - pos: 36.5,34.5 + pos: 54.5,1.5 parent: 2 - - uid: 2301 + - uid: 11221 components: - type: Transform - pos: 36.5,33.5 + pos: 18.5,35.5 parent: 2 - - uid: 2302 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 11222 components: - type: Transform - pos: 38.5,34.5 + pos: 22.5,35.5 parent: 2 - - uid: 2303 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 11808 components: - type: Transform - pos: 38.5,33.5 + pos: 45.5,16.5 parent: 2 - - uid: 6665 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 12164 components: - type: Transform - pos: 43.5,-9.5 + pos: 73.5,8.5 parent: 2 - - uid: 6666 + - uid: 12165 components: - type: Transform - pos: 43.5,-7.5 + pos: 58.5,-2.5 parent: 2 - - uid: 6667 + - uid: 14079 components: - type: Transform - pos: 44.5,-7.5 + pos: -19.5,0.5 parent: 2 - - uid: 6668 + - uid: 14080 components: - type: Transform - pos: 45.5,-7.5 + pos: -15.5,0.5 parent: 2 - - uid: 6669 + - uid: 14231 components: - type: Transform - pos: 47.5,-5.5 + pos: 79.5,29.5 parent: 2 - - uid: 6670 + - uid: 14232 components: - type: Transform - pos: 47.5,-4.5 + pos: 79.5,31.5 parent: 2 - - uid: 6671 + - uid: 14653 components: - type: Transform - pos: 45.5,-5.5 + pos: 57.5,38.5 parent: 2 - - uid: 6673 + - uid: 14956 components: - type: Transform - pos: 43.5,-5.5 + pos: 15.5,22.5 parent: 2 - - uid: 6674 +- proto: PottedPlantRD + entities: + - uid: 10662 components: - type: Transform - pos: 41.5,-5.5 + pos: 60.5,10.5 parent: 2 - - uid: 6675 +- proto: PowerCellHigh + entities: + - uid: 5631 components: - type: Transform - pos: 41.5,-4.5 + pos: 16.332455,-23.225615 parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 12659 + - uid: 5632 components: - type: Transform - pos: 41.5,-14.5 + pos: 16.4019,-23.383022 parent: 2 -- proto: InflatableWall +- proto: PowerCellRecharger entities: - - uid: 6524 + - uid: 2152 components: - type: Transform - pos: 87.5,-7.5 + rot: 3.141592653589793 rad + pos: 12.5,20.5 parent: 2 - - uid: 6729 + - uid: 3948 components: - type: Transform - pos: 86.5,-7.5 + pos: 23.5,-23.5 parent: 2 - - uid: 6730 + - uid: 5312 components: - type: Transform - pos: 82.5,5.5 + pos: 56.5,20.5 parent: 2 - - uid: 6731 + - type: ContainerContainer + containers: + PowerCellCharger-powerCellContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger-slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False + - uid: 6794 components: - type: Transform - pos: 82.5,4.5 + pos: 19.5,-23.5 parent: 2 -- proto: IngotGold - entities: - - uid: 8824 + - type: ContainerContainer + containers: + PowerCellCharger-powerCellContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger-slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False + - uid: 7014 components: - type: Transform - pos: 89.45974,-12.337885 + pos: 17.5,24.5 parent: 2 - - uid: 12098 + - uid: 9626 components: - type: Transform - pos: 19.521435,41.66655 + pos: 46.5,2.5 parent: 2 -- proto: IngotSilver - entities: - - uid: 12100 + - uid: 11842 components: - type: Transform - pos: 17.552685,41.54155 + pos: 31.5,-14.5 parent: 2 -- proto: IntercomCommand - entities: - - uid: 4587 + - type: ContainerContainer + containers: + PowerCellCharger-powerCellContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger-slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False + - uid: 12369 components: - type: Transform - pos: 12.5,-34.5 + pos: 38.5,-17.5 parent: 2 - - uid: 7583 + - uid: 12819 components: - type: Transform - pos: 44.5,26.5 + pos: 59.5,-3.5 parent: 2 - - uid: 9436 + - uid: 13106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,42.5 + pos: 56.5,-10.5 parent: 2 - - uid: 9437 + - uid: 13107 components: - type: Transform - pos: 33.5,41.5 + pos: 63.5,-9.5 parent: 2 - - uid: 11408 +- proto: PowerCellSmall + entities: + - uid: 5313 components: - type: Transform - pos: 17.5,-2.5 + pos: 56.529827,20.631775 parent: 2 -- proto: IntercomCommon +- proto: PowerDrill entities: - - uid: 4989 + - uid: 10671 components: - type: Transform - pos: 16.5,11.5 + pos: 63.50305,8.626264 parent: 2 - - uid: 7816 +- proto: Poweredlight + entities: + - uid: 97 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-15.5 + rot: 1.5707963267948966 rad + pos: 38.5,-29.5 parent: 2 - - uid: 8986 + - uid: 231 components: - type: Transform - pos: 32.5,16.5 + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 parent: 2 -- proto: IntercomEngineering - entities: - - uid: 4692 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 398 components: - type: Transform - pos: 30.5,-29.5 + rot: -1.5707963267948966 rad + pos: 17.5,-40.5 parent: 2 - - uid: 4769 + - uid: 399 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-25.5 + pos: 44.5,3.5 parent: 2 -- proto: IntercomMedical - entities: - - uid: 11407 + - uid: 441 components: - type: Transform - pos: 48.5,1.5 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 parent: 2 -- proto: IntercomScience - entities: - - uid: 5107 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 840 components: - type: Transform - pos: 48.5,20.5 + rot: -1.5707963267948966 rad + pos: 22.5,-25.5 parent: 2 -- proto: IntercomSecurity - entities: - - uid: 7582 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1112 components: - type: Transform - pos: 28.5,26.5 + rot: 1.5707963267948966 rad + pos: 25.5,-15.5 parent: 2 -- proto: IntercomSupply - entities: - - uid: 7743 + - uid: 1473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,25.5 + rot: -1.5707963267948966 rad + pos: 32.5,-41.5 parent: 2 -- proto: JanitorialTrolley - entities: - - uid: 12234 + - uid: 1491 components: - type: Transform - pos: 4.5,-6.5 + rot: 1.5707963267948966 rad + pos: 28.5,-41.5 parent: 2 -- proto: JetpackMiniFilled - entities: - - uid: 10308 + - uid: 1674 components: - type: Transform - pos: 8.484015,-9.278149 + pos: 48.5,-27.5 parent: 2 - - uid: 10309 + - uid: 1765 components: - type: Transform - pos: 8.484015,-9.496899 + rot: -1.5707963267948966 rad + pos: 33.5,-14.5 parent: 2 -- proto: KitchenElectricGrill - entities: - - uid: 13167 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1766 components: - type: Transform - pos: 36.5,-10.5 + rot: 3.141592653589793 rad + pos: 36.5,-17.5 parent: 2 -- proto: KitchenKnife - entities: - - uid: 11124 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1922 components: - type: Transform - pos: 54.489273,-13.512592 + pos: 48.5,-29.5 parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 1578 + - uid: 1930 components: - type: Transform - pos: 35.5,-10.5 + pos: 48.5,-33.5 parent: 2 - - uid: 2307 + - uid: 1931 components: - type: Transform - pos: 37.5,36.5 + pos: 48.5,-31.5 parent: 2 - - uid: 8860 + - uid: 1932 components: - type: Transform - pos: 107.5,-10.5 + pos: 48.5,-25.5 parent: 2 - - uid: 11429 + - uid: 2137 components: - type: Transform - pos: 76.5,5.5 + pos: 48.5,-23.5 parent: 2 -- proto: KitchenReagentGrinder - entities: - - uid: 2636 + - uid: 2227 components: - type: Transform - pos: 40.5,34.5 + rot: 3.141592653589793 rad + pos: 31.5,35.5 parent: 2 - - uid: 3968 + - uid: 2741 components: - type: Transform - pos: 36.5,-12.5 + rot: 3.141592653589793 rad + pos: -7.5,-1.5 parent: 2 - - uid: 5056 + - uid: 2783 components: - type: Transform - pos: 49.5,-6.5 + rot: -1.5707963267948966 rad + pos: 24.5,42.5 parent: 2 -- proto: KitchenSpike - entities: - - uid: 364 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2784 components: - type: Transform - pos: 31.5,-12.5 + rot: 1.5707963267948966 rad + pos: 21.5,42.5 parent: 2 -- proto: KnifePlastic - entities: - - uid: 3460 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2787 components: - type: Transform - pos: 40.183743,34.526638 + rot: -1.5707963267948966 rad + pos: 28.5,40.5 parent: 2 -- proto: Lamp - entities: - - uid: 5087 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3277 components: - type: Transform - pos: 30.398613,6.824299 + pos: 38.5,31.5 parent: 2 -- proto: LampBanana - entities: - - uid: 9601 + - uid: 3783 components: - type: Transform - pos: 27.665216,6.7443295 + rot: 3.141592653589793 rad + pos: 43.5,-35.5 parent: 2 -- proto: LampGold - entities: - - uid: 310 + - uid: 4054 components: - type: Transform - pos: 10.438802,4.97286 + pos: -2.5,-7.5 parent: 2 - - uid: 2722 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4122 components: - type: Transform - pos: 20.544691,33.624443 + rot: -1.5707963267948966 rad + pos: -5.5,-5.5 parent: 2 - - uid: 2723 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4151 components: - type: Transform - pos: 20.529066,29.655691 + pos: 44.5,-21.5 parent: 2 - - uid: 2780 + - uid: 4278 components: - type: Transform - pos: 22.507973,40.51647 + rot: -1.5707963267948966 rad + pos: 37.5,-11.5 parent: 2 - - uid: 4018 + - uid: 4326 components: - type: Transform - pos: 32.49905,41.93212 + rot: -1.5707963267948966 rad + pos: 9.5,31.5 parent: 2 - - uid: 5474 + - uid: 4562 components: - type: Transform - pos: 67.5,37.5 + rot: 3.141592653589793 rad + pos: 16.5,-5.5 parent: 2 - - uid: 11417 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4617 components: - type: Transform - pos: 54.632915,-10.081582 + rot: 1.5707963267948966 rad + pos: 25.5,6.5 parent: 2 - - uid: 11465 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4662 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.568825,20.850296 + pos: 8.5,4.5 parent: 2 - - uid: 12116 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4663 components: - type: Transform - pos: 37.37405,43.99462 + rot: -1.5707963267948966 rad + pos: 12.5,6.5 parent: 2 - - uid: 13472 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4691 components: - type: Transform - pos: 9.400621,-42.048656 + rot: 3.141592653589793 rad + pos: 18.5,5.5 parent: 2 -- proto: LampInterrogator - entities: - - uid: 8436 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4699 components: - type: Transform - pos: 30.526884,29.884686 + rot: -1.5707963267948966 rad + pos: 27.5,27.5 parent: 2 -- proto: LargeBeaker - entities: - - uid: 5323 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4700 components: - type: Transform - pos: 54.42104,17.661463 + rot: -1.5707963267948966 rad + pos: 27.5,19.5 parent: 2 -- proto: LightReplacer - entities: - - uid: 177 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4701 components: - type: Transform - pos: 5.600267,-3.347455 + pos: 23.5,25.5 parent: 2 -- proto: LiveLetLiveCircuitBoard - entities: - - uid: 13753 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4702 components: - type: Transform - pos: 52.427402,31.435076 + rot: 1.5707963267948966 rad + pos: 25.5,12.5 parent: 2 -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 1458 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4910 components: - type: Transform - pos: 32.5,-31.5 + pos: 14.5,41.5 parent: 2 - - uid: 1459 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4911 components: - type: Transform - pos: 32.5,-32.5 + rot: -1.5707963267948966 rad + pos: 15.5,35.5 parent: 2 -- proto: LockerBoozeFilled - entities: - - uid: 2901 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4990 components: - type: Transform - pos: 67.5,-13.5 + rot: 1.5707963267948966 rad + pos: 22.5,48.5 parent: 2 - - uid: 4439 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4991 components: - type: Transform - pos: 40.5,-10.5 + rot: 1.5707963267948966 rad + pos: 19.5,46.5 parent: 2 -- proto: LockerBotanistFilled - entities: - - uid: 6679 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4992 components: - type: Transform - pos: 44.5,-10.5 + rot: -1.5707963267948966 rad + pos: 35.5,46.5 parent: 2 -- proto: LockerCaptainFilledNoLaser - entities: - - uid: 4137 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4993 components: - type: Transform - pos: 37.5,41.5 + rot: -1.5707963267948966 rad + pos: 32.5,48.5 parent: 2 -- proto: LockerChemistryFilled - entities: - - uid: 9714 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5060 components: - type: Transform - pos: 52.5,-8.5 + pos: 51.5,-4.5 parent: 2 -- proto: LockerChiefEngineerFilled - entities: - - uid: 4138 + - uid: 5062 components: - type: Transform - pos: 10.5,-35.5 + pos: 30.5,30.5 parent: 2 -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 5191 + - uid: 5080 components: - type: Transform - pos: 58.5,-11.5 + pos: 50.5,4.5 parent: 2 -- proto: LockerDetectiveFilled - entities: - - uid: 11476 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5154 components: - type: Transform - pos: 43.5,18.5 + pos: 30.5,2.5 parent: 2 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 882 + - uid: 5164 components: - type: Transform - pos: 28.5,-33.5 + rot: 3.141592653589793 rad + pos: 58.5,-11.5 parent: 2 - - uid: 1760 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5166 components: - type: Transform - pos: 38.5,-14.5 + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 parent: 2 - - uid: 12352 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5167 components: - type: Transform - pos: 4.5,-8.5 + rot: 1.5707963267948966 rad + pos: 55.5,-5.5 parent: 2 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 4904 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5195 components: - type: Transform - pos: 20.5,-32.5 + pos: 40.5,-42.5 parent: 2 - - uid: 4905 + - uid: 5218 components: - type: Transform - pos: 20.5,-31.5 + rot: 3.141592653589793 rad + pos: 46.5,-40.5 parent: 2 - - uid: 5182 + - uid: 5219 components: - type: Transform - pos: 20.5,-30.5 + rot: 3.141592653589793 rad + pos: 38.5,-40.5 parent: 2 -- proto: LockerEvidence - entities: - - uid: 2430 + - uid: 5275 components: - type: Transform - pos: 32.5,28.5 + rot: -1.5707963267948966 rad + pos: 47.5,15.5 parent: 2 - - uid: 5013 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5277 components: - type: Transform - pos: 32.5,21.5 + rot: -1.5707963267948966 rad + pos: 55.5,9.5 parent: 2 - - uid: 5018 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5278 components: - type: Transform - pos: 32.5,17.5 + rot: 3.141592653589793 rad + pos: 49.5,8.5 parent: 2 - - uid: 7980 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5279 components: - type: Transform - pos: -2.5,-5.5 + rot: 1.5707963267948966 rad + pos: 44.5,10.5 parent: 2 - - uid: 9003 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5280 components: - type: Transform - pos: 17.5,29.5 + rot: 1.5707963267948966 rad + pos: 60.5,9.5 parent: 2 -- proto: LockerFreezer - entities: - - uid: 1646 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 5281 components: - type: Transform - pos: 29.5,-12.5 + pos: 62.5,16.5 parent: 2 -- proto: LockerFreezerVaultFilled - entities: - - uid: 7391 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5282 components: - type: Transform - pos: 19.5,39.5 + pos: 68.5,16.5 parent: 2 -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 10278 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5290 components: - type: Transform - pos: 17.5,-5.5 + rot: 3.141592653589793 rad + pos: 71.5,13.5 parent: 2 -- proto: LockerHeadOfSecurityFilledHardsuit - entities: - - uid: 6422 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5432 components: - type: Transform - pos: 43.5,25.5 + pos: 30.5,42.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 545 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedical - entities: - - uid: 10911 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5433 components: - type: Transform - pos: 75.5,-1.5 + rot: 3.141592653589793 rad + pos: 36.5,40.5 parent: 2 -- proto: LockerMedicalFilled - entities: - - uid: 11909 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5766 components: - type: Transform - pos: 70.5,5.5 + pos: 20.5,15.5 parent: 2 - - uid: 11910 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5767 components: - type: Transform - pos: 70.5,6.5 + rot: 3.141592653589793 rad + pos: 20.5,12.5 parent: 2 -- proto: LockerMedicineFilled - entities: - - uid: 4115 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5768 components: - type: Transform - pos: 57.5,-15.5 + pos: 9.5,10.5 parent: 2 - - uid: 5098 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5769 components: - type: Transform - pos: 67.5,-6.5 + pos: 17.5,10.5 parent: 2 - - uid: 5653 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5921 components: - type: Transform - pos: 65.5,4.5 + pos: 40.5,-14.5 parent: 2 - - uid: 6871 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6006 components: - type: Transform - pos: 62.5,4.5 + rot: -1.5707963267948966 rad + pos: 34.5,29.5 parent: 2 - - uid: 6872 + - uid: 6009 components: - type: Transform - pos: 61.5,4.5 + rot: 1.5707963267948966 rad + pos: 25.5,3.5 parent: 2 - - uid: 11402 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6011 components: - type: Transform - pos: 67.5,-11.5 + rot: 3.141592653589793 rad + pos: 48.5,-1.5 parent: 2 - - uid: 11911 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6013 components: - type: Transform - pos: 74.5,5.5 + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 parent: 2 -- proto: LockerParamedicFilled - entities: - - uid: 9618 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6014 components: - type: Transform - pos: 44.5,4.5 + rot: -1.5707963267948966 rad + pos: 12.5,-6.5 parent: 2 -- proto: LockerQuarterMasterFilled - entities: - - uid: 2149 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6027 components: - type: Transform - pos: 11.5,30.5 + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 parent: 2 -- proto: LockerResearchDirectorFilled - entities: - - uid: 10660 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6043 components: - type: Transform - pos: 61.5,11.5 + rot: -1.5707963267948966 rad + pos: 27.5,-8.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 7962 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6068 components: - type: Transform - pos: 9.5,17.5 + pos: 13.5,1.5 parent: 2 - - uid: 7963 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6085 components: - type: Transform - pos: 9.5,18.5 + rot: 3.141592653589793 rad + pos: 7.5,-1.5 parent: 2 -- proto: LockerScienceFilled - entities: - - uid: 5338 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6086 components: - type: Transform - pos: 55.5,22.5 + rot: 3.141592653589793 rad + pos: 10.5,-1.5 parent: 2 - - uid: 5339 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6486 components: - type: Transform - pos: 56.5,22.5 + rot: 1.5707963267948966 rad + pos: 38.5,24.5 parent: 2 - - uid: 12829 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6487 components: - type: Transform - pos: 57.5,25.5 + rot: -1.5707963267948966 rad + pos: 41.5,24.5 parent: 2 -- proto: LockerScientist - entities: - - uid: 5322 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6537 components: - type: Transform - pos: 51.5,21.5 + pos: 56.5,20.5 parent: 2 -- proto: LockerSecurityFilled - entities: - - uid: 2468 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6538 components: - type: Transform - pos: 37.5,17.5 + rot: 3.141592653589793 rad + pos: 52.5,17.5 parent: 2 - - uid: 2469 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6630 components: - type: Transform - pos: 38.5,17.5 + rot: 3.141592653589793 rad + pos: 32.5,-7.5 parent: 2 - - uid: 2470 + - uid: 6652 components: - type: Transform - pos: 39.5,17.5 + rot: -1.5707963267948966 rad + pos: 39.5,-5.5 parent: 2 -- proto: LockerWallMedicalFilled - entities: - - uid: 8323 + - uid: 6653 components: - type: Transform - pos: 46.5,5.5 + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 parent: 2 -- proto: LockerWardenFilledHardsuit - entities: - - uid: 7678 + - uid: 6654 components: - type: Transform - pos: 38.5,23.5 + pos: 31.5,-2.5 parent: 2 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 883 + - uid: 6657 components: - type: Transform - pos: 24.5,-33.5 + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 parent: 2 -- proto: MachineAnomalyGenerator - entities: - - uid: 5363 + - uid: 6660 components: - type: Transform - pos: 70.5,15.5 + rot: -1.5707963267948966 rad + pos: 47.5,-5.5 parent: 2 -- proto: MachineAnomalyVessel - entities: - - uid: 5380 + - uid: 6863 components: - type: Transform - pos: 68.5,16.5 + rot: 3.141592653589793 rad + pos: 12.5,20.5 parent: 2 - - uid: 10080 + - uid: 7034 components: - type: Transform - pos: 67.5,16.5 + pos: 4.5,-11.5 parent: 2 -- proto: MachineAPE - entities: - - uid: 5255 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,13.5 + pos: 37.5,1.5 parent: 2 - - uid: 5272 + - uid: 7295 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 7344 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,13.5 + pos: 10.5,-34.5 parent: 2 -- proto: MachineArtifactAnalyzer - entities: - - uid: 8666 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7364 components: - type: Transform - pos: 64.5,27.5 + rot: -1.5707963267948966 rad + pos: 22.5,-34.5 parent: 2 -- proto: MachineCentrifuge - entities: - - uid: 5074 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7365 components: - type: Transform - pos: 53.5,-5.5 + rot: 3.141592653589793 rad + pos: 15.5,-36.5 parent: 2 -- proto: MachineElectrolysisUnit - entities: - - uid: 5073 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7366 components: - type: Transform - pos: 52.5,-7.5 + rot: 1.5707963267948966 rad + pos: 30.5,-34.5 parent: 2 -- proto: MachineFrame - entities: - - uid: 5731 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7470 components: - type: Transform - pos: 52.5,21.5 + rot: 3.141592653589793 rad + pos: -2.5,-5.5 parent: 2 -- proto: MachineParticleAcceleratorEmitterForeCircuitboard - entities: - - uid: 5610 + - uid: 7527 components: - type: Transform - pos: 19.614614,-38.64791 + pos: 50.5,11.5 parent: 2 -- proto: MachineParticleAcceleratorEmitterPortCircuitboard - entities: - - uid: 11948 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7528 components: - type: Transform - pos: 19.50161,-38.48987 + rot: -1.5707963267948966 rad + pos: 63.5,9.5 parent: 2 -- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard - entities: - - uid: 1466 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 7530 components: - type: Transform - pos: 19.434057,-38.4118 + rot: 3.141592653589793 rad + pos: 59.5,13.5 parent: 2 -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 348 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 7568 components: - type: Transform - pos: 45.548477,23.915247 + rot: 3.141592653589793 rad + pos: 23.5,-32.5 parent: 2 - - uid: 7835 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7569 components: - type: Transform - pos: 45.548477,23.915247 + rot: 3.141592653589793 rad + pos: 29.5,-32.5 parent: 2 -- proto: MaintenanceFluffSpawner - entities: - - uid: 12286 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7570 components: - type: Transform - pos: 80.5,-12.5 + rot: 3.141592653589793 rad + pos: 26.5,-36.5 parent: 2 - - uid: 12842 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7574 components: - type: Transform - pos: 23.5,4.5 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 parent: 2 -- proto: MaintenancePlantSpawner - entities: - - uid: 12855 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7577 components: - type: Transform - pos: 2.5,-8.5 + rot: 3.141592653589793 rad + pos: 54.5,-11.5 parent: 2 - - uid: 12856 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7579 components: - type: Transform - pos: 54.5,-20.5 + rot: 3.141592653589793 rad + pos: 65.5,-6.5 parent: 2 - - uid: 12857 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7581 components: - type: Transform - pos: 71.5,34.5 + rot: 1.5707963267948966 rad + pos: 68.5,6.5 parent: 2 -- proto: MaintenanceToolSpawner - entities: - - uid: 12284 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7591 components: - type: Transform - pos: 4.5,-23.5 + rot: 3.141592653589793 rad + pos: 74.5,1.5 parent: 2 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 12285 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7595 components: - type: Transform - pos: 74.5,-12.5 + rot: 3.141592653589793 rad + pos: 56.5,13.5 parent: 2 -- proto: MaterialCloth - entities: - - uid: 10295 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7683 components: - type: Transform - pos: 18.45301,-3.204442 + rot: 3.141592653589793 rad + pos: 32.5,13.5 parent: 2 -- proto: MaterialDurathread - entities: - - uid: 10296 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7684 components: - type: Transform - pos: 18.624886,-3.516942 + pos: 37.5,15.5 parent: 2 -- proto: MaterialWoodPlank - entities: - - uid: 2898 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7688 components: - type: Transform - pos: 65.69583,-13.395477 + pos: 50.5,21.5 parent: 2 - - uid: 2899 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7720 components: - type: Transform - pos: 65.43021,-13.629852 + rot: 3.141592653589793 rad + pos: 50.5,17.5 parent: 2 -- proto: MechEquipmentGrabberSmall - entities: - - uid: 13763 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7726 components: - type: Transform - pos: 8.491839,32.52443 + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 parent: 2 -- proto: MedicalBed - entities: - - uid: 4978 + - uid: 7768 components: - type: Transform - pos: 81.5,-1.5 + rot: 1.5707963267948966 rad + pos: 17.5,40.5 parent: 2 - - uid: 7800 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7813 components: - type: Transform - pos: 81.5,-0.5 + pos: 19.5,-2.5 parent: 2 - - uid: 10902 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7815 components: - type: Transform - pos: 76.5,-6.5 + pos: 14.5,25.5 parent: 2 - - uid: 10903 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7816 components: - type: Transform - pos: 77.5,-8.5 + pos: -20.5,0.5 parent: 2 - - uid: 11304 + - uid: 7831 components: - type: Transform - pos: 62.5,-10.5 + rot: 1.5707963267948966 rad + pos: 17.5,31.5 parent: 2 - - uid: 11820 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7832 components: - type: Transform - pos: 66.5,4.5 + rot: 3.141592653589793 rad + pos: 23.5,29.5 parent: 2 - - uid: 11821 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7840 components: - type: Transform - pos: 60.5,4.5 + rot: 1.5707963267948966 rad + pos: 6.5,25.5 parent: 2 -- proto: MedicalTechFab - entities: - - uid: 9369 + - uid: 7850 components: - type: Transform - pos: 71.5,8.5 + pos: 20.5,37.5 parent: 2 -- proto: MedkitAdvancedFilled - entities: - - uid: 11919 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7851 components: - type: Transform - pos: 56.50263,-10.253292 + pos: 25.5,37.5 parent: 2 -- proto: MedkitBruteFilled - entities: - - uid: 11915 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7857 components: - type: Transform - pos: 72.38061,6.2433724 + pos: 34.5,43.5 parent: 2 -- proto: MedkitBurnFilled - entities: - - uid: 11914 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7958 components: - type: Transform - pos: 72.61498,6.4464974 + pos: -0.5,0.5 parent: 2 -- proto: MedkitCombatFilled - entities: - - uid: 11920 + - uid: 7959 components: - type: Transform - pos: 63.555206,-11.384237 + rot: 1.5707963267948966 rad + pos: 3.5,9.5 parent: 2 -- proto: MedkitFilled - entities: - - uid: 4140 + - uid: 7960 components: - type: Transform - pos: 69.457695,-7.378622 + rot: 1.5707963267948966 rad + pos: 3.5,13.5 parent: 2 - - uid: 4996 + - uid: 8129 components: - type: Transform - pos: 32.5,48.5 + pos: 37.5,-22.5 parent: 2 - - uid: 7390 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8130 components: - type: Transform - pos: 18.523928,24.634445 + rot: 1.5707963267948966 rad + pos: 29.5,-26.5 parent: 2 - - uid: 9625 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8157 components: - type: Transform - pos: 46.54082,2.560578 + pos: -14.5,0.5 parent: 2 - - uid: 11307 + - uid: 8266 components: - type: Transform - pos: 72.38061,6.5246224 + rot: 3.141592653589793 rad + pos: 55.5,22.5 parent: 2 - - uid: 11908 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8335 components: - type: Transform - pos: 57.486534,-3.4860651 + pos: 20.5,-14.5 parent: 2 -- proto: MedkitOxygenFilled - entities: - - uid: 11916 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8336 components: - type: Transform - pos: 72.61498,6.0402474 + rot: -1.5707963267948966 rad + pos: 23.5,-19.5 parent: 2 -- proto: MedkitRadiationFilled - entities: - - uid: 11917 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8339 components: - type: Transform - pos: 72.34936,5.8058724 + rot: 1.5707963267948966 rad + pos: 25.5,-22.5 parent: 2 -- proto: MedkitToxinFilled - entities: - - uid: 11918 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8530 components: - type: Transform - pos: 72.61498,5.5714974 + rot: -1.5707963267948966 rad + pos: 26.5,-39.5 parent: 2 -- proto: MicrophoneInstrument - entities: - - uid: 9739 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8567 components: - type: Transform - pos: 19.519224,-9.931319 + rot: -1.5707963267948966 rad + pos: 42.5,11.5 parent: 2 -- proto: MinimoogInstrument - entities: - - uid: 12692 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8568 components: - type: Transform rot: -1.5707963267948966 rad - pos: 106.5,-17.5 + pos: 42.5,3.5 parent: 2 -- proto: Mirror - entities: - - uid: 9 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8573 components: - type: Transform - pos: 10.5,14.5 + pos: 39.5,19.5 parent: 2 - - uid: 27 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8574 components: - type: Transform - pos: 40.5,36.5 + rot: 3.141592653589793 rad + pos: 33.5,17.5 parent: 2 - - uid: 1532 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8642 components: - type: Transform - pos: 11.5,14.5 + pos: 79.5,-3.5 parent: 2 - - uid: 11907 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9061 components: - type: Transform - pos: 76.5,8.5 + rot: 1.5707963267948966 rad + pos: 105.5,-23.5 parent: 2 -- proto: MopBucket - entities: - - uid: 13116 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9062 components: - type: Transform - pos: 5.687049,-5.5586905 + rot: 1.5707963267948966 rad + pos: 105.5,-11.5 parent: 2 -- proto: MopItem - entities: - - uid: 13119 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9063 components: - type: Transform - pos: 5.5737967,-5.4805655 + pos: 111.5,-15.5 parent: 2 -- proto: Morgue - entities: - - uid: 1012 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-8.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,27.5 + parent: 2 + - uid: 10451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-5.5 + rot: -1.5707963267948966 rad + pos: 64.5,22.5 parent: 2 - - uid: 2119 + - uid: 10708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-1.5 + rot: 3.141592653589793 rad + pos: 70.5,1.5 parent: 2 - - uid: 4215 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-2.5 + pos: 19.5,-40.5 parent: 2 - - uid: 4314 + - uid: 11118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-3.5 + rot: -1.5707963267948966 rad + pos: 57.5,-14.5 parent: 2 - - uid: 4315 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-0.5 + pos: 14.5,41.5 parent: 2 - - uid: 4316 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-1.5 + rot: 3.141592653589793 rad + pos: 41.5,-1.5 parent: 2 - - uid: 4317 + - uid: 11791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-2.5 + pos: 14.5,-23.5 parent: 2 - - uid: 5122 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-3.5 + rot: 1.5707963267948966 rad + pos: 60.5,-10.5 parent: 2 - - uid: 9727 + - uid: 11856 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,5.5 + pos: 63.5,-10.5 parent: 2 - - uid: 9728 + - uid: 11857 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,4.5 + pos: 62.5,-6.5 parent: 2 - - uid: 12767 + - uid: 11859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-4.5 + pos: 60.5,4.5 parent: 2 - - uid: 13495 + - uid: 11862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-3.5 + pos: 63.5,4.5 parent: 2 - - uid: 13496 + - uid: 11864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-4.5 + pos: 66.5,4.5 parent: 2 -- proto: MouseTimedSpawner - entities: - - uid: 12800 + - uid: 11865 components: - type: Transform - pos: 4.5,-29.5 + rot: 1.5707963267948966 rad + pos: 70.5,7.5 parent: 2 -- proto: Multitool - entities: - - uid: 4976 + - uid: 11869 components: - type: Transform - pos: 19.486778,46.604305 + pos: 77.5,5.5 parent: 2 - - uid: 5872 + - uid: 11870 components: - type: Transform - pos: 31.020313,-14.418215 + pos: 55.5,3.5 parent: 2 - - uid: 7451 + - uid: 11906 components: - type: Transform - pos: 17.945803,24.61882 + rot: -1.5707963267948966 rad + pos: 74.5,6.5 parent: 2 - - uid: 10792 + - uid: 12977 components: - type: Transform - pos: 69.28111,-15.352209 + rot: 3.141592653589793 rad + pos: 40.5,-48.5 parent: 2 -- proto: NetworkConfigurator - entities: - - uid: 909 + - uid: 12978 components: - type: Transform - pos: 27.306864,-29.442156 + rot: 3.141592653589793 rad + pos: 35.5,-48.5 parent: 2 - - uid: 8340 + - uid: 13321 components: - type: Transform - pos: 21.44037,46.69382 + rot: -1.5707963267948966 rad + pos: -5.5,-17.5 parent: 2 -- proto: NitrogenCanister - entities: - - uid: 1928 + - uid: 13434 components: - type: Transform - pos: 50.5,-23.5 + rot: -1.5707963267948966 rad + pos: 46.5,-28.5 parent: 2 - - uid: 4306 + - uid: 13604 components: - type: Transform - pos: 43.5,-37.5 + rot: 1.5707963267948966 rad + pos: 53.5,37.5 parent: 2 - - uid: 4311 + - uid: 13683 components: - type: Transform - pos: 43.5,-38.5 + pos: 19.5,24.5 parent: 2 - - uid: 4571 + - uid: 13961 components: - type: Transform - pos: 32.5,-27.5 + rot: 1.5707963267948966 rad + pos: -24.5,-15.5 parent: 2 - - uid: 5746 + - uid: 13962 components: - type: Transform - pos: 49.5,-13.5 + rot: 1.5707963267948966 rad + pos: -24.5,-10.5 parent: 2 - - uid: 10442 + - uid: 13964 components: - type: Transform - pos: 58.5,11.5 + rot: 1.5707963267948966 rad + pos: -24.5,-3.5 parent: 2 -- proto: NitrousOxideCanister - entities: - - uid: 4334 + - uid: 13965 components: - type: Transform - pos: 44.5,-37.5 + rot: -1.5707963267948966 rad + pos: -22.5,-20.5 parent: 2 -- proto: NTDefaultCircuitBoard - entities: - - uid: 13754 + - uid: 14151 components: - type: Transform - pos: 52.427402,31.3257 + rot: 1.5707963267948966 rad + pos: 71.5,22.5 parent: 2 -- proto: NuclearBomb - entities: - - uid: 12093 + - uid: 14412 components: - type: Transform - pos: 18.5,42.5 + rot: 3.141592653589793 rad + pos: 80.5,29.5 parent: 2 -- proto: NutimovCircuitBoard - entities: - - uid: 13755 + - uid: 14527 components: - type: Transform - pos: 52.427402,31.23195 + rot: -1.5707963267948966 rad + pos: 96.5,30.5 parent: 2 -- proto: OperatingTable - entities: - - uid: 24 + - uid: 14528 components: - type: Transform - pos: 65.5,-4.5 + rot: 3.141592653589793 rad + pos: 91.5,28.5 parent: 2 - - uid: 5085 + - uid: 14529 components: - type: Transform - pos: 56.5,-14.5 + pos: 91.5,32.5 parent: 2 - - uid: 5186 + - uid: 14594 components: - type: Transform - pos: 74.5,-2.5 + rot: -1.5707963267948966 rad + pos: 36.5,26.5 parent: 2 - - uid: 11399 +- proto: PoweredlightExterior + entities: + - uid: 5664 components: - type: Transform - pos: 66.5,-10.5 - parent: 2 - - uid: 12109 + anchored: False + rot: -1.5707963267948966 rad + pos: 11.9375,38.984375 + parent: 126 + - uid: 14590 components: - type: Transform - pos: 55.5,9.5 + rot: 1.5707963267948966 rad + pos: 47.5,42.5 parent: 2 -- proto: OreBox - entities: - - uid: 13731 + - uid: 14595 components: - type: Transform - pos: -17.5,17.5 + rot: -1.5707963267948966 rad + pos: 82.5,25.5 parent: 2 - - uid: 13764 + - uid: 14597 components: - type: Transform - pos: 8.5,15.5 + rot: -1.5707963267948966 rad + pos: 77.5,35.5 parent: 2 -- proto: OreProcessor - entities: - - uid: 12839 + - uid: 14627 components: - type: Transform - pos: 9.5,20.5 + rot: -1.5707963267948966 rad + pos: 64.5,42.5 parent: 2 -- proto: OxygenCanister +- proto: PoweredlightLED entities: - - uid: 945 + - uid: 10984 components: - type: Transform - pos: 42.5,-38.5 + rot: 3.141592653589793 rad + pos: 85.5,28.5 parent: 2 - - uid: 1467 + - uid: 10985 components: - type: Transform - pos: 50.5,-25.5 + pos: 85.5,32.5 parent: 2 - - uid: 2833 + - uid: 11109 components: - type: Transform - pos: 42.5,-37.5 + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 parent: 2 - - uid: 4570 +- proto: PoweredlightSodium + entities: + - uid: 3197 components: - type: Transform - pos: 32.5,-28.5 + rot: 1.5707963267948966 rad + pos: 13.5,-51.5 parent: 2 - - uid: 5745 + - uid: 4270 components: - type: Transform - pos: 50.5,-13.5 + pos: 18.5,-45.5 parent: 2 - - uid: 6424 + - uid: 4271 components: - type: Transform - pos: 46.5,7.5 + pos: 24.5,-45.5 parent: 2 - - uid: 7969 + - uid: 8032 components: - type: Transform - pos: 5.5,19.5 + rot: -1.5707963267948966 rad + pos: 29.5,-51.5 parent: 2 - - uid: 9620 +- proto: PoweredSmallLight + entities: + - uid: 21 components: - type: Transform - pos: 47.5,2.5 + rot: 3.141592653589793 rad + pos: -20.5,-16.5 parent: 2 - - uid: 10314 + - uid: 196 components: - type: Transform - pos: 8.5,-5.5 + rot: 3.141592653589793 rad + pos: 4.5,-16.5 parent: 2 - - uid: 10441 + - uid: 317 components: - type: Transform - pos: 58.5,10.5 + rot: -1.5707963267948966 rad + pos: 13.5,4.5 parent: 2 - - uid: 12997 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 344 components: - type: Transform - pos: 34.5,-44.5 + rot: 1.5707963267948966 rad + pos: 8.5,16.5 parent: 2 -- proto: OxygenTankFilled - entities: - - uid: 5720 + - uid: 583 components: - type: Transform - pos: 73.5,-12.5 + pos: 0.5,-9.5 parent: 2 - - uid: 5734 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 608 components: - type: Transform - pos: 72.5,-9.5 + pos: -8.5,-9.5 parent: 2 - - uid: 10847 + - uid: 693 components: - type: Transform - pos: 45.502346,27.566444 + rot: 3.141592653589793 rad + pos: -8.5,-16.5 parent: 2 -- proto: PaintingMonkey - entities: - - uid: 5783 + - uid: 1811 components: - type: Transform - pos: 37.485016,-2.1577168 + rot: 3.141592653589793 rad + pos: 10.5,12.5 parent: 2 -- proto: PaintingMoony - entities: - - uid: 12334 + - uid: 2005 components: - type: Transform - pos: 28.5,6.5 + rot: -1.5707963267948966 rad + pos: 9.5,19.5 parent: 2 -- proto: PaintingOlympia - entities: - - uid: 1195 + - uid: 2149 components: - type: Transform - pos: 35.5,42.5 + rot: 3.141592653589793 rad + pos: 5.5,15.5 parent: 2 -- proto: PaintingSadClown - entities: - - uid: 12832 + - uid: 2424 components: - type: Transform - pos: 28.5,8.5 + rot: 3.141592653589793 rad + pos: 30.5,23.5 parent: 2 -- proto: PaladinCircuitBoard - entities: - - uid: 13757 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2425 components: - type: Transform - pos: 52.427402,31.028826 + pos: 30.5,21.5 parent: 2 -- proto: PaperBin10 - entities: - - uid: 1483 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2426 components: - type: Transform - pos: 8.5,4.5 + rot: 3.141592653589793 rad + pos: 30.5,17.5 parent: 2 -- proto: PaperBin5 - entities: - - uid: 6913 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2482 components: - type: Transform - pos: 43.5,19.5 + pos: 42.5,20.5 parent: 2 -- proto: ParticleAcceleratorControlBoxUnfinished - entities: - - uid: 4800 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2491 components: - type: Transform - pos: 20.5,-40.5 + rot: 1.5707963267948966 rad + pos: 69.5,-12.5 parent: 2 -- proto: ParticleAcceleratorEmitterForeUnfinished - entities: - - uid: 4147 + - uid: 2492 components: - type: Transform - pos: 21.5,-42.5 + rot: 3.141592653589793 rad + pos: 73.5,-3.5 parent: 2 -- proto: ParticleAcceleratorEmitterPortUnfinished - entities: - - uid: 4144 + - uid: 2534 components: - type: Transform - pos: 22.5,-42.5 + pos: 37.5,9.5 parent: 2 -- proto: ParticleAcceleratorEmitterStarboardUnfinished - entities: - - uid: 4143 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2535 components: - type: Transform - pos: 20.5,-42.5 + pos: 30.5,8.5 parent: 2 -- proto: ParticleAcceleratorEndCapUnfinished - entities: - - uid: 4145 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2536 components: - type: Transform - pos: 21.5,-39.5 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 parent: 2 -- proto: ParticleAcceleratorFuelChamberUnfinished - entities: - - uid: 4148 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2537 components: - type: Transform - pos: 21.5,-40.5 + rot: -1.5707963267948966 rad + pos: 32.5,7.5 parent: 2 -- proto: ParticleAcceleratorPowerBoxUnfinished - entities: - - uid: 4142 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2539 components: - type: Transform - pos: 21.5,-41.5 + rot: 1.5707963267948966 rad + pos: 34.5,9.5 parent: 2 -- proto: PartRodMetal - entities: - - uid: 2896 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2919 components: - type: Transform - pos: 65.52396,-13.395477 + pos: 64.5,-15.5 parent: 2 - - uid: 2897 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2965 components: - type: Transform - pos: 65.85208,-13.442352 + rot: 1.5707963267948966 rad + pos: 4.5,39.5 parent: 2 - - uid: 5641 + - uid: 3147 components: - type: Transform - pos: 17.877897,-26.451574 + pos: 59.5,38.5 parent: 2 - - uid: 5642 + - uid: 3148 components: - type: Transform - pos: 17.877897,-26.451574 + rot: 3.141592653589793 rad + pos: 59.5,34.5 parent: 2 - - uid: 11126 + - uid: 3278 components: - type: Transform - pos: 54.520523,-14.325092 + pos: 49.5,35.5 parent: 2 - - uid: 13701 + - uid: 3410 components: - type: Transform - pos: 9.65173,15.441351 + pos: 70.5,34.5 parent: 2 - - uid: 13702 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3432 components: - type: Transform - pos: 9.65173,15.441351 + rot: -1.5707963267948966 rad + pos: 71.5,30.5 parent: 2 - - uid: 13703 + - uid: 3447 components: - type: Transform - pos: 9.65173,15.441351 + rot: 3.141592653589793 rad + pos: 70.5,27.5 parent: 2 - - uid: 13704 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4034 components: - type: Transform - pos: 9.65173,15.441351 + rot: -1.5707963267948966 rad + pos: 40.5,-9.5 parent: 2 - - uid: 13705 + - uid: 4071 components: - type: Transform - pos: 9.65173,15.441351 + rot: 3.141592653589793 rad + pos: 16.5,-14.5 parent: 2 -- proto: Pen - entities: - - uid: 137 + - uid: 4149 components: - type: Transform - pos: -2.0928464,-12.376232 + rot: -1.5707963267948966 rad + pos: 72.5,-8.5 parent: 2 - - uid: 312 + - uid: 4403 components: - type: Transform - pos: 11.095052,4.613485 + rot: 3.141592653589793 rad + pos: 46.5,27.5 parent: 2 - - uid: 7415 + - uid: 4438 components: - type: Transform - pos: 23.446625,15.655876 + rot: -1.5707963267948966 rad + pos: 4.5,-35.5 parent: 2 - - uid: 11973 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4470 components: - type: Transform - pos: 55.38082,-10.156126 + pos: 2.5,-28.5 parent: 2 - - uid: 11975 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4471 components: - type: Transform - pos: 18.920185,-2.2376757 + rot: 3.141592653589793 rad + pos: 2.5,-32.5 parent: 2 - - uid: 11976 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4474 components: - type: Transform - pos: -2.4757,-12.360289 + pos: 8.5,-15.5 parent: 2 - - uid: 11977 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4475 components: - type: Transform - pos: 10.85696,4.4728694 + pos: 9.5,-22.5 parent: 2 - - uid: 11978 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4476 components: - type: Transform - pos: 21.523584,22.514828 + pos: 16.5,-21.5 parent: 2 - - uid: 11979 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4478 components: - type: Transform - pos: 44.764744,23.837742 + rot: 3.141592653589793 rad + pos: 13.5,-13.5 parent: 2 - - uid: 11980 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4479 components: - type: Transform - pos: 63.3999,10.027362 + rot: 3.141592653589793 rad + pos: 23.5,-7.5 parent: 2 -- proto: PersonalAI - entities: - - uid: 7414 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4539 components: - type: Transform - pos: 23.509125,15.577751 + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 parent: 2 - - uid: 11216 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4540 components: - type: Transform - pos: 26.514572,47.589886 + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 parent: 2 - - uid: 11217 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4563 components: - type: Transform - pos: 70.51922,36.549946 + rot: -1.5707963267948966 rad + pos: 15.5,5.5 parent: 2 -- proto: PhoneInstrument - entities: - - uid: 7008 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4564 components: - type: Transform - pos: 34.02968,41.62158 + rot: -1.5707963267948966 rad + pos: 23.5,9.5 parent: 2 -- proto: PianoInstrument - entities: - - uid: 1663 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4582 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-7.5 + pos: 18.5,-31.5 parent: 2 -- proto: Pickaxe - entities: - - uid: 8255 + - uid: 4583 components: - type: Transform - pos: 9.562899,15.659067 + rot: 1.5707963267948966 rad + pos: 34.5,-31.5 parent: 2 -- proto: PlantBGoneSpray - entities: - - uid: 6754 + - uid: 4584 components: - type: Transform - pos: 45.80647,-6.7391644 + rot: 1.5707963267948966 rad + pos: 25.5,-29.5 parent: 2 -- proto: PlaqueAtmos - entities: - - uid: 4576 + - uid: 4637 components: - type: Transform - pos: 29.5,-25.5 + rot: 3.141592653589793 rad + pos: 11.5,33.5 parent: 2 -- proto: PlasmaCanister - entities: - - uid: 1678 + - uid: 4813 components: - type: Transform - pos: 50.5,-31.5 + rot: 1.5707963267948966 rad + pos: 8.5,12.5 parent: 2 - - uid: 12995 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4814 components: - type: Transform - pos: 44.5,-38.5 + rot: 1.5707963267948966 rad + pos: 8.5,13.5 parent: 2 - - uid: 12996 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4909 components: - type: Transform - pos: 34.5,-43.5 + pos: 19.5,27.5 parent: 2 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 2092 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5119 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,-6.5 + pos: 67.5,-8.5 parent: 2 - - uid: 5245 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-7.5 + rot: 3.141592653589793 rad + pos: 36.5,-36.5 parent: 2 - - uid: 7722 + - uid: 5264 components: - type: Transform - pos: 28.5,25.5 + pos: 50.5,15.5 parent: 2 - - uid: 7753 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5274 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,30.5 + pos: 49.5,24.5 parent: 2 - - uid: 7754 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,28.5 + pos: 70.5,40.5 parent: 2 - - uid: 7755 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5465 components: - type: Transform - pos: 31.5,25.5 + pos: 70.5,37.5 parent: 2 - - uid: 7756 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,26.5 + pos: 34.5,-38.5 parent: 2 - - uid: 7759 + - uid: 5674 components: - type: Transform - pos: 29.5,25.5 + pos: 68.5,42.5 parent: 2 - - uid: 7760 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5675 components: - type: Transform - pos: 30.5,25.5 + rot: 1.5707963267948966 rad + pos: 66.5,38.5 parent: 2 - - uid: 7794 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5676 components: - type: Transform - pos: 81.5,-2.5 + pos: 67.5,29.5 parent: 2 - - uid: 10120 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5723 components: - type: Transform - pos: 76.5,-5.5 + pos: 73.5,-12.5 parent: 2 - - uid: 12081 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,20.5 + parent: 2 + - uid: 6492 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,9.5 + pos: 19.5,-10.5 parent: 2 - - uid: 12107 + - uid: 6496 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,11.5 + pos: 19.5,-12.5 parent: 2 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 368 + - uid: 6505 components: - type: Transform - pos: 6.5,27.5 + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 parent: 2 - - uid: 371 + - uid: 6511 components: - type: Transform - pos: 4.5,23.5 + rot: 1.5707963267948966 rad + pos: 19.5,-11.5 parent: 2 - - uid: 482 + - uid: 6659 components: - type: Transform - pos: 3.5,-17.5 + rot: 3.141592653589793 rad + pos: 30.5,-12.5 parent: 2 - - uid: 483 + - uid: 6661 components: - type: Transform - pos: 3.5,-14.5 + rot: 3.141592653589793 rad + pos: 43.5,-10.5 parent: 2 - - uid: 484 + - uid: 6748 components: - type: Transform - pos: 4.5,-14.5 + rot: 1.5707963267948966 rad + pos: 46.5,-9.5 parent: 2 - - uid: 5874 + - uid: 6820 components: - type: Transform - pos: -0.5,-27.5 + pos: 8.5,34.5 parent: 2 - - uid: 7460 + - uid: 6858 components: - type: Transform - pos: 6.5,23.5 + pos: 67.5,-13.5 parent: 2 - - uid: 7461 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7342 components: - type: Transform - pos: 4.5,27.5 + rot: 1.5707963267948966 rad + pos: 9.5,-27.5 parent: 2 - - uid: 7668 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7417 components: - type: Transform - pos: 6.5,15.5 + rot: -1.5707963267948966 rad + pos: 78.5,-0.5 parent: 2 - - uid: 7852 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7675 components: - type: Transform - pos: 4.5,15.5 + rot: 1.5707963267948966 rad + pos: 14.5,16.5 parent: 2 -- proto: PlayerStationAi - entities: - - uid: 13752 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7676 components: - type: Transform - pos: 56.5,35.5 + rot: 1.5707963267948966 rad + pos: 14.5,12.5 parent: 2 -- proto: Plunger - entities: - - uid: 9718 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7715 components: - type: Transform - pos: 10.992045,13.876669 + pos: 21.5,18.5 parent: 2 - - uid: 9719 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7819 components: - type: Transform - pos: 6.0254927,-3.2604024 + rot: 3.141592653589793 rad + pos: 56.5,47.5 parent: 2 -- proto: PlushieNar - entities: - - uid: 5400 + - uid: 7828 components: - type: Transform - pos: 62.48992,18.519245 + rot: -1.5707963267948966 rad + pos: 75.5,11.5 parent: 2 -- proto: PlushieSharkGrey - entities: - - uid: 5727 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7829 components: - type: Transform - pos: 25.597736,6.3236885 + rot: 1.5707963267948966 rad + pos: 65.5,7.5 parent: 2 -- proto: PlushieSharkPink - entities: - - uid: 13077 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7830 components: - type: Transform - pos: 6.6388106,-13.475947 + pos: 12.5,18.5 parent: 2 -- proto: PortableFlasher - entities: - - uid: 8412 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7861 components: - type: Transform - pos: 31.5,26.5 + pos: 75.5,-15.5 parent: 2 -- proto: PortableGeneratorJrPacman - entities: - - uid: 801 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7862 components: - type: Transform - pos: 13.5,-28.5 + pos: 87.5,-14.5 parent: 2 - - uid: 4181 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7863 components: - type: Transform - pos: 70.5,-7.5 + pos: 86.5,-2.5 parent: 2 - - uid: 5741 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7864 components: - type: Transform - pos: 12.5,17.5 + rot: -1.5707963267948966 rad + pos: 87.5,-9.5 parent: 2 - - uid: 7854 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7865 components: - type: Transform - pos: 23.5,-7.5 + rot: -1.5707963267948966 rad + pos: 84.5,5.5 parent: 2 - - uid: 7855 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7866 components: - type: Transform - pos: 6.5,-9.5 + pos: 81.5,12.5 parent: 2 - - uid: 11881 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7903 components: - type: Transform - pos: 23.5,5.5 + pos: -20.5,-9.5 parent: 2 - - uid: 12360 + - uid: 8081 components: - type: Transform - pos: 9.5,-22.5 + rot: -1.5707963267948966 rad + pos: 5.5,35.5 parent: 2 - - uid: 12362 + - uid: 8376 components: - type: Transform - pos: 67.5,11.5 + pos: 58.5,32.5 parent: 2 - - uid: 13153 + - uid: 8527 components: - type: Transform - pos: 57.5,5.5 + rot: 3.141592653589793 rad + pos: 18.5,-18.5 parent: 2 - - uid: 13154 + - uid: 8528 components: - type: Transform - pos: 45.5,41.5 + rot: 1.5707963267948966 rad + pos: 13.5,-42.5 parent: 2 -- proto: PortableGeneratorPacman - entities: - - uid: 4301 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8529 components: - type: Transform - pos: 9.5,-31.5 + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 parent: 2 -- proto: PortableScrubber - entities: - - uid: 4977 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8565 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 6765 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8566 components: - type: Transform - pos: 46.5,-40.5 + pos: 56.5,6.5 parent: 2 - - uid: 7807 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8571 components: - type: Transform - pos: 24.5,-23.5 + rot: 1.5707963267948966 rad + pos: 38.5,28.5 parent: 2 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 5294 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8572 components: - type: Transform - pos: 30.5,-22.5 + rot: -1.5707963267948966 rad + pos: 41.5,28.5 parent: 2 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 13105 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8601 components: - type: Transform - pos: 10.5,16.5 + rot: -1.5707963267948966 rad + pos: 58.5,12.5 parent: 2 -- proto: PosterContrabandClown - entities: - - uid: 11021 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8602 components: - type: Transform - pos: 27.5,4.5 + rot: -1.5707963267948966 rad + pos: 58.5,8.5 parent: 2 -- proto: PosterContrabandDonk - entities: - - uid: 13090 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8603 components: - type: Transform - pos: 58.5,-16.5 + rot: 3.141592653589793 rad + pos: 71.5,44.5 parent: 2 -- proto: PosterContrabandEAT - entities: - - uid: 6763 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8609 components: - type: Transform - pos: 30.5,-8.5 + pos: 30.5,26.5 parent: 2 -- proto: PosterContrabandGreyTide - entities: - - uid: 739 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8639 components: - type: Transform - pos: 30.5,-18.5 + pos: 81.5,-0.5 parent: 2 -- proto: PosterContrabandHackingGuide - entities: - - uid: 8671 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8640 components: - type: Transform - pos: 31.5,-13.5 + rot: 3.141592653589793 rad + pos: 76.5,-8.5 parent: 2 -- proto: PosterContrabandHaveaPuff - entities: - - uid: 13100 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8641 components: - type: Transform - pos: 44.5,-8.5 + rot: -1.5707963267948966 rad + pos: 82.5,-6.5 parent: 2 -- proto: PosterContrabandMissingGloves - entities: - - uid: 11068 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8833 components: - type: Transform - pos: 34.5,-18.5 + rot: 3.141592653589793 rad + pos: 34.5,3.5 parent: 2 -- proto: PosterContrabandMoth - entities: - - uid: 13102 + - uid: 8844 components: - type: Transform - pos: 77.5,-14.5 + rot: 1.5707963267948966 rad + pos: 102.5,-12.5 parent: 2 -- proto: PosterContrabandRedRum - entities: - - uid: 7286 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9365 components: - type: Transform - pos: 40.5,-2.5 + rot: 1.5707963267948966 rad + pos: 77.5,9.5 parent: 2 -- proto: PosterContrabandWaffleCorp - entities: - - uid: 13091 + - uid: 10707 components: - type: Transform - pos: 42.5,27.5 + rot: 3.141592653589793 rad + pos: 80.5,1.5 parent: 2 -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 11289 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10710 components: - type: Transform - pos: 56.5,21.5 + pos: 100.5,-19.5 parent: 2 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 12830 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11018 components: - type: Transform - pos: 60.5,5.5 + pos: 69.5,23.5 parent: 2 -- proto: PosterLegitCarpMount - entities: - - uid: 12833 + - uid: 11097 components: - type: Transform - pos: 17.5,25.5 + pos: 30.5,-19.5 parent: 2 -- proto: PosterLegitCleanliness - entities: - - uid: 11818 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 + pos: 39.5,-19.5 parent: 2 -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 7287 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11099 components: - type: Transform - pos: 28.5,-7.5 + pos: 46.5,-18.5 parent: 2 -- proto: PosterLegitDickGumshue - entities: - - uid: 13089 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11100 components: - type: Transform - pos: 68.5,-14.5 + pos: 44.5,25.5 parent: 2 -- proto: PosterLegitEnlist - entities: - - uid: 13104 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11438 components: - type: Transform - pos: 42.5,26.5 + rot: 3.141592653589793 rad + pos: 38.5,3.5 parent: 2 -- proto: PosterLegitFoamForceAd - entities: - - uid: 11022 + - uid: 11522 components: - type: Transform - pos: 20.5,16.5 + pos: 70.5,-15.5 parent: 2 -- proto: PosterLegitFruitBowl - entities: - - uid: 13101 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11805 components: - type: Transform - pos: 41.5,-9.5 + rot: -1.5707963267948966 rad + pos: 50.5,-11.5 parent: 2 -- proto: PosterLegitHighClassMartini - entities: - - uid: 13099 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11807 components: - type: Transform - pos: 38.5,-1.5 + rot: -1.5707963267948966 rad + pos: 52.5,-14.5 parent: 2 -- proto: PosterLegitIan - entities: - - uid: 10251 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11823 + components: + - type: Transform + pos: 89.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11824 components: - type: Transform - pos: 17.5,-6.5 + pos: 85.5,-20.5 parent: 2 -- proto: PosterLegitIonRifle - entities: - - uid: 13103 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11825 components: - type: Transform - pos: 42.5,28.5 + pos: 92.5,-19.5 parent: 2 -- proto: PosterLegitLoveIan - entities: - - uid: 10252 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11845 components: - type: Transform - pos: 21.5,-3.5 + pos: 64.5,-1.5 parent: 2 -- proto: PosterLegitMime - entities: - - uid: 12831 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11846 components: - type: Transform - pos: 24.5,5.5 + pos: 67.5,-1.5 parent: 2 -- proto: PosterLegitNanomichiAd - entities: - - uid: 12320 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12283 components: - type: Transform - pos: 13.5,-4.5 + pos: 12.5,31.5 parent: 2 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 404 + - uid: 12354 components: - type: Transform - pos: 29.5,37.5 + rot: 3.141592653589793 rad + pos: 5.5,-9.5 parent: 2 - - uid: 7464 + - uid: 12355 components: - type: Transform - pos: 17.5,-1.5 + rot: -1.5707963267948966 rad + pos: 16.5,-13.5 parent: 2 - - uid: 8157 + - uid: 12841 components: - type: Transform - pos: -21.5,-11.5 + rot: 3.141592653589793 rad + pos: 36.5,3.5 parent: 2 - - uid: 8158 + - uid: 12980 components: - type: Transform - pos: -10.5,-11.5 + rot: 3.141592653589793 rad + pos: 49.5,-48.5 parent: 2 - - uid: 8159 + - uid: 12981 components: - type: Transform - pos: -7.5,0.5 + pos: 46.5,-44.5 parent: 2 - - uid: 11092 + - uid: 12991 components: - type: Transform - pos: 17.5,38.5 + rot: 1.5707963267948966 rad + pos: 31.5,-47.5 parent: 2 - - uid: 11854 + - uid: 13330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 + rot: 3.141592653589793 rad + pos: -26.5,-22.5 parent: 2 - - uid: 12318 + - uid: 13331 components: - type: Transform - pos: 29.5,43.5 + pos: -26.5,0.5 parent: 2 - - uid: 12319 + - uid: 13569 components: - type: Transform - pos: 20.5,47.5 + rot: 1.5707963267948966 rad + pos: 45.5,37.5 parent: 2 -- proto: PosterLegitNTTGC - entities: - - uid: 13097 + - uid: 13598 components: - type: Transform - pos: 13.5,8.5 + rot: 3.141592653589793 rad + pos: 58.5,40.5 parent: 2 -- proto: PosterLegitPeriodicTable - entities: - - uid: 13093 + - uid: 13716 components: - type: Transform - pos: 59.5,11.5 + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 parent: 2 - - uid: 13094 + - uid: 13782 components: - type: Transform - pos: 54.5,-7.5 + rot: 1.5707963267948966 rad + pos: -15.5,-24.5 parent: 2 -- proto: PosterLegitRenault - entities: - - uid: 13092 + - uid: 13959 components: - type: Transform - pos: 35.5,41.5 + pos: -18.5,-22.5 parent: 2 -- proto: PosterLegitReportCrimes - entities: - - uid: 13096 + - uid: 13960 components: - type: Transform - pos: 37.5,16.5 + rot: 3.141592653589793 rad + pos: -8.5,-23.5 parent: 2 -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 13083 + - uid: 14085 components: - type: Transform - pos: 40.5,-41.5 + rot: 3.141592653589793 rad + pos: 36.5,33.5 parent: 2 - - uid: 13087 + - uid: 14086 components: - type: Transform - pos: 55.5,16.5 + pos: 50.5,28.5 parent: 2 -- proto: PosterLegitSafetyInternals - entities: - - uid: 13084 + - uid: 14149 components: - type: Transform - pos: 42.5,-41.5 + rot: 3.141592653589793 rad + pos: 74.5,20.5 parent: 2 - - uid: 13088 + - uid: 14526 components: - type: Transform - pos: 54.5,16.5 + rot: -1.5707963267948966 rad + pos: 41.5,33.5 parent: 2 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 13081 + - uid: 14530 components: - type: Transform - pos: 32.5,-33.5 + rot: -1.5707963267948966 rad + pos: 82.5,27.5 parent: 2 -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 13085 + - uid: 14531 components: - type: Transform - pos: 53.5,-2.5 + rot: -1.5707963267948966 rad + pos: 82.5,33.5 parent: 2 -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 13080 + - uid: 15007 components: - type: Transform - pos: 23.5,-29.5 + rot: 3.141592653589793 rad + pos: 41.5,-12.5 parent: 2 -- proto: PosterLegitSafetyMothMeth +- proto: Protolathe entities: - - uid: 13086 + - uid: 5305 components: - type: Transform - pos: 49.5,-9.5 + pos: 53.5,18.5 parent: 2 -- proto: PosterLegitSafetyMothPiping + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold +- proto: ProtolatheMachineCircuitboard entities: - - uid: 3782 + - uid: 12658 components: - type: Transform - pos: 37.5,-21.5 + pos: 41.5,-16.5 parent: 2 - - uid: 13082 +- proto: Rack + entities: + - uid: 251 components: - type: Transform - pos: 38.5,-41.5 + pos: -0.5,-5.5 parent: 2 -- proto: PosterLegitSafetyReport - entities: - - uid: 13095 + - uid: 553 components: - type: Transform - pos: 22.5,34.5 + pos: 5.5,31.5 parent: 2 -- proto: PosterLegitSecWatch - entities: - - uid: 7732 + - uid: 826 components: - type: Transform - pos: -2.5,-6.5 + pos: 27.5,-29.5 parent: 2 - - uid: 8983 + - uid: 827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,16.5 + pos: 25.5,-29.5 parent: 2 -- proto: PosterLegitStateLaws - entities: - - uid: 7731 + - uid: 1288 components: - type: Transform - pos: -4.5,-10.5 + pos: 25.5,-38.5 parent: 2 -- proto: PosterLegitUeNo - entities: - - uid: 11093 + - uid: 1462 components: - type: Transform - pos: 23.5,26.5 + pos: 19.5,-38.5 parent: 2 -- proto: PosterLegitVacation - entities: - - uid: 13098 + - uid: 1750 components: - type: Transform - pos: 22.5,2.5 + pos: 35.5,-17.5 parent: 2 -- proto: PosterMapPacked - entities: - - uid: 7744 + - uid: 1751 components: - type: Transform - pos: -14.5,-11.5 + pos: 36.5,-17.5 parent: 2 - - uid: 12314 + - uid: 1752 components: - type: Transform - pos: 15.5,2.5 + pos: 37.5,-17.5 parent: 2 - - uid: 12315 + - uid: 1753 components: - type: Transform - pos: 37.5,2.5 + pos: 41.5,-16.5 parent: 2 - - uid: 12316 + - uid: 1754 components: - type: Transform - pos: 33.5,16.5 + pos: 41.5,-15.5 parent: 2 - - uid: 12317 + - uid: 1755 components: - type: Transform - pos: 34.5,47.5 + pos: 41.5,-14.5 parent: 2 - - uid: 12335 + - uid: 1756 components: - type: Transform - pos: 30.5,-13.5 + pos: 37.5,-14.5 parent: 2 -- proto: PottedPlant1 - entities: - - uid: 6619 + - uid: 1757 components: - type: Transform - pos: 32.48526,-7.8502135 + pos: 36.5,-14.5 parent: 2 -- proto: PottedPlant19 - entities: - - uid: 2615 + - uid: 1786 components: - type: Transform - pos: 13.5,-33.5 + pos: 33.5,-17.5 parent: 2 -- proto: PottedPlant2 - entities: - - uid: 12720 + - uid: 2222 components: - type: Transform - pos: 29.477802,5.1889386 + pos: 50.5,28.5 parent: 2 -- proto: PottedPlant22 - entities: - - uid: 2908 + - uid: 3162 components: - type: Transform - pos: 30.5,44.5 + pos: 56.5,25.5 parent: 2 - - uid: 2909 + - uid: 5342 components: - type: Transform - pos: 19.5,44.5 + pos: 60.5,25.5 parent: 2 -- proto: PottedPlantBioluminscent - entities: - - uid: 5046 + - uid: 5375 components: - type: Transform - pos: 51.5,4.5 + pos: 52.5,11.5 parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 101 + - uid: 5439 components: - type: Transform - pos: -21.5,-12.5 + pos: 9.5,-14.5 parent: 2 - - uid: 2533 + - uid: 5717 components: - type: Transform - pos: 34.5,9.5 + pos: 73.5,-12.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 4698 + - uid: 5732 components: - type: Transform - pos: 20.5,12.5 + pos: 72.5,-9.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5314 + - uid: 5965 components: - type: Transform - pos: 54.5,20.5 + rot: 3.141592653589793 rad + pos: 17.5,5.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5340 + - uid: 7270 components: - type: Transform - pos: 54.5,22.5 + pos: 30.5,-30.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5344 + - uid: 7584 components: - type: Transform - pos: 59.5,25.5 + pos: 38.5,28.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 7298 + - uid: 7680 components: - type: Transform - pos: 15.5,-33.5 + pos: 31.5,-48.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 7299 + - uid: 8173 components: - type: Transform - pos: 15.5,-35.5 + rot: -1.5707963267948966 rad + pos: 16.5,-42.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 7999 + - uid: 9017 components: - type: Transform - pos: 3.5,1.5 + rot: -1.5707963267948966 rad + pos: 110.5,-19.5 parent: 2 - - uid: 8000 + - uid: 9366 components: - type: Transform - pos: 3.5,13.5 + pos: 17.5,8.5 parent: 2 - - uid: 11221 + - uid: 9605 components: - type: Transform - pos: 18.5,35.5 + pos: 27.5,5.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11222 + - uid: 9640 components: - type: Transform - pos: 22.5,35.5 + rot: -1.5707963267948966 rad + pos: 6.5,40.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11808 + - uid: 10303 components: - type: Transform - pos: 45.5,16.5 + pos: 8.5,-9.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 12164 + - uid: 10304 components: - type: Transform - pos: 73.5,8.5 + pos: 8.5,-8.5 parent: 2 - - uid: 12165 + - uid: 10791 components: - type: Transform - pos: 58.5,-2.5 + pos: 69.5,-15.5 parent: 2 -- proto: PottedPlantRD - entities: - - uid: 10662 + - uid: 10795 components: - type: Transform - pos: 60.5,10.5 + pos: 79.5,-16.5 parent: 2 -- proto: PowerCellHigh - entities: - - uid: 5631 + - uid: 10796 components: - type: Transform - pos: 16.332455,-23.225615 + pos: 80.5,-16.5 parent: 2 - - uid: 5632 + - uid: 10822 components: - type: Transform - pos: 16.4019,-23.383022 + pos: 81.5,11.5 parent: 2 -- proto: PowerCellRecharger - entities: - - uid: 2829 + - uid: 10823 components: - type: Transform - pos: 11.5,21.5 + pos: 81.5,9.5 parent: 2 - - uid: 3948 + - uid: 10833 components: - type: Transform - pos: 23.5,-23.5 + pos: 65.5,11.5 parent: 2 - - uid: 5312 + - uid: 11409 components: - type: Transform - pos: 56.5,20.5 + pos: 31.5,-17.5 parent: 2 - - type: ContainerContainer - containers: - PowerCellCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - - uid: 6794 + - uid: 12408 components: - type: Transform - pos: 19.5,-23.5 + pos: 45.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - PowerCellCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - - uid: 7014 + - uid: 12843 components: - type: Transform - pos: 17.5,24.5 + pos: 23.5,4.5 parent: 2 - - uid: 9626 + - uid: 13445 components: - type: Transform - pos: 46.5,2.5 + pos: 43.5,-35.5 parent: 2 - - uid: 11842 + - uid: 13560 components: - type: Transform - pos: 31.5,-14.5 + pos: 44.5,28.5 parent: 2 - - type: ContainerContainer - containers: - PowerCellCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - - uid: 12369 + - uid: 13966 components: - type: Transform - pos: 38.5,-17.5 + rot: -1.5707963267948966 rad + pos: -13.5,-24.5 parent: 2 - - uid: 12819 + - uid: 14408 components: - type: Transform - pos: 59.5,-3.5 + rot: 3.141592653589793 rad + pos: 82.5,34.5 parent: 2 - - uid: 13106 +- proto: RadiationCollectorFullTank + entities: + - uid: 8166 components: - type: Transform - pos: 56.5,-10.5 + pos: 28.5,-52.5 parent: 2 - - uid: 13107 + - uid: 8216 components: - type: Transform - pos: 63.5,-9.5 + pos: 14.5,-50.5 parent: 2 -- proto: PowerCellSmall - entities: - - uid: 5313 + - uid: 8217 components: - type: Transform - pos: 56.529827,20.631775 + pos: 14.5,-51.5 parent: 2 -- proto: PowerDrill - entities: - - uid: 10671 + - uid: 8218 components: - type: Transform - pos: 63.50305,8.626264 + pos: 28.5,-50.5 parent: 2 -- proto: Poweredlight - entities: - - uid: 97 + - uid: 8219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-29.5 + pos: 28.5,-51.5 parent: 2 - - uid: 231 + - uid: 8227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 + pos: 14.5,-52.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 399 +- proto: RadioHandheld + entities: + - uid: 1325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,3.5 + pos: 21.5,-19.5 parent: 2 - - uid: 441 + - uid: 2165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + pos: 15.384224,35.641438 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 840 + - uid: 2166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-25.5 + pos: 15.602974,35.641438 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1112 + - uid: 4090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-15.5 + pos: 21.304989,-19.377043 parent: 2 - - uid: 1473 + - uid: 7267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-41.5 + pos: 21.664364,-19.377043 parent: 2 - - uid: 1491 + - uid: 7268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-41.5 + pos: 21.492489,-19.283293 parent: 2 - - uid: 1674 + - uid: 8693 components: - type: Transform - pos: 48.5,-27.5 + pos: 32.390015,26.521107 parent: 2 - - uid: 1765 + - uid: 8694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-14.5 + pos: 32.546265,26.521107 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1766 + - uid: 8695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-17.5 + pos: 32.68689,26.505482 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1922 +- proto: Railing + entities: + - uid: 6491 components: - type: Transform - pos: 48.5,-29.5 + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 parent: 2 - - uid: 1930 + - uid: 6493 components: - type: Transform - pos: 48.5,-33.5 + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 parent: 2 - - uid: 1931 + - uid: 6506 components: - type: Transform - pos: 48.5,-31.5 + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 parent: 2 - - uid: 1932 + - uid: 6510 components: - type: Transform - pos: 48.5,-25.5 + rot: -1.5707963267948966 rad + pos: 22.5,-12.5 parent: 2 - - uid: 2137 + - uid: 6662 components: - type: Transform - pos: 48.5,-23.5 + rot: 3.141592653589793 rad + pos: 47.5,-8.5 parent: 2 - - uid: 2155 + - uid: 6663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,25.5 + rot: 3.141592653589793 rad + pos: 46.5,-8.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2157 + - uid: 13640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,21.5 + pos: 53.5,36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2783 + - uid: 13641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,42.5 + pos: 54.5,36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2784 + - uid: 13642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,42.5 + pos: 55.5,36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2787 +- proto: RandomArcade + entities: + - uid: 8653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,40.5 + pos: 83.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3783 +- proto: RandomArtifactSpawner + entities: + - uid: 10421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-35.5 + pos: 64.5,28.5 parent: 2 - - uid: 4054 + - uid: 10422 components: - type: Transform - pos: -2.5,-7.5 + pos: 62.5,28.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4122 +- proto: RandomBoard + entities: + - uid: 11863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 + pos: 36.5,-17.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4151 + - uid: 12094 components: - type: Transform - pos: 44.5,-21.5 + pos: 35.5,-17.5 parent: 2 - - uid: 4278 + - uid: 12358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-11.5 + pos: 37.5,-14.5 parent: 2 - - uid: 4562 + - uid: 12359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-5.5 + pos: 37.5,-17.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4617 +- proto: RandomPainting + entities: + - uid: 6945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,6.5 + pos: 19.5,17.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4662 + - uid: 12820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,4.5 + pos: 8.5,17.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4663 +- proto: RandomPosterAny + entities: + - uid: 2270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,6.5 + pos: 79.5,9.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4691 + - uid: 5532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,5.5 + pos: 52.5,32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4699 + - uid: 7827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,27.5 + rot: 3.141592653589793 rad + pos: 68.5,33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4700 + - uid: 8584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,19.5 + pos: 58.5,38.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4701 + - uid: 11520 components: - type: Transform - pos: 23.5,25.5 + pos: 14.5,-22.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4702 + - uid: 14779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,12.5 + rot: 3.141592653589793 rad + pos: 10.5,31.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4910 +- proto: RandomPosterContraband + entities: + - uid: 2271 components: - type: Transform - pos: 14.5,41.5 + pos: 69.5,41.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4911 + - uid: 2274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,35.5 + pos: 40.5,39.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4990 + - uid: 5528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,48.5 + pos: 53.5,41.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4991 + - uid: 11176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,46.5 + pos: 14.5,6.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4992 + - uid: 14750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,46.5 + pos: 14.5,30.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4993 +- proto: RandomPosterLegit + entities: + - uid: 2566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,48.5 + pos: 34.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5060 + - uid: 7573 components: - type: Transform - pos: 51.5,-4.5 + pos: 10.5,2.5 parent: 2 - - uid: 5080 + - uid: 8117 components: - type: Transform - pos: 50.5,4.5 + pos: 20.5,2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5154 + - uid: 8635 components: - type: Transform - pos: 30.5,2.5 + pos: 68.5,37.5 parent: 2 - - uid: 5164 + - uid: 8670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-11.5 + pos: 32.5,-13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5166 + - uid: 11163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 + pos: 15.5,19.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5167 + - uid: 11169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-5.5 + pos: 18.5,4.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5195 + - uid: 11194 components: - type: Transform - pos: 40.5,-42.5 + pos: 57.5,4.5 parent: 2 - - uid: 5218 + - uid: 14749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-40.5 + pos: 20.5,19.5 parent: 2 - - uid: 5219 + - uid: 14955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-40.5 + pos: 19.5,25.5 parent: 2 - - uid: 5275 + - uid: 14995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,15.5 + pos: 75.5,5.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5277 +- proto: RandomSoap + entities: + - uid: 8162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,9.5 + pos: 4.5,-5.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5278 + - uid: 11905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,8.5 + pos: 78.5,7.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5279 + - uid: 14652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,10.5 + pos: 59.5,34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5280 +- proto: RandomSpawner + entities: + - uid: 3433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,9.5 + pos: 70.5,27.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 5281 + - uid: 5688 components: - type: Transform - pos: 62.5,16.5 + pos: 17.5,-33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5282 + - uid: 5690 components: - type: Transform - pos: 68.5,16.5 + pos: 25.5,-33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5290 + - uid: 5691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,13.5 + pos: 15.5,-25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5432 + - uid: 8932 components: - type: Transform - pos: 30.5,42.5 + pos: 70.5,29.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5433 + - uid: 9308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,40.5 + pos: 68.5,8.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5766 + - uid: 11866 components: - type: Transform - pos: 20.5,15.5 + pos: 57.5,-13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5767 + - uid: 11867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,12.5 + pos: 62.5,-15.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5768 + - uid: 11868 components: - type: Transform - pos: 9.5,10.5 + pos: 59.5,-16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5769 + - uid: 11874 components: - type: Transform - pos: 17.5,10.5 + pos: 12.5,15.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5921 + - uid: 11876 components: - type: Transform - pos: 40.5,-14.5 + pos: 20.5,26.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6009 + - uid: 11879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,3.5 + pos: 83.5,7.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6010 + - uid: 11880 components: - type: Transform - pos: 43.5,0.5 + pos: 68.5,11.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6011 + - uid: 11884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-1.5 + pos: 71.5,37.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6013 + - uid: 11893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 + pos: 18.5,36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6014 + - uid: 11895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-6.5 + pos: 21.5,37.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6027 + - uid: 12409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 + pos: 44.5,-19.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6043 + - uid: 12410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 + pos: 29.5,-20.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6068 + - uid: 12411 components: - type: Transform - pos: 13.5,1.5 + pos: 27.5,-19.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6085 + - uid: 12412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-1.5 + pos: 25.5,-5.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6086 + - uid: 12413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-1.5 + pos: 36.5,1.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6486 + - uid: 12414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,24.5 + pos: 47.5,-1.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6487 + - uid: 12415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,24.5 + pos: 25.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6537 + - uid: 12417 components: - type: Transform - pos: 56.5,20.5 + pos: 19.5,14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6538 + - uid: 12418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,17.5 + pos: 16.5,10.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6630 + - uid: 12419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-7.5 + pos: 4.5,10.5 parent: 2 - - uid: 6652 + - uid: 12420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-5.5 + pos: 7.5,0.5 parent: 2 - - uid: 6653 + - uid: 13155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 + pos: 56.5,6.5 parent: 2 - - uid: 6654 +- proto: RandomVending + entities: + - uid: 8261 components: - type: Transform - pos: 31.5,-2.5 + pos: 24.5,18.5 parent: 2 - - uid: 6657 +- proto: RandomVendingDrinks + entities: + - uid: 8001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 + pos: 6.5,13.5 parent: 2 - - uid: 6660 + - uid: 8262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-5.5 + pos: 24.5,17.5 parent: 2 - - uid: 7034 + - uid: 9350 components: - type: Transform - pos: 4.5,-11.5 + pos: 27.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7294 + - uid: 9612 components: - type: Transform - pos: 37.5,1.5 + pos: 25.5,3.5 parent: 2 - - uid: 7295 + - uid: 11032 components: - type: Transform - pos: 22.5,1.5 + pos: 20.5,35.5 parent: 2 - - uid: 7344 +- proto: RandomVendingSnacks + entities: + - uid: 8002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 + pos: 5.5,13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7364 +- proto: Recycler + entities: + - uid: 829 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-34.5 + pos: 9.5,34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7365 + - uid: 5855 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-36.5 + pos: -0.5,-29.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7366 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 321 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-34.5 + pos: 47.5,-31.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7470 + - uid: 361 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 + rot: 1.5707963267948966 rad + pos: 47.5,-29.5 parent: 2 - - uid: 7527 + - uid: 367 components: - type: Transform - pos: 50.5,11.5 + rot: 1.5707963267948966 rad + pos: 47.5,-27.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7528 + - uid: 382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,9.5 + rot: 1.5707963267948966 rad + pos: 47.5,-23.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 7530 + - uid: 391 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,13.5 + rot: 1.5707963267948966 rad + pos: 47.5,-25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 7568 + - uid: 685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-32.5 + pos: 33.5,-30.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7569 + - uid: 1463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-32.5 + rot: 1.5707963267948966 rad + pos: 47.5,-33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7570 + - uid: 2363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-36.5 + pos: 38.5,25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7574 + - uid: 2364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-2.5 + pos: 41.5,25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7577 + - uid: 2411 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-11.5 + pos: 36.5,-29.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7579 + - uid: 3949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-6.5 + pos: 33.5,-32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7581 + - uid: 3950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,6.5 + pos: 34.5,-29.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7591 + - uid: 4230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,1.5 + pos: 34.5,-33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7595 + - uid: 4258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,13.5 + pos: 37.5,-30.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7683 + - uid: 4259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,13.5 + pos: 37.5,-31.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7684 + - uid: 4264 components: - type: Transform - pos: 37.5,15.5 + pos: 37.5,-32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7688 + - uid: 4265 components: - type: Transform - pos: 50.5,21.5 + pos: 36.5,-33.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7719 + - uid: 8699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-14.5 + pos: 63.5,26.5 parent: 2 - - uid: 7720 + - uid: 10088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 + pos: 64.5,26.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7723 + - uid: 12296 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-14.5 + pos: 40.5,29.5 parent: 2 - - uid: 7724 + - uid: 12442 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-14.5 + pos: 39.5,29.5 parent: 2 - - uid: 7726 + - uid: 12984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-10.5 + pos: 45.5,-48.5 parent: 2 - - uid: 7768 + - uid: 12985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,40.5 + pos: 45.5,-47.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7813 + - uid: 12986 components: - type: Transform - pos: 19.5,-2.5 + pos: 45.5,-46.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7814 + - uid: 12987 components: - type: Transform - pos: 10.5,28.5 + pos: 45.5,-45.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7815 + - uid: 12988 components: - type: Transform - pos: 14.5,25.5 + pos: 45.5,-44.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7831 +- proto: ReinforcedWindow + entities: + - uid: 6 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,31.5 + pos: -10.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7832 + - uid: 13 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,29.5 + pos: -7.5,-4.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7850 + - uid: 17 components: - type: Transform - pos: 20.5,37.5 + pos: -7.5,-5.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7851 + - uid: 25 components: - type: Transform - pos: 25.5,37.5 + pos: -4.5,-11.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7856 + - uid: 45 components: - type: Transform - pos: 18.5,24.5 + pos: -4.5,-14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7857 + - uid: 46 components: - type: Transform - pos: 34.5,43.5 + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7957 + - uid: 79 components: - type: Transform - pos: -6.5,0.5 + pos: -3.5,1.5 parent: 2 - - uid: 7958 + - uid: 80 components: - type: Transform - pos: -0.5,0.5 + pos: -1.5,2.5 parent: 2 - - uid: 7959 + - uid: 84 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,9.5 + pos: -21.5,-7.5 parent: 2 - - uid: 7960 + - uid: 119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 + pos: -4.5,-8.5 parent: 2 - - uid: 8129 + - uid: 120 components: - type: Transform - pos: 37.5,-22.5 + pos: -4.5,-9.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8130 + - uid: 123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-26.5 + pos: -3.5,-13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8266 + - uid: 124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,22.5 + pos: -2.5,-13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8286 + - uid: 125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,15.5 + pos: -1.5,-13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8335 + - uid: 237 components: - type: Transform - pos: 20.5,-14.5 + pos: 4.5,16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8336 + - uid: 325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-19.5 + pos: -4.5,-4.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8339 + - uid: 326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-22.5 + pos: -3.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8530 + - uid: 327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-39.5 + pos: -1.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8567 + - uid: 337 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,11.5 + pos: -20.5,-11.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8568 + - uid: 341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,3.5 + pos: -11.5,2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8569 + - uid: 345 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 357 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,29.5 + pos: -4.5,-16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8573 + - uid: 397 components: - type: Transform - pos: 39.5,19.5 + pos: 2.5,6.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8574 + - uid: 400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,17.5 + pos: 2.5,7.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8584 + - uid: 418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,34.5 + pos: 53.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8642 + - uid: 427 components: - type: Transform - pos: 79.5,-3.5 + pos: 55.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8849 + - uid: 445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,18.5 + pos: 60.5,12.5 parent: 2 - - uid: 9061 + - uid: 446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 105.5,-23.5 + pos: 61.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9062 + - uid: 464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 105.5,-11.5 + pos: 63.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9063 + - uid: 465 components: - type: Transform - pos: 111.5,-15.5 + pos: 65.5,16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9717 + - uid: 483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-8.5 + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 parent: 2 - - uid: 10450 + - uid: 560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,27.5 + pos: 14.5,-2.5 parent: 2 - - uid: 10451 + - uid: 561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,22.5 + pos: 15.5,-2.5 parent: 2 - - uid: 10452 + - uid: 574 components: - type: Transform - pos: 58.5,27.5 + pos: 65.5,14.5 parent: 2 - - uid: 10453 + - uid: 622 components: - type: Transform - pos: 54.5,27.5 + pos: 28.5,29.5 parent: 2 - - uid: 10708 + - uid: 674 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,1.5 + rot: -1.5707963267948966 rad + pos: -25.5,-5.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10928 + - uid: 680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-39.5 + rot: -1.5707963267948966 rad + pos: -25.5,-7.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11118 + - uid: 689 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,-14.5 + pos: -25.5,-0.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11225 + - uid: 813 components: - type: Transform - pos: 14.5,41.5 + pos: 27.5,-26.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11791 + - uid: 814 components: - type: Transform - pos: 14.5,-23.5 + pos: 25.5,-26.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11855 + - uid: 862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-10.5 + pos: 19.5,-30.5 parent: 2 - - uid: 11856 + - uid: 863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-10.5 + pos: 19.5,-32.5 parent: 2 - - uid: 11857 + - uid: 864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 + pos: 27.5,-34.5 parent: 2 - - uid: 11859 + - uid: 865 components: - type: Transform - pos: 60.5,4.5 + pos: 28.5,-34.5 parent: 2 - - uid: 11862 + - uid: 866 components: - type: Transform - pos: 63.5,4.5 + pos: 25.5,-34.5 parent: 2 - - uid: 11864 + - uid: 867 components: - type: Transform - pos: 66.5,4.5 + pos: 24.5,-34.5 parent: 2 - - uid: 11865 + - uid: 928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,7.5 + pos: 14.5,-33.5 parent: 2 - - uid: 11869 + - uid: 929 components: - type: Transform - pos: 77.5,5.5 + pos: 14.5,-35.5 parent: 2 - - uid: 11870 + - uid: 930 components: - type: Transform - pos: 55.5,3.5 + pos: 14.5,-36.5 parent: 2 - - uid: 11906 + - uid: 931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,6.5 + pos: 13.5,-37.5 parent: 2 - - uid: 12977 + - uid: 932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-48.5 + pos: 12.5,-37.5 parent: 2 - - uid: 12978 + - uid: 934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-48.5 + pos: 10.5,-37.5 parent: 2 - - uid: 13434 + - uid: 968 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-28.5 + pos: 4.5,32.5 parent: 2 - - uid: 13602 + - uid: 982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,33.5 + pos: 20.5,-37.5 parent: 2 - - uid: 13603 + - uid: 983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,33.5 + pos: 19.5,-37.5 parent: 2 - - uid: 13604 + - uid: 984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,30.5 + pos: 22.5,-37.5 parent: 2 - - uid: 13605 + - uid: 985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,30.5 + pos: 23.5,-37.5 parent: 2 - - uid: 13646 + - uid: 986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,36.5 + pos: 24.5,-38.5 parent: 2 - - uid: 13647 + - uid: 987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,36.5 + pos: 18.5,-38.5 parent: 2 - - uid: 13648 + - uid: 988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,41.5 + pos: 18.5,-41.5 parent: 2 -- proto: PoweredlightExterior - entities: - - uid: 5606 + - uid: 989 components: - type: Transform - pos: 14.5,-44.5 + pos: 18.5,-42.5 parent: 2 - - uid: 5607 + - uid: 990 components: - type: Transform - pos: 28.5,-46.5 + rot: -1.5707963267948966 rad + pos: 4.5,31.5 parent: 2 - - uid: 7836 + - uid: 991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 + pos: 17.5,-43.5 parent: 2 -- proto: PoweredlightSodium - entities: - - uid: 7961 + - uid: 992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,15.5 + pos: 16.5,-43.5 parent: 2 -- proto: PoweredSmallLight - entities: - - uid: 317 + - uid: 994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,4.5 + pos: 19.5,-44.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 583 + - uid: 995 components: - type: Transform - pos: 0.5,-9.5 + pos: 20.5,-44.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1811 + - uid: 996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 + pos: 21.5,-44.5 parent: 2 - - uid: 2292 + - uid: 997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,37.5 + pos: 22.5,-44.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2293 + - uid: 998 components: - type: Transform - pos: 40.5,35.5 + pos: 23.5,-44.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2294 + - uid: 1001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,32.5 + pos: 25.5,-43.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2295 + - uid: 1002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,33.5 + pos: 26.5,-43.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2424 + - uid: 1003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 + pos: 24.5,-42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2425 + - uid: 1004 components: - type: Transform - pos: 30.5,21.5 + pos: 24.5,-41.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2426 + - uid: 1052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,17.5 + pos: 2.5,11.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2482 + - uid: 1061 components: - type: Transform - pos: 42.5,20.5 + pos: 2.5,12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2534 + - uid: 1231 components: - type: Transform - pos: 37.5,9.5 + rot: 3.141592653589793 rad + pos: 56.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2535 + - uid: 1251 components: - type: Transform - pos: 30.5,8.5 + pos: 33.5,-34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2536 + - uid: 1256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 + rot: 3.141592653589793 rad + pos: 52.5,38.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2537 + - uid: 1275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,7.5 + rot: 3.141592653589793 rad + pos: 55.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2539 + - uid: 1308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,9.5 + pos: 7.5,-25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2919 + - uid: 1309 components: - type: Transform - pos: 64.5,-15.5 + pos: 6.5,-25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3409 + - uid: 1310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,30.5 + pos: 6.5,-26.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3410 + - uid: 1311 components: - type: Transform - pos: 70.5,34.5 + pos: 6.5,-27.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3447 + - uid: 1312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,27.5 + pos: 6.5,-30.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4034 + - uid: 1313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-9.5 + pos: 6.5,-31.5 parent: 2 - - uid: 4071 + - uid: 1314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-14.5 + pos: 6.5,-32.5 parent: 2 - - uid: 4149 + - uid: 1315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-8.5 + pos: 5.5,-32.5 parent: 2 - - uid: 4438 + - uid: 1320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-35.5 + pos: 2.5,8.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4470 + - uid: 1322 components: - type: Transform - pos: 2.5,-28.5 + pos: 2.5,10.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4471 + - uid: 1342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-32.5 + pos: 1.5,-27.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4474 + - uid: 1343 components: - type: Transform - pos: 8.5,-15.5 + pos: 0.5,-27.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4475 + - uid: 1344 components: - type: Transform - pos: 9.5,-22.5 + pos: -1.5,-28.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4476 + - uid: 1345 components: - type: Transform - pos: 16.5,-21.5 + pos: -1.5,-29.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4478 + - uid: 1363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 + pos: 1.5,-34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4479 + - uid: 1364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 + pos: 0.5,-34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4539 + - uid: 1365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-14.5 + pos: -0.5,-34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4540 + - uid: 1366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 + pos: 1.5,-36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4563 + - uid: 1367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,5.5 + pos: 0.5,-36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4564 + - uid: 1368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 + pos: -0.5,-36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4582 + - uid: 1526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-31.5 + pos: 0.5,1.5 parent: 2 - - uid: 4583 + - uid: 1556 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-31.5 + pos: -13.5,-2.5 parent: 2 - - uid: 4584 + - uid: 1735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-29.5 + pos: 42.5,-16.5 parent: 2 - - uid: 4813 + - uid: 1736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,12.5 + pos: 42.5,-15.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4814 + - uid: 1737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,13.5 + pos: 42.5,-14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4907 + - uid: 1808 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,33.5 + pos: -18.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4909 + - uid: 1809 components: - type: Transform - pos: 19.5,27.5 + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5119 + - uid: 1855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-8.5 + pos: -3.5,0.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5229 + - uid: 1948 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-36.5 + pos: 52.5,39.5 parent: 2 - - uid: 5264 + - uid: 2028 components: - type: Transform - pos: 50.5,15.5 + rot: -1.5707963267948966 rad + pos: 16.5,-37.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5274 + - uid: 2053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,24.5 + pos: 4.5,28.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5464 + - uid: 2055 components: - type: Transform - pos: 70.5,40.5 + pos: 5.5,28.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5465 + - uid: 2056 components: - type: Transform - pos: 70.5,37.5 + pos: 4.5,25.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5611 + - uid: 2057 components: - type: Transform - pos: 34.5,-38.5 + pos: 5.5,25.5 parent: 2 - - uid: 5674 + - uid: 2059 components: - type: Transform - pos: 68.5,42.5 + pos: 4.5,22.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5675 + - uid: 2060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,38.5 + pos: 5.5,22.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5676 + - uid: 2167 components: - type: Transform - pos: 67.5,29.5 + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5723 + - uid: 2210 components: - type: Transform - pos: 73.5,-12.5 + rot: 3.141592653589793 rad + pos: 47.5,30.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6492 + - uid: 2213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 + rot: 3.141592653589793 rad + pos: 60.5,36.5 parent: 2 - - uid: 6496 + - uid: 2231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 + pos: 75.5,23.5 parent: 2 - - uid: 6505 + - uid: 2240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 + pos: 28.5,21.5 parent: 2 - - uid: 6511 + - uid: 2241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 + pos: 28.5,20.5 parent: 2 - - uid: 6521 + - uid: 2242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,28.5 + pos: 28.5,18.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6659 + - uid: 2243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 + pos: 28.5,17.5 parent: 2 - - uid: 6661 + - uid: 2256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-10.5 + pos: 31.5,21.5 parent: 2 - - uid: 6748 + - uid: 2257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-9.5 + pos: 31.5,17.5 parent: 2 - - uid: 6858 + - uid: 2284 components: - type: Transform - pos: 67.5,-13.5 + pos: 44.5,34.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7013 + - uid: 2285 components: - type: Transform - pos: 6.5,32.5 + pos: 44.5,35.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7015 + - uid: 2286 components: - type: Transform - pos: 12.5,31.5 + pos: 44.5,36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7342 + - uid: 2367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 + pos: 37.5,24.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7417 + - uid: 2368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-0.5 + pos: 37.5,23.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7675 + - uid: 2369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,16.5 + pos: 38.5,20.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7676 + - uid: 2370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,12.5 + pos: 37.5,21.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7715 + - uid: 2373 components: - type: Transform - pos: 21.5,18.5 + pos: 42.5,24.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7819 + - uid: 2374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,29.5 + pos: 42.5,22.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7822 + - uid: 2427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,42.5 + pos: 88.5,-6.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7824 + - uid: 2458 components: - type: Transform - pos: 55.5,48.5 + pos: 43.5,16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7825 + - uid: 2459 components: - type: Transform - pos: 57.5,48.5 + pos: 41.5,16.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7826 + - uid: 2476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,24.5 + pos: 33.5,-36.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7827 + - uid: 2483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,19.5 + pos: 37.5,-28.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7828 + - uid: 2736 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,11.5 + pos: -26.5,-0.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7829 + - uid: 2745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,7.5 + pos: 15.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7830 + - uid: 2746 components: - type: Transform - pos: 12.5,18.5 + pos: 14.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7861 + - uid: 2747 components: - type: Transform - pos: 75.5,-15.5 + pos: 13.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7862 + - uid: 2748 components: - type: Transform - pos: 87.5,-14.5 + pos: 23.5,38.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7863 + - uid: 2749 components: - type: Transform - pos: 86.5,-2.5 + pos: 22.5,38.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7864 + - uid: 2750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,-9.5 + pos: 21.5,38.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7865 + - uid: 2752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,5.5 + pos: 21.5,43.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7866 + - uid: 2753 components: - type: Transform - pos: 81.5,12.5 + pos: 24.5,43.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7968 + - uid: 2754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,18.5 + pos: 27.5,38.5 parent: 2 - - uid: 8332 + - uid: 2755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-17.5 + pos: 27.5,43.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8334 + - uid: 2786 components: - type: Transform - pos: 14.5,-16.5 + pos: -4.5,-12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8526 + - uid: 2817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-40.5 + pos: 22.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8527 + - uid: 2818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-40.5 + pos: 23.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8528 + - uid: 2819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-42.5 + pos: 24.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8529 + - uid: 2820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-41.5 + pos: 25.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8565 + - uid: 2821 components: - type: Transform - pos: 47.5,7.5 + pos: 26.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8566 + - uid: 2822 components: - type: Transform - pos: 56.5,6.5 + pos: 27.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8570 + - uid: 2823 components: - type: Transform - pos: 36.5,31.5 + pos: 28.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8571 + - uid: 2824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,28.5 + pos: 29.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8572 + - uid: 2825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,28.5 + pos: 30.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8601 + - uid: 2826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,12.5 + pos: 31.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8602 + - uid: 2827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,8.5 + pos: 32.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8603 + - uid: 2859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,44.5 + pos: 60.5,-12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8609 + - uid: 2860 components: - type: Transform - pos: 30.5,26.5 + pos: 61.5,-12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8639 + - uid: 2861 components: - type: Transform - pos: 81.5,-0.5 + pos: 62.5,-12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8640 + - uid: 2862 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-8.5 + pos: 63.5,-12.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8641 + - uid: 2863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-6.5 + pos: 62.5,-14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8833 + - uid: 2864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,3.5 + pos: 63.5,-14.5 parent: 2 - - uid: 8844 + - uid: 2865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 102.5,-12.5 + pos: 60.5,-14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9365 + - uid: 2866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,9.5 + pos: 61.5,-14.5 parent: 2 - - uid: 10707 + - uid: 2867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,1.5 + pos: 59.5,-14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10710 + - uid: 3069 components: - type: Transform - pos: 100.5,-19.5 + pos: 42.5,40.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11097 + - uid: 3070 components: - type: Transform - pos: 30.5,-19.5 + pos: 41.5,40.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11098 + - uid: 3086 components: - type: Transform - pos: 39.5,-19.5 + pos: 36.5,46.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11099 + - uid: 3087 components: - type: Transform - pos: 46.5,-18.5 + pos: 36.5,45.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11100 + - uid: 3088 components: - type: Transform - pos: 44.5,25.5 + pos: 18.5,45.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11438 + - uid: 3089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 + pos: 18.5,44.5 parent: 2 - - uid: 11521 + - uid: 3098 components: - type: Transform - pos: 54.5,-17.5 + pos: 48.5,49.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11522 + - uid: 3099 components: - type: Transform - pos: 70.5,-15.5 + pos: 48.5,48.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11805 + - uid: 3100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-11.5 + pos: 47.5,48.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11807 + - uid: 3101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-14.5 + pos: 46.5,48.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11823 + - uid: 3102 components: - type: Transform - pos: 89.5,-18.5 + pos: 45.5,48.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11824 + - uid: 3103 components: - type: Transform - pos: 85.5,-20.5 + pos: 45.5,47.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11825 + - uid: 3104 components: - type: Transform - pos: 92.5,-19.5 + pos: 44.5,47.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11845 + - uid: 3105 components: - type: Transform - pos: 64.5,-1.5 + pos: 43.5,47.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11846 + - uid: 3110 components: - type: Transform - pos: 67.5,-1.5 + pos: 46.5,45.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12354 + - uid: 3111 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-9.5 + pos: 47.5,45.5 parent: 2 - - uid: 12355 + - uid: 3112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-13.5 + pos: 48.5,45.5 parent: 2 - - uid: 12841 + - uid: 3113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,3.5 + pos: 49.5,45.5 parent: 2 - - uid: 12980 + - uid: 3120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-48.5 + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 parent: 2 - - uid: 12981 + - uid: 3122 components: - type: Transform - pos: 46.5,-44.5 + rot: -1.5707963267948966 rad + pos: -25.5,-6.5 parent: 2 - - uid: 12991 + - uid: 3127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-47.5 + pos: 50.5,46.5 parent: 2 - - uid: 13606 + - uid: 3128 components: - type: Transform - pos: 56.5,38.5 + pos: 50.5,47.5 parent: 2 - - uid: 13716 + - uid: 3129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 + pos: 51.5,47.5 parent: 2 -- proto: Protolathe - entities: - - uid: 5305 + - uid: 3130 components: - type: Transform - pos: 53.5,18.5 + pos: 52.5,47.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 12658 + - uid: 3143 components: - type: Transform - pos: 41.5,-16.5 + pos: 47.5,39.5 parent: 2 -- proto: Rack - entities: - - uid: 251 + - uid: 3144 components: - type: Transform - pos: -0.5,-5.5 + pos: 47.5,38.5 parent: 2 - - uid: 826 + - uid: 3145 components: - type: Transform - pos: 27.5,-29.5 + pos: 47.5,37.5 parent: 2 - - uid: 827 + - uid: 3211 components: - type: Transform - pos: 25.5,-29.5 + pos: 60.5,47.5 parent: 2 - - uid: 1462 + - uid: 3212 components: - type: Transform - pos: 19.5,-38.5 + pos: 61.5,47.5 parent: 2 - - uid: 1750 + - uid: 3214 components: - type: Transform - pos: 35.5,-17.5 + pos: 62.5,47.5 parent: 2 - - uid: 1751 + - uid: 3265 components: - type: Transform - pos: 36.5,-17.5 + pos: 62.5,46.5 parent: 2 - - uid: 1752 + - uid: 3327 components: - type: Transform - pos: 37.5,-17.5 + rot: -1.5707963267948966 rad + pos: -19.5,-15.5 parent: 2 - - uid: 1753 + - uid: 3334 components: - type: Transform - pos: 41.5,-16.5 + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 parent: 2 - - uid: 1754 + - uid: 3335 components: - type: Transform - pos: 41.5,-15.5 + pos: 50.5,49.5 parent: 2 - - uid: 1755 + - uid: 3336 components: - type: Transform - pos: 41.5,-14.5 + pos: 51.5,49.5 parent: 2 - - uid: 1756 + - uid: 3337 components: - type: Transform - pos: 37.5,-14.5 + pos: 52.5,49.5 parent: 2 - - uid: 1757 + - uid: 3338 components: - type: Transform - pos: 36.5,-14.5 + pos: 53.5,49.5 parent: 2 - - uid: 1786 + - uid: 3340 components: - type: Transform - pos: 33.5,-17.5 + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 parent: 2 - - uid: 5342 + - uid: 3344 components: - type: Transform - pos: 60.5,25.5 + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 parent: 2 - - uid: 5375 + - uid: 3345 components: - type: Transform - pos: 52.5,11.5 + pos: 59.5,49.5 parent: 2 - - uid: 5439 + - uid: 3346 components: - type: Transform - pos: 9.5,-14.5 + pos: 60.5,49.5 parent: 2 - - uid: 5717 + - uid: 3347 components: - type: Transform - pos: 73.5,-12.5 + pos: 61.5,49.5 parent: 2 - - uid: 5732 + - uid: 3348 components: - type: Transform - pos: 72.5,-9.5 + pos: 62.5,49.5 parent: 2 - - uid: 5965 + - uid: 3389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,5.5 + pos: 64.5,49.5 parent: 2 - - uid: 7270 + - uid: 3390 components: - type: Transform - pos: 30.5,-30.5 + pos: 64.5,48.5 parent: 2 - - uid: 7584 + - uid: 3391 components: - type: Transform - pos: 38.5,28.5 + pos: 65.5,48.5 parent: 2 - - uid: 7970 + - uid: 3392 components: - type: Transform - pos: 9.5,15.5 + pos: 66.5,48.5 parent: 2 - - uid: 8164 + - uid: 3393 components: - type: Transform - pos: 8.5,32.5 + pos: 67.5,48.5 parent: 2 - - uid: 8817 + - uid: 3394 components: - type: Transform - pos: 72.5,21.5 + pos: 67.5,47.5 parent: 2 - - uid: 8934 + - uid: 3395 components: - type: Transform - pos: 69.5,21.5 + pos: 68.5,47.5 parent: 2 - - uid: 9017 + - uid: 3397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 110.5,-19.5 + pos: 72.5,46.5 parent: 2 - - uid: 9366 + - uid: 3398 components: - type: Transform - pos: 17.5,8.5 + pos: 73.5,46.5 parent: 2 - - uid: 9605 + - uid: 3399 components: - type: Transform - pos: 27.5,5.5 + pos: 74.5,46.5 parent: 2 - - uid: 10303 + - uid: 3400 components: - type: Transform - pos: 8.5,-9.5 + pos: 74.5,44.5 parent: 2 - - uid: 10304 + - uid: 3401 components: - type: Transform - pos: 8.5,-8.5 + pos: 73.5,44.5 parent: 2 - - uid: 10791 + - uid: 3402 components: - type: Transform - pos: 69.5,-15.5 + pos: 72.5,44.5 parent: 2 - - uid: 10795 + - uid: 3434 components: - type: Transform - pos: 79.5,-16.5 + pos: 75.5,22.5 parent: 2 - - uid: 10796 + - uid: 3479 components: - type: Transform - pos: 80.5,-16.5 + pos: 48.5,17.5 parent: 2 - - uid: 10822 + - uid: 3480 components: - type: Transform - pos: 81.5,11.5 + pos: 48.5,19.5 parent: 2 - - uid: 10823 + - uid: 3499 components: - type: Transform - pos: 81.5,9.5 + pos: 54.5,26.5 parent: 2 - - uid: 10833 + - uid: 3500 components: - type: Transform - pos: 65.5,11.5 + pos: 55.5,26.5 parent: 2 - - uid: 10846 + - uid: 3503 components: - type: Transform - pos: 45.5,27.5 + pos: 57.5,26.5 parent: 2 - - uid: 10852 + - uid: 3504 components: - type: Transform - pos: 45.5,30.5 + pos: 58.5,26.5 parent: 2 - - uid: 11409 + - uid: 3594 components: - type: Transform - pos: 31.5,-17.5 + pos: 90.5,-6.5 parent: 2 - - uid: 12408 + - uid: 3612 components: - type: Transform - pos: 45.5,-19.5 + pos: 88.5,-5.5 parent: 2 - - uid: 12843 + - uid: 3613 components: - type: Transform - pos: 23.5,4.5 + pos: 88.5,-4.5 parent: 2 - - uid: 13002 + - uid: 3618 components: - type: Transform - pos: 32.5,-46.5 + pos: 75.5,17.5 parent: 2 - - uid: 13445 + - uid: 3619 components: - type: Transform - pos: 43.5,-35.5 + pos: 75.5,16.5 parent: 2 -- proto: RadiationCollectorFullTank - entities: - - uid: 1042 + - uid: 3620 components: - type: Transform - pos: 17.5,-42.5 + pos: 77.5,13.5 parent: 2 - - uid: 1177 + - uid: 3621 components: - type: Transform - pos: 16.5,-42.5 + pos: 75.5,15.5 parent: 2 - - uid: 1182 + - uid: 3622 components: - type: Transform - pos: 26.5,-42.5 + pos: 78.5,13.5 parent: 2 - - uid: 1211 + - uid: 3623 components: - type: Transform - pos: 25.5,-42.5 + pos: 79.5,13.5 parent: 2 -- proto: RadioHandheld - entities: - - uid: 1325 + - uid: 3624 components: - type: Transform - pos: 21.5,-19.5 + pos: 80.5,13.5 parent: 2 - - uid: 2165 + - uid: 3705 components: - type: Transform - pos: 15.384224,35.641438 + pos: 91.5,-6.5 parent: 2 - - uid: 2166 + - uid: 3706 components: - type: Transform - pos: 15.602974,35.641438 + pos: 90.5,0.5 parent: 2 - - uid: 4090 + - uid: 3707 components: - type: Transform - pos: 21.304989,-19.377043 + pos: 90.5,1.5 parent: 2 - - uid: 7267 + - uid: 3803 components: - type: Transform - pos: 21.664364,-19.377043 + pos: 82.5,-8.5 parent: 2 - - uid: 7268 + - uid: 3804 components: - type: Transform - pos: 21.492489,-19.283293 + pos: 81.5,-8.5 parent: 2 - - uid: 8693 + - uid: 3805 components: - type: Transform - pos: 32.390015,26.521107 + pos: 80.5,-8.5 parent: 2 - - uid: 8694 + - uid: 3806 components: - type: Transform - pos: 32.546265,26.521107 + pos: 79.5,-8.5 parent: 2 - - uid: 8695 + - uid: 3865 components: - type: Transform - pos: 32.68689,26.505482 + pos: 73.5,-17.5 parent: 2 -- proto: Railing - entities: - - uid: 6491 + - uid: 3866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-10.5 + pos: 74.5,-17.5 parent: 2 - - uid: 6493 + - uid: 3867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 + pos: 75.5,-17.5 parent: 2 - - uid: 6506 + - uid: 3868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-11.5 + pos: 76.5,-17.5 parent: 2 - - uid: 6510 + - uid: 3869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 + pos: 77.5,-17.5 parent: 2 - - uid: 6662 + - uid: 3870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-8.5 + pos: 78.5,-17.5 parent: 2 - - uid: 6663 + - uid: 3871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-8.5 + pos: 80.5,-17.5 parent: 2 -- proto: RandomArcade - entities: - - uid: 8653 + - uid: 3872 components: - type: Transform - pos: 83.5,12.5 + pos: 79.5,-17.5 parent: 2 -- proto: RandomArtifactSpawner - entities: - - uid: 10421 + - uid: 3873 components: - type: Transform - pos: 64.5,28.5 + pos: 81.5,-17.5 parent: 2 - - uid: 10422 + - uid: 3874 components: - type: Transform - pos: 62.5,28.5 + pos: 82.5,-17.5 parent: 2 -- proto: RandomBoard - entities: - - uid: 11863 + - uid: 3875 components: - type: Transform - pos: 36.5,-17.5 + pos: 83.5,-17.5 parent: 2 - - uid: 12094 + - uid: 3876 components: - type: Transform - pos: 35.5,-17.5 + pos: 84.5,-17.5 parent: 2 - - uid: 12358 + - uid: 3877 components: - type: Transform - pos: 37.5,-14.5 + pos: 85.5,-17.5 parent: 2 - - uid: 12359 + - uid: 3878 components: - type: Transform - pos: 37.5,-17.5 + pos: 86.5,-17.5 parent: 2 -- proto: RandomPainting - entities: - - uid: 6945 + - uid: 4046 components: - type: Transform - pos: 19.5,17.5 + pos: 45.5,-22.5 parent: 2 -- proto: RandomPosterAny - entities: - - uid: 11520 + - uid: 4052 components: - type: Transform - pos: 14.5,-22.5 + pos: 36.5,-27.5 parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 11164 + - uid: 4055 components: - type: Transform - pos: 8.5,33.5 + pos: 45.5,-33.5 parent: 2 - - uid: 11176 + - uid: 4056 components: - type: Transform - pos: 14.5,6.5 + pos: 45.5,-35.5 parent: 2 -- proto: RandomPosterLegit - entities: - - uid: 7573 + - uid: 4086 components: - type: Transform - pos: 10.5,2.5 + pos: 33.5,-35.5 parent: 2 - - uid: 8117 + - uid: 4134 components: - type: Transform - pos: 20.5,2.5 + rot: 1.5707963267948966 rad + pos: 56.5,26.5 parent: 2 - - uid: 8670 + - uid: 4165 components: - type: Transform - pos: 32.5,-13.5 + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 parent: 2 - - uid: 11163 + - uid: 4252 components: - type: Transform - pos: 15.5,19.5 + pos: 24.5,-27.5 parent: 2 - - uid: 11169 + - uid: 4253 components: - type: Transform - pos: 18.5,4.5 + pos: 28.5,-27.5 parent: 2 - - uid: 11194 + - uid: 4269 components: - type: Transform - pos: 57.5,4.5 + rot: -1.5707963267948966 rad + pos: 19.5,-16.5 parent: 2 -- proto: RandomSoap - entities: - - uid: 8162 + - uid: 4273 components: - type: Transform - pos: 4.5,-5.5 + rot: -1.5707963267948966 rad + pos: 19.5,-18.5 parent: 2 - - uid: 11905 + - uid: 4275 components: - type: Transform - pos: 78.5,7.5 + rot: -1.5707963267948966 rad + pos: 19.5,-17.5 parent: 2 -- proto: RandomSpawner - entities: - - uid: 5688 + - uid: 4292 components: - type: Transform - pos: 17.5,-33.5 + pos: 35.5,-27.5 parent: 2 - - uid: 5690 + - uid: 4297 components: - type: Transform - pos: 25.5,-33.5 + pos: 33.5,-28.5 parent: 2 - - uid: 5691 + - uid: 4298 components: - type: Transform - pos: 15.5,-25.5 + pos: 45.5,-21.5 parent: 2 - - uid: 9308 + - uid: 4312 components: - type: Transform - pos: 68.5,8.5 + pos: 4.5,33.5 parent: 2 - - uid: 11866 + - uid: 4327 components: - type: Transform - pos: 57.5,-13.5 + pos: 33.5,-43.5 parent: 2 - - uid: 11867 + - uid: 4328 components: - type: Transform - pos: 62.5,-15.5 + pos: 33.5,-42.5 parent: 2 - - uid: 11868 + - uid: 4370 components: - type: Transform - pos: 59.5,-16.5 + pos: 37.5,-36.5 parent: 2 - - uid: 11874 + - uid: 4371 components: - type: Transform - pos: 12.5,15.5 + pos: 37.5,-35.5 parent: 2 - - uid: 11876 + - uid: 4372 components: - type: Transform - pos: 20.5,26.5 + pos: 37.5,-34.5 parent: 2 - - uid: 11879 + - uid: 4393 components: - type: Transform - pos: 83.5,7.5 + pos: 31.5,-45.5 parent: 2 - - uid: 11880 + - uid: 4394 components: - type: Transform - pos: 68.5,11.5 + pos: 32.5,-45.5 parent: 2 - - uid: 11882 + - uid: 4416 components: - type: Transform - pos: 70.5,29.5 + pos: 46.5,-36.5 parent: 2 - - uid: 11883 + - uid: 4437 components: - type: Transform - pos: 70.5,28.5 + pos: 45.5,-34.5 parent: 2 - - uid: 11884 + - uid: 4442 components: - type: Transform - pos: 71.5,37.5 + pos: 45.5,-32.5 parent: 2 - - uid: 11893 + - uid: 4452 components: - type: Transform - pos: 18.5,36.5 + pos: 33.5,-44.5 parent: 2 - - uid: 11895 + - uid: 4482 components: - type: Transform - pos: 21.5,37.5 + rot: 3.141592653589793 rad + pos: 47.5,-40.5 parent: 2 - - uid: 12409 + - uid: 4483 components: - type: Transform - pos: 44.5,-19.5 + rot: 3.141592653589793 rad + pos: 47.5,-39.5 parent: 2 - - uid: 12410 + - uid: 4484 components: - type: Transform - pos: 29.5,-20.5 + rot: 3.141592653589793 rad + pos: 47.5,-38.5 parent: 2 - - uid: 12411 + - uid: 4485 components: - type: Transform - pos: 27.5,-19.5 + rot: 3.141592653589793 rad + pos: 47.5,-37.5 parent: 2 - - uid: 12412 + - uid: 4812 components: - type: Transform - pos: 25.5,-5.5 + rot: 3.141592653589793 rad + pos: 56.5,50.5 parent: 2 - - uid: 12413 + - uid: 5004 components: - type: Transform - pos: 36.5,1.5 + rot: -1.5707963267948966 rad + pos: 5.5,41.5 parent: 2 - - uid: 12414 + - uid: 5016 components: - type: Transform - pos: 47.5,-1.5 + pos: 49.5,-3.5 parent: 2 - - uid: 12415 + - uid: 5017 components: - type: Transform - pos: 25.5,12.5 + pos: 54.5,-3.5 parent: 2 - - uid: 12417 + - uid: 5021 components: - type: Transform - pos: 19.5,14.5 + pos: 55.5,-8.5 parent: 2 - - uid: 12418 + - uid: 5022 components: - type: Transform - pos: 16.5,10.5 + pos: 57.5,-8.5 parent: 2 - - uid: 12419 + - uid: 5094 components: - type: Transform - pos: 4.5,10.5 + pos: 67.5,-2.5 parent: 2 - - uid: 12420 + - uid: 5095 components: - type: Transform - pos: 7.5,0.5 + pos: 66.5,-2.5 parent: 2 - - uid: 13155 + - uid: 5096 components: - type: Transform - pos: 56.5,6.5 + pos: 65.5,-2.5 parent: 2 -- proto: RandomVending - entities: - - uid: 8261 + - uid: 5097 components: - type: Transform - pos: 24.5,18.5 + pos: 64.5,-2.5 parent: 2 -- proto: RandomVendingDrinks - entities: - - uid: 8001 + - uid: 5128 components: - type: Transform - pos: 6.5,13.5 + pos: 45.5,-25.5 parent: 2 - - uid: 8262 + - uid: 5133 components: - type: Transform - pos: 24.5,17.5 + pos: 34.5,-27.5 parent: 2 - - uid: 9350 + - uid: 5134 components: - type: Transform - pos: 27.5,12.5 + pos: 45.5,-28.5 parent: 2 - - uid: 9612 + - uid: 5207 components: - type: Transform - pos: 25.5,3.5 + pos: 45.5,-30.5 parent: 2 - - uid: 11032 + - uid: 5293 components: - type: Transform - pos: 20.5,35.5 + pos: 2.5,2.5 parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 8002 + - uid: 5295 components: - type: Transform - pos: 5.5,13.5 + pos: 2.5,3.5 parent: 2 -- proto: Recycler - entities: - - uid: 5855 + - uid: 5357 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-29.5 + pos: 1.5,1.5 parent: 2 - - uid: 12229 + - uid: 5358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,16.5 + pos: 2.5,4.5 parent: 2 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 321 + - uid: 5417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-31.5 + pos: 43.5,-41.5 parent: 2 - - uid: 361 + - uid: 5434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-29.5 + pos: 41.5,-41.5 parent: 2 - - uid: 367 + - uid: 5435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-27.5 + pos: 39.5,-41.5 parent: 2 - - uid: 382 + - uid: 5489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-23.5 + pos: 72.5,33.5 parent: 2 - - uid: 391 + - uid: 5490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-25.5 + pos: 72.5,32.5 parent: 2 - - uid: 685 + - uid: 5491 components: - type: Transform - pos: 33.5,-30.5 + pos: 72.5,31.5 parent: 2 - - uid: 1463 + - uid: 5492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-33.5 + pos: 72.5,29.5 parent: 2 - - uid: 2356 + - uid: 5493 components: - type: Transform - pos: 37.5,27.5 + pos: 72.5,28.5 parent: 2 - - uid: 2362 + - uid: 5494 components: - type: Transform - pos: 37.5,26.5 + pos: 72.5,27.5 parent: 2 - - uid: 2363 + - uid: 5728 components: - type: Transform - pos: 38.5,25.5 + pos: 45.5,-29.5 parent: 2 - - uid: 2364 + - uid: 5729 components: - type: Transform - pos: 41.5,25.5 + pos: 45.5,-26.5 parent: 2 - - uid: 2366 + - uid: 6113 components: - type: Transform - pos: 37.5,28.5 + pos: 8.5,-40.5 parent: 2 - - uid: 2411 + - uid: 6114 components: - type: Transform - pos: 36.5,-29.5 + pos: 8.5,-39.5 parent: 2 - - uid: 3949 + - uid: 6115 components: - type: Transform - pos: 33.5,-32.5 + pos: 9.5,-39.5 parent: 2 - - uid: 3950 + - uid: 6116 components: - type: Transform - pos: 34.5,-29.5 + pos: 10.5,-39.5 parent: 2 - - uid: 4230 + - uid: 6118 components: - type: Transform - pos: 34.5,-33.5 + pos: 12.5,-39.5 parent: 2 - - uid: 4258 + - uid: 6134 components: - type: Transform - pos: 37.5,-30.5 + pos: 8.5,-42.5 parent: 2 - - uid: 4259 + - uid: 6135 components: - type: Transform - pos: 37.5,-31.5 + pos: 8.5,-43.5 parent: 2 - - uid: 4264 + - uid: 6136 components: - type: Transform - pos: 37.5,-32.5 + pos: 9.5,-43.5 parent: 2 - - uid: 4265 + - uid: 6137 components: - type: Transform - pos: 36.5,-33.5 + pos: 11.5,-43.5 parent: 2 - - uid: 8699 + - uid: 6140 components: - type: Transform - pos: 63.5,26.5 + pos: 12.5,-42.5 parent: 2 - - uid: 10088 + - uid: 6483 components: - type: Transform - pos: 64.5,26.5 + pos: 45.5,-2.5 parent: 2 - - uid: 12984 + - uid: 6485 components: - type: Transform - pos: 45.5,-48.5 + pos: 42.5,-2.5 parent: 2 - - uid: 12985 + - uid: 6807 components: - type: Transform - pos: 45.5,-47.5 + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 parent: 2 - - uid: 12986 + - uid: 6810 components: - type: Transform - pos: 45.5,-46.5 + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 parent: 2 - - uid: 12987 + - uid: 6833 components: - type: Transform - pos: 45.5,-45.5 + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 parent: 2 - - uid: 12988 + - uid: 6838 components: - type: Transform - pos: 45.5,-44.5 + pos: -2.5,-20.5 parent: 2 -- proto: ReinforcedWindow - entities: - - uid: 13 + - uid: 6840 components: - type: Transform - pos: -7.5,-4.5 + pos: -1.5,1.5 parent: 2 - - uid: 17 + - uid: 6857 components: - type: Transform - pos: -7.5,-5.5 + pos: -5.5,2.5 parent: 2 - - uid: 18 + - uid: 6885 components: - type: Transform - pos: -7.5,-1.5 + pos: -13.5,2.5 parent: 2 - - uid: 21 + - uid: 7548 components: - type: Transform - pos: -7.5,-6.5 + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 parent: 2 - - uid: 23 + - uid: 7549 components: - type: Transform - pos: -7.5,-2.5 + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 parent: 2 - - uid: 25 + - uid: 7592 components: - type: Transform - pos: -4.5,-11.5 + rot: 1.5707963267948966 rad + pos: -8.5,-14.5 parent: 2 - - uid: 45 + - uid: 7593 components: - type: Transform - pos: -4.5,-14.5 + rot: 1.5707963267948966 rad + pos: -20.5,-14.5 parent: 2 - - uid: 46 + - uid: 7597 components: - type: Transform - pos: -7.5,-8.5 + pos: -11.5,0.5 parent: 2 - - uid: 47 + - uid: 7600 components: - type: Transform - pos: -7.5,-10.5 + pos: -9.5,2.5 parent: 2 - - uid: 79 + - uid: 7664 components: - type: Transform - pos: -3.5,1.5 + pos: -5.5,1.5 parent: 2 - - uid: 80 + - uid: 7669 components: - type: Transform - pos: -1.5,2.5 + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 parent: 2 - - uid: 89 + - uid: 7747 components: - type: Transform - pos: -4.5,-18.5 + rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - - uid: 90 + - uid: 7749 components: - type: Transform - pos: -6.5,-17.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 2 - - uid: 93 + - uid: 7763 components: - type: Transform - pos: -6.5,-18.5 + pos: 4.5,19.5 parent: 2 - - uid: 99 + - uid: 7765 components: - type: Transform - pos: -6.5,-15.5 + pos: 24.5,38.5 parent: 2 - - uid: 100 + - uid: 7781 components: - type: Transform - pos: -6.5,-16.5 + pos: 4.5,18.5 parent: 2 - - uid: 119 + - uid: 7825 components: - type: Transform - pos: -4.5,-8.5 + pos: 7.5,20.5 parent: 2 - - uid: 120 + - uid: 7858 components: - type: Transform - pos: -4.5,-9.5 + pos: 45.5,-14.5 parent: 2 - - uid: 123 + - uid: 7943 components: - type: Transform - pos: -3.5,-13.5 + rot: -1.5707963267948966 rad + pos: -25.5,-4.5 parent: 2 - - uid: 124 + - uid: 7957 components: - type: Transform - pos: -2.5,-13.5 + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 parent: 2 - - uid: 125 + - uid: 8083 components: - type: Transform - pos: -1.5,-13.5 + pos: 6.5,20.5 parent: 2 - - uid: 198 + - uid: 8115 components: - type: Transform - pos: 1.5,-17.5 + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 parent: 2 - - uid: 199 + - uid: 8736 components: - type: Transform - pos: 0.5,-17.5 + pos: 92.5,-17.5 parent: 2 - - uid: 233 + - uid: 8737 components: - type: Transform - pos: -4.5,-16.5 + pos: 93.5,-17.5 parent: 2 - - uid: 325 + - uid: 8738 components: - type: Transform - pos: -4.5,-4.5 + pos: 94.5,-17.5 parent: 2 - - uid: 326 + - uid: 8739 components: - type: Transform - pos: -3.5,-2.5 + pos: 95.5,-17.5 parent: 2 - - uid: 327 + - uid: 8740 components: - type: Transform - pos: -1.5,-2.5 + pos: 96.5,-17.5 parent: 2 - - uid: 328 + - uid: 8741 components: - type: Transform - pos: -22.5,-14.5 + pos: 97.5,-17.5 parent: 2 - - uid: 329 + - uid: 8742 components: - type: Transform - pos: -22.5,-13.5 + pos: 98.5,-17.5 parent: 2 - - uid: 330 + - uid: 8743 components: - type: Transform - pos: -22.5,-12.5 + pos: 98.5,-22.5 parent: 2 - - uid: 345 + - uid: 8744 components: - type: Transform - pos: -3.5,2.5 + pos: 97.5,-22.5 parent: 2 - - uid: 357 + - uid: 8745 components: - type: Transform - pos: -15.5,-11.5 + pos: 96.5,-22.5 parent: 2 - - uid: 359 + - uid: 8746 components: - type: Transform - pos: -16.5,-11.5 + pos: 95.5,-22.5 parent: 2 - - uid: 397 + - uid: 8747 components: - type: Transform - pos: 2.5,6.5 + pos: 94.5,-22.5 parent: 2 - - uid: 400 + - uid: 8748 components: - type: Transform - pos: 2.5,7.5 + pos: 93.5,-22.5 parent: 2 - - uid: 418 + - uid: 8749 components: - type: Transform - pos: 53.5,12.5 + pos: 92.5,-22.5 parent: 2 - - uid: 427 + - uid: 8787 components: - type: Transform - pos: 55.5,12.5 + pos: 99.5,-17.5 parent: 2 - - uid: 433 + - uid: 8788 components: - type: Transform - pos: 5.5,20.5 + pos: 100.5,-17.5 parent: 2 - - uid: 445 + - uid: 8789 components: - type: Transform - pos: 60.5,12.5 + pos: 99.5,-22.5 parent: 2 - - uid: 446 + - uid: 8790 components: - type: Transform - pos: 61.5,12.5 + pos: 100.5,-22.5 parent: 2 - - uid: 464 + - uid: 8802 components: - type: Transform - pos: 63.5,12.5 + pos: 105.5,-25.5 parent: 2 - - uid: 465 + - uid: 8803 components: - type: Transform - pos: 65.5,16.5 + pos: 106.5,-25.5 parent: 2 - - uid: 469 + - uid: 8804 components: - type: Transform - pos: -7.5,-9.5 + pos: 107.5,-25.5 parent: 2 - - uid: 510 + - uid: 8808 components: - type: Transform - pos: -8.5,-11.5 + pos: 105.5,-20.5 parent: 2 - - uid: 560 + - uid: 8809 components: - type: Transform - pos: 14.5,-2.5 + pos: 107.5,-20.5 parent: 2 - - uid: 561 + - uid: 8839 components: - type: Transform - pos: 15.5,-2.5 + pos: 105.5,-14.5 parent: 2 - - uid: 574 + - uid: 8840 components: - type: Transform - pos: 65.5,14.5 + pos: 107.5,-14.5 parent: 2 - - uid: 689 + - uid: 8845 components: - type: Transform - pos: -20.5,-11.5 + pos: 105.5,-9.5 parent: 2 - - uid: 692 + - uid: 8846 components: - type: Transform - pos: -11.5,-11.5 + pos: 106.5,-9.5 parent: 2 - - uid: 695 + - uid: 8847 components: - type: Transform - pos: -11.5,-15.5 + pos: 107.5,-9.5 parent: 2 - - uid: 813 + - uid: 8879 components: - type: Transform - pos: 27.5,-26.5 + pos: 111.5,-20.5 parent: 2 - - uid: 814 + - uid: 8880 components: - type: Transform - pos: 25.5,-26.5 + pos: 112.5,-20.5 parent: 2 - - uid: 862 + - uid: 8881 components: - type: Transform - pos: 19.5,-30.5 + pos: 114.5,-20.5 parent: 2 - - uid: 863 + - uid: 8882 components: - type: Transform - pos: 19.5,-32.5 + pos: 115.5,-20.5 parent: 2 - - uid: 864 + - uid: 8925 components: - type: Transform - pos: 27.5,-34.5 + pos: 45.5,-24.5 parent: 2 - - uid: 865 + - uid: 8926 components: - type: Transform - pos: 28.5,-34.5 + pos: 45.5,-23.5 parent: 2 - - uid: 866 + - uid: 8942 components: - type: Transform - pos: 25.5,-34.5 + pos: 111.5,-14.5 parent: 2 - - uid: 867 + - uid: 8943 components: - type: Transform - pos: 24.5,-34.5 + pos: 112.5,-14.5 parent: 2 - - uid: 928 + - uid: 8944 components: - type: Transform - pos: 14.5,-33.5 + pos: 114.5,-14.5 parent: 2 - - uid: 929 + - uid: 8945 components: - type: Transform - pos: 14.5,-35.5 + pos: 115.5,-14.5 parent: 2 - - uid: 930 + - uid: 8956 components: - type: Transform - pos: 14.5,-36.5 + pos: 116.5,-15.5 parent: 2 - - uid: 931 + - uid: 8957 components: - type: Transform - pos: 13.5,-37.5 + pos: 116.5,-16.5 parent: 2 - - uid: 932 + - uid: 8958 components: - type: Transform - pos: 12.5,-37.5 + pos: 116.5,-18.5 parent: 2 - - uid: 934 + - uid: 8959 components: - type: Transform - pos: 10.5,-37.5 + pos: 116.5,-19.5 parent: 2 - - uid: 982 + - uid: 9334 components: - type: Transform - pos: 20.5,-37.5 + pos: 43.5,40.5 parent: 2 - - uid: 983 + - uid: 10086 components: - type: Transform - pos: 19.5,-37.5 + pos: 52.5,25.5 parent: 2 - - uid: 984 + - uid: 10087 components: - type: Transform - pos: 22.5,-37.5 + pos: 52.5,23.5 parent: 2 - - uid: 985 + - uid: 10123 components: - type: Transform - pos: 23.5,-37.5 + pos: 21.5,24.5 parent: 2 - - uid: 986 + - uid: 10124 components: - type: Transform - pos: 24.5,-38.5 + pos: 21.5,23.5 parent: 2 - - uid: 987 + - uid: 10125 components: - type: Transform - pos: 18.5,-38.5 + pos: 53.5,-0.5 parent: 2 - - uid: 988 + - uid: 10126 components: - type: Transform - pos: 18.5,-41.5 + pos: 52.5,1.5 parent: 2 - - uid: 989 + - uid: 10768 components: - type: Transform - pos: 18.5,-42.5 + pos: 73.5,24.5 parent: 2 - - uid: 990 + - uid: 11609 components: - type: Transform - pos: 18.5,-43.5 + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 parent: 2 - - uid: 991 + - uid: 11625 components: - type: Transform - pos: 17.5,-43.5 + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 parent: 2 - - uid: 992 + - uid: 11642 components: - type: Transform - pos: 16.5,-43.5 + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 parent: 2 - - uid: 993 + - uid: 11737 components: - type: Transform - pos: 18.5,-44.5 + rot: 3.141592653589793 rad + pos: 57.5,30.5 parent: 2 - - uid: 994 + - uid: 11860 components: - type: Transform - pos: 19.5,-44.5 + rot: 3.141592653589793 rad + pos: 56.5,30.5 parent: 2 - - uid: 995 + - uid: 11861 components: - type: Transform - pos: 20.5,-44.5 + rot: 3.141592653589793 rad + pos: 55.5,30.5 parent: 2 - - uid: 996 + - uid: 11971 components: - type: Transform - pos: 21.5,-44.5 + pos: 45.5,-31.5 parent: 2 - - uid: 997 + - uid: 12080 components: - type: Transform - pos: 22.5,-44.5 + rot: 3.141592653589793 rad + pos: 57.5,42.5 parent: 2 - - uid: 998 + - uid: 12421 components: - type: Transform - pos: 23.5,-44.5 + rot: -1.5707963267948966 rad + pos: -9.5,-10.5 parent: 2 - - uid: 999 + - uid: 12431 components: - type: Transform - pos: 24.5,-44.5 + rot: 3.141592653589793 rad + pos: 56.5,49.5 parent: 2 - - uid: 1000 + - uid: 12439 components: - type: Transform - pos: 24.5,-43.5 + rot: 3.141592653589793 rad + pos: 54.5,46.5 parent: 2 - - uid: 1001 + - uid: 12443 components: - type: Transform - pos: 25.5,-43.5 + rot: 3.141592653589793 rad + pos: 58.5,46.5 parent: 2 - - uid: 1002 + - uid: 12444 components: - type: Transform - pos: 26.5,-43.5 + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 parent: 2 - - uid: 1003 + - uid: 12451 components: - type: Transform - pos: 24.5,-42.5 + rot: 3.141592653589793 rad + pos: -8.5,1.5 parent: 2 - - uid: 1004 + - uid: 12453 components: - type: Transform - pos: 24.5,-41.5 + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 parent: 2 - - uid: 1051 + - uid: 12463 components: - type: Transform - pos: -13.5,-15.5 + rot: -1.5707963267948966 rad + pos: -23.5,1.5 parent: 2 - - uid: 1052 + - uid: 12471 components: - type: Transform - pos: 2.5,11.5 + rot: -1.5707963267948966 rad + pos: -7.5,-15.5 parent: 2 - - uid: 1061 + - uid: 12662 components: - type: Transform - pos: 2.5,12.5 + rot: 3.141592653589793 rad + pos: 55.5,46.5 parent: 2 - - uid: 1105 + - uid: 12670 components: - type: Transform - pos: -12.5,-15.5 + rot: 3.141592653589793 rad + pos: 57.5,46.5 parent: 2 - - uid: 1161 + - uid: 12761 components: - type: Transform - pos: -9.5,-11.5 + rot: 3.141592653589793 rad + pos: 47.5,31.5 parent: 2 - - uid: 1251 + - uid: 12804 components: - type: Transform - pos: 33.5,-34.5 + rot: -1.5707963267948966 rad + pos: -19.5,1.5 parent: 2 - - uid: 1308 + - uid: 12805 components: - type: Transform - pos: 7.5,-25.5 + rot: -1.5707963267948966 rad + pos: -18.5,1.5 parent: 2 - - uid: 1309 + - uid: 12806 components: - type: Transform - pos: 6.5,-25.5 + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 parent: 2 - - uid: 1310 + - uid: 12835 components: - type: Transform - pos: 6.5,-26.5 + rot: 3.141592653589793 rad + pos: -6.5,1.5 parent: 2 - - uid: 1311 + - uid: 12847 components: - type: Transform - pos: 6.5,-27.5 + rot: -1.5707963267948966 rad + pos: -22.5,1.5 parent: 2 - - uid: 1312 + - uid: 12935 components: - type: Transform - pos: 6.5,-30.5 + rot: 1.5707963267948966 rad + pos: -21.5,-5.5 parent: 2 - - uid: 1313 + - uid: 12936 components: - type: Transform - pos: 6.5,-31.5 + rot: -1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - - uid: 1314 + - uid: 12939 components: - type: Transform - pos: 6.5,-32.5 + rot: -1.5707963267948966 rad + pos: -15.5,1.5 parent: 2 - - uid: 1315 + - uid: 12940 components: - type: Transform - pos: 5.5,-32.5 + rot: -1.5707963267948966 rad + pos: -13.5,1.5 parent: 2 - - uid: 1320 + - uid: 12979 components: - type: Transform - pos: 2.5,8.5 + pos: 43.5,-49.5 parent: 2 - - uid: 1322 + - uid: 12982 components: - type: Transform - pos: 2.5,10.5 + pos: 42.5,-49.5 parent: 2 - - uid: 1342 + - uid: 12983 components: - type: Transform - pos: 1.5,-27.5 + pos: 41.5,-49.5 parent: 2 - - uid: 1343 + - uid: 13079 components: - type: Transform - pos: 0.5,-27.5 + pos: -11.5,1.5 parent: 2 - - uid: 1344 + - uid: 13112 components: - type: Transform - pos: -1.5,-28.5 + rot: -1.5707963267948966 rad + pos: -9.5,1.5 parent: 2 - - uid: 1345 + - uid: 13255 components: - type: Transform - pos: -1.5,-29.5 + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 parent: 2 - - uid: 1363 + - uid: 13257 components: - type: Transform - pos: 1.5,-34.5 + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 parent: 2 - - uid: 1364 + - uid: 13258 components: - type: Transform - pos: 0.5,-34.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 2 - - uid: 1365 + - uid: 13260 components: - type: Transform - pos: -0.5,-34.5 + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 parent: 2 - - uid: 1366 + - uid: 13271 components: - type: Transform - pos: 1.5,-36.5 + rot: -1.5707963267948966 rad + pos: -25.5,-9.5 parent: 2 - - uid: 1367 + - uid: 13276 components: - type: Transform - pos: 0.5,-36.5 + rot: 1.5707963267948966 rad + pos: -13.5,-21.5 parent: 2 - - uid: 1368 + - uid: 13283 components: - type: Transform - pos: -0.5,-36.5 + rot: 3.141592653589793 rad + pos: 56.5,51.5 parent: 2 - - uid: 1526 + - uid: 13295 components: - type: Transform - pos: 0.5,1.5 + rot: -1.5707963267948966 rad + pos: -25.5,-21.5 parent: 2 - - uid: 1735 + - uid: 13297 components: - type: Transform - pos: 42.5,-16.5 + rot: -1.5707963267948966 rad + pos: -26.5,-21.5 parent: 2 - - uid: 1736 + - uid: 13298 components: - type: Transform - pos: 42.5,-15.5 + rot: -1.5707963267948966 rad + pos: -27.5,-21.5 parent: 2 - - uid: 1737 + - uid: 13299 components: - type: Transform - pos: 42.5,-14.5 + rot: -1.5707963267948966 rad + pos: -21.5,-15.5 parent: 2 - - uid: 1738 + - uid: 13301 components: - type: Transform - pos: 46.5,-16.5 + rot: -1.5707963267948966 rad + pos: -25.5,-17.5 parent: 2 - - uid: 1739 + - uid: 13302 components: - type: Transform - pos: 46.5,-15.5 + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 parent: 2 - - uid: 1740 + - uid: 13312 components: - type: Transform - pos: 46.5,-14.5 + pos: -22.5,-23.5 parent: 2 - - uid: 1808 + - uid: 13314 components: - type: Transform - pos: -4.5,-17.5 + pos: -23.5,-23.5 parent: 2 - - uid: 1809 + - uid: 13318 components: - type: Transform - pos: -18.5,-11.5 + pos: -0.5,-15.5 parent: 2 - - uid: 1855 + - uid: 13319 components: - type: Transform - pos: -3.5,0.5 + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 parent: 2 - - uid: 2022 + - uid: 13343 components: - type: Transform - pos: -19.5,-15.5 + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 parent: 2 - - uid: 2053 + - uid: 13440 components: - type: Transform - pos: 4.5,28.5 + pos: 45.5,-27.5 parent: 2 - - uid: 2054 + - uid: 13467 components: - type: Transform - pos: 6.5,28.5 + pos: 10.5,-43.5 parent: 2 - - uid: 2055 + - uid: 13468 components: - type: Transform - pos: 5.5,28.5 + pos: 8.5,-41.5 parent: 2 - - uid: 2056 + - uid: 13557 components: - type: Transform - pos: 4.5,25.5 + rot: 3.141592653589793 rad + pos: 65.5,35.5 parent: 2 - - uid: 2057 + - uid: 13558 components: - type: Transform - pos: 5.5,25.5 + rot: 3.141592653589793 rad + pos: 65.5,36.5 parent: 2 - - uid: 2058 + - uid: 13559 components: - type: Transform - pos: 6.5,25.5 + rot: 3.141592653589793 rad + pos: 65.5,37.5 parent: 2 - - uid: 2059 + - uid: 13656 components: - type: Transform - pos: 4.5,22.5 + pos: 2.5,-20.5 parent: 2 - - uid: 2060 + - uid: 13657 components: - type: Transform - pos: 5.5,22.5 + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 parent: 2 - - uid: 2061 + - uid: 13692 components: - type: Transform - pos: 6.5,22.5 + pos: 17.5,-37.5 parent: 2 - - uid: 2068 + - uid: 13786 components: - type: Transform - pos: -13.5,-11.5 + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 parent: 2 - - uid: 2240 + - uid: 13787 components: - type: Transform - pos: 28.5,21.5 + rot: 1.5707963267948966 rad + pos: -7.5,-19.5 parent: 2 - - uid: 2241 + - uid: 13829 components: - type: Transform - pos: 28.5,20.5 + pos: 4.5,-20.5 parent: 2 - - uid: 2242 + - uid: 13840 components: - type: Transform - pos: 28.5,18.5 + rot: 1.5707963267948966 rad + pos: -14.5,-21.5 parent: 2 - - uid: 2243 + - uid: 13841 components: - type: Transform - pos: 28.5,17.5 + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 parent: 2 - - uid: 2256 + - uid: 13850 components: - type: Transform - pos: 31.5,21.5 + rot: 1.5707963267948966 rad + pos: -19.5,-23.5 parent: 2 - - uid: 2257 + - uid: 13851 components: - type: Transform - pos: 31.5,17.5 + rot: 1.5707963267948966 rad + pos: -18.5,-23.5 parent: 2 - - uid: 2284 + - uid: 13852 components: - type: Transform - pos: 44.5,34.5 + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 parent: 2 - - uid: 2285 + - uid: 13853 components: - type: Transform - pos: 44.5,35.5 + rot: 1.5707963267948966 rad + pos: -10.5,-24.5 parent: 2 - - uid: 2286 + - uid: 13907 components: - type: Transform - pos: 44.5,36.5 + rot: 1.5707963267948966 rad + pos: -21.5,-18.5 parent: 2 - - uid: 2287 + - uid: 13908 components: - type: Transform - pos: 42.5,33.5 + rot: 1.5707963267948966 rad + pos: -21.5,-19.5 parent: 2 - - uid: 2288 + - uid: 14083 components: - type: Transform - pos: 42.5,32.5 + rot: 1.5707963267948966 rad + pos: 74.5,24.5 parent: 2 - - uid: 2289 + - uid: 14093 components: - type: Transform - pos: 42.5,31.5 + pos: 75.5,24.5 parent: 2 - - uid: 2367 + - uid: 14165 components: - type: Transform - pos: 37.5,24.5 + rot: 1.5707963267948966 rad + pos: 78.5,30.5 parent: 2 - - uid: 2368 + - uid: 14166 components: - type: Transform - pos: 37.5,23.5 + rot: 1.5707963267948966 rad + pos: 78.5,29.5 parent: 2 - - uid: 2369 + - uid: 14167 components: - type: Transform - pos: 38.5,20.5 + rot: 1.5707963267948966 rad + pos: 78.5,31.5 parent: 2 - - uid: 2370 + - uid: 14170 components: - type: Transform - pos: 37.5,21.5 + rot: 1.5707963267948966 rad + pos: 79.5,28.5 parent: 2 - - uid: 2373 + - uid: 14197 components: - type: Transform - pos: 42.5,24.5 + rot: 3.141592653589793 rad + pos: 82.5,35.5 parent: 2 - - uid: 2374 + - uid: 14363 components: - type: Transform - pos: 42.5,22.5 + rot: 1.5707963267948966 rad + pos: 93.5,31.5 parent: 2 - - uid: 2427 + - uid: 14364 components: - type: Transform - pos: 88.5,-6.5 + rot: 1.5707963267948966 rad + pos: 93.5,30.5 parent: 2 - - uid: 2458 + - uid: 14365 components: - type: Transform - pos: 43.5,16.5 + rot: 1.5707963267948966 rad + pos: 93.5,29.5 parent: 2 - - uid: 2459 + - uid: 14368 components: - type: Transform - pos: 41.5,16.5 + rot: 1.5707963267948966 rad + pos: 95.5,31.5 parent: 2 - - uid: 2476 + - uid: 14369 components: - type: Transform - pos: 33.5,-36.5 + rot: 1.5707963267948966 rad + pos: 95.5,29.5 parent: 2 - - uid: 2483 + - uid: 14761 components: - type: Transform - pos: 37.5,-28.5 + rot: -1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - - uid: 2745 + - uid: 14923 components: - type: Transform - pos: 15.5,42.5 + pos: 45.5,-15.5 parent: 2 - - uid: 2746 + - uid: 15004 components: - type: Transform - pos: 14.5,42.5 + pos: 45.5,-16.5 parent: 2 - - uid: 2747 +- proto: RemoteSignaller + entities: + - uid: 9222 components: - type: Transform - pos: 13.5,42.5 + pos: 19.330996,46.803196 parent: 2 - - uid: 2748 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 8233 components: - type: Transform - pos: 23.5,38.5 + pos: 49.5,25.5 parent: 2 - - uid: 2749 +- proto: Retractor + entities: + - uid: 6808 components: - type: Transform - pos: 22.5,38.5 + pos: 66.55991,-3.281434 parent: 2 - - uid: 2750 +- proto: RiotShield + entities: + - uid: 9883 components: - type: Transform - pos: 21.5,38.5 + pos: 38.328156,28.35502 parent: 2 - - uid: 2752 + - uid: 9884 components: - type: Transform - pos: 21.5,43.5 + pos: 38.328156,28.365444 parent: 2 - - uid: 2753 + - uid: 14664 components: - type: Transform - pos: 24.5,43.5 + pos: 38.328156,28.365444 parent: 2 - - uid: 2754 +- proto: RobocopCircuitBoard + entities: + - uid: 14284 components: - type: Transform - pos: 27.5,38.5 + pos: 86.54398,28.473265 parent: 2 - - uid: 2755 +- proto: RockGuitarInstrument + entities: + - uid: 9741 components: - type: Transform - pos: 27.5,43.5 + pos: 19.5661,-11.900069 parent: 2 - - uid: 2786 +- proto: SalvageMagnet + entities: + - uid: 11666 components: - type: Transform - pos: -4.5,-12.5 + rot: -1.5707963267948966 rad + pos: 6.5,39.5 parent: 2 - - uid: 2817 +- proto: Saw + entities: + - uid: 12333 components: - type: Transform - pos: 22.5,49.5 + pos: 57.474747,-14.628655 parent: 2 - - uid: 2818 +- proto: SawElectric + entities: + - uid: 5210 components: - type: Transform - pos: 23.5,49.5 + pos: 67.45054,-4.453309 parent: 2 - - uid: 2819 + - uid: 5395 components: - type: Transform - pos: 24.5,49.5 + pos: 55.53906,10.407994 parent: 2 - - uid: 2820 +- proto: Scalpel + entities: + - uid: 5137 components: - type: Transform - pos: 25.5,49.5 + pos: 74.5,-0.5 parent: 2 - - uid: 2821 + - uid: 5394 components: - type: Transform - pos: 26.5,49.5 + pos: 55.523434,10.407994 parent: 2 - - uid: 2822 + - uid: 10073 components: - type: Transform - pos: 27.5,49.5 + pos: 66.473175,-3.547059 parent: 2 - - uid: 2823 +- proto: ScrapCamera + entities: + - uid: 6843 components: - type: Transform - pos: 28.5,49.5 + pos: 67.493965,34.506084 parent: 2 - - uid: 2824 +- proto: Screen + entities: + - uid: 13232 components: - type: Transform - pos: 29.5,49.5 + pos: 24.5,-20.5 parent: 2 - - uid: 2825 + - uid: 13233 components: - type: Transform - pos: 30.5,49.5 + pos: 24.5,-2.5 parent: 2 - - uid: 2826 + - uid: 13234 components: - type: Transform - pos: 31.5,49.5 + pos: 32.5,-1.5 parent: 2 - - uid: 2827 + - uid: 13235 components: - type: Transform - pos: 32.5,49.5 + pos: 21.5,-1.5 parent: 2 - - uid: 2859 + - uid: 13236 components: - type: Transform - pos: 60.5,-12.5 + pos: 2.5,-2.5 parent: 2 - - uid: 2860 + - uid: 13237 components: - type: Transform - pos: 61.5,-12.5 + pos: 2.5,9.5 parent: 2 - - uid: 2861 + - uid: 13238 components: - type: Transform - pos: 62.5,-12.5 + pos: 17.5,11.5 parent: 2 - - uid: 2862 + - uid: 13239 components: - type: Transform - pos: 63.5,-12.5 + pos: 38.5,16.5 parent: 2 - - uid: 2863 + - uid: 13240 components: - type: Transform - pos: 62.5,-14.5 + pos: 39.5,10.5 parent: 2 - - uid: 2864 + - uid: 13241 components: - type: Transform - pos: 63.5,-14.5 + pos: 29.5,38.5 parent: 2 - - uid: 2865 + - uid: 13242 components: - type: Transform - pos: 60.5,-14.5 + pos: 20.5,43.5 parent: 2 - - uid: 2866 + - uid: 13243 components: - type: Transform - pos: 61.5,-14.5 + pos: 23.5,19.5 parent: 2 - - uid: 2867 + - uid: 13579 components: - type: Transform - pos: 59.5,-14.5 + pos: -7.5,1.5 parent: 2 - - uid: 3069 + - uid: 14563 components: - type: Transform - pos: 42.5,40.5 + rot: 1.5707963267948966 rad + pos: 88.5,32.5 parent: 2 - - uid: 3070 +- proto: Screwdriver + entities: + - uid: 11132 components: - type: Transform - pos: 41.5,40.5 + pos: 57.5176,-14.309467 parent: 2 - - uid: 3086 +- proto: SecurityTechFab + entities: + - uid: 12373 components: - type: Transform - pos: 36.5,46.5 + pos: 38.5,21.5 parent: 2 - - uid: 3087 +- proto: SeedExtractor + entities: + - uid: 3159 components: - type: Transform - pos: 36.5,45.5 + pos: 53.5,36.5 parent: 2 - - uid: 3088 + - uid: 6677 components: - type: Transform - pos: 18.5,45.5 + pos: 45.5,-4.5 parent: 2 - - uid: 3089 +- proto: ShardGlass + entities: + - uid: 10809 components: - type: Transform - pos: 18.5,44.5 + pos: 89.55373,-21.433664 parent: 2 - - uid: 3098 + - uid: 10810 components: - type: Transform - pos: 48.5,49.5 + pos: 90.27248,-20.82429 parent: 2 - - uid: 3099 +- proto: SheetGlass + entities: + - uid: 784 components: - type: Transform - pos: 48.5,48.5 - parent: 2 - - uid: 3100 + parent: 5625 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1648 components: - type: Transform - pos: 47.5,48.5 + pos: 33.519444,-17.381672 parent: 2 - - uid: 3101 + - uid: 5327 components: - type: Transform - pos: 46.5,48.5 + pos: 56.186665,17.583338 parent: 2 - - uid: 3102 + - uid: 5328 components: - type: Transform - pos: 45.5,48.5 + pos: 56.186665,17.583338 parent: 2 - - uid: 3103 + - uid: 5329 components: - type: Transform - pos: 45.5,47.5 + pos: 56.186665,17.583338 parent: 2 - - uid: 3104 + - uid: 5636 components: - type: Transform - pos: 44.5,47.5 + pos: 16.999237,-26.465462 parent: 2 - - uid: 3105 + - uid: 5640 components: - type: Transform - pos: 43.5,47.5 + pos: 16.999237,-26.465462 parent: 2 - - uid: 3110 + - uid: 10311 components: - type: Transform - pos: 46.5,45.5 + pos: 8.421515,-6.356274 parent: 2 - - uid: 3111 +- proto: SheetPlasma + entities: + - uid: 2129 components: - type: Transform - pos: 47.5,45.5 - parent: 2 - - uid: 3112 + parent: 5625 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7529 components: - type: Transform - pos: 48.5,45.5 + pos: 71.06963,13.620979 parent: 2 - - uid: 3113 + - uid: 14581 components: - type: Transform - pos: 49.5,45.5 + pos: 82.5,34.5 parent: 2 - - uid: 3127 +- proto: SheetPlasteel + entities: + - uid: 1842 components: - type: Transform - pos: 50.5,46.5 - parent: 2 - - uid: 3128 + parent: 5625 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5635 components: - type: Transform - pos: 50.5,47.5 + pos: 17.5,-26.5 parent: 2 - - uid: 3129 + - uid: 10312 components: - type: Transform - pos: 51.5,47.5 + pos: 8.609015,-6.340649 parent: 2 - - uid: 3130 +- proto: SheetPlastic + entities: + - uid: 5333 components: - type: Transform - pos: 52.5,47.5 + pos: 56.436665,17.505213 parent: 2 - - uid: 3131 + - uid: 5334 components: - type: Transform - pos: 53.5,47.5 + pos: 56.436665,17.505213 parent: 2 - - uid: 3132 + - uid: 5335 components: - type: Transform - pos: 54.5,47.5 + pos: 56.436665,17.505213 parent: 2 - - uid: 3133 +- proto: SheetSteel + entities: + - uid: 1239 components: - type: Transform - pos: 55.5,47.5 - parent: 2 - - uid: 3134 + parent: 5625 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1789 components: - type: Transform - pos: 56.5,47.5 + pos: 33.507664,-17.468887 parent: 2 - - uid: 3135 + - uid: 5152 components: - type: Transform - pos: 57.5,47.5 + pos: 43.528275,-35.489674 parent: 2 - - uid: 3142 + - uid: 5153 components: - type: Transform - pos: 47.5,40.5 + pos: 43.528275,-35.489674 parent: 2 - - uid: 3143 + - uid: 5330 components: - type: Transform - pos: 47.5,39.5 + pos: 56.63979,17.598963 parent: 2 - - uid: 3144 + - uid: 5331 components: - type: Transform - pos: 47.5,38.5 + pos: 56.63979,17.598963 parent: 2 - - uid: 3145 + - uid: 5332 components: - type: Transform - pos: 47.5,37.5 + pos: 56.63979,17.598963 parent: 2 - - uid: 3209 + - uid: 5383 components: - type: Transform - pos: 58.5,47.5 + pos: 50.524685,8.532994 parent: 2 - - uid: 3210 + - uid: 5384 components: - type: Transform - pos: 59.5,47.5 + pos: 50.524685,8.532994 parent: 2 - - uid: 3211 + - uid: 5385 components: - type: Transform - pos: 60.5,47.5 + pos: 50.524685,8.532994 parent: 2 - - uid: 3212 + - uid: 5633 components: - type: Transform - pos: 61.5,47.5 + pos: 16.5,-26.5 parent: 2 - - uid: 3214 + - uid: 5634 components: - type: Transform - pos: 62.5,47.5 + pos: 16.5,-26.5 parent: 2 - - uid: 3265 + - uid: 7271 components: - type: Transform - pos: 62.5,46.5 + pos: 30.5,-30.5 parent: 2 - - uid: 3335 + - uid: 7272 components: - type: Transform - pos: 50.5,49.5 + pos: 30.5,-30.5 parent: 2 - - uid: 3336 + - uid: 8175 components: - type: Transform - pos: 51.5,49.5 + pos: 43.528275,-35.489674 parent: 2 - - uid: 3337 + - uid: 10313 components: - type: Transform - pos: 52.5,49.5 + pos: 8.53089,-6.434399 parent: 2 - - uid: 3338 + - uid: 12088 components: - type: Transform - pos: 53.5,49.5 + pos: 16.49948,-26.476994 parent: 2 - - uid: 3339 + - uid: 13432 components: - type: Transform - pos: 55.5,49.5 + pos: 43.528275,-35.489674 parent: 2 - - uid: 3340 +- proto: SheetSteel1 + entities: + - uid: 4672 components: - type: Transform - pos: 54.5,49.5 + pos: 90.36041,-10.650079 parent: 2 - - uid: 3343 + - uid: 6720 components: - type: Transform - pos: 57.5,49.5 + pos: 90.60682,-10.582865 parent: 2 - - uid: 3344 + - uid: 6721 components: - type: Transform - pos: 58.5,49.5 + pos: 90.45002,-10.358817 parent: 2 - - uid: 3345 +- proto: SheetUranium + entities: + - uid: 1460 components: - type: Transform - pos: 59.5,49.5 - parent: 2 - - uid: 3346 + parent: 5625 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShotGunCabinetFilled + entities: + - uid: 2221 components: - type: Transform - pos: 60.5,49.5 + rot: -1.5707963267948966 rad + pos: 40.5,18.5 parent: 2 - - uid: 3347 +- proto: Shovel + entities: + - uid: 1053 components: - type: Transform - pos: 61.5,49.5 + pos: 5.5,31.5 parent: 2 - - uid: 3348 +- proto: ShuttersNormal + entities: + - uid: 5268 components: - type: Transform - pos: 62.5,49.5 + pos: 44.5,12.5 parent: 2 - - uid: 3389 + - uid: 6513 components: - type: Transform - pos: 64.5,49.5 + pos: 46.5,-11.5 parent: 2 - - uid: 3390 + - uid: 6514 components: - type: Transform - pos: 64.5,48.5 + pos: 47.5,-11.5 parent: 2 - - uid: 3391 +- proto: ShuttersNormalOpen + entities: + - uid: 265 components: - type: Transform - pos: 65.5,48.5 + pos: 34.5,-8.5 parent: 2 - - uid: 3392 + - uid: 267 components: - type: Transform - pos: 66.5,48.5 + pos: 35.5,-8.5 parent: 2 - - uid: 3393 + - uid: 270 components: - type: Transform - pos: 67.5,48.5 + pos: 36.5,-8.5 parent: 2 - - uid: 3394 + - uid: 419 components: - type: Transform - pos: 67.5,47.5 + rot: -1.5707963267948966 rad + pos: 37.5,-7.5 parent: 2 - - uid: 3395 + - uid: 913 components: - type: Transform - pos: 68.5,47.5 + rot: -1.5707963267948966 rad + pos: 37.5,-4.5 parent: 2 - - uid: 3397 + - uid: 1154 components: - type: Transform - pos: 72.5,46.5 + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 parent: 2 - - uid: 3398 + - uid: 1658 components: - type: Transform - pos: 73.5,46.5 + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 parent: 2 - - uid: 3399 + - uid: 2090 components: - type: Transform - pos: 74.5,46.5 + pos: 11.5,29.5 parent: 2 - - uid: 3400 + - uid: 6512 components: - type: Transform - pos: 74.5,44.5 + rot: -1.5707963267948966 rad + pos: 37.5,-5.5 parent: 2 - - uid: 3401 + - uid: 12381 components: - type: Transform - pos: 73.5,44.5 + pos: 13.5,29.5 parent: 2 - - uid: 3402 + - uid: 12824 components: - type: Transform - pos: 72.5,44.5 + rot: -1.5707963267948966 rad + pos: 28.5,17.5 parent: 2 - - uid: 3479 + - uid: 12825 components: - type: Transform - pos: 48.5,17.5 + rot: -1.5707963267948966 rad + pos: 28.5,20.5 parent: 2 - - uid: 3480 + - uid: 12826 components: - type: Transform - pos: 48.5,19.5 + rot: -1.5707963267948966 rad + pos: 28.5,18.5 parent: 2 - - uid: 3499 + - uid: 12839 components: - type: Transform - pos: 54.5,26.5 + pos: 12.5,29.5 parent: 2 - - uid: 3500 + - uid: 13183 components: - type: Transform - pos: 55.5,26.5 + rot: -1.5707963267948966 rad + pos: 28.5,21.5 parent: 2 - - uid: 3501 + - uid: 13422 components: - type: Transform - pos: 55.5,27.5 + rot: 1.5707963267948966 rad + pos: 12.5,-42.5 parent: 2 - - uid: 3502 + - uid: 13476 components: - type: Transform - pos: 57.5,27.5 + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 parent: 2 - - uid: 3503 + - uid: 13477 components: - type: Transform - pos: 57.5,26.5 + rot: -1.5707963267948966 rad + pos: 8.5,-41.5 parent: 2 - - uid: 3504 + - uid: 13478 components: - type: Transform - pos: 58.5,26.5 + rot: -1.5707963267948966 rad + pos: 8.5,-40.5 parent: 2 - - uid: 3594 + - uid: 13479 components: - type: Transform - pos: 90.5,-6.5 + pos: 8.5,-43.5 parent: 2 - - uid: 3612 + - uid: 13480 components: - type: Transform - pos: 88.5,-5.5 + pos: 9.5,-43.5 parent: 2 - - uid: 3613 + - uid: 13481 components: - type: Transform - pos: 88.5,-4.5 + pos: 10.5,-43.5 parent: 2 - - uid: 3618 + - uid: 13482 components: - type: Transform - pos: 75.5,17.5 + pos: 11.5,-43.5 parent: 2 - - uid: 3619 + - uid: 13483 components: - type: Transform - pos: 75.5,16.5 + rot: 3.141592653589793 rad + pos: 12.5,-39.5 parent: 2 - - uid: 3620 + - uid: 13484 components: - type: Transform - pos: 77.5,13.5 + rot: 3.141592653589793 rad + pos: 10.5,-39.5 parent: 2 - - uid: 3621 + - uid: 13485 components: - type: Transform - pos: 75.5,15.5 + rot: 3.141592653589793 rad + pos: 9.5,-39.5 parent: 2 - - uid: 3622 + - uid: 13486 components: - type: Transform - pos: 78.5,13.5 + rot: 3.141592653589793 rad + pos: 8.5,-39.5 parent: 2 - - uid: 3623 + - uid: 13488 components: - type: Transform - pos: 79.5,13.5 + rot: 1.5707963267948966 rad + pos: 14.5,-36.5 parent: 2 - - uid: 3624 + - uid: 13489 components: - type: Transform - pos: 80.5,13.5 + rot: 1.5707963267948966 rad + pos: 14.5,-35.5 parent: 2 - - uid: 3705 + - uid: 13490 components: - type: Transform - pos: 91.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,-33.5 parent: 2 - - uid: 3706 + - uid: 13644 components: - type: Transform - pos: 90.5,0.5 + pos: 55.5,30.5 parent: 2 - - uid: 3707 + - uid: 13645 components: - type: Transform - pos: 90.5,1.5 + pos: 56.5,30.5 parent: 2 - - uid: 3803 + - uid: 13646 components: - type: Transform - pos: 82.5,-8.5 + pos: 57.5,30.5 parent: 2 - - uid: 3804 + - uid: 13647 components: - type: Transform - pos: 81.5,-8.5 + pos: 55.5,42.5 parent: 2 - - uid: 3805 + - uid: 13648 components: - type: Transform - pos: 80.5,-8.5 + pos: 56.5,42.5 parent: 2 - - uid: 3806 + - uid: 13649 components: - type: Transform - pos: 79.5,-8.5 + pos: 57.5,42.5 parent: 2 - - uid: 3865 + - uid: 13650 components: - type: Transform - pos: 73.5,-17.5 + rot: -1.5707963267948966 rad + pos: 52.5,38.5 parent: 2 - - uid: 3866 + - uid: 13651 components: - type: Transform - pos: 74.5,-17.5 + rot: -1.5707963267948966 rad + pos: 52.5,39.5 parent: 2 - - uid: 3867 + - uid: 13652 components: - type: Transform - pos: 75.5,-17.5 + rot: 1.5707963267948966 rad + pos: 60.5,36.5 parent: 2 - - uid: 3868 + - uid: 13915 components: - type: Transform - pos: 76.5,-17.5 + rot: -1.5707963267948966 rad + pos: 28.5,29.5 parent: 2 - - uid: 3869 + - uid: 14910 components: - type: Transform - pos: 77.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,18.5 parent: 2 - - uid: 3870 + - uid: 14911 components: - type: Transform - pos: 78.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,19.5 parent: 2 - - uid: 3871 + - uid: 14912 components: - type: Transform - pos: 80.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,16.5 parent: 2 - - uid: 3872 +- proto: ShuttersRadiationOpen + entities: + - uid: 449 components: - type: Transform - pos: 79.5,-17.5 + pos: 17.5,-37.5 parent: 2 - - uid: 3873 + - uid: 779 components: - type: Transform - pos: 81.5,-17.5 + pos: 19.5,-37.5 parent: 2 - - uid: 3874 + - uid: 780 components: - type: Transform - pos: 82.5,-17.5 + pos: 20.5,-37.5 parent: 2 - - uid: 3875 + - uid: 2044 components: - type: Transform - pos: 83.5,-17.5 + pos: 16.5,-37.5 parent: 2 - - uid: 3876 + - uid: 3241 components: - type: Transform - pos: 84.5,-17.5 + pos: 22.5,-44.5 parent: 2 - - uid: 3877 + - uid: 3972 components: - type: Transform - pos: 85.5,-17.5 + pos: 23.5,-44.5 parent: 2 - - uid: 3878 + - uid: 3992 components: - type: Transform - pos: 86.5,-17.5 + pos: 21.5,-44.5 parent: 2 - - uid: 4046 + - uid: 4502 components: - type: Transform - pos: 45.5,-22.5 + pos: 22.5,-37.5 parent: 2 - - uid: 4052 + - uid: 4503 components: - type: Transform - pos: 36.5,-27.5 + pos: 23.5,-37.5 parent: 2 - - uid: 4055 + - uid: 4635 components: - type: Transform - pos: 45.5,-33.5 + pos: 26.5,-43.5 parent: 2 - - uid: 4056 + - uid: 4636 components: - type: Transform - pos: 45.5,-35.5 + pos: 25.5,-43.5 parent: 2 - - uid: 4086 + - uid: 7808 components: - type: Transform - pos: 33.5,-35.5 + pos: 20.5,-44.5 parent: 2 - - uid: 4252 + - uid: 8031 components: - type: Transform - pos: 24.5,-27.5 + pos: 19.5,-44.5 parent: 2 - - uid: 4253 + - uid: 10959 components: - type: Transform - pos: 28.5,-27.5 + pos: 16.5,-43.5 parent: 2 - - uid: 4269 + - uid: 10999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-16.5 + pos: 17.5,-43.5 parent: 2 - - uid: 4270 +- proto: SignAi + entities: + - uid: 3417 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-16.5 + pos: 68.5,22.5 parent: 2 - - uid: 4271 + - uid: 14570 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-18.5 + pos: 87.5,31.5 parent: 2 - - uid: 4272 +- proto: SignAiUpload + entities: + - uid: 14250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-18.5 + pos: 83.5,29.5 parent: 2 - - uid: 4273 +- proto: SignalButton + entities: + - uid: 128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-18.5 + rot: 1.5707963267948966 rad + pos: 5.5,28.5 parent: 2 - - uid: 4275 + - type: DeviceLinkSource + linkedPorts: + 8103: + - Pressed: Toggle + - uid: 202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-17.5 + pos: 37.5,-29.5 parent: 2 - - uid: 4292 + - type: DeviceLinkSource + linkedPorts: + 55: + - Pressed: Toggle + - uid: 1471 components: + - type: MetaData + name: Kitchen Counter Shutters - type: Transform - pos: 35.5,-27.5 + pos: 32.5,-9.5 parent: 2 - - uid: 4297 + - type: DeviceLinkSource + linkedPorts: + 265: + - Pressed: Toggle + 267: + - Pressed: Toggle + 270: + - Pressed: Toggle + - uid: 4245 components: - type: Transform - pos: 33.5,-28.5 + pos: 37.5,-33.5 parent: 2 - - uid: 4298 + - type: DeviceLinkSource + linkedPorts: + 4257: + - Pressed: Toggle + - uid: 5043 components: - type: Transform - pos: 45.5,-21.5 + pos: 16.5,-30.5 parent: 2 - - uid: 4327 + - type: DeviceLinkSource + linkedPorts: + 5124: + - Pressed: Toggle + - uid: 5428 components: - type: Transform - pos: 33.5,-43.5 + pos: 6.5,34.5 parent: 2 - - uid: 4328 + - type: DeviceLinkSource + linkedPorts: + 895: + - Pressed: Toggle + - uid: 5685 components: + - type: MetaData + name: Engineering Secure Storage Button - type: Transform - pos: 33.5,-42.5 + pos: 12.5,-25.5 parent: 2 - - uid: 4370 + - type: DeviceLinkSource + linkedPorts: + 2834: + - Pressed: Toggle + 2835: + - Pressed: Toggle + - uid: 6749 components: + - type: MetaData + name: Pen Maints Hatch - type: Transform - pos: 37.5,-36.5 + rot: -1.5707963267948966 rad + pos: 48.5,-9.5 parent: 2 - - uid: 4371 + - type: DeviceLinkSource + linkedPorts: + 6513: + - Pressed: Toggle + 6514: + - Pressed: Toggle + - uid: 7809 components: - type: Transform - pos: 37.5,-35.5 + rot: 1.5707963267948966 rad + pos: 5.5,22.5 parent: 2 - - uid: 4372 + - type: DeviceLinkSource + linkedPorts: + 8067: + - Pressed: Toggle + - uid: 10321 components: - type: Transform - pos: 37.5,-34.5 + pos: 48.5,12.5 parent: 2 - - uid: 4393 + - type: DeviceLinkSource + linkedPorts: + 150: + - Pressed: Toggle + - uid: 13002 components: - type: Transform - pos: 31.5,-45.5 + pos: 10.5,29.5 parent: 2 - - uid: 4394 + - type: DeviceLinkSource + linkedPorts: + 2090: + - Pressed: Toggle + 12839: + - Pressed: Toggle + 12381: + - Pressed: Toggle + - uid: 13491 components: - type: Transform - pos: 32.5,-45.5 + pos: 11.5,-32.5 parent: 2 - - uid: 4416 + - type: DeviceLinkSource + linkedPorts: + 13490: + - Pressed: Toggle + 13489: + - Pressed: Toggle + 13488: + - Pressed: Toggle + - uid: 13492 components: - type: Transform - pos: 46.5,-36.5 + rot: -1.5707963267948966 rad + pos: 12.5,-41.5 parent: 2 - - uid: 4437 + - type: DeviceLinkSource + linkedPorts: + 13422: + - Pressed: Toggle + 13483: + - Pressed: Toggle + 13484: + - Pressed: Toggle + 13485: + - Pressed: Toggle + 13486: + - Pressed: Toggle + 13478: + - Pressed: Toggle + 13477: + - Pressed: Toggle + 13476: + - Pressed: Toggle + 13479: + - Pressed: Toggle + 13480: + - Pressed: Toggle + 13481: + - Pressed: Toggle + 13482: + - Pressed: Toggle + - uid: 14913 components: - type: Transform - pos: 45.5,-34.5 + rot: 1.5707963267948966 rad + pos: 4.5,15.5 parent: 2 - - uid: 4442 + - type: DeviceLinkSource + linkedPorts: + 14912: + - Pressed: Toggle + 14910: + - Pressed: Toggle + 14911: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 543 components: + - type: MetaData + name: Bar Shutters - type: Transform - pos: 45.5,-32.5 + rot: 3.141592653589793 rad + pos: 40.5,-8.5 parent: 2 - - uid: 4452 + - type: DeviceLinkSource + linkedPorts: + 419: + - Pressed: Toggle + 1658: + - Pressed: Toggle + 6512: + - Pressed: Toggle + 913: + - Pressed: Toggle + 1154: + - Pressed: Toggle + - uid: 3993 components: - type: Transform - pos: 33.5,-44.5 + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 parent: 2 - - uid: 4482 + - type: DeviceLinkSource + linkedPorts: + 4636: + - Pressed: Toggle + 4635: + - Pressed: Toggle + 3972: + - Pressed: Toggle + 3241: + - Pressed: Toggle + 3992: + - Pressed: Toggle + 7808: + - Pressed: Toggle + 8031: + - Pressed: Toggle + 10999: + - Pressed: Toggle + 10959: + - Pressed: Toggle + - uid: 11001 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-40.5 + pos: 18.5,-37.5 parent: 2 - - uid: 4483 + - type: DeviceLinkSource + linkedPorts: + 449: + - Pressed: Toggle + 2044: + - Pressed: Toggle + 779: + - Pressed: Toggle + 780: + - Pressed: Toggle + 4502: + - Pressed: Toggle + 4503: + - Pressed: Toggle + - uid: 13654 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-39.5 + pos: 30.5,27.5 parent: 2 - - uid: 4484 + - type: DeviceLinkSource + linkedPorts: + 13915: + - Pressed: Toggle + - uid: 13655 components: + - type: MetaData + name: perma shutters - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-38.5 + rot: 1.5707963267948966 rad + pos: 52.5,33.5 parent: 2 - - uid: 4485 + - type: DeviceLinkSource + linkedPorts: + 13650: + - Pressed: Toggle + 13651: + - Pressed: Toggle + 13652: + - Pressed: Toggle + 13644: + - Pressed: Toggle + 13645: + - Pressed: Toggle + 13646: + - Pressed: Toggle + 13647: + - Pressed: Toggle + 13648: + - Pressed: Toggle + 13649: + - Pressed: Toggle + - uid: 14742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-37.5 + pos: 31.77084,21.456566 parent: 2 - - uid: 4812 + - type: DeviceLinkSource + linkedPorts: + 12825: + - Pressed: Toggle + 13183: + - Pressed: Toggle + - uid: 14924 components: - type: Transform - pos: -13.5,-10.5 + rot: 3.141592653589793 rad + pos: 31.777786,17.53082 parent: 2 - - uid: 5016 + - type: DeviceLinkSource + linkedPorts: + 12826: + - Pressed: Toggle + 12824: + - Pressed: Toggle +- proto: SignAnomaly + entities: + - uid: 5066 components: - type: Transform - pos: 49.5,-3.5 + pos: 61.5,21.5 parent: 2 - - uid: 5017 +- proto: SignAnomaly2 + entities: + - uid: 6475 components: - type: Transform - pos: 54.5,-3.5 + pos: 65.5,13.5 parent: 2 - - uid: 5021 +- proto: SignArmory + entities: + - uid: 7678 components: - type: Transform - pos: 55.5,-8.5 + rot: -1.5707963267948966 rad + pos: 37.5,23.5 parent: 2 - - uid: 5022 +- proto: SignAtmos + entities: + - uid: 4574 components: - type: Transform - pos: 57.5,-8.5 + pos: 37.5,-38.5 parent: 2 - - uid: 5094 + - uid: 4575 components: - type: Transform - pos: 67.5,-2.5 + pos: 28.5,-26.5 parent: 2 - - uid: 5095 +- proto: SignBar + entities: + - uid: 11198 components: - type: Transform - pos: 66.5,-2.5 + pos: 36.515213,-1.5077809 parent: 2 - - uid: 5096 +- proto: SignBiohazardMed + entities: + - uid: 12243 components: - type: Transform - pos: 65.5,-2.5 + rot: 3.141592653589793 rad + pos: 76.5,0.5 parent: 2 - - uid: 5097 +- proto: SignCans + entities: + - uid: 4569 components: - type: Transform - pos: 64.5,-2.5 + pos: 41.5,-36.5 parent: 2 - - uid: 5102 +- proto: SignCargo + entities: + - uid: 11211 components: - type: Transform - pos: 59.5,26.5 + pos: 22.44822,19.533756 parent: 2 - - uid: 5128 +- proto: SignCargoDock + entities: + - uid: 6853 components: - type: Transform - pos: 45.5,-25.5 + rot: -1.5707963267948966 rad + pos: 5.5,25.5 parent: 2 - - uid: 5133 +- proto: SignChapel + entities: + - uid: 11193 components: - type: Transform - pos: 34.5,-27.5 + pos: 39.519363,4.4919653 parent: 2 - - uid: 5134 +- proto: SignChem + entities: + - uid: 6817 components: - type: Transform - pos: 45.5,-28.5 + pos: 51.5,-2.5 parent: 2 - - uid: 5207 +- proto: SignConference + entities: + - uid: 11192 components: - type: Transform - pos: 45.5,-30.5 + pos: 25.484035,39.437214 parent: 2 - - uid: 5289 +- proto: SignCryo + entities: + - uid: 13541 components: - type: Transform - pos: 4.5,19.5 + rot: -1.5707963267948966 rad + pos: 22.5,16.5 parent: 2 - - uid: 5293 +- proto: SignCryogenicsMed + entities: + - uid: 11804 components: - type: Transform - pos: 2.5,2.5 + pos: 63.5,-0.5 parent: 2 - - uid: 5295 +- proto: SignDangerMed + entities: + - uid: 10436 components: - type: Transform - pos: 2.5,3.5 + pos: 61.5,26.5 parent: 2 - - uid: 5357 +- proto: SignDirectionalBridge + entities: + - uid: 7329 components: - type: Transform - pos: 1.5,1.5 + rot: 3.141592653589793 rad + pos: 24.503027,16.714216 parent: 2 - - uid: 5358 + - uid: 8119 components: - type: Transform - pos: 2.5,4.5 + rot: 3.141592653589793 rad + pos: 7.4992805,2.707316 parent: 2 - - uid: 5417 + - uid: 11181 components: - type: Transform - pos: 43.5,-41.5 + rot: 3.141592653589793 rad + pos: 28.54057,12.41816 parent: 2 - - uid: 5434 +- proto: SignDirectionalDorms + entities: + - uid: 40 components: - type: Transform - pos: 41.5,-41.5 + rot: 1.5707963267948966 rad + pos: 7.5,11.5 parent: 2 - - uid: 5435 + - uid: 13540 components: - type: Transform - pos: 39.5,-41.5 + rot: -1.5707963267948966 rad + pos: 17.5,14.5 parent: 2 - - uid: 5489 +- proto: SignDirectionalEng + entities: + - uid: 11817 components: - type: Transform - pos: 72.5,33.5 + pos: 28.5037,2.3089128 parent: 2 - - uid: 5490 +- proto: SignDirectionalEvac + entities: + - uid: 7848 components: - type: Transform - pos: 72.5,32.5 + rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 2 - - uid: 5491 + - uid: 7894 components: - type: Transform - pos: 72.5,31.5 + rot: -1.5707963267948966 rad + pos: 2.5,1.5 parent: 2 - - uid: 5492 + - uid: 8120 components: - type: Transform - pos: 72.5,29.5 + rot: -1.5707963267948966 rad + pos: 7.4992805,2.2952788 parent: 2 - - uid: 5493 + - uid: 11806 components: - type: Transform - pos: 72.5,28.5 + rot: -1.5707963267948966 rad + pos: 24.498083,2.3033948 parent: 2 - - uid: 5494 +- proto: SignDirectionalHop + entities: + - uid: 11809 components: - type: Transform - pos: 72.5,27.5 + rot: -1.5707963267948966 rad + pos: 24.5,2.5 parent: 2 - - uid: 5677 +- proto: SignDirectionalLibrary + entities: + - uid: 11816 components: - type: Transform - pos: -20.5,-10.5 + rot: -1.5707963267948966 rad + pos: 24.498083,2.6830244 parent: 2 - - uid: 5728 +- proto: SignDirectionalMed + entities: + - uid: 8118 components: - type: Transform - pos: 45.5,-29.5 + rot: 1.5707963267948966 rad + pos: 7.5,2.5 parent: 2 - - uid: 5729 + - uid: 11184 components: - type: Transform - pos: 45.5,-26.5 + pos: 39.55419,12.695712 parent: 2 - - uid: 6113 + - uid: 11813 components: - type: Transform - pos: 8.5,-40.5 + rot: 1.5707963267948966 rad + pos: 28.5,2.5 parent: 2 - - uid: 6114 + - uid: 11853 components: - type: Transform - pos: 8.5,-39.5 + rot: 1.5707963267948966 rad + pos: 39.50202,2.3010597 parent: 2 - - uid: 6115 +- proto: SignDirectionalSci + entities: + - uid: 11182 components: - type: Transform - pos: 9.5,-39.5 + rot: 1.5707963267948966 rad + pos: 28.5195,12.147359 parent: 2 - - uid: 6116 + - uid: 11188 components: - type: Transform - pos: 10.5,-39.5 + rot: 1.5707963267948966 rad + pos: 39.557316,12.409777 parent: 2 - - uid: 6118 + - uid: 11812 components: - type: Transform - pos: 12.5,-39.5 + rot: 1.5707963267948966 rad + pos: 28.505745,2.6978016 parent: 2 - - uid: 6134 + - uid: 11851 components: - type: Transform - pos: 8.5,-42.5 + rot: 3.141592653589793 rad + pos: 39.5,2.5 parent: 2 - - uid: 6135 +- proto: SignDirectionalSec + entities: + - uid: 5416 components: - type: Transform - pos: 8.5,-43.5 + rot: 1.5707963267948966 rad + pos: 7.4984922,11.283884 parent: 2 - - uid: 6136 + - uid: 7327 components: - type: Transform - pos: 9.5,-43.5 + rot: 3.141592653589793 rad + pos: 24.5,16.5 parent: 2 - - uid: 6137 + - uid: 11180 components: - type: Transform - pos: 11.5,-43.5 + rot: 3.141592653589793 rad + pos: 28.54057,12.66816 parent: 2 - - uid: 6140 + - uid: 11852 components: - type: Transform - pos: 12.5,-42.5 + rot: 3.141592653589793 rad + pos: 39.50202,2.708467 parent: 2 - - uid: 6483 +- proto: SignDirectionalSolar + entities: + - uid: 12297 components: - type: Transform - pos: 45.5,-2.5 + rot: -1.5707963267948966 rad + pos: 9.5,-24.5 parent: 2 - - uid: 6485 + - uid: 12298 components: - type: Transform - pos: 42.5,-2.5 + rot: 3.141592653589793 rad + pos: 68.5,19.5 parent: 2 - - uid: 6814 + - uid: 12299 components: - type: Transform - pos: -11.5,-10.5 + rot: 1.5707963267948966 rad + pos: 45.5,45.5 parent: 2 - - uid: 6815 +- proto: SignDirectionalSupply + entities: + - uid: 5418 components: - type: Transform - pos: -18.5,-15.5 + rot: 1.5707963267948966 rad + pos: 7.4984922,11.714439 parent: 2 - - uid: 6821 + - uid: 7328 components: - type: Transform - pos: -18.5,-10.5 + rot: 3.141592653589793 rad + pos: 24.503027,16.29755 parent: 2 - - uid: 6840 +- proto: SignDirectionalWash + entities: + - uid: 11815 components: - type: Transform - pos: -1.5,1.5 + rot: 3.141592653589793 rad + pos: 12.5,11.5 parent: 2 - - uid: 6841 +- proto: SignElectricalMed + entities: + - uid: 4874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + pos: 3.5,-33.5 parent: 2 - - uid: 6857 + - uid: 12351 components: - type: Transform - pos: -5.5,2.5 + pos: 3.5,-8.5 parent: 2 - - uid: 6896 + - uid: 13003 components: - type: Transform - pos: -20.5,-15.5 + pos: 36.5,-41.5 parent: 2 - - uid: 7664 + - uid: 13004 components: - type: Transform - pos: -5.5,1.5 + pos: 31.5,-49.5 parent: 2 - - uid: 7765 + - uid: 14698 components: - type: Transform - pos: 24.5,38.5 + pos: 28.5,22.5 parent: 2 - - uid: 8736 + - uid: 14850 components: - type: Transform - pos: 92.5,-17.5 + pos: 50.5,38.5 parent: 2 - - uid: 8737 + - uid: 14851 components: - type: Transform - pos: 93.5,-17.5 + pos: 50.5,43.5 parent: 2 - - uid: 8738 + - uid: 14852 components: - type: Transform - pos: 94.5,-17.5 + pos: 52.5,44.5 parent: 2 - - uid: 8739 + - uid: 14853 components: - type: Transform - pos: 95.5,-17.5 + pos: 60.5,44.5 parent: 2 - - uid: 8740 + - uid: 14854 components: - type: Transform - pos: 96.5,-17.5 + pos: 62.5,41.5 parent: 2 - - uid: 8741 + - uid: 14855 components: - type: Transform - pos: 97.5,-17.5 + pos: 62.5,31.5 parent: 2 - - uid: 8742 + - uid: 14949 components: - type: Transform - pos: 98.5,-17.5 + rot: -1.5707963267948966 rad + pos: 16.5,42.5 parent: 2 - - uid: 8743 + - uid: 14950 components: - type: Transform - pos: 98.5,-22.5 + rot: -1.5707963267948966 rad + pos: 33.5,49.5 parent: 2 - - uid: 8744 +- proto: SignEngine + entities: + - uid: 5157 components: - type: Transform - pos: 97.5,-22.5 + pos: 30.5,-37.5 parent: 2 - - uid: 8745 + - uid: 5301 components: - type: Transform - pos: 96.5,-22.5 + pos: 33.5,-40.5 parent: 2 - - uid: 8746 +- proto: SignEngineering + entities: + - uid: 5156 components: - type: Transform - pos: 95.5,-22.5 + pos: 24.5,-26.5 parent: 2 - - uid: 8747 +- proto: SignEscapePods + entities: + - uid: 5027 components: - type: Transform - pos: 94.5,-22.5 + pos: 85.5,3.5 parent: 2 - - uid: 8748 +- proto: SignEVA + entities: + - uid: 5204 components: - type: Transform - pos: 93.5,-22.5 + pos: 10.5,-2.5 parent: 2 - - uid: 8749 +- proto: SignExamroom + entities: + - uid: 12239 components: - type: Transform - pos: 92.5,-22.5 + rot: 3.141592653589793 rad + pos: 67.5,5.5 parent: 2 - - uid: 8787 + - uid: 12240 components: - type: Transform - pos: 99.5,-17.5 + rot: 3.141592653589793 rad + pos: 59.5,-8.5 parent: 2 - - uid: 8788 +- proto: SignFire + entities: + - uid: 12280 components: - type: Transform - pos: 100.5,-17.5 + rot: 1.5707963267948966 rad + pos: 65.5,26.5 parent: 2 - - uid: 8789 + - uid: 12993 components: - type: Transform - pos: 99.5,-22.5 + pos: 45.5,-49.5 parent: 2 - - uid: 8790 + - uid: 12994 components: - type: Transform - pos: 100.5,-22.5 + pos: 45.5,-43.5 parent: 2 - - uid: 8802 +- proto: SignFlammableMed + entities: + - uid: 1650 components: - type: Transform - pos: 105.5,-25.5 + pos: 33.5,-31.5 parent: 2 - - uid: 8803 + - uid: 10437 components: - type: Transform - pos: 106.5,-25.5 + pos: 61.5,27.5 parent: 2 - - uid: 8804 +- proto: SignGravity + entities: + - uid: 11199 components: - type: Transform - pos: 107.5,-25.5 + pos: 16.482166,37.47681 parent: 2 - - uid: 8808 +- proto: SignHead + entities: + - uid: 11814 components: - type: Transform - pos: 105.5,-20.5 + rot: 3.141592653589793 rad + pos: 13.5,-2.5 parent: 2 - - uid: 8809 +- proto: SignHydro1 + entities: + - uid: 6648 components: - type: Transform - pos: 107.5,-20.5 + pos: 47.5,-2.5 parent: 2 - - uid: 8839 + - uid: 6651 components: - type: Transform - pos: 105.5,-14.5 + pos: 41.5,-2.5 parent: 2 - - uid: 8840 +- proto: SignInterrogation + entities: + - uid: 8439 components: - type: Transform - pos: 107.5,-14.5 + pos: 38.5,32.5 parent: 2 - - uid: 8845 +- proto: SignJanitor + entities: + - uid: 13164 components: - type: Transform - pos: 105.5,-9.5 + pos: 6.5,-2.5 parent: 2 - - uid: 8846 +- proto: SignKiddiePlaque + entities: + - uid: 12282 components: - type: Transform - pos: 106.5,-9.5 + rot: 1.5707963267948966 rad + pos: 12.5,2.5 parent: 2 - - uid: 8847 +- proto: SignLaserMed + entities: + - uid: 12289 components: - type: Transform - pos: 107.5,-9.5 + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 parent: 2 - - uid: 8879 +- proto: SignLawyer + entities: + - uid: 13165 components: - type: Transform - pos: 111.5,-20.5 + pos: -4.5,-6.5 parent: 2 - - uid: 8880 + - uid: 13166 components: - type: Transform - pos: 112.5,-20.5 + pos: 24.5,28.5 parent: 2 - - uid: 8881 +- proto: SignLibrary + entities: + - uid: 11201 components: - type: Transform - pos: 114.5,-20.5 + pos: 7.478853,8.535535 parent: 2 - - uid: 8882 +- proto: SignMagneticsMed + entities: + - uid: 6846 components: - type: Transform - pos: 115.5,-20.5 + pos: 3.5,39.5 parent: 2 - - uid: 8925 + - uid: 14680 components: - type: Transform - pos: 45.5,-24.5 + rot: -1.5707963267948966 rad + pos: 10.5,32.5 parent: 2 - - uid: 8926 +- proto: SignMedical + entities: + - uid: 6788 components: - type: Transform - pos: 45.5,-23.5 + pos: 53.5,1.5 parent: 2 - - uid: 8942 +- proto: SignMorgue + entities: + - uid: 11196 components: - type: Transform - pos: 111.5,-14.5 + pos: 71.560074,0.5078441 parent: 2 - - uid: 8943 + - uid: 11843 components: - type: Transform - pos: 112.5,-14.5 + pos: 70.5,-6.5 parent: 2 - - uid: 8944 +- proto: SignNosmoking + entities: + - uid: 10074 components: - type: Transform - pos: 114.5,-14.5 + pos: 68.5,-4.5 parent: 2 - - uid: 8945 + - uid: 11397 components: - type: Transform - pos: 115.5,-14.5 + pos: 65.5,-7.5 parent: 2 - - uid: 8956 +- proto: SignNTMine + entities: + - uid: 10969 components: - type: Transform - pos: 116.5,-15.5 + pos: 3.5,36.5 parent: 2 - - uid: 8957 +- proto: SignPlaque + entities: + - uid: 12281 components: - type: Transform - pos: 116.5,-16.5 + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 parent: 2 - - uid: 8958 +- proto: SignPrison + entities: + - uid: 13138 components: - type: Transform - pos: 116.5,-18.5 + pos: 47.5,33.5 parent: 2 - - uid: 8959 +- proto: SignRadiationMed + entities: + - uid: 747 components: - type: Transform - pos: 116.5,-19.5 + pos: 18.5,-40.5 parent: 2 - - uid: 9571 + - uid: 4012 components: - type: Transform - pos: 6.5,19.5 + pos: 24.5,-37.5 parent: 2 - - uid: 10085 +- proto: SignRND + entities: + - uid: 11190 components: - type: Transform - pos: 60.5,26.5 + pos: 57.499714,16.503765 parent: 2 - - uid: 10086 + - uid: 12293 components: - type: Transform - pos: 52.5,25.5 + rot: 1.5707963267948966 rad + pos: 48.5,16.5 parent: 2 - - uid: 10087 +- proto: SignRobo + entities: + - uid: 12291 components: - type: Transform - pos: 52.5,23.5 + rot: 1.5707963267948966 rad + pos: 46.5,12.5 parent: 2 - - uid: 10123 + - uid: 12292 components: - type: Transform - pos: 21.5,24.5 + rot: 1.5707963267948966 rad + pos: 56.5,12.5 parent: 2 - - uid: 10124 +- proto: SignSalvage + entities: + - uid: 6779 components: - type: Transform - pos: 21.5,23.5 + rot: -1.5707963267948966 rad + pos: 7.5,29.5 parent: 2 - - uid: 10125 +- proto: SignScience + entities: + - uid: 11191 components: - type: Transform - pos: 53.5,-0.5 + pos: 48.50537,15.474182 parent: 2 - - uid: 10126 +- proto: SignSecurearea + entities: + - uid: 11939 components: - type: Transform - pos: 52.5,1.5 + pos: 17.5,-15.5 parent: 2 - - uid: 11971 +- proto: SignSecureMed + entities: + - uid: 1518 components: - type: Transform - pos: 45.5,-31.5 + pos: 28.5,-25.5 parent: 2 - - uid: 12779 + - uid: 7963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,29.5 + rot: 1.5707963267948966 rad + pos: 21.5,-59.5 parent: 2 - - uid: 12780 + - uid: 8176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,29.5 + pos: 16.5,35.5 parent: 2 - - uid: 12979 + - uid: 8288 components: - type: Transform - pos: 43.5,-49.5 + rot: 1.5707963267948966 rad + pos: 11.5,-51.5 parent: 2 - - uid: 12982 + - uid: 8332 components: - type: Transform - pos: 42.5,-49.5 + rot: 1.5707963267948966 rad + pos: 30.5,-51.5 parent: 2 - - uid: 12983 + - uid: 9958 components: - type: Transform - pos: 41.5,-49.5 + rot: 3.141592653589793 rad + pos: 94.5,24.5 parent: 2 - - uid: 13440 + - uid: 11690 components: - type: Transform - pos: 45.5,-27.5 + pos: -21.5,14.5 parent: 2 - - uid: 13467 + - uid: 14572 components: - type: Transform - pos: 10.5,-43.5 + pos: 80.5,26.5 parent: 2 - - uid: 13468 + - uid: 14573 components: - type: Transform - pos: 8.5,-41.5 + pos: 87.5,32.5 parent: 2 -- proto: RemoteSignaller - entities: - - uid: 9222 + - uid: 14574 components: - type: Transform - pos: 19.330996,46.803196 + pos: 82.5,32.5 parent: 2 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 8233 + - uid: 14592 components: - type: Transform - pos: 49.5,25.5 + rot: -1.5707963267948966 rad + pos: 68.5,24.5 parent: 2 -- proto: Retractor - entities: - - uid: 6808 + - uid: 14849 components: - type: Transform - pos: 66.55991,-3.281434 + pos: 47.5,36.5 parent: 2 -- proto: RiotShield - entities: - - uid: 8428 + - uid: 14951 components: - type: Transform - pos: 38.223476,28.307878 + rot: -1.5707963267948966 rad + pos: 21.5,49.5 parent: 2 - - uid: 8429 + - uid: 14952 components: - type: Transform - pos: 38.223476,28.307878 + rot: -1.5707963267948966 rad + pos: 12.5,42.5 parent: 2 -- proto: RobocopCircuitBoard - entities: - - uid: 13758 + - uid: 14966 components: - type: Transform - pos: 52.427402,30.935076 + rot: 3.141592653589793 rad + pos: 99.5,30.5 parent: 2 -- proto: RockGuitarInstrument - entities: - - uid: 9741 + - uid: 14972 components: - type: Transform - pos: 19.5661,-11.900069 + rot: 3.141592653589793 rad + pos: 94.5,36.5 parent: 2 -- proto: SalvageMagnet - entities: - - uid: 4811 + - uid: 14976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,16.5 + rot: 3.141592653589793 rad + pos: 78.5,34.5 parent: 2 -- proto: Saw +- proto: SignSecurity entities: - - uid: 12333 + - uid: 12294 components: - type: Transform - pos: 57.474747,-14.628655 + rot: 1.5707963267948966 rad + pos: 28.5,27.5 parent: 2 -- proto: SawElectric +- proto: SignShock entities: - - uid: 5210 + - uid: 11017 components: - type: Transform - pos: 67.45054,-4.453309 + pos: 42.5,-13.5 parent: 2 - - uid: 5395 + - uid: 11019 components: - type: Transform - pos: 55.53906,10.407994 + pos: 20.5,38.5 parent: 2 -- proto: Scalpel - entities: - - uid: 5137 + - uid: 11020 components: - type: Transform - pos: 74.5,-0.5 + pos: 25.5,38.5 parent: 2 - - uid: 5394 +- proto: SignSmoking + entities: + - uid: 5466 components: - type: Transform - pos: 55.523434,10.407994 + pos: 68.5,38.5 parent: 2 - - uid: 10073 + - uid: 9721 components: - type: Transform - pos: 66.473175,-3.547059 + pos: 54.5,-2.5 parent: 2 -- proto: ScrapCamera +- proto: SignSpace entities: - - uid: 6843 + - uid: 5397 components: - type: Transform - pos: 67.493965,34.506084 + pos: 34.5,-37.5 parent: 2 -- proto: Screen - entities: - - uid: 13232 + - uid: 7562 components: - type: Transform - pos: 24.5,-20.5 + pos: 2.4978352,-16.484226 parent: 2 - - uid: 13233 + - uid: 7563 components: - type: Transform - pos: 24.5,-2.5 + pos: 5.529085,-16.484226 parent: 2 - - uid: 13234 + - uid: 10083 components: - type: Transform - pos: 32.5,-1.5 + pos: 62.5,29.5 parent: 2 - - uid: 13235 + - uid: 12823 components: - type: Transform - pos: 21.5,-1.5 + pos: 4.5,34.5 parent: 2 - - uid: 13236 + - uid: 12992 components: - type: Transform - pos: 2.5,-2.5 + pos: 33.5,-48.5 parent: 2 - - uid: 13237 + - uid: 14157 components: - type: Transform - pos: 2.5,9.5 + pos: 73.5,21.5 parent: 2 - - uid: 13238 + - uid: 14241 components: - type: Transform - pos: 17.5,11.5 + pos: 80.5,28.5 parent: 2 - - uid: 13239 +- proto: SignSurgery + entities: + - uid: 11202 components: - type: Transform - pos: 38.5,16.5 + pos: 63.483078,-4.4704685 parent: 2 - - uid: 13240 + - uid: 11203 components: - type: Transform - pos: 39.5,10.5 + pos: 54.505295,-16.448315 parent: 2 - - uid: 13241 +- proto: SignTelecomms + entities: + - uid: 11206 components: - type: Transform - pos: 29.5,38.5 + pos: 24.48286,-16.522787 parent: 2 - - uid: 13242 +- proto: SignToolStorage + entities: + - uid: 5704 components: - type: Transform - pos: 20.5,43.5 + pos: 68.5,40.5 parent: 2 - - uid: 13243 + - uid: 11200 components: - type: Transform - pos: 23.5,19.5 + pos: 28.472525,-18.512623 parent: 2 - - uid: 13619 + - uid: 12302 components: - type: Transform - pos: 55.5,32.5 + rot: 1.5707963267948966 rad + pos: 28.5,-13.5 parent: 2 - - uid: 13620 +- proto: SignToxins + entities: + - uid: 12304 components: - type: Transform - pos: 57.5,32.5 + rot: 1.5707963267948966 rad + pos: 59.5,12.5 parent: 2 - - uid: 13621 +- proto: SignVirology + entities: + - uid: 10909 components: - type: Transform - pos: 60.5,28.5 + pos: 78.5,0.5 parent: 2 - - uid: 13622 +- proto: SingularityGenerator + entities: + - uid: 750 components: - type: Transform - pos: 52.5,28.5 + anchored: False + pos: 12.5,-31.5 parent: 2 - - uid: 13623 + - type: Physics + bodyType: Dynamic +- proto: Sink + entities: + - uid: 1530 components: - type: Transform - pos: 54.5,40.5 + pos: 11.5,13.5 parent: 2 - - uid: 13624 + - uid: 5276 components: - type: Transform - pos: 58.5,40.5 + rot: 1.5707963267948966 rad + pos: 64.5,-6.5 parent: 2 - - uid: 13625 + - uid: 6932 components: - type: Transform - pos: 61.5,38.5 + pos: 10.5,13.5 parent: 2 - - uid: 13626 + - uid: 7412 components: - type: Transform - pos: 51.5,38.5 + pos: 78.5,-0.5 parent: 2 -- proto: Screwdriver - entities: - - uid: 11132 + - uid: 7575 components: - type: Transform - pos: 57.5176,-14.309467 + rot: -1.5707963267948966 rad + pos: 53.5,-7.5 parent: 2 - - uid: 13707 + - uid: 10446 components: - type: Transform - pos: 25.478437,-38.442886 + pos: 51.5,15.5 parent: 2 -- proto: SecurityTechFab - entities: - - uid: 1831 + - uid: 10853 components: - type: Transform - pos: 38.5,24.5 + rot: 3.141592653589793 rad + pos: 103.5,-13.5 parent: 2 -- proto: SeedExtractor - entities: - - uid: 2305 + - uid: 11406 components: - type: Transform - pos: 38.5,36.5 + pos: 65.5,-8.5 parent: 2 - - uid: 6677 + - uid: 11899 components: - type: Transform - pos: 45.5,-4.5 + rot: 1.5707963267948966 rad + pos: 77.5,8.5 parent: 2 -- proto: ShardGlass - entities: - - uid: 10809 + - uid: 12166 components: - type: Transform - pos: 89.55373,-21.433664 + rot: 1.5707963267948966 rad + pos: 17.5,6.5 parent: 2 - - uid: 10810 + - uid: 13628 components: - type: Transform - pos: 90.27248,-20.82429 + rot: -1.5707963267948966 rad + pos: 59.5,36.5 parent: 2 -- proto: SheetGlass +- proto: SinkWide entities: - - uid: 784 - components: - - type: Transform - parent: 5625 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1648 + - uid: 4559 components: - type: Transform - pos: 33.519444,-17.381672 + pos: 37.5,-9.5 parent: 2 - - uid: 5327 + - uid: 9720 components: - type: Transform - pos: 56.186665,17.583338 + rot: -1.5707963267948966 rad + pos: 39.5,-4.5 parent: 2 - - uid: 5328 + - uid: 15010 components: - type: Transform - pos: 56.186665,17.583338 + rot: 3.141592653589793 rad + pos: 41.5,-7.5 parent: 2 - - uid: 5329 +- proto: Skub + entities: + - uid: 5403 components: - type: Transform - pos: 56.186665,17.583338 + pos: 62.485527,20.60704 parent: 2 - - uid: 5636 + - uid: 13072 components: - type: Transform - pos: 16.999237,-26.465462 + pos: 7.5138106,-13.335101 parent: 2 - - uid: 5640 + - uid: 13073 components: - type: Transform - pos: 16.999237,-26.465462 + pos: 4.5294356,-11.475726 parent: 2 - - uid: 10311 + - uid: 13074 components: - type: Transform - pos: 8.421515,-6.356274 + pos: 8.498186,-12.475726 parent: 2 -- proto: SheetPlasma +- proto: SmartFridge entities: - - uid: 2129 - components: - - type: Transform - parent: 5625 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7529 + - uid: 228 components: - type: Transform - pos: 71.06963,13.620979 + pos: 40.5,-6.5 parent: 2 -- proto: SheetPlasteel - entities: - - uid: 1842 + - uid: 2963 components: - type: Transform - parent: 5625 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5635 + pos: 54.5,-5.5 + parent: 2 + - uid: 11837 components: - type: Transform - pos: 17.5,-26.5 + pos: 62.5,-3.5 parent: 2 - - uid: 10312 + - uid: 13110 components: - type: Transform - pos: 8.609015,-6.340649 + pos: 67.5,-8.5 parent: 2 -- proto: SheetPlastic +- proto: SMESBasic entities: - - uid: 5333 + - uid: 875 components: + - type: MetaData + name: SMES Bank 1 - type: Transform - pos: 56.436665,17.505213 + pos: 25.5,-31.5 parent: 2 - - uid: 5334 + - uid: 876 components: + - type: MetaData + name: SMES Bank 2 - type: Transform - pos: 56.436665,17.505213 + pos: 26.5,-31.5 parent: 2 - - uid: 5335 + - uid: 885 components: + - type: MetaData + name: SMES Bank 3 - type: Transform - pos: 56.436665,17.505213 + pos: 27.5,-31.5 parent: 2 -- proto: SheetSteel - entities: - - uid: 1239 - components: - - type: Transform - parent: 5625 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1789 + - uid: 2121 components: + - type: MetaData + name: Singulo SMES - type: Transform - pos: 33.507664,-17.468887 + pos: 16.5,-38.5 parent: 2 - - uid: 5152 + - uid: 3263 components: + - type: MetaData + name: Gravity/Bridge SMES - type: Transform - pos: 43.528275,-35.489674 + pos: 13.5,35.5 parent: 2 - - uid: 5153 + - uid: 3405 components: - type: Transform - pos: 43.528275,-35.489674 + pos: 71.5,44.5 parent: 2 - - uid: 5330 + - uid: 4075 components: + - type: MetaData + name: Telecomms SMES - type: Transform - pos: 56.63979,17.598963 + pos: 23.5,-14.5 parent: 2 - - uid: 5331 + - uid: 9002 components: - type: Transform - pos: 56.63979,17.598963 + pos: 112.5,-17.5 parent: 2 - - uid: 5332 + - type: PowerNetworkBattery + loadingNetworkDemand: 60.000237 + currentSupply: 60.000237 + supplyRampPosition: 60.000237 + - uid: 10856 components: - type: Transform - pos: 56.63979,17.598963 + pos: 3.5,-34.5 parent: 2 - - uid: 5383 + - uid: 14394 components: + - type: MetaData + name: AI Core SMES - type: Transform - pos: 50.524685,8.532994 + pos: 79.5,34.5 parent: 2 - - uid: 5384 + - uid: 14741 components: + - type: MetaData + name: Security SMES - type: Transform - pos: 50.524685,8.532994 + pos: 37.5,33.5 parent: 2 - - uid: 5385 +- proto: SmokingPipeFilledTobacco + entities: + - uid: 11946 components: - type: Transform - pos: 50.524685,8.532994 + pos: 32.982197,41.628204 parent: 2 - - uid: 5633 +- proto: SodaDispenser + entities: + - uid: 2922 components: - type: Transform - pos: 16.5,-26.5 + pos: 67.5,-17.5 parent: 2 - - uid: 5634 + - type: ContainerContainer + containers: + ReagentDispenser-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ReagentDispenser-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6526 components: - type: Transform - pos: 16.5,-26.5 + pos: 39.5,-2.5 parent: 2 - - uid: 7271 +- proto: SolarPanel + entities: + - uid: 1386 components: - type: Transform - pos: 30.5,-30.5 + pos: -5.5,-31.5 parent: 2 - - uid: 7272 + - uid: 1387 components: - type: Transform - pos: 30.5,-30.5 + pos: -3.5,-31.5 parent: 2 - - uid: 8175 + - uid: 1388 components: - type: Transform - pos: 43.528275,-35.489674 + pos: -3.5,-32.5 parent: 2 - - uid: 10313 + - uid: 1389 components: - type: Transform - pos: 8.53089,-6.434399 + pos: -5.5,-32.5 parent: 2 - - uid: 12088 + - uid: 1390 components: - type: Transform - pos: 16.49948,-26.476994 + pos: -5.5,-33.5 parent: 2 - - uid: 13432 + - uid: 1391 components: - type: Transform - pos: 43.528275,-35.489674 + pos: -3.5,-33.5 parent: 2 -- proto: SheetSteel1 - entities: - - uid: 4672 + - uid: 1392 components: - type: Transform - pos: 90.36041,-10.650079 + pos: -5.5,-37.5 parent: 2 - - uid: 6720 + - uid: 1393 components: - type: Transform - pos: 90.60682,-10.582865 + pos: -3.5,-37.5 parent: 2 - - uid: 6721 + - uid: 1394 components: - type: Transform - pos: 90.45002,-10.358817 + pos: -3.5,-38.5 parent: 2 -- proto: SheetUranium - entities: - - uid: 1460 + - uid: 1395 components: - type: Transform - parent: 5625 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Shovel - entities: - - uid: 8254 + pos: -3.5,-39.5 + parent: 2 + - uid: 1396 components: - type: Transform - pos: 9.453524,15.534067 + pos: -5.5,-39.5 parent: 2 -- proto: ShuttersNormal - entities: - - uid: 5268 + - uid: 1397 components: - type: Transform - pos: 44.5,12.5 + pos: -5.5,-38.5 parent: 2 - - uid: 6513 + - uid: 1412 components: - type: Transform - pos: 46.5,-11.5 + pos: -7.5,-33.5 parent: 2 - - uid: 6514 + - uid: 1413 components: - type: Transform - pos: 47.5,-11.5 + pos: -7.5,-32.5 parent: 2 -- proto: ShuttersNormalOpen - entities: - - uid: 265 + - uid: 1414 components: - type: Transform - pos: 34.5,-8.5 + pos: -7.5,-31.5 parent: 2 - - uid: 267 + - uid: 1415 components: - type: Transform - pos: 35.5,-8.5 + pos: -7.5,-30.5 parent: 2 - - uid: 270 + - uid: 1416 components: - type: Transform - pos: 36.5,-8.5 + pos: -9.5,-30.5 parent: 2 - - uid: 320 + - uid: 1417 components: - type: Transform - pos: 8.5,29.5 + pos: -9.5,-31.5 parent: 2 - - uid: 419 + - uid: 1418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-7.5 + pos: -9.5,-32.5 parent: 2 - - uid: 913 + - uid: 1419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-4.5 + pos: -9.5,-33.5 parent: 2 - - uid: 1154 + - uid: 1420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 + pos: -9.5,-37.5 parent: 2 - - uid: 1658 + - uid: 1421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 + pos: -9.5,-38.5 parent: 2 - - uid: 2087 + - uid: 1422 components: - type: Transform - pos: 28.5,17.5 + pos: -9.5,-39.5 parent: 2 - - uid: 2831 + - uid: 1423 components: - type: Transform - pos: 9.5,29.5 + pos: -9.5,-40.5 parent: 2 - - uid: 2990 + - uid: 1424 components: - type: Transform - pos: 50.5,1.5 + pos: -7.5,-40.5 parent: 2 - - uid: 6512 + - uid: 1425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 + pos: -7.5,-39.5 parent: 2 - - uid: 12424 + - uid: 1426 components: - type: Transform - pos: 49.5,1.5 + pos: -7.5,-38.5 parent: 2 - - uid: 12425 + - uid: 1427 components: - type: Transform - pos: 51.5,1.5 + pos: -7.5,-37.5 parent: 2 - - uid: 12822 + - uid: 1444 components: - type: Transform - pos: 28.5,20.5 + pos: -13.5,-37.5 parent: 2 - - uid: 12823 + - uid: 1445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,18.5 + pos: -13.5,-38.5 parent: 2 - - uid: 12824 + - uid: 1446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,21.5 + pos: -13.5,-39.5 parent: 2 - - uid: 13422 + - uid: 1447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-42.5 + pos: -11.5,-39.5 parent: 2 - - uid: 13476 + - uid: 1448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-42.5 + pos: -11.5,-38.5 parent: 2 - - uid: 13477 + - uid: 1449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-41.5 + pos: -11.5,-37.5 parent: 2 - - uid: 13478 + - uid: 1450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-40.5 + pos: -11.5,-33.5 parent: 2 - - uid: 13479 + - uid: 1451 components: - type: Transform - pos: 8.5,-43.5 + pos: -11.5,-32.5 parent: 2 - - uid: 13480 + - uid: 1452 components: - type: Transform - pos: 9.5,-43.5 + pos: -11.5,-31.5 parent: 2 - - uid: 13481 + - uid: 1453 components: - type: Transform - pos: 10.5,-43.5 + pos: -13.5,-31.5 parent: 2 - - uid: 13482 + - uid: 1454 components: - type: Transform - pos: 11.5,-43.5 + pos: -13.5,-32.5 parent: 2 - - uid: 13483 + - uid: 1455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-39.5 + pos: -13.5,-33.5 parent: 2 - - uid: 13484 + - uid: 5535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-39.5 + pos: 77.5,49.5 parent: 2 - - uid: 13485 + - uid: 5536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-39.5 + pos: 77.5,48.5 parent: 2 - - uid: 13486 + - uid: 5537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-39.5 + pos: 77.5,47.5 parent: 2 - - uid: 13488 + - uid: 5538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-36.5 + pos: 79.5,47.5 parent: 2 - - uid: 13489 + - uid: 5539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-35.5 + pos: 79.5,48.5 parent: 2 - - uid: 13490 + - uid: 5540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-33.5 + pos: 79.5,49.5 parent: 2 -- proto: ShuttersRadiationOpen - entities: - - uid: 779 + - uid: 5541 components: - type: Transform - pos: 19.5,-37.5 + pos: 81.5,50.5 parent: 2 - - uid: 780 + - uid: 5542 components: - type: Transform - pos: 20.5,-37.5 + pos: 81.5,49.5 parent: 2 - - uid: 4502 + - uid: 5543 components: - type: Transform - pos: 22.5,-37.5 + pos: 81.5,48.5 parent: 2 - - uid: 4503 + - uid: 5544 components: - type: Transform - pos: 23.5,-37.5 + pos: 81.5,47.5 parent: 2 -- proto: SignAi - entities: - - uid: 12242 + - uid: 5545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,28.5 + pos: 83.5,47.5 parent: 2 -- proto: SignalButton - entities: - - uid: 202 + - uid: 5546 components: - type: Transform - pos: 37.5,-29.5 + pos: 83.5,48.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 55: - - Pressed: Toggle - - uid: 374 + - uid: 5547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,28.5 + pos: 83.5,49.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7462: - - Pressed: Toggle - - uid: 1025 + - uid: 5548 components: - - type: MetaData - name: Radiation Shutters - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 + pos: 83.5,50.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 779: - - Pressed: Toggle - 780: - - Pressed: Toggle - 4502: - - Pressed: Toggle - 4503: - - Pressed: Toggle - - uid: 1471 + - uid: 5549 components: - - type: MetaData - name: Kitchen Counter Shutters - type: Transform - pos: 32.5,-9.5 + pos: 83.5,40.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 265: - - Pressed: Toggle - 267: - - Pressed: Toggle - 270: - - Pressed: Toggle - - uid: 4245 + - uid: 5550 components: - type: Transform - pos: 37.5,-33.5 + pos: 81.5,40.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4257: - - Pressed: Toggle - - uid: 5043 + - uid: 5551 components: - type: Transform - pos: 16.5,-30.5 + pos: 81.5,41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5124: - - Pressed: Toggle - - uid: 5685 + - uid: 5552 components: - - type: MetaData - name: Engineering Secure Storage Button - type: Transform - pos: 12.5,-25.5 + pos: 81.5,42.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2834: - - Pressed: Toggle - 2835: - - Pressed: Toggle - - uid: 6749 + - uid: 5553 components: - - type: MetaData - name: Pen Maints Hatch - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-9.5 + pos: 81.5,43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6513: - - Pressed: Toggle - 6514: - - Pressed: Toggle - - uid: 6856 + - uid: 5554 components: - - type: MetaData - name: Conveyor Blast Door - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,14.5 + pos: 83.5,43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7618: - - Pressed: Toggle - - uid: 7463 + - uid: 5555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,22.5 + pos: 83.5,42.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 384: - - Pressed: Toggle - - uid: 8163 + - uid: 5556 components: - type: Transform - pos: 10.5,29.5 + pos: 83.5,41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2831: - - Pressed: Toggle - 320: - - Pressed: Toggle - - uid: 8288 + - uid: 5557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,2.5 + pos: 79.5,41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12424: - - Pressed: Toggle - 2990: - - Pressed: Toggle - 12425: - - Pressed: Toggle - - uid: 10321 + - uid: 5558 components: - type: Transform - pos: 48.5,12.5 + pos: 79.5,42.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 150: - - Pressed: Toggle - - uid: 12825 + - uid: 5559 components: - type: Transform - pos: 31.772217,19.196745 + pos: 79.5,43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2087: - - Pressed: Toggle - 12823: - - Pressed: Toggle - - uid: 12826 + - uid: 5560 components: - type: Transform - pos: 31.756592,22.24362 + pos: 77.5,43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12822: - - Pressed: Toggle - 12824: - - Pressed: Toggle - - uid: 13491 + - uid: 5561 components: - type: Transform - pos: 11.5,-32.5 + pos: 77.5,42.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13490: - - Pressed: Toggle - 13489: - - Pressed: Toggle - 13488: - - Pressed: Toggle - - uid: 13492 + - uid: 5562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-41.5 + pos: 77.5,41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13422: - - Pressed: Toggle - 13483: - - Pressed: Toggle - 13484: - - Pressed: Toggle - 13485: - - Pressed: Toggle - 13486: - - Pressed: Toggle - 13478: - - Pressed: Toggle - 13477: - - Pressed: Toggle - 13476: - - Pressed: Toggle - 13479: - - Pressed: Toggle - 13480: - - Pressed: Toggle - 13481: - - Pressed: Toggle - 13482: - - Pressed: Toggle -- proto: SignalButtonDirectional - entities: - - uid: 543 + - uid: 5563 components: - - type: MetaData - name: Bar Shutters - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-8.5 + pos: 85.5,41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 419: - - Pressed: Toggle - 1658: - - Pressed: Toggle - 6512: - - Pressed: Toggle - 913: - - Pressed: Toggle - 1154: - - Pressed: Toggle - - uid: 13594 + - uid: 5564 components: - type: Transform - pos: 55.5,35.5 + pos: 85.5,42.5 parent: 2 -- proto: SignAnomaly - entities: - - uid: 5066 + - uid: 5565 components: - type: Transform - pos: 61.5,21.5 + pos: 85.5,43.5 parent: 2 -- proto: SignAnomaly2 - entities: - - uid: 6475 + - uid: 5566 components: - type: Transform - pos: 65.5,13.5 + pos: 87.5,43.5 parent: 2 -- proto: SignArmory - entities: - - uid: 11210 + - uid: 5567 components: - type: Transform - pos: 42.47835,25.502422 + pos: 87.5,42.5 parent: 2 -- proto: SignAtmos - entities: - - uid: 4574 + - uid: 5568 components: - type: Transform - pos: 37.5,-38.5 + pos: 87.5,41.5 parent: 2 - - uid: 4575 + - uid: 5569 components: - type: Transform - pos: 28.5,-26.5 + pos: 87.5,47.5 parent: 2 -- proto: SignBar - entities: - - uid: 11198 + - uid: 5570 components: - type: Transform - pos: 36.515213,-1.5077809 + pos: 87.5,48.5 parent: 2 -- proto: SignBiohazardMed - entities: - - uid: 12243 + - uid: 5571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,0.5 + pos: 87.5,49.5 parent: 2 -- proto: SignCans - entities: - - uid: 4569 + - uid: 5572 components: - type: Transform - pos: 41.5,-36.5 + pos: 85.5,49.5 parent: 2 -- proto: SignCargo - entities: - - uid: 11211 + - uid: 5573 components: - type: Transform - pos: 22.44822,19.533756 + pos: 85.5,48.5 parent: 2 -- proto: SignCargoDock - entities: - - uid: 11212 + - uid: 5574 components: - type: Transform - pos: 6.565961,21.533756 + pos: 85.5,47.5 parent: 2 -- proto: SignChapel - entities: - - uid: 11193 + - uid: 8904 components: - type: Transform - pos: 39.519363,4.4919653 + pos: 111.5,-21.5 parent: 2 -- proto: SignChem - entities: - - uid: 6817 + - uid: 8905 components: - type: Transform - pos: 51.5,-2.5 + pos: 111.5,-22.5 parent: 2 -- proto: SignConference - entities: - - uid: 11192 + - uid: 8906 components: - type: Transform - pos: 25.484035,39.437214 + pos: 111.5,-23.5 parent: 2 -- proto: SignCryo - entities: - - uid: 13541 + - uid: 8907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,16.5 + pos: 111.5,-24.5 parent: 2 -- proto: SignCryogenicsMed - entities: - - uid: 11804 + - uid: 8908 components: - type: Transform - pos: 63.5,-0.5 + pos: 113.5,-24.5 parent: 2 -- proto: SignDangerMed - entities: - - uid: 10436 + - uid: 8909 components: - type: Transform - pos: 61.5,26.5 + pos: 113.5,-23.5 parent: 2 -- proto: SignDirectionalBridge - entities: - - uid: 7329 + - uid: 8910 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.503027,16.714216 + pos: 113.5,-22.5 parent: 2 - - uid: 8119 + - uid: 8911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.4992805,2.707316 + pos: 113.5,-21.5 parent: 2 - - uid: 11181 + - uid: 8912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.54057,12.41816 + pos: 115.5,-21.5 parent: 2 -- proto: SignDirectionalBrig - entities: - - uid: 12270 + - uid: 8913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,31.5 + pos: 115.5,-22.5 parent: 2 -- proto: SignDirectionalDorms - entities: - - uid: 40 + - uid: 8914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,11.5 + pos: 115.5,-23.5 parent: 2 - - uid: 13540 + - uid: 8915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,14.5 + pos: 115.5,-24.5 parent: 2 -- proto: SignDirectionalEng - entities: - - uid: 11817 + - uid: 8961 components: - type: Transform - pos: 28.5037,2.3089128 + pos: 111.5,-13.5 parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 1936 + - uid: 8962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,1.5 + pos: 111.5,-12.5 parent: 2 - - uid: 7848 + - uid: 8963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 + pos: 111.5,-11.5 parent: 2 - - uid: 7894 + - uid: 8964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,1.5 + pos: 111.5,-10.5 parent: 2 - - uid: 8120 + - uid: 8965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.4992805,2.2952788 + pos: 113.5,-12.5 parent: 2 - - uid: 11806 + - uid: 8966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.498083,2.3033948 + pos: 113.5,-13.5 parent: 2 -- proto: SignDirectionalHop - entities: - - uid: 11809 + - uid: 8967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,2.5 + pos: 113.5,-11.5 parent: 2 -- proto: SignDirectionalLibrary - entities: - - uid: 11816 + - uid: 8968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.498083,2.6830244 + pos: 113.5,-10.5 parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 8118 + - uid: 8969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,2.5 + pos: 115.5,-13.5 parent: 2 - - uid: 11184 + - uid: 8970 components: - type: Transform - pos: 39.55419,12.695712 + pos: 115.5,-12.5 parent: 2 - - uid: 11813 + - uid: 8971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,2.5 + pos: 115.5,-11.5 parent: 2 - - uid: 11853 + - uid: 8972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.50202,2.3010597 + pos: 115.5,-10.5 parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 11182 + - uid: 9081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5195,12.147359 + pos: 120.5,-15.5 parent: 2 - - uid: 11188 + - uid: 9082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.557316,12.409777 + pos: 119.5,-15.5 parent: 2 - - uid: 11812 + - uid: 9083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.505745,2.6978016 + pos: 118.5,-15.5 parent: 2 - - uid: 11851 + - uid: 9084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,2.5 + pos: 117.5,-15.5 parent: 2 -- proto: SignDirectionalSec - entities: - - uid: 5416 + - uid: 9085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.4984922,11.283884 + pos: 119.5,-17.5 parent: 2 - - uid: 7327 + - uid: 9086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,16.5 + pos: 118.5,-17.5 parent: 2 - - uid: 11180 + - uid: 9087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.54057,12.66816 + pos: 117.5,-17.5 parent: 2 - - uid: 11852 + - uid: 9088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.50202,2.708467 + pos: 120.5,-19.5 parent: 2 -- proto: SignDirectionalSolar - entities: - - uid: 12297 + - uid: 9089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 + pos: 119.5,-19.5 parent: 2 - - uid: 12298 + - uid: 9090 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,19.5 + pos: 118.5,-19.5 parent: 2 - - uid: 12299 + - uid: 9091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,45.5 + pos: 117.5,-19.5 parent: 2 -- proto: SignDirectionalSupply +- proto: SolarTracker entities: - - uid: 5418 + - uid: 1443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.4984922,11.714439 + pos: -15.5,-35.5 parent: 2 - - uid: 7328 + - uid: 5575 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.503027,16.29755 + pos: 89.5,45.5 parent: 2 -- proto: SignDirectionalWash - entities: - - uid: 11815 + - uid: 9080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,11.5 + pos: 120.5,-17.5 parent: 2 -- proto: SignElectricalMed +- proto: SpaceVillainArcadeFilled entities: - - uid: 7 + - uid: 1 components: - type: Transform - pos: 14.5,32.5 + pos: 20.5,10.5 parent: 2 - - uid: 1599 + - type: SpamEmitSound + enabled: False +- proto: SpawnMechRipley + entities: + - uid: 14751 components: - type: Transform - pos: 24.5,-40.5 + pos: 12.5,31.5 parent: 2 - - uid: 4874 +- proto: SpawnMobAlexander + entities: + - uid: 1866 components: - type: Transform - pos: 3.5,-33.5 + pos: 34.5,-11.5 parent: 2 - - uid: 12351 +- proto: SpawnMobBandito + entities: + - uid: 12772 components: - type: Transform - pos: 3.5,-8.5 + pos: 62.5,10.5 parent: 2 - - uid: 13003 +- proto: SpawnMobCatGeneric + entities: + - uid: 11419 components: - type: Transform - pos: 36.5,-41.5 + pos: 57.5,-11.5 parent: 2 - - uid: 13004 +- proto: SpawnMobCorgi + entities: + - uid: 10281 components: - type: Transform - pos: 31.5,-49.5 + pos: 19.5,-5.5 parent: 2 -- proto: SignEngine +- proto: SpawnMobCrabAtmos entities: - - uid: 5157 + - uid: 5859 components: - type: Transform - pos: 30.5,-37.5 + pos: 38.5,-28.5 parent: 2 - - uid: 5301 +- proto: SpawnMobFoxRenault + entities: + - uid: 12231 components: - type: Transform - pos: 33.5,-40.5 + pos: 31.5,41.5 parent: 2 -- proto: SignEngineering +- proto: SpawnMobMcGriff entities: - - uid: 5156 + - uid: 2493 components: - type: Transform - pos: 24.5,-26.5 + pos: 36.5,19.5 parent: 2 -- proto: SignEscapePods +- proto: SpawnMobMonkeyPunpun entities: - - uid: 5027 + - uid: 6527 components: - type: Transform - pos: 85.5,3.5 + pos: 39.5,-5.5 parent: 2 -- proto: SignEVA +- proto: SpawnMobMouse entities: - - uid: 5204 + - uid: 12324 components: - type: Transform - pos: 10.5,-2.5 + pos: 13.5,18.5 parent: 2 -- proto: SignExamroom - entities: - - uid: 12239 + - uid: 12327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,5.5 + pos: 73.5,-15.5 parent: 2 - - uid: 12240 + - uid: 12797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-8.5 + pos: 43.5,44.5 parent: 2 -- proto: SignFire - entities: - - uid: 12280 + - uid: 12798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,26.5 + pos: 67.5,39.5 parent: 2 - - uid: 12993 + - uid: 12799 components: - type: Transform - pos: 45.5,-49.5 + pos: 81.5,7.5 parent: 2 - - uid: 12994 + - uid: 12801 components: - type: Transform - pos: 45.5,-43.5 + pos: 1.5,-7.5 parent: 2 -- proto: SignFlammableMed - entities: - - uid: 1650 + - uid: 14926 components: - type: Transform - pos: 33.5,-31.5 + pos: -14.5,-22.5 parent: 2 - - uid: 10437 +- proto: SpawnMobPossumMorty + entities: + - uid: 12303 components: - type: Transform - pos: 61.5,27.5 + pos: 73.5,-1.5 parent: 2 -- proto: SignGravity +- proto: SpawnMobRaccoonMorticia entities: - - uid: 11199 + - uid: 14740 components: - type: Transform - pos: 16.482166,37.47681 + pos: 5.5,15.5 parent: 2 -- proto: SignHead +- proto: SpawnMobShiva entities: - - uid: 11814 + - uid: 8444 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-2.5 + pos: 44.5,22.5 parent: 2 -- proto: SignHydro1 +- proto: SpawnMobSlothPaperwork entities: - - uid: 6648 + - uid: 12305 components: - type: Transform - pos: 47.5,-2.5 + pos: 9.5,5.5 parent: 2 - - uid: 6651 +- proto: SpawnMobSmile + entities: + - uid: 12771 components: - type: Transform - pos: 41.5,-2.5 + pos: 59.5,19.5 parent: 2 -- proto: SignInterrogation +- proto: SpawnMobWalter entities: - - uid: 11209 + - uid: 12230 components: - type: Transform - pos: 31.49329,27.493366 + pos: 50.5,-8.5 parent: 2 -- proto: SignJanitor +- proto: SpawnPointAtmos entities: - - uid: 13164 + - uid: 4577 components: - type: Transform - pos: 6.5,-2.5 + pos: 30.5,-31.5 parent: 2 -- proto: SignKiddiePlaque - entities: - - uid: 12282 + - uid: 4578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,2.5 + pos: 29.5,-31.5 parent: 2 -- proto: SignLaserMed +- proto: SpawnPointBartender entities: - - uid: 12289 + - uid: 13732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 + pos: 39.5,-9.5 parent: 2 -- proto: SignLawyer +- proto: SpawnPointBorg entities: - - uid: 13165 + - uid: 13142 components: - type: Transform - pos: -4.5,-6.5 + pos: 45.5,10.5 parent: 2 - - uid: 13166 + - uid: 14628 components: - type: Transform - pos: 24.5,28.5 + pos: 49.5,9.5 parent: 2 -- proto: SignLibrary - entities: - - uid: 11201 + - uid: 14629 components: - type: Transform - pos: 7.478853,8.535535 + pos: 51.5,9.5 parent: 2 -- proto: SignMagneticsMed +- proto: SpawnPointBotanist entities: - - uid: 12283 + - uid: 6750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,18.5 + pos: 43.5,-6.5 parent: 2 -- proto: SignMedical - entities: - - uid: 6788 + - uid: 6751 components: - type: Transform - pos: 53.5,1.5 + pos: 44.5,-6.5 parent: 2 -- proto: SignMorgue +- proto: SpawnPointCaptain entities: - - uid: 11196 + - uid: 8682 components: - type: Transform - pos: 71.560074,0.5078441 + pos: 33.5,40.5 parent: 2 - - uid: 11843 +- proto: SpawnPointCargoTechnician + entities: + - uid: 8258 components: - type: Transform - pos: 70.5,-6.5 + pos: 13.5,22.5 parent: 2 -- proto: SignNosmoking - entities: - - uid: 10074 + - uid: 8259 components: - type: Transform - pos: 68.5,-4.5 + pos: 12.5,22.5 parent: 2 - - uid: 11397 + - uid: 8260 components: - type: Transform - pos: 65.5,-7.5 + pos: 11.5,22.5 parent: 2 -- proto: SignPlaque +- proto: SpawnPointChaplain entities: - - uid: 12281 + - uid: 10638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 + pos: 32.5,8.5 parent: 2 -- proto: SignPrison +- proto: SpawnPointChef entities: - - uid: 11208 + - uid: 8294 components: - type: Transform - pos: 35.478874,29.508991 + pos: 36.5,-11.5 parent: 2 -- proto: SignRadiationMed +- proto: SpawnPointChemist entities: - - uid: 747 + - uid: 5071 components: - type: Transform - pos: 18.5,-40.5 + pos: 53.5,-4.5 parent: 2 - - uid: 4012 + - uid: 6650 components: - type: Transform - pos: 24.5,-37.5 + pos: 50.5,-4.5 parent: 2 -- proto: SignRND +- proto: SpawnPointChiefEngineer entities: - - uid: 11190 + - uid: 8692 components: - type: Transform - pos: 57.499714,16.503765 + pos: 11.5,-34.5 parent: 2 - - uid: 12293 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 11418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,16.5 + pos: 56.5,-11.5 parent: 2 -- proto: SignRobo +- proto: SpawnPointClown entities: - - uid: 12291 + - uid: 9608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,12.5 + pos: 26.5,6.5 parent: 2 - - uid: 12292 +- proto: SpawnPointDetective + entities: + - uid: 8679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,12.5 + pos: 42.5,19.5 parent: 2 -- proto: SignScience +- proto: SpawnPointHeadOfPersonnel entities: - - uid: 11191 + - uid: 12791 components: - type: Transform - pos: 48.50537,15.474182 + pos: 19.5,-4.5 parent: 2 -- proto: SignSecurearea +- proto: SpawnPointHeadOfSecurity entities: - - uid: 11939 + - uid: 8438 components: - type: Transform - pos: 17.5,-15.5 + pos: 44.5,24.5 parent: 2 - - uid: 13644 +- proto: SpawnPointJanitor + entities: + - uid: 8711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,28.5 + pos: 5.5,-4.5 parent: 2 - - uid: 13645 +- proto: SpawnPointLatejoin + entities: + - uid: 15 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,28.5 + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 parent: 2 -- proto: SignSecureMed - entities: - - uid: 1518 + - uid: 98 components: - type: Transform - pos: 28.5,-25.5 + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 parent: 2 -- proto: SignSecurity - entities: - - uid: 12294 + - uid: 3343 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,27.5 + pos: -25.5,-12.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-13.5 parent: 2 -- proto: SignShipDock +- proto: SpawnPointLawyer entities: - - uid: 7784 + - uid: 8160 components: - type: Transform - pos: 6.5,18.5 + pos: -2.5,-11.5 parent: 2 - - uid: 9306 + - uid: 8161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,51.5 + pos: -3.5,-10.5 parent: 2 -- proto: SignShock +- proto: SpawnPointLibrarian entities: - - uid: 8410 + - uid: 11708 components: - type: Transform - pos: 42.5,30.5 + pos: 9.5,3.5 parent: 2 - - uid: 8411 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 11958 components: - type: Transform - pos: 42.5,34.5 + pos: 71.5,5.5 parent: 2 - - uid: 11017 + - uid: 11959 components: - type: Transform - pos: 42.5,-13.5 + pos: 71.5,6.5 parent: 2 - - uid: 11019 + - uid: 11960 components: - type: Transform - pos: 20.5,38.5 + pos: 71.5,7.5 parent: 2 - - uid: 11020 +- proto: SpawnPointMedicalIntern + entities: + - uid: 11961 components: - type: Transform - pos: 25.5,38.5 + pos: 73.5,5.5 parent: 2 - - uid: 11089 + - uid: 11962 components: - type: Transform - pos: 28.5,22.5 + pos: 73.5,6.5 parent: 2 - - uid: 13631 +- proto: SpawnPointMime + entities: + - uid: 9610 components: - type: Transform - pos: 50.5,39.5 + pos: 25.5,7.5 parent: 2 - - uid: 13632 +- proto: SpawnPointMusician + entities: + - uid: 9355 components: - type: Transform - pos: 53.5,41.5 + pos: 20.5,-11.5 parent: 2 - - uid: 13633 +- proto: SpawnPointObserver + entities: + - uid: 5419 components: - type: Transform - pos: 59.5,41.5 + pos: 26.5,1.5 parent: 2 - - uid: 13634 +- proto: SpawnPointParamedic + entities: + - uid: 8314 components: - type: Transform - pos: 62.5,39.5 + pos: 46.5,3.5 parent: 2 -- proto: SignSmoking +- proto: SpawnPointPassenger entities: - - uid: 5466 + - uid: 1791 components: - type: Transform - pos: 68.5,38.5 + pos: 32.5,-15.5 parent: 2 - - uid: 9721 + - uid: 1792 components: - type: Transform - pos: 54.5,-2.5 + pos: 31.5,-15.5 parent: 2 -- proto: SignSpace - entities: - - uid: 5397 + - uid: 1793 components: - type: Transform - pos: 34.5,-37.5 + pos: 30.5,-15.5 parent: 2 - - uid: 7562 + - uid: 1794 components: - type: Transform - pos: 2.4978352,-16.484226 + pos: 30.5,-16.5 parent: 2 - - uid: 7563 + - uid: 1795 components: - type: Transform - pos: 5.529085,-16.484226 + pos: 31.5,-16.5 parent: 2 - - uid: 10083 + - uid: 1796 components: - type: Transform - pos: 62.5,29.5 + pos: 32.5,-16.5 parent: 2 - - uid: 12992 +- proto: SpawnPointQuartermaster + entities: + - uid: 14990 components: - type: Transform - pos: 33.5,-48.5 + pos: 7.5,18.5 parent: 2 -- proto: SignSurgery +- proto: SpawnPointResearchAssistant entities: - - uid: 11202 + - uid: 10657 components: - type: Transform - pos: 63.483078,-4.4704685 + pos: 57.5,23.5 parent: 2 - - uid: 11203 + - uid: 10658 components: - type: Transform - pos: 54.505295,-16.448315 + pos: 56.5,23.5 parent: 2 -- proto: SignTelecomms +- proto: SpawnPointResearchDirector entities: - - uid: 11206 + - uid: 12770 components: - type: Transform - pos: 24.48286,-16.522787 + pos: 61.5,9.5 parent: 2 -- proto: SignToolStorage +- proto: SpawnPointSalvageSpecialist entities: - - uid: 5704 + - uid: 14764 components: - type: Transform - pos: 68.5,40.5 + pos: 7.5,31.5 parent: 2 - - uid: 11200 + - uid: 14765 components: - type: Transform - pos: 28.472525,-18.512623 + pos: 8.5,32.5 parent: 2 - - uid: 12302 +- proto: SpawnPointScientist + entities: + - uid: 10654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-13.5 + pos: 57.5,24.5 parent: 2 -- proto: SignToxins - entities: - - uid: 12304 + - uid: 10655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,12.5 + pos: 56.5,24.5 parent: 2 -- proto: SignVirology - entities: - - uid: 10909 + - uid: 10656 components: - type: Transform - pos: 78.5,0.5 + pos: 55.5,24.5 parent: 2 -- proto: SingularityGenerator +- proto: SpawnPointSecurityCadet entities: - - uid: 750 + - uid: 8437 components: - type: Transform - pos: 12.5,-31.5 + pos: 34.5,27.5 parent: 2 -- proto: Sink - entities: - - uid: 1530 + - uid: 8696 components: - type: Transform - pos: 11.5,13.5 + pos: 34.5,26.5 parent: 2 - - uid: 5276 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 8159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-6.5 + pos: 31.5,29.5 parent: 2 - - uid: 6932 + - uid: 13584 components: - type: Transform - pos: 10.5,13.5 + pos: 30.5,29.5 parent: 2 - - uid: 7412 + - uid: 13585 components: - type: Transform - pos: 78.5,-0.5 + pos: 29.5,29.5 parent: 2 - - uid: 7575 +- proto: SpawnPointServiceWorker + entities: + - uid: 12792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-7.5 + pos: 32.5,-5.5 parent: 2 - - uid: 10446 + - uid: 12793 components: - type: Transform - pos: 51.5,15.5 + pos: 32.5,-4.5 parent: 2 - - uid: 10853 + - uid: 12794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 103.5,-13.5 + pos: 34.5,-5.5 parent: 2 - - uid: 11406 + - uid: 12795 components: - type: Transform - pos: 65.5,-8.5 + pos: 34.5,-4.5 parent: 2 - - uid: 11899 +- proto: SpawnPointStationEngineer + entities: + - uid: 4579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,8.5 + pos: 23.5,-31.5 parent: 2 - - uid: 12166 + - uid: 4580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,6.5 + pos: 22.5,-31.5 parent: 2 -- proto: SinkWide - entities: - - uid: 4559 + - uid: 4581 components: - type: Transform - pos: 37.5,-9.5 + pos: 21.5,-31.5 parent: 2 - - uid: 6680 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 5660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-6.5 + pos: 26.5,-32.5 parent: 2 - - uid: 9720 + - uid: 5661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-4.5 + pos: 25.5,-32.5 parent: 2 -- proto: Skub - entities: - - uid: 5403 + - uid: 5662 components: - type: Transform - pos: 62.485527,20.60704 + pos: 27.5,-32.5 parent: 2 - - uid: 13072 +- proto: SpawnPointWarden + entities: + - uid: 8375 components: - type: Transform - pos: 7.5138106,-13.335101 + pos: 38.5,18.5 parent: 2 - - uid: 13073 +- proto: SprayBottle + entities: + - uid: 5393 components: - type: Transform - pos: 4.5294356,-11.475726 + rot: 3.589668631320819E-05 rad + pos: 55.735016,10.470499 parent: 2 - - uid: 13074 + - uid: 7793 components: - type: Transform - pos: 8.498186,-12.475726 + pos: 55.34302,10.727416 parent: 2 -- proto: SmartFridge +- proto: SprayBottleSpaceCleaner entities: - - uid: 228 + - uid: 7812 components: - type: Transform - pos: 40.5,-6.5 + pos: 82.67393,-4.422255 parent: 2 - - uid: 2963 +- proto: SprayBottleWater + entities: + - uid: 6812 components: - type: Transform - pos: 54.5,-5.5 + pos: 67.05991,-3.359559 parent: 2 - - uid: 11837 +- proto: StasisBed + entities: + - uid: 1711 components: - type: Transform - pos: 62.5,-3.5 + pos: 60.5,4.5 parent: 2 - - uid: 13110 +- proto: StationAiUploadComputer + entities: + - uid: 11004 components: - type: Transform - pos: 67.5,-8.5 + pos: 85.5,32.5 parent: 2 -- proto: SMESBasic +- proto: StationAnchor entities: - - uid: 875 + - uid: 13717 components: - - type: MetaData - name: SMES Bank 1 - type: Transform - pos: 25.5,-31.5 + pos: 6.5,-19.5 parent: 2 - - uid: 876 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 14285 components: - - type: MetaData - name: SMES Bank 2 - type: Transform - pos: 26.5,-31.5 + pos: 84.42593,28.382923 parent: 2 - - uid: 885 +- proto: StationMap + entities: + - uid: 484 components: - - type: MetaData - name: SMES Bank 3 - type: Transform - pos: 27.5,-31.5 + rot: 3.141592653589793 rad + pos: -14.5,-2.5 parent: 2 - - uid: 3405 + - uid: 1761 components: - type: Transform - pos: 71.5,44.5 + pos: 19.5,38.5 parent: 2 - - uid: 4075 + - uid: 2022 components: - - type: MetaData - name: Telecomms SMES - type: Transform - pos: 23.5,-14.5 + rot: 1.5707963267948966 rad + pos: -25.5,-19.5 parent: 2 - - uid: 5116 + - uid: 2024 components: - type: Transform - pos: 56.5,38.5 + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 parent: 2 - - uid: 9002 + - uid: 8116 components: - type: Transform - pos: 112.5,-17.5 + pos: 9.5,2.5 parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 60.000237 - currentSupply: 60.000237 - supplyRampPosition: 60.000237 - - uid: 10856 + - uid: 8984 components: - type: Transform - pos: 3.5,-34.5 + pos: 34.5,16.5 parent: 2 -- proto: SmokingPipeFilledTobacco - entities: - - uid: 11946 + - uid: 11292 components: - type: Transform - pos: 32.982197,41.628204 + pos: 28.5,-1.5 parent: 2 -- proto: SodaDispenser +- proto: Stimpack entities: - - uid: 2922 - components: - - type: Transform - pos: 67.5,-17.5 - parent: 2 - - type: ContainerContainer - containers: - ReagentDispenser-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6526 + - uid: 12493 components: - type: Transform - pos: 39.5,-2.5 + pos: 11.490012,-11.457567 parent: 2 -- proto: SolarPanel +- proto: Stool entities: - - uid: 1386 + - uid: 172 components: - type: Transform - pos: -5.5,-31.5 + pos: 5.5,-4.5 parent: 2 - - uid: 1387 + - uid: 943 components: - type: Transform - pos: -3.5,-31.5 + rot: -1.5707963267948966 rad + pos: 3.5,-36.5 parent: 2 - - uid: 1388 + - uid: 1665 components: - type: Transform - pos: -3.5,-32.5 + rot: -1.5707963267948966 rad + pos: 30.5,-7.5 parent: 2 - - uid: 1389 + - uid: 3406 components: - type: Transform - pos: -5.5,-32.5 + pos: 71.5,46.5 parent: 2 - - uid: 1390 + - uid: 4304 components: - type: Transform - pos: -5.5,-33.5 + rot: 3.141592653589793 rad + pos: 20.5,-41.5 parent: 2 - - uid: 1391 + - uid: 4406 components: - type: Transform - pos: -3.5,-33.5 + rot: 3.141592653589793 rad + pos: 30.5,28.5 parent: 2 - - uid: 1392 + - uid: 5067 components: - type: Transform - pos: -5.5,-37.5 + pos: 51.5,-6.5 parent: 2 - - uid: 1393 + - uid: 5512 components: - type: Transform - pos: -3.5,-37.5 + rot: 3.141592653589793 rad + pos: 55.5,40.5 parent: 2 - - uid: 1394 + - uid: 5879 components: - type: Transform - pos: -3.5,-38.5 + rot: -1.5707963267948966 rad + pos: 3.5,-30.5 parent: 2 - - uid: 1395 + - uid: 6495 components: - type: Transform - pos: -3.5,-39.5 + rot: 3.141592653589793 rad + pos: 20.5,-11.5 parent: 2 - - uid: 1396 + - uid: 6953 components: - type: Transform - pos: -5.5,-39.5 + rot: 3.141592653589793 rad + pos: 20.5,9.5 parent: 2 - - uid: 1397 + - uid: 9360 components: - type: Transform - pos: -5.5,-38.5 + pos: 27.5,7.5 parent: 2 - - uid: 1412 + - uid: 13626 components: - type: Transform - pos: -7.5,-33.5 + pos: 55.5,32.5 parent: 2 - - uid: 1413 + - uid: 13627 components: - type: Transform - pos: -7.5,-32.5 + pos: 56.5,32.5 parent: 2 - - uid: 1414 + - uid: 13752 components: - type: Transform - pos: -7.5,-31.5 + pos: 54.5,37.5 parent: 2 - - uid: 1415 +- proto: StoolBar + entities: + - uid: 1615 components: - type: Transform - pos: -7.5,-30.5 + rot: 1.5707963267948966 rad + pos: 36.5,-5.5 parent: 2 - - uid: 1416 + - uid: 1616 components: - type: Transform - pos: -9.5,-30.5 + rot: 1.5707963267948966 rad + pos: 36.5,-4.5 parent: 2 - - uid: 1417 + - uid: 1617 components: - type: Transform - pos: -9.5,-31.5 + rot: 1.5707963267948966 rad + pos: 36.5,-3.5 parent: 2 - - uid: 1418 + - uid: 1627 components: - type: Transform - pos: -9.5,-32.5 + rot: 1.5707963267948966 rad + pos: 36.5,-7.5 parent: 2 - - uid: 1419 + - uid: 1628 components: - type: Transform - pos: -9.5,-33.5 + rot: 1.5707963267948966 rad + pos: 36.5,-6.5 parent: 2 - - uid: 1420 + - uid: 2903 components: - type: Transform - pos: -9.5,-37.5 + pos: 61.5,-15.5 parent: 2 - - uid: 1421 + - uid: 2904 components: - type: Transform - pos: -9.5,-38.5 + pos: 60.5,-15.5 parent: 2 - - uid: 1422 + - uid: 2905 components: - type: Transform - pos: -9.5,-39.5 + pos: 60.5,-16.5 parent: 2 - - uid: 1423 + - uid: 12695 components: - type: Transform - pos: -9.5,-40.5 + rot: -1.5707963267948966 rad + pos: 107.5,-17.5 parent: 2 - - uid: 1424 +- proto: StorageCanister + entities: + - uid: 950 components: - type: Transform - pos: -7.5,-40.5 + pos: 46.5,-38.5 parent: 2 - - uid: 1425 + - uid: 951 components: - type: Transform - pos: -7.5,-39.5 + pos: 46.5,-37.5 parent: 2 - - uid: 1426 + - uid: 1817 components: - type: Transform - pos: -7.5,-38.5 + pos: 50.5,-33.5 parent: 2 - - uid: 1427 + - uid: 3967 components: - type: Transform - pos: -7.5,-37.5 + pos: 37.5,-26.5 parent: 2 - - uid: 1444 + - uid: 5117 components: - type: Transform - pos: -13.5,-37.5 + pos: 36.5,-26.5 parent: 2 - - uid: 1445 + - uid: 10440 components: - type: Transform - pos: -13.5,-38.5 + pos: 58.5,9.5 parent: 2 - - uid: 1446 +- proto: SubstationBasic + entities: + - uid: 54 components: + - type: MetaData + name: Dock Substation - type: Transform - pos: -13.5,-39.5 + pos: 6.5,-8.5 parent: 2 - - uid: 1447 + - uid: 443 components: + - type: MetaData + name: Gravity/Bridge Substation - type: Transform - pos: -11.5,-39.5 + pos: 14.5,35.5 parent: 2 - - uid: 1448 + - type: PowerNetworkBattery + supplyRampPosition: 2.3437593 + - uid: 2039 components: + - type: MetaData + name: Singulo Substation - type: Transform - pos: -11.5,-38.5 + pos: 15.5,-38.5 parent: 2 - - uid: 1449 + - uid: 2160 components: + - type: MetaData + name: Library/Chapel Substation - type: Transform - pos: -11.5,-37.5 + pos: 14.5,7.5 parent: 2 - - uid: 1450 + - uid: 4076 components: + - type: MetaData + name: Telecomms Substation - type: Transform - pos: -11.5,-33.5 + pos: 22.5,-14.5 parent: 2 - - uid: 1451 + - uid: 4096 components: + - type: MetaData + name: Engineering Substation - type: Transform - pos: -11.5,-32.5 + pos: 10.5,-25.5 parent: 2 - - uid: 1452 + - type: PowerNetworkBattery + supplyRampPosition: 2.3437593 + - uid: 4101 components: + - type: MetaData + name: South West Substation - type: Transform - pos: -11.5,-31.5 + pos: 16.5,-14.5 parent: 2 - - uid: 1453 + - uid: 4431 components: + - type: MetaData + name: Solars South West Substation - type: Transform - pos: -13.5,-31.5 + pos: 4.5,-36.5 parent: 2 - - uid: 1454 + - type: PowerNetworkBattery + supplyRampPosition: 2.3437593 + - uid: 4613 components: - type: Transform - pos: -13.5,-32.5 + pos: 90.5,-2.5 parent: 2 - - uid: 1455 + - uid: 5637 components: + - type: MetaData + name: Solars North East Substation - type: Transform - pos: -13.5,-33.5 + pos: 70.5,44.5 parent: 2 - - uid: 5535 + - type: PowerNetworkBattery + loadingNetworkDemand: 10.019571 + currentSupply: 10.019571 + supplyRampPosition: 10.019571 + - uid: 6199 components: + - type: MetaData + name: Medical Substation - type: Transform - pos: 77.5,49.5 + pos: 69.5,-13.5 parent: 2 - - uid: 5536 + - uid: 6379 components: + - type: MetaData + name: Science Substation - type: Transform - pos: 77.5,48.5 + pos: 50.5,27.5 parent: 2 - - uid: 5537 + - type: PowerNetworkBattery + supplyRampPosition: 2.3437593 + - uid: 7576 components: + - type: MetaData + name: Bar/Chemistry Substation - type: Transform - pos: 77.5,47.5 + pos: 52.5,-10.5 parent: 2 - - uid: 5538 + - uid: 8307 components: + - type: MetaData + name: Toolroom Substation - type: Transform - pos: 79.5,47.5 + pos: 35.5,-14.5 parent: 2 - - uid: 5539 + - uid: 9016 components: - type: Transform - pos: 79.5,48.5 + pos: 112.5,-15.5 parent: 2 - - uid: 5540 + - type: PowerNetworkBattery + loadingNetworkDemand: 60.000237 + currentReceiving: 60.000237 + currentSupply: 60.000237 + - uid: 9041 components: + - type: MetaData + name: Security Substation - type: Transform - pos: 79.5,49.5 + pos: 37.5,34.5 parent: 2 - - uid: 5541 + - uid: 13688 components: + - type: MetaData + name: Cargo Substation - type: Transform - pos: 81.5,50.5 + pos: 8.5,15.5 parent: 2 - - uid: 5542 + - uid: 14395 components: + - type: MetaData + name: AI Core Substation - type: Transform - pos: 81.5,49.5 + pos: 80.5,34.5 parent: 2 - - uid: 5543 +- proto: SuitStorageCaptain + entities: + - uid: 869 components: - type: Transform - pos: 81.5,48.5 + pos: 30.5,39.5 parent: 2 - - uid: 5544 +- proto: SuitStorageCE + entities: + - uid: 597 components: - type: Transform - pos: 81.5,47.5 + pos: 10.5,-36.5 parent: 2 - - uid: 5545 +- proto: SuitStorageEngi + entities: + - uid: 870 components: - type: Transform - pos: 83.5,47.5 + pos: 15.5,-30.5 parent: 2 - - uid: 5546 + - uid: 5654 components: - type: Transform - pos: 83.5,48.5 + pos: 30.5,-34.5 parent: 2 - - uid: 5547 + - uid: 5655 components: - type: Transform - pos: 83.5,49.5 + pos: 32.5,-34.5 parent: 2 - - uid: 5548 +- proto: SuitStorageEVA + entities: + - uid: 10300 components: - type: Transform - pos: 83.5,50.5 + pos: 10.5,-8.5 parent: 2 - - uid: 5549 + - uid: 10301 components: - type: Transform - pos: 83.5,40.5 + pos: 11.5,-8.5 parent: 2 - - uid: 5550 + - uid: 10302 components: - type: Transform - pos: 81.5,40.5 + pos: 12.5,-8.5 parent: 2 - - uid: 5551 +- proto: SuitStorageEVAAlternate + entities: + - uid: 10297 components: - type: Transform - pos: 81.5,41.5 + pos: 10.5,-5.5 parent: 2 - - uid: 5552 + - uid: 10298 components: - type: Transform - pos: 81.5,42.5 + pos: 11.5,-5.5 parent: 2 - - uid: 5553 + - uid: 10299 components: - type: Transform - pos: 81.5,43.5 + pos: 12.5,-5.5 parent: 2 - - uid: 5554 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 3460 components: - type: Transform - pos: 83.5,43.5 + pos: 48.5,33.5 parent: 2 - - uid: 5555 + - uid: 3493 components: - type: Transform - pos: 83.5,42.5 + pos: 49.5,33.5 parent: 2 - - uid: 5556 +- proto: SuitStorageNTSRA + entities: + - uid: 12168 components: - type: Transform - pos: 83.5,41.5 + pos: 49.5,-15.5 parent: 2 - - uid: 5557 +- proto: SuitStorageRD + entities: + - uid: 10661 components: - type: Transform - pos: 79.5,41.5 + pos: 60.5,8.5 parent: 2 - - uid: 5558 +- proto: SuitStorageSec + entities: + - uid: 2311 components: - type: Transform - pos: 79.5,42.5 + pos: 41.5,28.5 parent: 2 - - uid: 5559 + - uid: 11209 components: - type: Transform - pos: 79.5,43.5 + pos: 38.5,24.5 parent: 2 - - uid: 5560 + - uid: 11735 components: - type: Transform - pos: 77.5,43.5 + pos: 41.5,24.5 parent: 2 - - uid: 5561 +- proto: SuitStorageWarden + entities: + - uid: 7780 components: - type: Transform - pos: 77.5,42.5 + pos: 39.5,19.5 parent: 2 - - uid: 5562 +- proto: SurveillanceCameraCommand + entities: + - uid: 1290 components: - type: Transform - pos: 77.5,41.5 + rot: -1.5707963267948966 rad + pos: 66.5,22.5 parent: 2 - - uid: 5563 + - type: SurveillanceCamera + id: AI Core Hallway + - uid: 12735 components: - type: Transform - pos: 85.5,41.5 + rot: 3.141592653589793 rad + pos: 10.5,-5.5 parent: 2 - - uid: 5564 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA Storage + - uid: 12736 components: - type: Transform - pos: 85.5,42.5 + rot: 3.141592653589793 rad + pos: 17.5,-3.5 parent: 2 - - uid: 5565 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP Office + - uid: 12754 components: - type: Transform - pos: 85.5,43.5 + rot: 3.141592653589793 rad + pos: 19.5,41.5 parent: 2 - - uid: 5566 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + - uid: 12755 components: - type: Transform - pos: 87.5,43.5 + rot: 3.141592653589793 rad + pos: 24.5,42.5 parent: 2 - - uid: 5567 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + - uid: 12756 components: - type: Transform - pos: 87.5,42.5 + rot: 3.141592653589793 rad + pos: 21.5,46.5 parent: 2 - - uid: 5568 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge West + - uid: 12757 components: - type: Transform - pos: 87.5,41.5 + rot: 3.141592653589793 rad + pos: 28.5,48.5 parent: 2 - - uid: 5569 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge North + - uid: 12758 components: - type: Transform - pos: 87.5,47.5 + rot: 3.141592653589793 rad + pos: 33.5,46.5 parent: 2 - - uid: 5570 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge East + - uid: 12762 components: - type: Transform - pos: 87.5,48.5 + rot: 1.5707963267948966 rad + pos: 28.5,41.5 parent: 2 - - uid: 5571 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge Entrance + - uid: 13742 components: - type: Transform - pos: 87.5,49.5 + rot: -1.5707963267948966 rad + pos: 40.5,-15.5 parent: 2 - - uid: 5572 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Secure Storage Boards + - uid: 13761 components: - type: Transform - pos: 85.5,49.5 + rot: 1.5707963267948966 rad + pos: 32.5,36.5 parent: 2 - - uid: 5573 + - type: SurveillanceCamera + id: Camera Routers + - uid: 14168 components: - type: Transform - pos: 85.5,48.5 + pos: 84.5,36.5 parent: 2 - - uid: 5574 + - type: SurveillanceCamera + id: AI Core Exterior 1 + - uid: 14346 components: - type: Transform - pos: 85.5,47.5 + rot: 1.5707963267948966 rad + pos: 77.5,33.5 parent: 2 - - uid: 8904 + - type: SurveillanceCamera + id: AI Core Exterior 2 + - uid: 14575 components: - type: Transform - pos: 111.5,-21.5 + rot: 3.141592653589793 rad + pos: 81.5,34.5 parent: 2 - - uid: 8905 + - type: SurveillanceCamera + id: AI Core Engineering + - uid: 14576 components: - type: Transform - pos: 111.5,-22.5 + rot: 1.5707963267948966 rad + pos: 82.5,31.5 parent: 2 - - uid: 8906 + - type: SurveillanceCamera + id: AI Core Entrance + - uid: 14577 components: - type: Transform - pos: 111.5,-23.5 + rot: 1.5707963267948966 rad + pos: 86.5,31.5 parent: 2 - - uid: 8907 + - type: SurveillanceCamera + id: AI Upload + - uid: 14578 components: - type: Transform - pos: 111.5,-24.5 + rot: 3.141592653589793 rad + pos: 89.5,32.5 parent: 2 - - uid: 8908 + - type: SurveillanceCamera + id: AI Core Front + - uid: 14579 components: - type: Transform - pos: 113.5,-24.5 + rot: 1.5707963267948966 rad + pos: 96.5,30.5 parent: 2 - - uid: 8909 + - type: SurveillanceCamera + id: AI Core Rear + - uid: 14580 components: - type: Transform - pos: 113.5,-23.5 + rot: 3.141592653589793 rad + pos: 83.5,24.5 parent: 2 - - uid: 8910 + - type: SurveillanceCamera + id: AI Core Exterior 3 + - uid: 14596 components: - type: Transform - pos: 113.5,-22.5 + rot: -1.5707963267948966 rad + pos: 71.5,23.5 parent: 2 - - uid: 8911 + - type: SurveillanceCamera + id: AI Core Chute + - uid: 14624 components: - type: Transform - pos: 113.5,-21.5 + pos: 70.5,20.5 parent: 2 - - uid: 8912 + - type: SurveillanceCamera + id: AI Core Access + - uid: 14675 components: - type: Transform - pos: 115.5,-21.5 + rot: -1.5707963267948966 rad + pos: 30.5,40.5 parent: 2 - - uid: 8913 + - type: SurveillanceCamera + id: Captain's Office + - uid: 14676 components: - type: Transform - pos: 115.5,-22.5 + rot: 1.5707963267948966 rad + pos: 37.5,42.5 parent: 2 - - uid: 8914 + - type: SurveillanceCamera + id: Captain's Bedroom + - uid: 14677 components: - type: Transform - pos: 115.5,-23.5 + rot: 1.5707963267948966 rad + pos: 15.5,37.5 parent: 2 - - uid: 8915 + - type: SurveillanceCamera + id: Gravity Generator +- proto: SurveillanceCameraEngineering + entities: + - uid: 2035 components: - type: Transform - pos: 115.5,-24.5 + pos: 21.5,-58.5 parent: 2 - - uid: 8961 + - type: SurveillanceCamera + id: Singulo South + - uid: 5877 components: - type: Transform - pos: 111.5,-13.5 + rot: 3.141592653589793 rad + pos: 71.5,46.5 parent: 2 - - uid: 8962 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: 'Solars Northwest ' + - uid: 7462 components: - type: Transform - pos: 111.5,-12.5 + rot: 1.5707963267948966 rad + pos: 29.5,-47.5 parent: 2 - - uid: 8963 + - type: SurveillanceCamera + id: Singulo East + - uid: 7918 components: - type: Transform - pos: 111.5,-11.5 + rot: 3.141592653589793 rad + pos: 6.5,-18.5 parent: 2 - - uid: 8964 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Anchor Room + - uid: 10986 components: - type: Transform - pos: 111.5,-10.5 + rot: -1.5707963267948966 rad + pos: 13.5,-50.5 parent: 2 - - uid: 8965 + - type: SurveillanceCamera + id: Singulo West + - uid: 10989 components: - type: Transform - pos: 113.5,-12.5 + rot: 3.141592653589793 rad + pos: 14.5,-16.5 parent: 2 - - uid: 8966 + - type: SurveillanceCamera + id: Telecomms + - uid: 10995 components: - type: Transform - pos: 113.5,-13.5 + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 parent: 2 - - uid: 8967 + - type: SurveillanceCamera + id: Telecomms Entrance + - uid: 12663 components: - type: Transform - pos: 113.5,-11.5 + rot: 1.5707963267948966 rad + pos: -1.5,-34.5 parent: 2 - - uid: 8968 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Solars Southwest Door + - uid: 12778 components: - type: Transform - pos: 113.5,-10.5 + rot: -1.5707963267948966 rad + pos: 30.5,-25.5 parent: 2 - - uid: 8969 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Entrance + - uid: 12781 components: - type: Transform - pos: 115.5,-13.5 + pos: 42.5,-40.5 parent: 2 - - uid: 8970 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Canister Storage + - uid: 12782 components: - type: Transform - pos: 115.5,-12.5 + rot: 1.5707963267948966 rad + pos: 32.5,-40.5 parent: 2 - - uid: 8971 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Room + - uid: 12783 components: - type: Transform - pos: 115.5,-11.5 + rot: 1.5707963267948966 rad + pos: 23.5,-40.5 parent: 2 - - uid: 8972 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Particle Accelerator + - uid: 12785 components: - type: Transform - pos: 115.5,-10.5 + rot: 3.141592653589793 rad + pos: 11.5,-33.5 parent: 2 - - uid: 9081 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: CE Office + - uid: 12787 components: - type: Transform - pos: 120.5,-15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-29.5 parent: 2 - - uid: 9082 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Secure Storage + - uid: 12788 components: - type: Transform - pos: 119.5,-15.5 + pos: 19.5,-28.5 parent: 2 - - uid: 9083 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break Room + - uid: 12789 components: - type: Transform - pos: 118.5,-15.5 + rot: -1.5707963267948966 rad + pos: 25.5,-25.5 parent: 2 - - uid: 9084 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Entrance + - uid: 12790 components: - type: Transform - pos: 117.5,-15.5 + rot: 3.141592653589793 rad + pos: 26.5,-31.5 parent: 2 - - uid: 9085 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Locker Room + - uid: 13542 components: - type: Transform - pos: 119.5,-17.5 + rot: 3.141592653589793 rad + pos: 2.5,-34.5 parent: 2 - - uid: 9086 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: 'Solars Southwest ' + - uid: 13593 components: - type: Transform - pos: 118.5,-17.5 + rot: 1.5707963267948966 rad + pos: 11.5,-40.5 parent: 2 - - uid: 9087 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: CE bedroom + - uid: 13615 components: - type: Transform - pos: 117.5,-17.5 + rot: 1.5707963267948966 rad + pos: 26.5,-40.5 parent: 2 - - uid: 9088 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: PA room east + - uid: 13616 components: - type: Transform - pos: 120.5,-19.5 + rot: 3.141592653589793 rad + pos: 33.5,-50.5 parent: 2 - - uid: 9089 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + - uid: 13617 components: - type: Transform - pos: 119.5,-19.5 + rot: -1.5707963267948966 rad + pos: 31.5,-48.5 parent: 2 - - uid: 9090 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + - uid: 13618 components: - type: Transform - pos: 118.5,-19.5 + pos: 41.5,-48.5 parent: 2 - - uid: 9091 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG Room + - uid: 13733 components: - type: Transform - pos: 117.5,-19.5 + rot: -1.5707963267948966 rad + pos: 38.5,-33.5 parent: 2 -- proto: SolarTracker - entities: - - uid: 1443 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos South + - uid: 13734 components: - type: Transform - pos: -15.5,-35.5 + pos: 36.5,-40.5 parent: 2 - - uid: 5575 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Central Airlock + - uid: 13735 components: - type: Transform - pos: 89.5,45.5 + rot: -1.5707963267948966 rad + pos: 38.5,-27.5 parent: 2 - - uid: 9080 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos North + - uid: 13736 components: - type: Transform - pos: 120.5,-17.5 + rot: 1.5707963267948966 rad + pos: 46.5,-22.5 parent: 2 -- proto: SpaceVillainArcadeFilled - entities: - - uid: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Tanks North + - uid: 13737 components: - type: Transform - pos: 20.5,10.5 + rot: 1.5707963267948966 rad + pos: 46.5,-34.5 parent: 2 - - type: SpamEmitSound - enabled: False -- proto: SpawnMechRipley - entities: - - uid: 13762 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Tanks South + - uid: 13738 components: - type: Transform - pos: 7.5,30.5 + rot: 3.141592653589793 rad + pos: 19.5,-14.5 parent: 2 -- proto: SpawnMobAlexander - entities: - - uid: 1866 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms Airlock + - uid: 13748 components: - type: Transform - pos: 34.5,-11.5 + rot: -1.5707963267948966 rad + pos: 75.5,46.5 parent: 2 -- proto: SpawnMobBandito - entities: - - uid: 12772 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Solars Northwest Door + - uid: 14678 components: - type: Transform - pos: 62.5,10.5 + rot: -1.5707963267948966 rad + pos: 16.5,-40.5 parent: 2 -- proto: SpawnMobCatGeneric + - type: SurveillanceCamera + id: Singulo Power +- proto: SurveillanceCameraGeneral entities: - - uid: 11419 + - uid: 12665 components: - type: Transform - pos: 57.5,-11.5 + rot: 3.141592653589793 rad + pos: 19.5,37.5 parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 10281 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Vault + - uid: 12667 components: - type: Transform - pos: 19.5,-5.5 + rot: 3.141592653589793 rad + pos: 21.5,18.5 parent: 2 -- proto: SpawnMobCrabAtmos - entities: - - uid: 5859 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cryo + - uid: 12668 components: - type: Transform - pos: 38.5,-28.5 + rot: -1.5707963267948966 rad + pos: 14.5,13.5 parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 12231 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms + - uid: 12714 components: - type: Transform - pos: 31.5,41.5 + pos: 32.5,-7.5 parent: 2 -- proto: SpawnMobMcGriff - entities: - - uid: 8443 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cafeteria + - uid: 12716 components: - type: Transform - pos: 40.5,23.5 + rot: 3.141592653589793 rad + pos: 21.5,-9.5 parent: 2 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 6527 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Theater + - uid: 12719 components: - type: Transform - pos: 39.5,-5.5 + rot: -1.5707963267948966 rad + pos: 34.5,7.5 parent: 2 -- proto: SpawnMobMouse - entities: - - uid: 12324 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Chapel + - uid: 12721 components: - type: Transform - pos: 13.5,18.5 + pos: 10.5,3.5 parent: 2 - - uid: 12327 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Library + - uid: 12722 components: - type: Transform - pos: 73.5,-15.5 + rot: -1.5707963267948966 rad + pos: 17.5,7.5 parent: 2 - - uid: 12797 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Laundry Room + - uid: 12723 components: - type: Transform - pos: 43.5,44.5 + rot: 3.141592653589793 rad + pos: 19.5,15.5 parent: 2 - - uid: 12798 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dormitory + - uid: 12730 components: - type: Transform - pos: 67.5,39.5 + rot: 3.141592653589793 rad + pos: -0.5,0.5 parent: 2 - - uid: 12799 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac + - uid: 12737 components: - type: Transform - pos: 81.5,7.5 + rot: 3.141592653589793 rad + pos: 24.5,1.5 parent: 2 - - uid: 12801 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall + - uid: 12738 components: - type: Transform - pos: 1.5,-7.5 + rot: 3.141592653589793 rad + pos: 28.5,15.5 parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 12303 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall North + - uid: 12739 components: - type: Transform - pos: 73.5,-1.5 + rot: 1.5707963267948966 rad + pos: 42.5,8.5 parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 243 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall East + - uid: 12740 components: - type: Transform - pos: 12.5,31.5 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 parent: 2 -- proto: SpawnMobShiva - entities: - - uid: 8444 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central Hall West + - uid: 12776 components: - type: Transform - pos: 44.5,22.5 + rot: 1.5707963267948966 rad + pos: 33.5,-15.5 parent: 2 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 12305 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Toolroom + - uid: 12786 components: - type: Transform - pos: 9.5,5.5 + rot: 3.141592653589793 rad + pos: 2.5,-28.5 parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 12771 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Disposals + - uid: 13739 components: - type: Transform - pos: 59.5,19.5 + rot: 3.141592653589793 rad + pos: 12.5,1.5 parent: 2 -- proto: SpawnMobWalter - entities: - - uid: 12230 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: HoP Line + - uid: 13743 components: - type: Transform - pos: 50.5,-8.5 + pos: 36.5,-0.5 parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 4577 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Bar + - uid: 13744 components: - type: Transform - pos: 30.5,-31.5 + rot: 3.141592653589793 rad + pos: 35.5,15.5 parent: 2 - - uid: 4578 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Security South + - uid: 13745 components: - type: Transform - pos: 29.5,-31.5 + rot: 1.5707963267948966 rad + pos: 27.5,22.5 parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 13732 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Security/Cargo + - uid: 13747 components: - type: Transform - pos: 39.5,-9.5 + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 13142 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Hall Bar South + - uid: 13760 components: - type: Transform - pos: 45.5,10.5 + rot: 1.5707963267948966 rad + pos: -22.5,-17.5 parent: 2 + - type: SurveillanceCamera + id: Arrivals Port - uid: 13765 components: - type: Transform - pos: 55.5,31.5 + rot: -1.5707963267948966 rad + pos: -24.5,-2.5 parent: 2 + - type: SurveillanceCamera + id: Arrivals Port Bow - uid: 13766 components: - type: Transform - pos: 57.5,31.5 + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 6750 + - uid: 14081 components: - type: Transform - pos: 43.5,-6.5 + rot: 3.141592653589793 rad + pos: -14.5,0.5 parent: 2 - - uid: 6751 + - type: SurveillanceCamera + id: Evac + - uid: 14082 components: - type: Transform - pos: 44.5,-6.5 + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 parent: 2 -- proto: SpawnPointCaptain + - type: SurveillanceCamera + id: Arrivals Starboard +- proto: SurveillanceCameraMedical entities: - - uid: 8682 + - uid: 1712 components: - type: Transform - pos: 33.5,40.5 + rot: 1.5707963267948966 rad + pos: 62.5,-4.5 parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 8258 + - type: SurveillanceCamera + id: Treatment + - uid: 12215 components: - type: Transform - pos: 13.5,22.5 + rot: -1.5707963267948966 rad + pos: 76.5,-5.5 parent: 2 - - uid: 8259 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + - uid: 12216 components: - type: Transform - pos: 12.5,22.5 + rot: 3.141592653589793 rad + pos: 73.5,-0.5 parent: 2 - - uid: 8260 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + - uid: 12217 components: - type: Transform - pos: 11.5,22.5 + rot: 3.141592653589793 rad + pos: 78.5,5.5 parent: 2 -- proto: SpawnPointChaplain - entities: - - uid: 10638 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Break Room + - uid: 12218 components: - type: Transform - pos: 32.5,8.5 + pos: 72.5,4.5 parent: 2 -- proto: SpawnPointChef - entities: - - uid: 8294 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Supply Room + - uid: 12221 components: - type: Transform - pos: 36.5,-11.5 + rot: 1.5707963267948966 rad + pos: 67.5,-5.5 parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 5071 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery + - uid: 12222 components: - type: Transform - pos: 53.5,-4.5 + rot: -1.5707963267948966 rad + pos: 65.5,-9.5 parent: 2 - - uid: 6650 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery Secondary + - uid: 12223 components: - type: Transform - pos: 50.5,-4.5 + rot: 3.141592653589793 rad + pos: 62.5,-9.5 parent: 2 -- proto: SpawnPointChiefEngineer - entities: - - uid: 8692 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Private Practice + - uid: 12224 components: - type: Transform - pos: 11.5,-34.5 + rot: 3.141592653589793 rad + pos: 57.5,-9.5 parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 11418 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: CMO Office + - uid: 12225 components: - type: Transform - pos: 56.5,-11.5 + rot: 3.141592653589793 rad + pos: 51.5,-4.5 parent: 2 -- proto: SpawnPointClown - entities: - - uid: 9608 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 12227 components: - type: Transform - pos: 26.5,6.5 + rot: 3.141592653589793 rad + pos: 52.5,0.5 parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 8679 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Entrance + - uid: 12235 components: - type: Transform - pos: 42.5,19.5 + rot: 3.141592653589793 rad + pos: 46.5,4.5 parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 12791 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Paramedic Room + - uid: 12236 components: - type: Transform - pos: 19.5,-4.5 + rot: 1.5707963267948966 rad + pos: 62.5,-0.5 parent: 2 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 8438 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryo + - uid: 12238 components: - type: Transform - pos: 44.5,24.5 + rot: 3.141592653589793 rad + pos: 64.5,4.5 parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 8711 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Exam + - uid: 13741 components: - type: Transform - pos: 5.5,-4.5 + rot: -1.5707963267948966 rad + pos: 80.5,-2.5 parent: 2 -- proto: SpawnPointLatejoin + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology Quarantine 1 +- proto: SurveillanceCameraRouterCommand entities: - - uid: 12803 + - uid: 2300 components: - type: Transform - pos: -16.5,-12.5 + pos: 32.5,35.5 parent: 2 - - uid: 12804 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 8404 components: - type: Transform - pos: -15.5,-12.5 + pos: 30.5,35.5 parent: 2 - - uid: 12805 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 8230 components: - type: Transform - pos: -9.5,-12.5 + pos: 49.5,23.5 parent: 2 - - uid: 12806 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 10316 components: - type: Transform - pos: -8.5,-12.5 + pos: 32.5,37.5 parent: 2 -- proto: SpawnPointLawyer +- proto: SurveillanceCameraRouterScience entities: - - uid: 8160 + - uid: 10317 components: - type: Transform - pos: -2.5,-11.5 + pos: 31.5,37.5 parent: 2 - - uid: 8161 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 3160 components: - type: Transform - pos: -3.5,-10.5 + pos: 31.5,35.5 parent: 2 -- proto: SpawnPointLibrarian +- proto: SurveillanceCameraRouterService entities: - - uid: 11708 + - uid: 8139 components: - type: Transform - pos: 9.5,3.5 + pos: 51.5,23.5 parent: 2 -- proto: SpawnPointMedicalDoctor +- proto: SurveillanceCameraRouterSupply entities: - - uid: 11958 + - uid: 10315 components: - type: Transform - pos: 71.5,5.5 + pos: 30.5,37.5 parent: 2 - - uid: 11959 +- proto: SurveillanceCameraScience + entities: + - uid: 12763 components: - type: Transform - pos: 71.5,6.5 + rot: 1.5707963267948966 rad + pos: 47.5,16.5 parent: 2 - - uid: 11960 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Front + - uid: 12764 components: - type: Transform - pos: 71.5,7.5 + rot: 3.141592653589793 rad + pos: 53.5,20.5 parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 11961 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RND + - uid: 12765 components: - type: Transform - pos: 73.5,5.5 + rot: -1.5707963267948966 rad + pos: 49.5,24.5 parent: 2 - - uid: 11962 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Server Room + - uid: 12768 components: - type: Transform - pos: 73.5,6.5 + rot: -1.5707963267948966 rad + pos: 66.5,14.5 parent: 2 -- proto: SpawnPointMime - entities: - - uid: 9610 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomaly Lab + - uid: 12769 components: - type: Transform - pos: 25.5,7.5 + rot: -1.5707963267948966 rad + pos: 60.5,10.5 parent: 2 -- proto: SpawnPointMusician - entities: - - uid: 9355 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RD Office + - uid: 12773 components: - type: Transform - pos: 20.5,-11.5 + rot: 3.141592653589793 rad + pos: 50.5,15.5 parent: 2 -- proto: SpawnPointObserver - entities: - - uid: 5419 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Entrance + - uid: 12774 components: - type: Transform - pos: 26.5,1.5 + rot: 3.141592653589793 rad + pos: 51.5,11.5 parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 8314 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + - uid: 13740 components: - type: Transform - pos: 46.5,3.5 + rot: 1.5707963267948966 rad + pos: 64.5,24.5 parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 1791 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Artifact Chamber + - uid: 13746 components: - type: Transform - pos: 32.5,-15.5 + rot: 3.141592653589793 rad + pos: 55.5,15.5 parent: 2 - - uid: 1792 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Entrance +- proto: SurveillanceCameraSecurity + entities: + - uid: 3204 components: - type: Transform - pos: 31.5,-15.5 + rot: -1.5707963267948966 rad + pos: 39.5,35.5 parent: 2 - - uid: 1793 + - type: SurveillanceCamera + id: Interrogation + - uid: 7722 components: - type: Transform - pos: 30.5,-15.5 + pos: 31.5,28.5 parent: 2 - - uid: 1794 + - type: SurveillanceCamera + id: Security Locker Room + - uid: 12732 components: - type: Transform - pos: 30.5,-16.5 + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 parent: 2 - - uid: 1795 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Law Office + - uid: 12733 components: - type: Transform - pos: 31.5,-16.5 + rot: 3.141592653589793 rad + pos: -1.5,-3.5 parent: 2 - - uid: 1796 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Evac Checkpoint + - uid: 12744 components: - type: Transform - pos: 32.5,-16.5 + rot: -1.5707963267948966 rad + pos: 38.5,27.5 parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 11985 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 12745 components: - type: Transform - pos: 12.5,30.5 + rot: -1.5707963267948966 rad + pos: 38.5,23.5 parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 10657 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's Room + - uid: 12746 components: - type: Transform - pos: 57.5,23.5 + rot: -1.5707963267948966 rad + pos: 43.5,24.5 parent: 2 - - uid: 10658 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: HoS Room + - uid: 12747 components: - type: Transform - pos: 56.5,23.5 + rot: -1.5707963267948966 rad + pos: 41.5,19.5 parent: 2 -- proto: SpawnPointResearchDirector - entities: - - uid: 12770 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective Office + - uid: 12748 components: - type: Transform - pos: 61.5,9.5 + rot: 3.141592653589793 rad + pos: 37.5,19.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 8256 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Locker Room + - uid: 12749 components: - type: Transform - pos: 8.5,17.5 + rot: 3.141592653589793 rad + pos: 30.5,18.5 parent: 2 - - uid: 8257 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 2 + - uid: 12750 components: - type: Transform - pos: 8.5,18.5 + rot: 3.141592653589793 rad + pos: 30.5,21.5 parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 10654 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 1 + - uid: 12751 components: - type: Transform - pos: 57.5,24.5 + rot: 3.141592653589793 rad + pos: 30.5,24.5 parent: 2 - - uid: 10655 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Entrance + - uid: 12752 components: - type: Transform - pos: 56.5,24.5 + rot: 3.141592653589793 rad + pos: 21.5,33.5 parent: 2 - - uid: 10656 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court House + - uid: 13757 components: - type: Transform - pos: 55.5,24.5 + rot: -1.5707963267948966 rad + pos: 53.5,36.5 parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 8437 + - type: SurveillanceCamera + id: Perma Brig + - uid: 13758 components: - type: Transform - pos: 34.5,27.5 + rot: 3.141592653589793 rad + pos: 50.5,35.5 parent: 2 - - uid: 8696 + - type: SurveillanceCamera + id: Perma Entrance + - uid: 13759 components: - type: Transform - pos: 34.5,26.5 + pos: 38.5,30.5 parent: 2 -- proto: SpawnPointSecurityOfficer + - type: SurveillanceCamera + id: Security Hallway +- proto: SurveillanceCameraService entities: - - uid: 8439 + - uid: 12711 components: - type: Transform - pos: 38.5,18.5 + rot: 3.141592653589793 rad + pos: 45.5,-3.5 parent: 2 - - uid: 8440 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + - uid: 12712 components: - type: Transform - pos: 39.5,18.5 + rot: 3.141592653589793 rad + pos: 37.5,-9.5 parent: 2 - - uid: 8441 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 12713 components: - type: Transform - pos: 37.5,18.5 + rot: 1.5707963267948966 rad + pos: 39.5,-5.5 parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 12792 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + - uid: 12715 components: - type: Transform - pos: 32.5,-5.5 + rot: 1.5707963267948966 rad + pos: 31.5,-11.5 parent: 2 - - uid: 12793 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 12717 components: - type: Transform - pos: 32.5,-4.5 + rot: 1.5707963267948966 rad + pos: 27.5,7.5 parent: 2 - - uid: 12794 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Clown Room + - uid: 12718 components: - type: Transform - pos: 34.5,-5.5 + rot: 1.5707963267948966 rad + pos: 32.5,7.5 parent: 2 - - uid: 12795 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chaplain's Office + - uid: 12734 components: - type: Transform - pos: 34.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-3.5 parent: 2 -- proto: SpawnPointStationEngineer + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitor's Office +- proto: SurveillanceCameraSupply entities: - - uid: 4579 + - uid: 9297 components: - type: Transform - pos: 23.5,-31.5 + rot: -1.5707963267948966 rad + pos: 6.5,30.5 parent: 2 - - uid: 4580 + - type: SurveillanceCamera + id: Salvage + - uid: 10979 components: - type: Transform - pos: 22.5,-31.5 + pos: 3.5,37.5 parent: 2 - - uid: 4581 + - type: SurveillanceCamera + id: Salvage Platform + - uid: 12724 components: - type: Transform - pos: 21.5,-31.5 + rot: 3.141592653589793 rad + pos: 19.5,24.5 parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 5660 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Desk + - uid: 12777 components: - type: Transform - pos: 26.5,-32.5 + rot: 3.141592653589793 rad + pos: 37.5,-14.5 parent: 2 - - uid: 5661 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Technical Storage + - uid: 12840 components: - type: Transform - pos: 25.5,-32.5 + pos: 10.5,21.5 parent: 2 - - uid: 5662 + - type: SurveillanceCamera + id: Cargo Bay + - uid: 14673 components: - type: Transform - pos: 27.5,-32.5 + rot: -1.5707963267948966 rad + pos: 5.5,15.5 parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 8442 + - type: SurveillanceCamera + id: Quartermaster's Bedroom + - uid: 14674 components: - type: Transform - pos: 39.5,23.5 + pos: 7.5,18.5 parent: 2 -- proto: SprayBottle - entities: - - uid: 5393 + - type: SurveillanceCamera + id: Quartermaster's Office + - uid: 14768 components: - type: Transform - rot: 3.589668631320819E-05 rad - pos: 55.735016,10.470499 + rot: 1.5707963267948966 rad + pos: 13.5,30.5 parent: 2 - - uid: 7793 + - type: SurveillanceCamera + id: Cargo Storage + - uid: 14954 components: - type: Transform - pos: 55.34302,10.727416 + pos: 4.5,26.5 parent: 2 -- proto: SprayBottleSpaceCleaner + - type: SurveillanceCamera + id: Cargo Dock +- proto: SynthesizerInstrument entities: - - uid: 7812 + - uid: 9740 components: - type: Transform - pos: 82.67393,-4.422255 + pos: 19.550474,-10.884444 parent: 2 -- proto: SprayBottleWater - entities: - - uid: 6812 + - uid: 14075 components: - type: Transform - pos: 67.05991,-3.359559 + pos: 3.5,-18.5 parent: 2 -- proto: StasisBed +- proto: Syringe entities: - - uid: 11819 + - uid: 10709 components: - type: Transform - pos: 63.5,4.5 + pos: 63.47666,-9.457929 parent: 2 -- proto: StationAiUploadComputer - entities: - - uid: 12102 + - uid: 11803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,29.5 + pos: 61.49895,-0.38000047 parent: 2 -- proto: StationAnchor +- proto: Table entities: - - uid: 13717 + - uid: 52 components: - type: Transform - pos: 6.5,-19.5 + pos: -2.5,-9.5 parent: 2 -- proto: StationEfficiencyCircuitBoard - entities: - - uid: 13759 + - uid: 163 components: - type: Transform - pos: 52.427402,30.778826 + pos: 5.5,-3.5 parent: 2 -- proto: StationMap - entities: - - uid: 1761 + - uid: 164 components: - type: Transform - pos: 19.5,38.5 + pos: 6.5,-3.5 parent: 2 - - uid: 8115 + - uid: 165 components: - type: Transform - pos: -7.5,-7.5 + pos: 6.5,-4.5 parent: 2 - - uid: 8116 + - uid: 300 components: - type: Transform - pos: 9.5,2.5 + pos: 33.5,-4.5 parent: 2 - - uid: 8984 + - uid: 679 components: - type: Transform - pos: 34.5,16.5 + rot: 1.5707963267948966 rad + pos: 21.5,-19.5 parent: 2 - - uid: 11292 + - uid: 778 components: - type: Transform - pos: 28.5,-1.5 + pos: 19.5,-23.5 parent: 2 -- proto: Stimpack - entities: - - uid: 12493 + - uid: 786 components: - type: Transform - pos: 11.490012,-11.457567 + pos: 19.5,-26.5 parent: 2 -- proto: Stool - entities: - - uid: 172 + - uid: 787 components: - type: Transform - pos: 5.5,-4.5 + pos: 18.5,-26.5 parent: 2 - - uid: 365 + - uid: 788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,30.5 + pos: 17.5,-26.5 parent: 2 - - uid: 943 + - uid: 789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-36.5 + pos: 16.5,-26.5 parent: 2 - - uid: 1665 + - uid: 884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-7.5 + pos: 32.5,-30.5 parent: 2 - - uid: 2465 + - uid: 1033 components: - type: Transform - pos: 38.5,19.5 + rot: 3.141592653589793 rad + pos: 29.5,-24.5 parent: 2 - - uid: 2466 + - uid: 1034 components: - type: Transform - pos: 39.5,19.5 + rot: 3.141592653589793 rad + pos: 23.5,-24.5 parent: 2 - - uid: 3406 + - uid: 1035 components: - type: Transform - pos: 71.5,46.5 + rot: 3.141592653589793 rad + pos: 29.5,-23.5 parent: 2 - - uid: 4304 + - uid: 1331 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-41.5 + pos: 20.5,5.5 parent: 2 - - uid: 5045 + - uid: 1507 components: - type: Transform - pos: 50.5,4.5 + pos: 36.5,-10.5 parent: 2 - - uid: 5067 + - uid: 1512 components: - type: Transform - pos: 51.5,-6.5 + pos: 38.5,-2.5 parent: 2 - - uid: 5879 + - uid: 1524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-30.5 + pos: 39.5,-2.5 parent: 2 - - uid: 6495 + - uid: 1543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-11.5 + pos: 35.5,-12.5 parent: 2 - - uid: 6953 + - uid: 1544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 + pos: 36.5,-12.5 parent: 2 - - uid: 9360 + - uid: 1552 components: - type: Transform - pos: 27.5,7.5 + pos: 35.5,-10.5 parent: 2 -- proto: StoolBar - entities: - - uid: 1615 + - uid: 1623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 + pos: 64.5,13.5 parent: 2 - - uid: 1616 + - uid: 1642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-4.5 + pos: 48.5,-7.5 parent: 2 - - uid: 1617 + - uid: 1656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-3.5 + pos: 33.5,-5.5 parent: 2 - - uid: 1627 + - uid: 1660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-7.5 + pos: 29.5,-3.5 parent: 2 - - uid: 1628 + - uid: 1661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-6.5 + pos: 30.5,-3.5 parent: 2 - - uid: 2903 + - uid: 1758 components: - type: Transform - pos: 61.5,-15.5 + pos: 33.5,-14.5 parent: 2 - - uid: 2904 + - uid: 1768 components: - type: Transform - pos: 60.5,-15.5 + pos: 38.5,-17.5 parent: 2 - - uid: 2905 + - uid: 1777 components: - type: Transform - pos: 60.5,-16.5 + pos: 31.5,-14.5 parent: 2 - - uid: 12695 + - uid: 1778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 107.5,-17.5 + pos: 30.5,-14.5 parent: 2 -- proto: StorageCanister - entities: - - uid: 950 + - uid: 1853 components: - type: Transform - pos: 46.5,-38.5 + pos: -3.5,-9.5 parent: 2 - - uid: 951 + - uid: 1857 components: - type: Transform - pos: 46.5,-37.5 + rot: 3.141592653589793 rad + pos: 19.5,5.5 parent: 2 - - uid: 1817 + - uid: 2151 components: - type: Transform - pos: 50.5,-33.5 + rot: 3.141592653589793 rad + pos: 11.5,20.5 parent: 2 - - uid: 3967 + - uid: 2156 components: - type: Transform - pos: 37.5,-26.5 + pos: 15.5,35.5 parent: 2 - - uid: 5117 + - uid: 2486 components: - type: Transform - pos: 36.5,-26.5 + pos: 36.5,25.5 parent: 2 - - uid: 10440 + - uid: 2906 components: - type: Transform - pos: 58.5,9.5 + pos: 62.5,-16.5 parent: 2 -- proto: Stunbaton - entities: - - uid: 10137 + - uid: 2907 components: - type: Transform - pos: 40.348335,22.308064 + pos: 63.5,-16.5 parent: 2 - - uid: 10138 + - uid: 3021 components: - type: Transform - pos: 40.348335,22.526814 + pos: 51.5,-7.5 parent: 2 - - uid: 10139 + - uid: 3200 components: - type: Transform - pos: 40.348335,22.745564 + pos: 79.5,-7.5 parent: 2 -- proto: SubstationBasic - entities: - - uid: 30 + - uid: 3240 components: - - type: MetaData - name: Cargo Substation - type: Transform - pos: 12.5,34.5 + pos: 36.5,26.5 parent: 2 - - uid: 54 + - uid: 3430 components: - - type: MetaData - name: Arrivals Substation - type: Transform - pos: 6.5,-8.5 + rot: -1.5707963267948966 rad + pos: 74.5,18.5 parent: 2 - - uid: 443 + - uid: 3474 components: - - type: MetaData - name: Gravity/Bridge Substation - type: Transform - pos: 14.5,35.5 + pos: 78.5,-7.5 parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - - uid: 2160 + - uid: 3569 components: - - type: MetaData - name: Library/Chapel Substation - type: Transform - pos: 14.5,7.5 + pos: 63.5,-11.5 parent: 2 - - uid: 4076 + - uid: 3593 components: - - type: MetaData - name: Telecomms Substation - type: Transform - pos: 22.5,-14.5 + pos: 63.5,-9.5 parent: 2 - - uid: 4096 + - uid: 3611 components: - - type: MetaData - name: Engineering Substation - type: Transform - pos: 10.5,-25.5 + pos: 72.5,6.5 parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - - uid: 4101 + - uid: 3614 components: - - type: MetaData - name: South West Substation - type: Transform - pos: 16.5,-14.5 + pos: 72.5,5.5 parent: 2 - - uid: 4431 + - uid: 4001 components: - - type: MetaData - name: Solars South West Substation - type: Transform - pos: 4.5,-36.5 + rot: 3.141592653589793 rad + pos: 12.5,20.5 parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - - uid: 4613 + - uid: 4017 components: - type: Transform - pos: 90.5,-2.5 + pos: 57.5,17.5 parent: 2 - - uid: 5637 + - uid: 4117 components: - - type: MetaData - name: Solars North East Substation - type: Transform - pos: 70.5,44.5 + pos: 18.5,-23.5 parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 10.019571 - currentSupply: 10.019571 - supplyRampPosition: 10.019571 - - uid: 6199 + - uid: 4141 components: - - type: MetaData - name: Medical Substation - type: Transform - pos: 69.5,-13.5 + rot: 3.141592653589793 rad + pos: 38.5,-9.5 parent: 2 - - uid: 6379 + - uid: 4280 components: - - type: MetaData - name: Science Substation - type: Transform - pos: 50.5,27.5 + pos: 57.5,20.5 parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - - uid: 7576 + - uid: 4302 components: - - type: MetaData - name: Bar/Chemistry Substation - type: Transform - pos: 52.5,-10.5 + pos: 17.5,-23.5 parent: 2 - - uid: 8307 + - uid: 4303 components: - - type: MetaData - name: Toolroom Substation - type: Transform - pos: 35.5,-14.5 + pos: 16.5,-23.5 parent: 2 - - uid: 8324 + - uid: 4693 components: - - type: MetaData - name: Security Substation - type: Transform - pos: 43.5,27.5 + pos: 20.5,15.5 parent: 2 - - uid: 9016 + - uid: 4694 components: - type: Transform - pos: 112.5,-15.5 + pos: 23.5,15.5 parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 60.000237 - currentReceiving: 60.000237 - currentSupply: 60.000237 -- proto: SubstationWallBasic - entities: - - uid: 1014 + - uid: 4767 components: - type: Transform - pos: 57.5,37.5 + rot: -1.5707963267948966 rad + pos: 20.5,24.5 parent: 2 - - uid: 5576 + - uid: 5003 components: - - type: MetaData - name: Singulo Substation - type: Transform - pos: 16.5,-37.5 + pos: 52.5,-7.5 parent: 2 -- proto: SuitStorageCaptain - entities: - - uid: 869 + - uid: 5054 components: - type: Transform - pos: 30.5,39.5 + pos: 49.5,-6.5 parent: 2 -- proto: SuitStorageCE - entities: - - uid: 597 + - uid: 5092 components: - type: Transform - pos: 10.5,-36.5 + pos: 69.5,-7.5 parent: 2 -- proto: SuitStorageEngi - entities: - - uid: 870 + - uid: 5125 components: - type: Transform - pos: 15.5,-30.5 + rot: 3.141592653589793 rad + pos: 23.5,-23.5 parent: 2 - - uid: 5654 + - uid: 5135 components: - type: Transform - pos: 30.5,-34.5 + pos: 75.5,-0.5 parent: 2 - - uid: 5655 + - uid: 5136 components: - type: Transform - pos: 32.5,-34.5 + pos: 74.5,-0.5 parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 10300 + - uid: 5203 components: - type: Transform - pos: 10.5,-8.5 + pos: 66.5,-3.5 parent: 2 - - uid: 10301 + - uid: 5224 components: - type: Transform - pos: 11.5,-8.5 + pos: 82.5,-6.5 parent: 2 - - uid: 10302 + - uid: 5225 components: - type: Transform - pos: 12.5,-8.5 + pos: 82.5,-4.5 parent: 2 -- proto: SuitStorageEVAAlternate - entities: - - uid: 10297 + - uid: 5226 components: - type: Transform - pos: 10.5,-5.5 + pos: 81.5,-4.5 parent: 2 - - uid: 10298 + - uid: 5283 components: - type: Transform - pos: 11.5,-5.5 + pos: 15.5,25.5 parent: 2 - - uid: 10299 + - uid: 5306 components: - type: Transform - pos: 12.5,-5.5 + pos: 56.5,17.5 parent: 2 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 8337 + - uid: 5307 components: - type: Transform - pos: 37.5,31.5 + pos: 55.5,17.5 parent: 2 -- proto: SuitStorageNTSRA - entities: - - uid: 12168 + - uid: 5308 components: - type: Transform - pos: 49.5,-15.5 + pos: 54.5,17.5 parent: 2 -- proto: SuitStorageRD - entities: - - uid: 10661 + - uid: 5309 components: - type: Transform - pos: 60.5,8.5 + pos: 55.5,20.5 parent: 2 -- proto: SuitStorageSec - entities: - - uid: 2311 + - uid: 5310 components: - type: Transform - pos: 41.5,28.5 + pos: 55.5,20.5 parent: 2 - - uid: 7946 + - uid: 5311 components: - type: Transform - pos: 39.5,21.5 + pos: 56.5,20.5 parent: 2 - - uid: 7947 + - uid: 5317 components: - type: Transform - pos: 38.5,21.5 + rot: 1.5707963267948966 rad + pos: 49.5,19.5 parent: 2 -- proto: SurveillanceCameraCommand - entities: - - uid: 12735 + - uid: 5318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-5.5 + rot: 1.5707963267948966 rad + pos: 49.5,17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA Storage - - uid: 12736 + - uid: 5368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-3.5 + pos: 55.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - - uid: 12753 + - uid: 5369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,37.5 + pos: 50.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity - - uid: 12754 + - uid: 5370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,41.5 + pos: 52.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - - uid: 12755 + - uid: 5449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,42.5 + pos: 71.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - - uid: 12756 + - uid: 5450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,46.5 + pos: 71.5,37.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge West - - uid: 12757 + - uid: 5473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,48.5 + pos: 67.5,37.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge North - - uid: 12758 + - uid: 5475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,46.5 + pos: 67.5,38.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge East - - uid: 12759 + - uid: 5521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,41.5 + pos: 86.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - - uid: 12760 + - uid: 5710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,41.5 + pos: 77.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - - uid: 12761 + - uid: 6756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,35.5 + pos: 31.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Camera Server Room - - uid: 12762 + - uid: 6811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,41.5 + pos: 58.5,-9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Entrance - - uid: 13635 + - uid: 7077 components: - type: Transform - pos: 58.5,33.5 + pos: 30.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Interior - - uid: 13636 + - uid: 7331 components: - type: Transform - pos: 56.5,38.5 + pos: 18.5,24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Interior North - - uid: 13637 + - uid: 7467 components: - type: Transform - pos: 56.5,41.5 + pos: 17.5,24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Exterior North - - uid: 13638 + - uid: 7526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,36.5 + pos: 67.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Exterior East - - uid: 13639 + - uid: 7773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,36.5 + pos: 21.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Exterior West - - uid: 13640 + - uid: 7853 components: - type: Transform - pos: 54.5,33.5 + pos: 53.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Interior 2 - - uid: 13641 + - uid: 7978 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,31.5 + pos: -1.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance Left - - uid: 13642 + - uid: 8383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance Right - - uid: 13643 + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - uid: 8538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,27.5 + pos: 34.5,17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance - - uid: 13742 + - uid: 8569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-15.5 + pos: 35.5,17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Secure Storage Boards -- proto: SurveillanceCameraEngineering - entities: - - uid: 5877 + - uid: 8858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,46.5 + pos: 107.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Solars Northwest ' - - uid: 7918 + - uid: 8859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-18.5 + pos: 107.5,-11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Anchor Room - - uid: 12663 + - uid: 9354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-34.5 + pos: 25.5,6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Solars Southwest Door - - uid: 12775 + - uid: 9356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-16.5 + pos: 27.5,6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - - uid: 12778 + - uid: 9621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-25.5 + pos: 46.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Entrance - - uid: 12781 + - uid: 9707 components: - type: Transform - pos: 42.5,-40.5 + pos: 78.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Canister Storage - - uid: 12782 + - uid: 9956 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-40.5 + pos: 5.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - - uid: 12783 + - uid: 10072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-40.5 + pos: 67.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Particle Accelerator - - uid: 12784 + - uid: 10077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-44.5 + pos: 78.5,-6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Airlock - - uid: 12785 + - uid: 10137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-33.5 + pos: 36.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: CE Office - - uid: 12787 + - uid: 10268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 + pos: 18.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Secure Storage - - uid: 12788 + - uid: 10269 components: - type: Transform - pos: 19.5,-28.5 + pos: 18.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Break Room - - uid: 12789 + - uid: 10270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-25.5 + pos: 19.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Entrance - - uid: 12790 + - uid: 10277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-31.5 + pos: 16.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Locker Room - - uid: 13542 + - uid: 10664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-34.5 + pos: 63.5,9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Solars Southwest ' - - uid: 13593 + - uid: 10665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-40.5 + pos: 63.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: CE bedroom - - uid: 13614 + - uid: 10668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-41.5 + pos: 63.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Cage Airlock - - uid: 13615 + - uid: 10763 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-40.5 + pos: 4.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: PA room east - - uid: 13616 + - uid: 10803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-50.5 + pos: 85.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - - uid: 13617 + - uid: 10828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-48.5 + pos: 70.5,11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - - uid: 13618 + - uid: 11119 components: - type: Transform - pos: 41.5,-48.5 + pos: 54.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Room - - uid: 13733 + - uid: 11120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-33.5 + pos: 54.5,-14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos South - - uid: 13734 + - uid: 11121 components: - type: Transform - pos: 36.5,-40.5 + pos: 54.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Central Airlock - - uid: 13735 + - uid: 11122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-27.5 + pos: 57.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos North - - uid: 13736 + - uid: 11123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-22.5 + pos: 57.5,-14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tanks North - - uid: 13737 + - uid: 11302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-34.5 + pos: 60.5,-9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tanks South - - uid: 13738 + - uid: 11303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-14.5 + pos: 63.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Airlock - - uid: 13748 + - uid: 11403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,46.5 + pos: 65.5,-11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Solars Northwest Door -- proto: SurveillanceCameraGeneral - entities: - - uid: 7971 + - uid: 11404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 + pos: 65.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Competitive Shitting - - uid: 12662 + - uid: 11405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-17.5 + pos: 65.5,-9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: External Dock Airlock - - uid: 12664 + - uid: 11427 components: - type: Transform - pos: 10.5,38.5 + rot: 1.5707963267948966 rad + pos: 76.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Grav Gen External Airlock Door - - uid: 12665 + - uid: 11428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,37.5 + rot: 1.5707963267948966 rad + pos: 76.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Vault - - uid: 12666 + - uid: 11432 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,13.5 + pos: 51.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bathroom - - uid: 12667 + - uid: 11736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,18.5 + pos: 36.5,28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cryo - - uid: 12668 + - uid: 11830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,13.5 + pos: 59.5,3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms - - uid: 12714 + - uid: 11832 components: - type: Transform - pos: 32.5,-7.5 + pos: 59.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cafeteria - - uid: 12716 + - uid: 11833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-9.5 + pos: 67.5,3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Theater - - uid: 12719 + - uid: 11834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,7.5 + pos: 67.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapel - - uid: 12721 + - uid: 11835 components: - type: Transform - pos: 10.5,3.5 + pos: 64.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library - - uid: 12722 + - uid: 11836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,7.5 + pos: 64.5,3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Laundry Room - - uid: 12723 + - uid: 11841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,15.5 + pos: 59.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dormitory - - uid: 12730 + - uid: 11844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 + pos: 57.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac - - uid: 12731 + - uid: 11904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 + pos: 78.5,7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals - - uid: 12737 + - uid: 12582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,1.5 + rot: 1.5707963267948966 rad + pos: 20.5,-19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall - - uid: 12738 + - uid: 13105 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,15.5 + pos: 15.5,24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall North - - uid: 12739 + - uid: 13120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,8.5 + pos: 48.5,11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall East - - uid: 12740 + - uid: 13564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 + pos: 50.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall West - - uid: 12776 + - uid: 13609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-15.5 + pos: 54.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Toolroom - - uid: 12786 + - uid: 13610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-28.5 + pos: 55.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Disposals - - uid: 13739 + - uid: 13611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,1.5 + pos: 56.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: HoP Line - - uid: 13743 + - uid: 13624 components: - type: Transform - pos: 36.5,-0.5 + rot: -1.5707963267948966 rad + pos: 56.5,31.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Bar - - uid: 13744 + - uid: 13625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,31.5 + parent: 2 + - uid: 14068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,15.5 + pos: -17.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Security South - - uid: 13745 +- proto: TableCarpet + entities: + - uid: 2266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,22.5 + pos: 70.5,28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Security/Cargo - - uid: 13747 + - uid: 3429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-8.5 + pos: 70.5,29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Bar South -- proto: SurveillanceCameraMedical - entities: - - uid: 12215 + - uid: 5501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-5.5 + pos: 70.5,33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - - uid: 12216 + - uid: 6007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-0.5 + pos: 70.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - - uid: 12217 + - uid: 13473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,5.5 + pos: 10.5,-42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Break Room - - uid: 12218 + - uid: 13475 components: - type: Transform - pos: 72.5,4.5 + pos: 9.5,-42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Supply Room - - uid: 12221 +- proto: TableCounterWood + entities: + - uid: 9735 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-5.5 + pos: 19.5,-12.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - - uid: 12222 + - uid: 9736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 + rot: 1.5707963267948966 rad + pos: 19.5,-11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery Secondary - - uid: 12223 + - uid: 9737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-9.5 + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Private Practice - - uid: 12224 + - uid: 9738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-9.5 + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: CMO Office - - uid: 12225 +- proto: TableGlass + entities: + - uid: 12696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-4.5 + rot: -1.5707963267948966 rad + pos: 104.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 12227 + - uid: 12697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,0.5 + rot: -1.5707963267948966 rad + pos: 103.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical Entrance - - uid: 12235 + - uid: 12698 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,4.5 + rot: -1.5707963267948966 rad + pos: 102.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Paramedic Room - - uid: 12236 + - uid: 12699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-0.5 + rot: -1.5707963267948966 rad + pos: 102.5,-16.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cryo - - uid: 12237 +- proto: TablePlasmaGlass + entities: + - uid: 5708 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-4.5 + pos: 70.5,13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery Prep - - uid: 12238 + - uid: 5861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,4.5 + rot: 1.5707963267948966 rad + pos: 71.5,13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Exam - - uid: 13741 + - uid: 6476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-2.5 + rot: 1.5707963267948966 rad + pos: 71.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology Quarantine 1 -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 10318 + - uid: 12690 components: - type: Transform - pos: 32.5,34.5 + pos: 107.5,-16.5 parent: 2 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 10320 + - uid: 12691 components: - type: Transform - pos: 30.5,34.5 + pos: 106.5,-16.5 parent: 2 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 8230 + - uid: 12693 components: - type: Transform - pos: 49.5,23.5 + pos: 106.5,-18.5 parent: 2 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 10316 + - uid: 12694 components: - type: Transform - pos: 32.5,37.5 + pos: 107.5,-18.5 parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 10317 + - uid: 13064 components: - type: Transform - pos: 31.5,37.5 + pos: 7.5,-13.5 parent: 2 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 10319 + - uid: 13065 components: - type: Transform - pos: 31.5,34.5 + pos: 6.5,-13.5 parent: 2 -- proto: SurveillanceCameraRouterService +- proto: TableReinforced entities: - - uid: 8139 + - uid: 133 components: - type: Transform - pos: 51.5,23.5 + pos: -2.5,-12.5 parent: 2 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 10315 + - uid: 134 components: - type: Transform - pos: 30.5,37.5 + pos: -1.5,-12.5 parent: 2 -- proto: SurveillanceCameraScience - entities: - - uid: 12763 + - uid: 513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,16.5 + pos: 40.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Front - - uid: 12764 + - uid: 564 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,20.5 + pos: 16.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - - uid: 12765 + - uid: 572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 + pos: 37.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Server Room - - uid: 12766 + - uid: 935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,25.5 + pos: 12.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Locker Room - - uid: 12768 + - uid: 937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 + pos: 12.5,-35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly Lab - - uid: 12769 + - uid: 1598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,10.5 + pos: 37.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD Office - - uid: 12773 + - uid: 1618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,15.5 + pos: 36.5,-8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Entrance - - uid: 12774 + - uid: 1626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,11.5 + pos: 35.5,-8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - - uid: 13740 + - uid: 1629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,24.5 + pos: 37.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Artifact Chamber - - uid: 13746 + - uid: 1651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,15.5 + pos: 37.5,-6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Entrance -- proto: SurveillanceCameraSecurity - entities: - - uid: 12732 + - uid: 1659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 + pos: 37.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Law Office - - uid: 12733 + - uid: 2395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 + pos: 17.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Evac Checkpoint - - uid: 12741 + - uid: 2420 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,30.5 + pos: 28.5,25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation - - uid: 12742 + - uid: 2431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,34.5 + rot: 1.5707963267948966 rad + pos: 32.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig Left - - uid: 12743 + - uid: 2432 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,33.5 + pos: 32.5,26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig Right - - uid: 12744 + - uid: 2991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,27.5 + pos: 50.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 12745 + - uid: 2992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 + pos: 51.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Room - - uid: 12746 + - uid: 3512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,24.5 + pos: 48.5,18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Room - - uid: 12747 + - uid: 4146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,19.5 + pos: -1.5,-11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - - uid: 12748 + - uid: 4915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,19.5 + pos: 19.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Locker Room - - uid: 12749 + - uid: 4916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,18.5 + pos: 19.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 2 - - uid: 12750 + - uid: 4917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,21.5 + pos: 17.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 1 - - uid: 12751 + - uid: 4972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 + pos: 26.5,47.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Entrance - - uid: 12752 + - uid: 4973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,33.5 + pos: 28.5,47.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court House -- proto: SurveillanceCameraService - entities: - - uid: 12711 + - uid: 4974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-3.5 + pos: 19.5,46.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - - uid: 12712 + - uid: 4975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-9.5 + pos: 21.5,46.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 12713 + - uid: 4980 + components: + - type: Transform + pos: 35.5,46.5 + parent: 2 + - uid: 4981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 + pos: 33.5,46.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - - uid: 12715 + - uid: 4983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-11.5 + pos: 29.5,48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - - uid: 12717 + - uid: 4984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,7.5 + pos: 30.5,48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Clown Room - - uid: 12718 + - uid: 4985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,7.5 + pos: 25.5,48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chaplain's Office - - uid: 12734 + - uid: 4994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 + rot: -1.5707963267948966 rad + pos: 32.5,48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor's Office -- proto: SurveillanceCameraSupply - entities: - - uid: 12724 + - uid: 4995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,24.5 + rot: -1.5707963267948966 rad + pos: 22.5,48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Desk - - uid: 12725 + - uid: 5031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,25.5 + pos: 50.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - - uid: 12726 + - uid: 5032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,31.5 + pos: 54.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: QM Office - - uid: 12727 + - uid: 5365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,31.5 + pos: 47.5,12.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Storage - - uid: 12728 + - uid: 5813 components: - type: Transform - pos: 5.5,26.5 + pos: 34.5,-8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Dock - - uid: 12729 + - uid: 7545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 + pos: 55.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay - - uid: 12777 + - uid: 7611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-14.5 + pos: 56.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Technical Storage -- proto: SynthesizerInstrument - entities: - - uid: 9740 + - uid: 7612 components: - type: Transform - pos: 19.550474,-10.884444 + pos: 54.5,-10.5 parent: 2 -- proto: Syringe - entities: - - uid: 10709 + - uid: 7679 components: - type: Transform - pos: 63.47666,-9.457929 + pos: 38.5,19.5 parent: 2 - - uid: 11803 + - uid: 7739 components: - type: Transform - pos: 61.49895,-0.38000047 + pos: -2.5,-2.5 parent: 2 -- proto: Table - entities: - - uid: 52 + - uid: 8433 components: - type: Transform - pos: -2.5,-9.5 + pos: 39.5,21.5 parent: 2 - - uid: 163 + - uid: 8675 components: - type: Transform - pos: 5.5,-3.5 + pos: 40.5,35.5 parent: 2 - - uid: 164 + - uid: 10310 components: - type: Transform - pos: 6.5,-3.5 + pos: 8.5,-6.5 parent: 2 - - uid: 165 + - uid: 11475 components: - type: Transform - pos: 6.5,-4.5 + rot: 3.141592653589793 rad + pos: 39.5,17.5 parent: 2 - - uid: 300 + - uid: 11800 components: - type: Transform - pos: 33.5,-4.5 + rot: 3.141592653589793 rad + pos: 61.5,-0.5 parent: 2 - - uid: 679 + - uid: 11839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-19.5 + pos: 12.5,-34.5 parent: 2 - - uid: 778 + - uid: 12423 components: - type: Transform - pos: 19.5,-23.5 + pos: 49.5,1.5 parent: 2 - - uid: 786 + - uid: 14245 components: - type: Transform - pos: 19.5,-26.5 + pos: 85.5,28.5 parent: 2 - - uid: 787 + - uid: 14265 components: - type: Transform - pos: 18.5,-26.5 + pos: 84.5,28.5 parent: 2 - - uid: 788 + - uid: 14272 components: - type: Transform - pos: 17.5,-26.5 + pos: 86.5,28.5 parent: 2 - - uid: 789 + - uid: 14554 components: - type: Transform - pos: 16.5,-26.5 + rot: -1.5707963267948966 rad + pos: 89.5,28.5 parent: 2 - - uid: 884 + - uid: 14555 components: - type: Transform - pos: 32.5,-30.5 + rot: -1.5707963267948966 rad + pos: 90.5,28.5 parent: 2 - - uid: 1033 + - uid: 14556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-24.5 + rot: -1.5707963267948966 rad + pos: 90.5,32.5 parent: 2 - - uid: 1034 + - uid: 14557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-24.5 + rot: -1.5707963267948966 rad + pos: 89.5,32.5 parent: 2 - - uid: 1035 + - uid: 14661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-23.5 + pos: 44.5,-2.5 parent: 2 - - uid: 1146 + - uid: 14662 components: - type: Transform pos: 43.5,-2.5 parent: 2 - - uid: 1331 +- proto: TableReinforcedGlass + entities: + - uid: 14145 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 2 - - uid: 1507 - components: - - type: Transform - pos: 36.5,-10.5 + pos: 74.5,22.5 parent: 2 - - uid: 1512 + - uid: 14152 components: - type: Transform - pos: 38.5,-2.5 + pos: 71.5,23.5 parent: 2 - - uid: 1524 + - uid: 14153 components: - type: Transform - pos: 39.5,-2.5 + pos: 71.5,22.5 parent: 2 - - uid: 1543 +- proto: TableWood + entities: + - uid: 302 components: - type: Transform - pos: 35.5,-12.5 + pos: 13.5,4.5 parent: 2 - - uid: 1544 + - uid: 304 components: - type: Transform - pos: 36.5,-12.5 + pos: 11.5,4.5 parent: 2 - - uid: 1552 + - uid: 305 components: - type: Transform - pos: 35.5,-10.5 + pos: 10.5,4.5 parent: 2 - - uid: 1623 + - uid: 306 components: - type: Transform - pos: 64.5,13.5 + pos: 8.5,4.5 parent: 2 - - uid: 1642 + - uid: 307 components: - type: Transform - pos: 48.5,-7.5 + pos: 8.5,3.5 parent: 2 - - uid: 1656 + - uid: 2405 components: - type: Transform - pos: 33.5,-5.5 + pos: 44.5,23.5 parent: 2 - - uid: 1660 + - uid: 2406 components: - type: Transform - pos: 29.5,-3.5 + pos: 45.5,23.5 parent: 2 - - uid: 1661 + - uid: 2407 components: - type: Transform - pos: 30.5,-3.5 + pos: 45.5,24.5 parent: 2 - - uid: 1758 + - uid: 2478 components: - type: Transform - pos: 33.5,-14.5 + pos: 43.5,19.5 parent: 2 - - uid: 1768 + - uid: 2713 components: - type: Transform - pos: 38.5,-17.5 + rot: -1.5707963267948966 rad + pos: 20.5,33.5 parent: 2 - - uid: 1777 + - uid: 2714 components: - type: Transform - pos: 31.5,-14.5 + rot: -1.5707963267948966 rad + pos: 20.5,32.5 parent: 2 - - uid: 1778 + - uid: 2715 components: - type: Transform - pos: 30.5,-14.5 + rot: -1.5707963267948966 rad + pos: 20.5,30.5 parent: 2 - - uid: 1853 + - uid: 2716 components: - type: Transform - pos: -3.5,-9.5 + rot: -1.5707963267948966 rad + pos: 20.5,29.5 parent: 2 - - uid: 1857 + - uid: 2719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,5.5 + pos: 18.5,31.5 parent: 2 - - uid: 2121 + - uid: 2776 components: - type: Transform - pos: 11.5,21.5 + rot: 1.5707963267948966 rad + pos: 23.5,40.5 parent: 2 - - uid: 2122 + - uid: 2777 components: - type: Transform - pos: 10.5,21.5 + rot: 1.5707963267948966 rad + pos: 22.5,40.5 parent: 2 - - uid: 2127 + - uid: 2778 components: - type: Transform - pos: 20.5,24.5 + rot: 1.5707963267948966 rad + pos: 22.5,39.5 parent: 2 - - uid: 2147 + - uid: 2779 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,31.5 + pos: 23.5,39.5 parent: 2 - - uid: 2156 + - uid: 5407 components: - type: Transform - pos: 15.5,35.5 + pos: 34.5,41.5 parent: 2 - - uid: 2306 + - uid: 5408 components: - type: Transform - pos: 37.5,36.5 + pos: 33.5,41.5 parent: 2 - - uid: 2319 + - uid: 5409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,34.5 + pos: 32.5,41.5 parent: 2 - - uid: 2462 + - uid: 5410 components: - type: Transform - pos: 36.5,20.5 + pos: 30.5,41.5 parent: 2 - - uid: 2486 + - uid: 5413 components: - type: Transform - pos: 36.5,25.5 + pos: 37.5,43.5 parent: 2 - - uid: 2906 + - uid: 7262 components: - type: Transform - pos: 62.5,-16.5 + pos: 6.5,19.5 parent: 2 - - uid: 2907 + - uid: 7547 components: - type: Transform - pos: 63.5,-16.5 + pos: 30.5,6.5 parent: 2 - - uid: 3021 + - uid: 8646 components: - type: Transform - pos: 51.5,-7.5 + pos: 86.5,10.5 parent: 2 - - uid: 3200 + - uid: 8647 components: - type: Transform - pos: 79.5,-7.5 + pos: 84.5,10.5 parent: 2 - - uid: 3474 + - uid: 8648 components: - type: Transform - pos: 78.5,-7.5 + pos: 86.5,12.5 parent: 2 - - uid: 3569 + - uid: 8649 components: - type: Transform - pos: 63.5,-11.5 + pos: 83.5,8.5 parent: 2 - - uid: 3593 + - uid: 8650 components: - type: Transform - pos: 63.5,-9.5 + pos: 83.5,7.5 parent: 2 - - uid: 3611 + - uid: 9004 components: - type: Transform - pos: 72.5,6.5 + pos: 18.5,29.5 parent: 2 - - uid: 3614 + - uid: 10635 components: - type: Transform - pos: 72.5,5.5 + pos: 30.5,7.5 parent: 2 - - uid: 4017 + - uid: 11477 components: - type: Transform - pos: 57.5,17.5 + pos: 43.5,20.5 parent: 2 - - uid: 4117 + - uid: 12727 components: - type: Transform - pos: 18.5,-23.5 + rot: 1.5707963267948966 rad + pos: 9.5,18.5 parent: 2 - - uid: 4141 +- proto: TargetClown + entities: + - uid: 9607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-9.5 + pos: 27.5,8.5 parent: 2 - - uid: 4280 +- proto: TegCenter + entities: + - uid: 13127 components: - type: Transform - pos: 57.5,20.5 + pos: 40.5,-46.5 parent: 2 - - uid: 4302 +- proto: TegCirculator + entities: + - uid: 13128 components: - type: Transform - pos: 17.5,-23.5 + rot: -1.5707963267948966 rad + pos: 40.5,-47.5 parent: 2 - - uid: 4303 + - type: PointLight + color: '#FF3300FF' + - uid: 13129 components: - type: Transform - pos: 16.5,-23.5 + rot: 1.5707963267948966 rad + pos: 40.5,-45.5 parent: 2 - - uid: 4693 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServer + entities: + - uid: 533 components: - type: Transform - pos: 20.5,15.5 + pos: 16.5,-16.5 parent: 2 - - uid: 4694 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 535 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 5183 components: - type: Transform - pos: 23.5,15.5 + pos: 13.5,-16.5 parent: 2 - - uid: 5003 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 412 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10443 components: - type: Transform - pos: 52.5,-7.5 + pos: 14.5,-16.5 parent: 2 - - uid: 5054 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 413 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 12111 components: - type: Transform - pos: 49.5,-6.5 + pos: 15.5,-16.5 parent: 2 - - uid: 5092 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 414 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 12112 components: - type: Transform - pos: 69.5,-7.5 + pos: 13.5,-18.5 parent: 2 - - uid: 5125 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 421 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 12232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-23.5 + pos: 14.5,-18.5 parent: 2 - - uid: 5135 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 422 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 12233 components: - type: Transform - pos: 75.5,-0.5 + pos: 15.5,-18.5 parent: 2 - - uid: 5136 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 423 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 12395 components: - type: Transform - pos: 74.5,-0.5 + pos: 16.5,-18.5 parent: 2 - - uid: 5203 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 424 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TeslaCoil + entities: + - uid: 2038 components: - type: Transform - pos: 66.5,-3.5 + rot: -1.5707963267948966 rad + pos: 25.5,-40.5 parent: 2 - - uid: 5224 + - uid: 2081 components: - type: Transform - pos: 82.5,-6.5 + rot: 3.141592653589793 rad + pos: 25.5,-41.5 parent: 2 - - uid: 5225 + - uid: 7969 components: - type: Transform - pos: 82.5,-4.5 + rot: 3.141592653589793 rad + pos: 26.5,-42.5 parent: 2 - - uid: 5226 + - uid: 7971 components: - type: Transform - pos: 81.5,-4.5 + rot: 3.141592653589793 rad + pos: 25.5,-42.5 parent: 2 - - uid: 5306 + - uid: 8108 components: - type: Transform - pos: 56.5,17.5 + rot: -1.5707963267948966 rad + pos: 26.5,-40.5 parent: 2 - - uid: 5307 + - uid: 11070 components: - type: Transform - pos: 55.5,17.5 + rot: 3.141592653589793 rad + pos: 26.5,-41.5 parent: 2 - - uid: 5308 +- proto: TeslaGenerator + entities: + - uid: 832 components: - type: Transform - pos: 54.5,17.5 + pos: 13.5,-31.5 parent: 2 - - uid: 5309 +- proto: TeslaGroundingRod + entities: + - uid: 14755 components: - type: Transform - pos: 55.5,20.5 + rot: 3.141592653589793 rad + pos: 26.5,-44.5 parent: 2 - - uid: 5310 + - uid: 14756 components: - type: Transform - pos: 55.5,20.5 + rot: 3.141592653589793 rad + pos: 25.5,-44.5 parent: 2 - - uid: 5311 + - uid: 14757 components: - type: Transform - pos: 56.5,20.5 + rot: 3.141592653589793 rad + pos: 17.5,-44.5 parent: 2 - - uid: 5317 + - uid: 14758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,19.5 + rot: 3.141592653589793 rad + pos: 16.5,-44.5 parent: 2 - - uid: 5318 +- proto: TintedWindow + entities: + - uid: 171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,17.5 + pos: 41.5,32.5 parent: 2 - - uid: 5368 + - uid: 1165 components: - type: Transform - pos: 55.5,10.5 + pos: 24.5,-12.5 parent: 2 - - uid: 5369 + - uid: 1196 components: - type: Transform - pos: 50.5,8.5 + pos: 24.5,-9.5 parent: 2 - - uid: 5370 + - uid: 6813 components: - type: Transform - pos: 52.5,8.5 + pos: 63.5,-8.5 parent: 2 - - uid: 5449 + - uid: 7580 components: - type: Transform - pos: 71.5,40.5 + pos: 62.5,-8.5 parent: 2 - - uid: 5450 + - uid: 10993 components: - type: Transform - pos: 71.5,37.5 + rot: 3.141592653589793 rad + pos: 17.5,-16.5 parent: 2 - - uid: 5473 + - uid: 10994 components: - type: Transform - pos: 67.5,37.5 + rot: 3.141592653589793 rad + pos: 17.5,-18.5 parent: 2 - - uid: 5475 + - uid: 11195 components: - type: Transform - pos: 67.5,38.5 + pos: 60.5,-8.5 parent: 2 - - uid: 5521 + - uid: 14525 components: - type: Transform - pos: 86.5,1.5 + pos: 39.5,32.5 parent: 2 - - uid: 5528 +- proto: ToiletEmpty + entities: + - uid: 460 components: - type: Transform - pos: 64.5,20.5 + pos: 8.5,13.5 parent: 2 - - uid: 5710 + - uid: 461 components: - type: Transform - pos: 77.5,-13.5 + rot: 3.141592653589793 rad + pos: 8.5,12.5 parent: 2 - - uid: 6572 + - uid: 3253 components: - type: Transform - pos: 44.5,-2.5 + rot: 3.141592653589793 rad + pos: 59.5,34.5 parent: 2 - - uid: 6756 + - uid: 5701 components: - type: Transform - pos: 31.5,-7.5 + pos: 79.5,-12.5 parent: 2 - - uid: 6811 + - uid: 5702 components: - type: Transform - pos: 58.5,-9.5 + rot: 3.141592653589793 rad + pos: 79.5,-13.5 parent: 2 - - uid: 7077 + - uid: 8702 components: - type: Transform - pos: 30.5,2.5 + pos: 59.5,38.5 parent: 2 - - uid: 7331 + - uid: 9019 components: - type: Transform - pos: 18.5,24.5 + pos: 102.5,-12.5 parent: 2 - - uid: 7467 + - uid: 11901 components: - type: Transform - pos: 17.5,24.5 + rot: -1.5707963267948966 rad + pos: 78.5,8.5 parent: 2 - - uid: 7526 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 10474 components: - type: Transform - pos: 67.5,-4.5 + rot: 1.5707963267948966 rad + pos: 17.5,39.5 parent: 2 - - uid: 7773 +- proto: ToolboxElectricalFilled + entities: + - uid: 5378 components: - type: Transform - pos: 21.5,22.5 + pos: 52.6158,11.657994 parent: 2 - - uid: 7853 + - uid: 5626 components: - type: Transform - pos: 53.5,-5.5 + pos: 18.84633,-23.378391 parent: 2 - - uid: 7978 + - uid: 12356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 + pos: 36.482082,-14.3137665 parent: 2 - - uid: 8858 +- proto: ToolboxEmergencyFilled + entities: + - uid: 4997 components: - type: Transform - pos: 107.5,-10.5 + rot: 3.573787398636341E-05 rad + pos: 35.50106,46.735016 parent: 2 - - uid: 8859 + - uid: 11411 components: - type: Transform - pos: 107.5,-11.5 + pos: 31.521385,-17.29768 parent: 2 - - uid: 9354 +- proto: ToolboxGoldFilled + entities: + - uid: 12095 components: - type: Transform - pos: 25.5,6.5 + pos: 19.490185,40.6353 parent: 2 - - uid: 9356 +- proto: ToolboxMechanicalFilled + entities: + - uid: 2949 components: - type: Transform - pos: 27.5,6.5 + pos: 6.500301,40.636074 parent: 2 - - uid: 9621 + - uid: 4998 components: - type: Transform - pos: 46.5,2.5 + pos: 35.491802,46.459015 parent: 2 - - uid: 10072 + - uid: 7357 components: - type: Transform - pos: 67.5,-3.5 + pos: 18.414553,24.540695 parent: 2 - - uid: 10077 + - uid: 11410 components: - type: Transform - pos: 78.5,-6.5 + pos: 31.521385,-17.500805 parent: 2 - - uid: 10268 + - uid: 12357 components: - type: Transform - pos: 18.5,-3.5 + pos: 36.482082,-14.5012665 parent: 2 - - uid: 10269 +- proto: ToyAi + entities: + - uid: 14649 components: - type: Transform - pos: 18.5,-2.5 + pos: 69.5,25.5 parent: 2 - - uid: 10270 +- proto: ToyRubberDuck + entities: + - uid: 6933 components: - type: Transform - pos: 19.5,-2.5 + pos: 12.5,12.5 parent: 2 - - uid: 10277 + - uid: 13632 components: - type: Transform - pos: 16.5,-5.5 + pos: 56.426826,31.732376 parent: 2 - - uid: 10664 +- proto: ToySpawner + entities: + - uid: 8652 components: - type: Transform - pos: 63.5,9.5 + pos: 84.5,12.5 parent: 2 - - uid: 10665 +- proto: TrashBag + entities: + - uid: 10811 components: - type: Transform - pos: 63.5,10.5 + pos: 89.33498,-20.63679 parent: 2 - - uid: 10668 +- proto: TrashBananaPeel + entities: + - uid: 5880 components: - type: Transform - pos: 63.5,8.5 + pos: 0.13960361,-25.931139 parent: 2 - - uid: 10803 + - uid: 9603 components: - type: Transform - pos: 85.5,-15.5 + pos: 26.493341,6.2912045 parent: 2 - - uid: 10828 +- proto: TrumpetInstrument + entities: + - uid: 5030 components: - type: Transform - pos: 70.5,11.5 + pos: 84.55714,10.563628 parent: 2 - - uid: 11119 +- proto: TwoWayLever + entities: + - uid: 607 components: - type: Transform - pos: 54.5,-13.5 + pos: 9.5,33.5 parent: 2 - - uid: 11120 + - type: DeviceLinkSource + linkedPorts: + 829: + - Left: Forward + - Right: Reverse + - Middle: Off + 967: + - Left: Forward + - Right: Reverse + - Middle: Off + 944: + - Left: Forward + - Right: Reverse + - Middle: Off + 450: + - Left: Forward + - Right: Reverse + - Middle: Off + 999: + - Left: Forward + - Right: Reverse + - Middle: Off + 14660: + - Left: Forward + - Right: Reverse + - Middle: Off + 12384: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 5856 components: - type: Transform - pos: 54.5,-14.5 + pos: 2.5,-30.5 parent: 2 - - uid: 11121 + - type: DeviceLinkSource + linkedPorts: + 5842: + - Left: Forward + - Right: Reverse + - Middle: Off + 5843: + - Left: Forward + - Right: Reverse + - Middle: Off + 5844: + - Left: Forward + - Right: Reverse + - Middle: Off + 5845: + - Left: Forward + - Right: Reverse + - Middle: Off + 5846: + - Left: Forward + - Right: Reverse + - Middle: Off + 5847: + - Left: Forward + - Right: Reverse + - Middle: Off + 5850: + - Left: Forward + - Right: Reverse + - Middle: Off + 5851: + - Left: Forward + - Right: Reverse + - Middle: Off + 5852: + - Left: Forward + - Right: Reverse + - Middle: Off + 5853: + - Left: Forward + - Right: Reverse + - Middle: Off + 5854: + - Left: Forward + - Right: Reverse + - Middle: Off + 5855: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 5857 components: - type: Transform - pos: 54.5,-15.5 + pos: 2.5,-31.5 parent: 2 - - uid: 11122 + - type: DeviceLinkSource + linkedPorts: + 5875: + - Left: Open + - Right: Open + - Middle: Close + - uid: 8101 components: - type: Transform - pos: 57.5,-13.5 + pos: 6.5,28.5 parent: 2 - - uid: 11123 + - type: DeviceLinkSource + linkedPorts: + 2037: + - Left: Forward + - Right: Reverse + - Middle: Off + 2041: + - Left: Forward + - Right: Reverse + - Middle: Off + 2042: + - Left: Forward + - Right: Reverse + - Middle: Off + 2064: + - Left: Forward + - Right: Reverse + - Middle: Off + 13731: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 8446 components: - type: Transform - pos: 57.5,-14.5 + pos: 6.5,22.5 parent: 2 - - uid: 11302 + - type: DeviceLinkSource + linkedPorts: + 2040: + - Left: Forward + - Right: Reverse + - Middle: Off + 2067: + - Left: Forward + - Right: Reverse + - Middle: Off + 2051: + - Left: Forward + - Right: Reverse + - Middle: Off + 2066: + - Left: Forward + - Right: Reverse + - Middle: Off + 8239: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 8665 components: - type: Transform - pos: 60.5,-9.5 + pos: 63.5,25.5 parent: 2 - - uid: 11303 + - type: DeviceLinkSource + linkedPorts: + 5351: + - Left: Open + - Right: Open + - Middle: Close + 5361: + - Left: Open + - Right: Open + - Middle: Close + - uid: 10322 components: - type: Transform - pos: 63.5,-10.5 + pos: 44.5,11.5 parent: 2 - - uid: 11403 + - type: DeviceLinkSource + linkedPorts: + 5268: + - Left: Open + - Right: Open + - Middle: Close + - uid: 13115 components: - type: Transform - pos: 65.5,-11.5 + pos: 44.5,-46.5 parent: 2 - - uid: 11404 + - type: DeviceLinkSource + linkedPorts: + 12890: + - Left: Open + - Right: Open + - Middle: Close + 12891: + - Left: Open + - Right: Open + - Middle: Close +- proto: UniformPrinter + entities: + - uid: 10283 components: - type: Transform - pos: 65.5,-10.5 + pos: 20.5,-4.5 parent: 2 - - uid: 11405 +- proto: Vaccinator + entities: + - uid: 12157 components: - type: Transform - pos: 65.5,-9.5 + pos: 81.5,-7.5 parent: 2 - - uid: 11427 +- proto: VendingBarDrobe + entities: + - uid: 4407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,4.5 + pos: 40.5,-9.5 parent: 2 - - uid: 11428 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 4100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,5.5 + pos: 29.5,-30.5 parent: 2 - - uid: 11830 +- proto: VendingMachineBooze + entities: + - uid: 540 components: - type: Transform - pos: 59.5,3.5 + pos: 38.5,-8.5 parent: 2 - - uid: 11832 + - uid: 2900 components: - type: Transform - pos: 59.5,4.5 + pos: 66.5,-13.5 parent: 2 - - uid: 11833 +- proto: VendingMachineCargoDrobe + entities: + - uid: 9040 components: - type: Transform - pos: 67.5,3.5 + pos: 6.5,21.5 parent: 2 - - uid: 11834 +- proto: VendingMachineCart + entities: + - uid: 10267 components: - type: Transform - pos: 67.5,4.5 + pos: 20.5,-5.5 parent: 2 - - uid: 11835 +- proto: VendingMachineChapel + entities: + - uid: 12201 components: - type: Transform - pos: 64.5,4.5 + pos: 31.5,9.5 parent: 2 - - uid: 11836 +- proto: VendingMachineChefDrobe + entities: + - uid: 4249 components: - type: Transform - pos: 64.5,3.5 + pos: 29.5,-9.5 parent: 2 - - uid: 11841 +- proto: VendingMachineChefvend + entities: + - uid: 4248 components: - type: Transform - pos: 59.5,-3.5 + pos: 34.5,-12.5 parent: 2 - - uid: 11844 +- proto: VendingMachineChemDrobe + entities: + - uid: 5058 components: - type: Transform - pos: 57.5,-3.5 + pos: 49.5,-8.5 parent: 2 - - uid: 11904 +- proto: VendingMachineChemicals + entities: + - uid: 5061 components: - type: Transform - pos: 78.5,7.5 + pos: 51.5,-4.5 parent: 2 - - uid: 12582 +- proto: VendingMachineCigs + entities: + - uid: 2771 components: + - type: MetaData + name: cigarette machine - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 + pos: 24.5,42.5 parent: 2 - - uid: 13120 + - uid: 5349 components: + - type: MetaData + name: cigarette machine - type: Transform - pos: 48.5,11.5 + pos: 63.5,16.5 parent: 2 - - uid: 13650 + - uid: 5426 components: + - type: MetaData + name: cigarette machine - type: Transform - pos: 52.5,30.5 + pos: 34.5,43.5 parent: 2 - - uid: 13651 + - uid: 6615 components: - type: Transform - pos: 52.5,31.5 + pos: 32.5,-2.5 parent: 2 -- proto: TableCarpet - entities: - - uid: 5501 + - uid: 7507 components: - type: Transform - pos: 70.5,33.5 + pos: -21.5,-14.5 parent: 2 - - uid: 5508 + - uid: 11033 components: - type: Transform - pos: 70.5,27.5 + pos: 19.5,35.5 parent: 2 - - uid: 5509 +- proto: VendingMachineClothing + entities: + - uid: 127 components: - type: Transform - pos: 70.5,28.5 + pos: 20.5,7.5 parent: 2 - - uid: 5510 +- proto: VendingMachineCoffee + entities: + - uid: 90 components: - type: Transform - pos: 70.5,29.5 + pos: -25.5,-11.5 parent: 2 - - uid: 13473 + - uid: 586 components: + - type: MetaData + name: Hot drinks machine - type: Transform - pos: 10.5,-42.5 + pos: 11.5,-3.5 parent: 2 - - uid: 13475 + - uid: 613 components: + - type: MetaData + name: Hot drinks machine - type: Transform - pos: 9.5,-42.5 + pos: 21.5,42.5 parent: 2 -- proto: TableCounterWood - entities: - - uid: 9735 + - uid: 5350 components: + - type: MetaData + name: Hot drinks machine - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 + pos: 62.5,16.5 parent: 2 - - uid: 9736 + - uid: 5468 components: + - type: MetaData + name: Hot drinks machine - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 + pos: 67.5,41.5 parent: 2 - - uid: 9737 + - uid: 8864 components: + - type: MetaData + name: Hot drinks machine - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 + pos: 107.5,-12.5 parent: 2 - - uid: 9738 + - uid: 11224 components: + - type: MetaData + name: Hot drinks machine - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 + pos: 45.5,20.5 parent: 2 -- proto: TableGlass +- proto: VendingMachineCondiments entities: - - uid: 12696 + - uid: 6757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-15.5 + pos: 31.5,-7.5 parent: 2 - - uid: 12697 +- proto: VendingMachineCuraDrobe + entities: + - uid: 7770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-15.5 + pos: 13.5,3.5 parent: 2 - - uid: 12698 +- proto: VendingMachineDetDrobe + entities: + - uid: 7711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-15.5 + pos: 41.5,17.5 parent: 2 - - uid: 12699 +- proto: VendingMachineDinnerware + entities: + - uid: 1550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-16.5 + pos: 33.5,-12.5 parent: 2 -- proto: TablePlasmaGlass +- proto: VendingMachineEngiDrobe entities: - - uid: 5708 + - uid: 4093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,13.5 + pos: 23.5,-30.5 parent: 2 - - uid: 5861 +- proto: VendingMachineEngivend + entities: + - uid: 799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,13.5 + pos: 23.5,-27.5 parent: 2 - - uid: 6476 +- proto: VendingMachineGames + entities: + - uid: 570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,14.5 + pos: 8.5,5.5 parent: 2 - - uid: 12690 + - uid: 13622 components: - type: Transform - pos: 107.5,-16.5 + pos: 54.5,31.5 parent: 2 - - uid: 12691 +- proto: VendingMachineGeneDrobe + entities: + - uid: 11912 components: - type: Transform - pos: 106.5,-16.5 + pos: 74.5,4.5 parent: 2 - - uid: 12693 +- proto: VendingMachineHydrobe + entities: + - uid: 6664 components: - type: Transform - pos: 106.5,-18.5 + pos: 44.5,-9.5 parent: 2 - - uid: 12694 +- proto: VendingMachineJaniDrobe + entities: + - uid: 11963 components: - type: Transform - pos: 107.5,-18.5 + pos: 3.5,-6.5 parent: 2 - - uid: 13064 +- proto: VendingMachineLawDrobe + entities: + - uid: 140 components: - type: Transform - pos: 7.5,-13.5 + pos: -0.5,-7.5 parent: 2 - - uid: 13065 +- proto: VendingMachineMedical + entities: + - uid: 5048 components: - type: Transform - pos: 6.5,-13.5 + pos: 53.5,4.5 parent: 2 -- proto: TableReinforced +- proto: VendingMachineMediDrobe entities: - - uid: 133 + - uid: 11913 components: - type: Transform - pos: -2.5,-12.5 + pos: 70.5,4.5 parent: 2 - - uid: 134 +- proto: VendingMachineNutri + entities: + - uid: 6678 components: - type: Transform - pos: -1.5,-12.5 + pos: 44.5,-4.5 parent: 2 - - uid: 349 +- proto: VendingMachineRoboDrobe + entities: + - uid: 5376 components: - type: Transform - pos: 41.5,22.5 + pos: 53.5,11.5 parent: 2 - - uid: 513 +- proto: VendingMachineRobotics + entities: + - uid: 10078 components: - type: Transform - pos: 40.5,-7.5 + pos: 50.5,11.5 parent: 2 - - uid: 564 +- proto: VendingMachineSalvage + entities: + - uid: 12158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-2.5 + pos: 9.5,32.5 parent: 2 - - uid: 572 +- proto: VendingMachineSciDrobe + entities: + - uid: 11953 components: - type: Transform - pos: 37.5,-7.5 + pos: 58.5,25.5 parent: 2 - - uid: 935 +- proto: VendingMachineSec + entities: + - uid: 8442 components: - type: Transform - pos: 12.5,-33.5 + pos: 31.5,28.5 parent: 2 - - uid: 937 +- proto: VendingMachineSecDrobe + entities: + - uid: 6184 components: - type: Transform - pos: 12.5,-35.5 + pos: 29.5,28.5 parent: 2 - - uid: 1598 +- proto: VendingMachineSeeds + entities: + - uid: 6676 components: - type: Transform - pos: 37.5,-4.5 + pos: 43.5,-4.5 parent: 2 - - uid: 1618 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 13605 components: - type: Transform - pos: 36.5,-8.5 + pos: 55.5,36.5 parent: 2 - - uid: 1626 +- proto: VendingMachineSovietSoda + entities: + - uid: 5467 components: - type: Transform - pos: 35.5,-8.5 + pos: 67.5,35.5 parent: 2 - - uid: 1629 +- proto: VendingMachineSustenance + entities: + - uid: 13623 components: - type: Transform - pos: 37.5,-3.5 + pos: 57.5,31.5 parent: 2 - - uid: 1651 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 8172 components: - type: Transform - pos: 37.5,-6.5 + pos: 17.5,-42.5 parent: 2 - - uid: 1659 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 3476 components: - type: Transform - pos: 37.5,-5.5 + pos: 50.5,33.5 parent: 2 - - uid: 2395 + - uid: 10305 components: - type: Transform - pos: 17.5,40.5 + pos: 8.5,-7.5 parent: 2 - - uid: 2420 + - uid: 14747 components: - type: Transform - pos: 28.5,25.5 + pos: 4.5,35.5 parent: 2 - - uid: 2431 +- proto: VendingMachineTheater + entities: + - uid: 1144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,27.5 + pos: 25.5,8.5 parent: 2 - - uid: 2432 +- proto: VendingMachineVendomat + entities: + - uid: 12214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,26.5 + pos: 29.5,-14.5 parent: 2 - - uid: 2492 +- proto: VendingMachineViroDrobe + entities: + - uid: 11964 components: - type: Transform - pos: 30.5,29.5 + pos: 79.5,-3.5 parent: 2 - - uid: 2991 +- proto: VendingMachineWinter + entities: + - uid: 10706 components: - type: Transform - pos: 50.5,1.5 + pos: 20.5,8.5 parent: 2 - - uid: 2992 +- proto: VendingMachineYouTool + entities: + - uid: 798 components: - type: Transform - pos: 51.5,1.5 + pos: 23.5,-26.5 parent: 2 - - uid: 3512 + - uid: 1759 components: - type: Transform - pos: 48.5,18.5 + pos: 32.5,-14.5 parent: 2 - - uid: 4146 +- proto: ViolinInstrument + entities: + - uid: 9357 components: - type: Transform - pos: -1.5,-11.5 + pos: 25.493341,6.5724545 parent: 2 - - uid: 4915 +- proto: WallmountTelescreen + entities: + - uid: 10669 components: - type: Transform - pos: 19.5,41.5 + rot: -1.5707963267948966 rad + pos: 63.5,9.5 parent: 2 - - uid: 4916 + - uid: 10831 components: - type: Transform - pos: 19.5,40.5 + pos: 31.5,43.5 parent: 2 - - uid: 4917 +- proto: WallmountTelescreenFrame + entities: + - uid: 14562 components: - type: Transform - pos: 17.5,41.5 + rot: 1.5707963267948966 rad + pos: 93.5,30.5 parent: 2 - - uid: 4972 +- proto: WallReinforced + entities: + - uid: 4 components: - type: Transform - pos: 26.5,47.5 + pos: 5.5,14.5 parent: 2 - - uid: 4973 + - uid: 20 components: - type: Transform - pos: 28.5,47.5 + rot: -1.5707963267948966 rad + pos: -9.5,-17.5 parent: 2 - - uid: 4974 + - uid: 23 components: - type: Transform - pos: 19.5,46.5 + pos: -9.5,-21.5 parent: 2 - - uid: 4975 + - uid: 67 components: - type: Transform - pos: 21.5,46.5 + pos: 14.5,-13.5 parent: 2 - - uid: 4980 + - uid: 83 components: - type: Transform - pos: 35.5,46.5 + pos: -17.5,-23.5 parent: 2 - - uid: 4981 + - uid: 89 components: - type: Transform - pos: 33.5,46.5 + rot: 3.141592653589793 rad + pos: -25.5,1.5 parent: 2 - - uid: 4983 + - uid: 100 components: - type: Transform - pos: 29.5,48.5 + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 parent: 2 - - uid: 4984 + - uid: 101 components: - type: Transform - pos: 30.5,48.5 + rot: -1.5707963267948966 rad + pos: -4.5,-18.5 parent: 2 - - uid: 4985 + - uid: 106 components: - type: Transform - pos: 25.5,48.5 + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 parent: 2 - - uid: 4994 + - uid: 156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,48.5 + pos: 7.5,-2.5 parent: 2 - - uid: 4995 + - uid: 157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,48.5 + pos: 7.5,-3.5 parent: 2 - - uid: 5031 + - uid: 158 components: - type: Transform - pos: 50.5,-3.5 + pos: 7.5,-4.5 parent: 2 - - uid: 5032 + - uid: 159 components: - type: Transform - pos: 54.5,-4.5 + pos: 7.5,-5.5 parent: 2 - - uid: 5365 + - uid: 160 components: - type: Transform - pos: 47.5,12.5 + pos: 7.5,-6.5 parent: 2 - - uid: 5813 + - uid: 161 components: - type: Transform - pos: 34.5,-8.5 + pos: 7.5,-7.5 parent: 2 - - uid: 7545 + - uid: 179 components: - type: Transform - pos: 55.5,-10.5 + pos: 7.5,-8.5 parent: 2 - - uid: 7611 + - uid: 180 components: - type: Transform - pos: 56.5,-10.5 + pos: 7.5,-9.5 parent: 2 - - uid: 7612 + - uid: 181 components: - type: Transform - pos: 54.5,-10.5 + pos: 7.5,-10.5 parent: 2 - - uid: 7739 + - uid: 201 components: - type: Transform - pos: -2.5,-2.5 + rot: -1.5707963267948966 rad + pos: -19.5,-17.5 parent: 2 - - uid: 7937 + - uid: 206 components: - type: Transform - pos: 40.5,22.5 + pos: 10.5,-3.5 parent: 2 - - uid: 7939 + - uid: 207 components: - type: Transform - pos: 41.5,24.5 + pos: 10.5,-4.5 parent: 2 - - uid: 10310 + - uid: 208 components: - type: Transform - pos: 8.5,-6.5 + pos: 11.5,-4.5 parent: 2 - - uid: 11800 + - uid: 209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-0.5 + pos: 12.5,-4.5 parent: 2 - - uid: 11839 + - uid: 210 components: - type: Transform - pos: 12.5,-34.5 + pos: 13.5,-4.5 parent: 2 - - uid: 12423 + - uid: 211 components: - type: Transform - pos: 49.5,1.5 + pos: 13.5,-5.5 parent: 2 -- proto: TableWood - entities: - - uid: 302 + - uid: 212 components: - type: Transform - pos: 13.5,4.5 + pos: 13.5,-6.5 parent: 2 - - uid: 304 + - uid: 213 components: - type: Transform - pos: 11.5,4.5 + pos: 13.5,-7.5 parent: 2 - - uid: 305 + - uid: 214 components: - type: Transform - pos: 10.5,4.5 + pos: 13.5,-8.5 parent: 2 - - uid: 306 + - uid: 215 components: - type: Transform - pos: 8.5,4.5 + pos: 13.5,-9.5 parent: 2 - - uid: 307 + - uid: 216 components: - type: Transform - pos: 8.5,3.5 + pos: 12.5,-9.5 parent: 2 - - uid: 2405 + - uid: 217 components: - type: Transform - pos: 44.5,23.5 + pos: 11.5,-9.5 parent: 2 - - uid: 2406 + - uid: 218 components: - type: Transform - pos: 45.5,23.5 + pos: 10.5,-9.5 parent: 2 - - uid: 2407 + - uid: 219 components: - type: Transform - pos: 45.5,24.5 + pos: 10.5,-10.5 parent: 2 - - uid: 2478 + - uid: 220 components: - type: Transform - pos: 43.5,19.5 + pos: 8.5,-10.5 parent: 2 - - uid: 2713 + - uid: 319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,33.5 + rot: 3.141592653589793 rad + pos: 60.5,32.5 parent: 2 - - uid: 2714 + - uid: 324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,32.5 + pos: 6.5,14.5 parent: 2 - - uid: 2715 + - uid: 331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,30.5 + pos: -4.5,-19.5 parent: 2 - - uid: 2716 + - uid: 336 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,29.5 + pos: -25.5,-2.5 parent: 2 - - uid: 2719 + - uid: 343 components: - type: Transform - pos: 18.5,31.5 + pos: 10.5,19.5 parent: 2 - - uid: 2776 + - uid: 346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,40.5 + rot: -1.5707963267948966 rad + pos: -25.5,-3.5 parent: 2 - - uid: 2777 + - uid: 435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,40.5 + pos: 65.5,24.5 parent: 2 - - uid: 2778 + - uid: 437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,39.5 + pos: 5.5,20.5 parent: 2 - - uid: 2779 + - uid: 462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,39.5 + rot: -1.5707963267948966 rad + pos: -27.5,1.5 parent: 2 - - uid: 5407 + - uid: 470 components: - type: Transform - pos: 34.5,41.5 + pos: 5.5,-16.5 parent: 2 - - uid: 5408 + - uid: 471 components: - type: Transform - pos: 33.5,41.5 + pos: 8.5,36.5 parent: 2 - - uid: 5409 + - uid: 481 components: - type: Transform - pos: 32.5,41.5 + rot: 3.141592653589793 rad + pos: 4.5,-17.5 parent: 2 - - uid: 5410 + - uid: 485 components: - type: Transform - pos: 30.5,41.5 + pos: 15.5,-6.5 parent: 2 - - uid: 5413 + - uid: 490 components: - type: Transform - pos: 37.5,43.5 + pos: 16.5,-6.5 parent: 2 - - uid: 7547 + - uid: 491 components: - type: Transform - pos: 30.5,6.5 + pos: 17.5,-6.5 parent: 2 - - uid: 8646 + - uid: 492 components: - type: Transform - pos: 86.5,10.5 + pos: 18.5,-6.5 parent: 2 - - uid: 8647 + - uid: 493 components: - type: Transform - pos: 84.5,10.5 + pos: 19.5,-6.5 parent: 2 - - uid: 8648 + - uid: 494 components: - type: Transform - pos: 86.5,12.5 + pos: 20.5,-6.5 parent: 2 - - uid: 8649 + - uid: 495 components: - type: Transform - pos: 83.5,8.5 + pos: 21.5,-6.5 parent: 2 - - uid: 8650 + - uid: 496 components: - type: Transform - pos: 83.5,7.5 + pos: 21.5,-5.5 parent: 2 - - uid: 9004 + - uid: 497 components: - type: Transform - pos: 18.5,29.5 + pos: 21.5,-4.5 parent: 2 - - uid: 10635 + - uid: 498 components: - type: Transform - pos: 30.5,7.5 + pos: 21.5,-3.5 parent: 2 - - uid: 11477 + - uid: 499 components: - type: Transform - pos: 43.5,20.5 + pos: 21.5,-2.5 parent: 2 -- proto: TargetClown - entities: - - uid: 9607 + - uid: 500 components: - type: Transform - pos: 27.5,8.5 + pos: 21.5,-1.5 parent: 2 -- proto: TegCenter - entities: - - uid: 13127 + - uid: 501 components: - type: Transform - pos: 40.5,-46.5 + pos: 20.5,-1.5 parent: 2 -- proto: TegCirculator - entities: - - uid: 13128 + - uid: 502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-47.5 + pos: 19.5,-1.5 parent: 2 - - type: PointLight - color: '#FF3300FF' - - uid: 13129 + - uid: 503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-45.5 + pos: 18.5,-1.5 parent: 2 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServer - entities: - - uid: 533 + - uid: 504 components: - type: Transform - pos: 16.5,-16.5 + pos: 17.5,-1.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 535 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 5183 + - uid: 505 components: - type: Transform - pos: 13.5,-16.5 + pos: 17.5,-2.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 412 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 10443 + - uid: 506 components: - type: Transform - pos: 14.5,-16.5 + pos: 13.5,-2.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 413 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12111 + - uid: 510 components: - type: Transform - pos: 15.5,-16.5 + rot: -1.5707963267948966 rad + pos: -26.5,1.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 414 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12112 + - uid: 534 components: - type: Transform - pos: 13.5,-18.5 + pos: 18.5,-13.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 421 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12232 + - uid: 536 components: - type: Transform - pos: 14.5,-18.5 + pos: 20.5,-13.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 422 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12233 + - uid: 537 components: - type: Transform - pos: 15.5,-18.5 + pos: 21.5,-13.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 423 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12395 + - uid: 538 components: - type: Transform - pos: 16.5,-18.5 + pos: 22.5,-13.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 424 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: TeslaCoil - entities: - - uid: 5664 + - uid: 539 components: - type: Transform - pos: 14.5,-50.5 + pos: 23.5,-13.5 parent: 2 - - uid: 13188 + - uid: 541 components: - type: Transform - pos: 14.5,-52.5 + pos: 17.5,-13.5 parent: 2 - - uid: 13189 + - uid: 573 components: - type: Transform - pos: 28.5,-52.5 + pos: 16.5,-22.5 parent: 2 - - uid: 13190 + - uid: 580 components: - type: Transform - pos: 28.5,-50.5 + pos: 17.5,-22.5 parent: 2 -- proto: TeslaGenerator - entities: - - uid: 832 + - uid: 581 components: - type: Transform - pos: 13.5,-31.5 + pos: 18.5,-22.5 parent: 2 -- proto: TeslaGroundingRod - entities: - - uid: 12384 + - uid: 610 components: - type: Transform - pos: 12.5,-46.5 + pos: 6.5,34.5 parent: 2 - - uid: 13183 + - uid: 615 components: - type: Transform - pos: 12.5,-47.5 + pos: 17.5,-14.5 parent: 2 - - uid: 13184 + - uid: 616 components: - type: Transform - pos: 12.5,-48.5 + pos: 17.5,-15.5 parent: 2 - - uid: 13185 + - uid: 618 components: - type: Transform - pos: 12.5,-49.5 + pos: 14.5,-14.5 parent: 2 -- proto: TintedWindow - entities: - - uid: 1165 + - uid: 619 components: - type: Transform - pos: 24.5,-12.5 + pos: 15.5,-14.5 parent: 2 - - uid: 1196 + - uid: 620 components: - type: Transform - pos: 24.5,-9.5 + pos: 13.5,-14.5 parent: 2 - - uid: 6813 + - uid: 621 components: - type: Transform - pos: 63.5,-8.5 + pos: 12.5,-14.5 parent: 2 - - uid: 7580 + - uid: 623 components: - type: Transform - pos: 62.5,-8.5 + pos: 11.5,-15.5 parent: 2 - - uid: 11195 + - uid: 624 components: - type: Transform - pos: 60.5,-8.5 + pos: 11.5,-16.5 parent: 2 -- proto: ToiletEmpty - entities: - - uid: 460 + - uid: 625 components: - type: Transform - pos: 8.5,13.5 + pos: 11.5,-17.5 parent: 2 - - uid: 461 + - uid: 626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,12.5 + pos: 11.5,-18.5 parent: 2 - - uid: 2291 + - uid: 627 components: - type: Transform - pos: 41.5,37.5 + pos: 11.5,-19.5 parent: 2 - - uid: 5701 + - uid: 629 components: - type: Transform - pos: 79.5,-12.5 + pos: 12.5,-15.5 parent: 2 - - uid: 5702 + - uid: 630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-13.5 + pos: 12.5,-16.5 parent: 2 - - uid: 9019 + - uid: 631 components: - type: Transform - pos: 102.5,-12.5 + pos: 12.5,-17.5 parent: 2 - - uid: 11901 + - uid: 632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,8.5 + pos: 12.5,-18.5 parent: 2 -- proto: ToiletGoldenDirtyWater - entities: - - uid: 10474 + - uid: 633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,39.5 + pos: 12.5,-19.5 parent: 2 -- proto: ToolboxElectricalFilled - entities: - - uid: 5378 + - uid: 634 components: - type: Transform - pos: 52.6158,11.657994 + pos: 12.5,-20.5 parent: 2 - - uid: 5626 + - uid: 635 components: - type: Transform - pos: 18.84633,-23.378391 + pos: 15.5,-15.5 parent: 2 - - uid: 12356 + - uid: 636 components: - type: Transform - pos: 36.482082,-14.3137665 + pos: 14.5,-15.5 parent: 2 -- proto: ToolboxEmergencyFilled - entities: - - uid: 4997 + - uid: 637 components: - type: Transform - rot: 3.573787398636341E-05 rad - pos: 35.50106,46.735016 + pos: 13.5,-15.5 parent: 2 - - uid: 11411 + - uid: 638 components: - type: Transform - pos: 31.521385,-17.29768 + pos: 13.5,-20.5 parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 12095 + - uid: 639 components: - type: Transform - pos: 19.490185,40.6353 + pos: 14.5,-20.5 parent: 2 -- proto: ToolboxMechanicalFilled - entities: - - uid: 4998 + - uid: 640 components: - type: Transform - pos: 35.491802,46.459015 + pos: 15.5,-20.5 parent: 2 - - uid: 7357 + - uid: 641 components: - type: Transform - pos: 18.414553,24.540695 + pos: 16.5,-20.5 parent: 2 - - uid: 11410 + - uid: 642 components: - type: Transform - pos: 31.521385,-17.500805 + pos: 19.5,-20.5 parent: 2 - - uid: 12357 + - uid: 643 components: - type: Transform - pos: 36.482082,-14.5012665 + pos: 20.5,-20.5 parent: 2 -- proto: ToyRubberDuck - entities: - - uid: 2321 + - uid: 644 components: - type: Transform - pos: 37.63663,34.272766 + pos: 21.5,-20.5 parent: 2 - - uid: 6933 + - uid: 645 components: - type: Transform - pos: 12.5,12.5 + pos: 22.5,-20.5 parent: 2 -- proto: ToySpawner - entities: - - uid: 8652 + - uid: 646 components: - type: Transform - pos: 84.5,12.5 + pos: 23.5,-20.5 parent: 2 -- proto: TrashBag - entities: - - uid: 10811 + - uid: 647 components: - type: Transform - pos: 89.33498,-20.63679 + pos: 24.5,-20.5 parent: 2 -- proto: TrashBananaPeel - entities: - - uid: 5880 + - uid: 648 components: - type: Transform - pos: 0.13960361,-25.931139 + pos: 13.5,-19.5 parent: 2 - - uid: 9603 + - uid: 649 components: - type: Transform - pos: 26.493341,6.2912045 + pos: 14.5,-19.5 parent: 2 -- proto: TrumpetInstrument - entities: - - uid: 5030 + - uid: 650 components: - type: Transform - pos: 84.55714,10.563628 + pos: 15.5,-19.5 parent: 2 -- proto: TwoWayLever - entities: - - uid: 944 + - uid: 651 components: - type: Transform - pos: 8.5,16.5 + pos: 16.5,-19.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12229: - - Left: Forward - - Right: Reverse - - Middle: Off - 7667: - - Left: Forward - - Right: Reverse - - Middle: Off - 6844: - - Left: Forward - - Right: Reverse - - Middle: Off - 7891: - - Left: Forward - - Right: Reverse - - Middle: Off - 7841: - - Left: Forward - - Right: Reverse - - Middle: Off - 7875: - - Left: Forward - - Right: Reverse - - Middle: Off - 7949: - - Left: Forward - - Right: Reverse - - Middle: Off - 7586: - - Left: Forward - - Right: Reverse - - Middle: Off - 6825: - - Left: Forward - - Right: Reverse - - Middle: Off - 7672: - - Left: Forward - - Right: Reverse - - Middle: Off - 7585: - - Left: Forward - - Right: Reverse - - Middle: Off - 2028: - - Left: Forward - - Right: Reverse - - Middle: Off - 6823: - - Left: Forward - - Right: Reverse - - Middle: Off - 7888: - - Left: Forward - - Right: Reverse - - Middle: Off - 6820: - - Left: Forward - - Right: Reverse - - Middle: Off - 7849: - - Left: Forward - - Right: Reverse - - Middle: Off - 2030: - - Left: Forward - - Right: Reverse - - Middle: Off - 7671: - - Left: Forward - - Right: Reverse - - Middle: Off - 6846: - - Left: Forward - - Right: Reverse - - Middle: Off - 7880: - - Left: Forward - - Right: Reverse - - Middle: Off - 7878: - - Left: Forward - - Right: Reverse - - Middle: Off - 7879: - - Left: Forward - - Right: Reverse - - Middle: Off - 7876: - - Left: Forward - - Right: Reverse - - Middle: Off - 5285: - - Left: Forward - - Right: Reverse - - Middle: Off - 1319: - - Left: Forward - - Right: Reverse - - Middle: Off - 6775: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 2154 + - uid: 652 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 653 components: - type: Transform - pos: 8.479812,22.588839 + pos: 18.5,-19.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2039: - - Left: Forward - - Right: Reverse - - Middle: Off - 2040: - - Left: Forward - - Right: Reverse - - Middle: Off - 2067: - - Left: Forward - - Right: Reverse - - Middle: Off - 2051: - - Left: Forward - - Right: Reverse - - Middle: Off - 2066: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 5856 + - uid: 654 components: - type: Transform - pos: 2.5,-30.5 + pos: 19.5,-19.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5842: - - Left: Forward - - Right: Reverse - - Middle: Off - 5843: - - Left: Forward - - Right: Reverse - - Middle: Off - 5844: - - Left: Forward - - Right: Reverse - - Middle: Off - 5845: - - Left: Forward - - Right: Reverse - - Middle: Off - 5846: - - Left: Forward - - Right: Reverse - - Middle: Off - 5847: - - Left: Forward - - Right: Reverse - - Middle: Off - 5850: - - Left: Forward - - Right: Reverse - - Middle: Off - 5851: - - Left: Forward - - Right: Reverse - - Middle: Off - 5852: - - Left: Forward - - Right: Reverse - - Middle: Off - 5853: - - Left: Forward - - Right: Reverse - - Middle: Off - 5854: - - Left: Forward - - Right: Reverse - - Middle: Off - 5855: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 5857 + - uid: 655 components: - type: Transform - pos: 2.5,-31.5 + pos: 24.5,-19.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5875: - - Left: Open - - Right: Open - - Middle: Close - - uid: 7808 + - uid: 656 components: - type: Transform - pos: 8.5,28.5 + pos: 24.5,-18.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2038: - - Left: Forward - - Right: Reverse - - Middle: Off - 2037: - - Left: Forward - - Right: Reverse - - Middle: Off - 2041: - - Left: Forward - - Right: Reverse - - Middle: Off - 2042: - - Left: Forward - - Right: Reverse - - Middle: Off - 2064: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 8665 + - uid: 657 components: - type: Transform - pos: 63.5,25.5 + pos: 24.5,-16.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5351: - - Left: Open - - Right: Open - - Middle: Close - 5361: - - Left: Open - - Right: Open - - Middle: Close - - uid: 10322 + - uid: 658 components: - type: Transform - pos: 44.5,11.5 + pos: 24.5,-15.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5268: - - Left: Open - - Right: Open - - Middle: Close - - uid: 13115 + - uid: 659 components: - type: Transform - pos: 44.5,-46.5 + pos: 24.5,-14.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12890: - - Left: Open - - Right: Open - - Middle: Close - 12891: - - Left: Open - - Right: Open - - Middle: Close -- proto: UniformPrinter - entities: - - uid: 10283 + - uid: 669 components: - type: Transform - pos: 20.5,-4.5 + rot: 3.141592653589793 rad + pos: 53.5,42.5 parent: 2 -- proto: Vaccinator - entities: - - uid: 12157 + - uid: 687 components: - type: Transform - pos: 81.5,-7.5 + rot: 3.141592653589793 rad + pos: 6.5,36.5 parent: 2 -- proto: VendingBarDrobe - entities: - - uid: 4407 + - uid: 690 components: - type: Transform - pos: 40.5,-9.5 + pos: 3.5,-17.5 parent: 2 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 4100 + - uid: 694 components: - type: Transform - pos: 29.5,-30.5 + pos: -7.5,-21.5 parent: 2 -- proto: VendingMachineBooze - entities: - - uid: 540 + - uid: 707 components: - type: Transform - pos: 38.5,-8.5 + pos: 12.5,-22.5 parent: 2 - - uid: 2900 + - uid: 708 components: - type: Transform - pos: 66.5,-13.5 + pos: 12.5,-23.5 parent: 2 -- proto: VendingMachineCargoDrobe - entities: - - uid: 8176 + - uid: 709 components: - type: Transform - pos: 9.5,32.5 + pos: 12.5,-24.5 parent: 2 -- proto: VendingMachineCart - entities: - - uid: 10267 + - uid: 710 components: - type: Transform - pos: 20.5,-5.5 + pos: 12.5,-25.5 parent: 2 -- proto: VendingMachineChapel - entities: - - uid: 12201 + - uid: 711 components: - type: Transform - pos: 31.5,9.5 + pos: 11.5,-24.5 parent: 2 -- proto: VendingMachineChefDrobe - entities: - - uid: 4249 + - uid: 712 components: - type: Transform - pos: 29.5,-9.5 + pos: 10.5,-24.5 parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 4248 + - uid: 713 components: - type: Transform - pos: 34.5,-12.5 + pos: 9.5,-24.5 parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 5058 + - uid: 714 components: - type: Transform - pos: 49.5,-8.5 + pos: 9.5,-25.5 parent: 2 -- proto: VendingMachineChemicals - entities: - - uid: 5061 + - uid: 715 components: - type: Transform - pos: 51.5,-4.5 + pos: 8.5,-25.5 parent: 2 -- proto: VendingMachineCigs - entities: - - uid: 2771 + - uid: 716 components: - - type: MetaData - name: cigarette machine - type: Transform - pos: 24.5,42.5 + pos: 8.5,-26.5 parent: 2 - - uid: 5349 + - uid: 717 components: - - type: MetaData - name: cigarette machine - type: Transform - pos: 63.5,16.5 + pos: 8.5,-27.5 parent: 2 - - uid: 5426 + - uid: 718 components: - - type: MetaData - name: cigarette machine - type: Transform - pos: 34.5,43.5 + pos: 8.5,-28.5 parent: 2 - - uid: 6615 + - uid: 719 components: - type: Transform - pos: 32.5,-2.5 + pos: 8.5,-29.5 parent: 2 - - uid: 11033 + - uid: 720 components: - type: Transform - pos: 19.5,35.5 + pos: 8.5,-30.5 parent: 2 -- proto: VendingMachineClothing - entities: - - uid: 127 + - uid: 721 components: - type: Transform - pos: 20.5,7.5 + pos: 8.5,-31.5 parent: 2 -- proto: VendingMachineCoffee - entities: - - uid: 586 + - uid: 722 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 11.5,-3.5 + pos: 8.5,-32.5 parent: 2 - - uid: 613 + - uid: 723 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 21.5,42.5 + pos: 9.5,-32.5 parent: 2 - - uid: 5350 + - uid: 724 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 62.5,16.5 + pos: 10.5,-32.5 parent: 2 - - uid: 5468 + - uid: 725 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 67.5,41.5 + pos: 11.5,-32.5 parent: 2 - - uid: 8864 + - uid: 726 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 107.5,-12.5 + pos: 12.5,-32.5 parent: 2 - - uid: 11224 + - uid: 727 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 45.5,20.5 + pos: 13.5,-32.5 parent: 2 - - uid: 11432 + - uid: 728 components: - type: Transform - pos: 78.5,3.5 + pos: 14.5,-32.5 parent: 2 -- proto: VendingMachineCondiments - entities: - - uid: 6757 + - uid: 729 components: - type: Transform - pos: 31.5,-7.5 + pos: 15.5,-32.5 parent: 2 -- proto: VendingMachineCuraDrobe - entities: - - uid: 7770 + - uid: 730 components: - type: Transform - pos: 13.5,3.5 + pos: 16.5,-32.5 parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 7711 + - uid: 731 components: - type: Transform - pos: 41.5,17.5 + pos: 12.5,-28.5 parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 1550 + - uid: 732 components: - type: Transform - pos: 33.5,-12.5 + pos: 12.5,-29.5 parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 4093 + - uid: 733 components: - type: Transform - pos: 23.5,-30.5 + pos: 13.5,-29.5 parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 799 + - uid: 734 components: - type: Transform - pos: 23.5,-27.5 + pos: 14.5,-29.5 parent: 2 -- proto: VendingMachineGames - entities: - - uid: 570 + - uid: 735 components: - type: Transform - pos: 8.5,5.5 + pos: 15.5,-29.5 parent: 2 -- proto: VendingMachineGeneDrobe - entities: - - uid: 11912 + - uid: 736 components: - type: Transform - pos: 74.5,4.5 + pos: 16.5,-29.5 parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 6664 + - uid: 737 components: - type: Transform - pos: 44.5,-9.5 + pos: 16.5,-30.5 parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 11963 + - uid: 745 components: - type: Transform - pos: 3.5,-6.5 + rot: 1.5707963267948966 rad + pos: 51.5,-34.5 parent: 2 -- proto: VendingMachineLawDrobe - entities: - - uid: 140 + - uid: 753 components: - type: Transform - pos: -0.5,-7.5 + pos: 14.5,-22.5 parent: 2 -- proto: VendingMachineMedical - entities: - - uid: 5048 + - uid: 754 components: - type: Transform - pos: 53.5,4.5 + pos: 15.5,-22.5 parent: 2 -- proto: VendingMachineMediDrobe - entities: - - uid: 11913 + - uid: 757 components: - type: Transform - pos: 70.5,4.5 + rot: 1.5707963267948966 rad + pos: 47.5,-34.5 parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 6678 + - uid: 758 components: - type: Transform - pos: 44.5,-4.5 + pos: 19.5,-22.5 parent: 2 -- proto: VendingMachineRoboDrobe - entities: - - uid: 5376 + - uid: 759 components: - type: Transform - pos: 53.5,11.5 + pos: 20.5,-22.5 parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 10078 + - uid: 760 components: - type: Transform - pos: 50.5,11.5 + pos: 21.5,-22.5 parent: 2 -- proto: VendingMachineSalvage - entities: - - uid: 11811 + - uid: 761 components: - - type: MetaData - name: Salvage Equipment - type: Transform - pos: 7.5,19.5 + pos: 22.5,-22.5 parent: 2 -- proto: VendingMachineSciDrobe - entities: - - uid: 11953 + - uid: 762 components: - type: Transform - pos: 58.5,25.5 + pos: 23.5,-22.5 parent: 2 -- proto: VendingMachineSec - entities: - - uid: 2467 + - uid: 765 components: - type: Transform - pos: 36.5,17.5 + rot: 1.5707963267948966 rad + pos: 47.5,-32.5 parent: 2 -- proto: VendingMachineSecDrobe - entities: - - uid: 2464 + - uid: 766 components: - type: Transform - pos: 37.5,19.5 + pos: 23.5,-25.5 parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 6676 + - uid: 767 components: - type: Transform - pos: 43.5,-4.5 + pos: 24.5,-25.5 parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 6866 + - uid: 768 components: - type: Transform - pos: 39.5,36.5 + pos: 24.5,-26.5 parent: 2 -- proto: VendingMachineSovietSoda - entities: - - uid: 5467 + - uid: 776 components: - type: Transform - pos: 67.5,35.5 + rot: 1.5707963267948966 rad + pos: 49.5,-32.5 parent: 2 -- proto: VendingMachineSustenance - entities: - - uid: 12080 + - uid: 777 components: - type: Transform - pos: 41.5,34.5 + rot: 1.5707963267948966 rad + pos: 50.5,-32.5 parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 13706 + - uid: 785 components: - type: Transform - pos: 17.5,-38.5 + rot: 1.5707963267948966 rad + pos: 51.5,-32.5 parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 10305 + - uid: 804 components: - type: Transform - pos: 8.5,-7.5 + rot: 1.5707963267948966 rad + pos: 48.5,-32.5 parent: 2 -- proto: VendingMachineTheater - entities: - - uid: 1144 + - uid: 805 components: - type: Transform - pos: 25.5,8.5 + rot: 1.5707963267948966 rad + pos: 51.5,-33.5 parent: 2 -- proto: VendingMachineVendomat - entities: - - uid: 12214 + - uid: 823 components: - type: Transform - pos: 29.5,-14.5 + pos: 28.5,-25.5 parent: 2 -- proto: VendingMachineViroDrobe - entities: - - uid: 11964 + - uid: 824 components: - type: Transform - pos: 79.5,-3.5 + pos: 28.5,-26.5 parent: 2 -- proto: VendingMachineWinter - entities: - - uid: 10706 + - uid: 838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-31.5 + parent: 2 + - uid: 839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-30.5 + parent: 2 + - uid: 842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-29.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,35.5 + parent: 2 + - uid: 915 components: - type: Transform - pos: 20.5,8.5 + pos: 9.5,-33.5 parent: 2 -- proto: VendingMachineYouTool - entities: - - uid: 798 + - uid: 916 components: - type: Transform - pos: 23.5,-26.5 + pos: 9.5,-34.5 parent: 2 - - uid: 1759 + - uid: 917 components: - type: Transform - pos: 32.5,-14.5 + pos: 9.5,-35.5 parent: 2 -- proto: ViolinInstrument - entities: - - uid: 9357 + - uid: 918 components: - type: Transform - pos: 25.493341,6.5724545 + pos: 9.5,-36.5 parent: 2 -- proto: WallmountTelescreen - entities: - - uid: 10669 + - uid: 919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,9.5 + pos: 9.5,-37.5 parent: 2 - - uid: 10831 + - uid: 920 components: - type: Transform - pos: 31.5,43.5 + pos: 14.5,-37.5 parent: 2 -- proto: WallReinforced - entities: - - uid: 4 + - uid: 949 components: - type: Transform - pos: 5.5,14.5 + pos: 15.5,-37.5 parent: 2 - - uid: 22 + - uid: 952 components: - type: Transform - pos: -7.5,-3.5 + pos: 18.5,-37.5 parent: 2 - - uid: 49 + - uid: 955 components: - type: Transform - pos: -10.5,1.5 + pos: 15.5,-40.5 parent: 2 - - uid: 67 + - uid: 956 components: - type: Transform - pos: 14.5,-13.5 + pos: 24.5,-37.5 parent: 2 - - uid: 72 + - uid: 957 components: - type: Transform - pos: 10.5,37.5 + pos: 24.5,-40.5 parent: 2 - - uid: 75 + - uid: 958 components: - type: Transform - pos: 10.5,36.5 + pos: 18.5,-40.5 parent: 2 - - uid: 156 + - uid: 993 components: - type: Transform - pos: 7.5,-2.5 + pos: 9.5,35.5 parent: 2 - - uid: 157 + - uid: 1007 components: - type: Transform - pos: 7.5,-3.5 + rot: 1.5707963267948966 rad + pos: 48.5,-34.5 parent: 2 - - uid: 158 + - uid: 1008 components: - type: Transform - pos: 7.5,-4.5 + rot: 1.5707963267948966 rad + pos: 49.5,-34.5 parent: 2 - - uid: 159 + - uid: 1021 components: - type: Transform - pos: 7.5,-5.5 + pos: 14.5,-43.5 parent: 2 - - uid: 160 + - uid: 1022 components: - type: Transform - pos: 7.5,-6.5 + pos: 15.5,-43.5 parent: 2 - - uid: 161 + - uid: 1042 components: - type: Transform - pos: 7.5,-7.5 + pos: 8.5,35.5 parent: 2 - - uid: 179 + - uid: 1055 components: - type: Transform - pos: 7.5,-8.5 + pos: 4.5,36.5 parent: 2 - - uid: 180 + - uid: 1057 components: - type: Transform - pos: 7.5,-9.5 + pos: 14.5,-39.5 parent: 2 - - uid: 181 + - uid: 1218 components: - type: Transform - pos: 7.5,-10.5 + pos: 37.5,-29.5 parent: 2 - - uid: 206 + - uid: 1219 components: - type: Transform - pos: 10.5,-3.5 + pos: 16.5,-15.5 parent: 2 - - uid: 207 + - uid: 1230 components: - type: Transform - pos: 10.5,-4.5 + pos: 48.5,32.5 parent: 2 - - uid: 208 + - uid: 1250 components: - type: Transform - pos: 11.5,-4.5 + pos: 30.5,-58.5 parent: 2 - - uid: 209 + - uid: 1264 components: - type: Transform - pos: 12.5,-4.5 + pos: 30.5,-46.5 parent: 2 - - uid: 210 + - uid: 1265 components: - type: Transform - pos: 13.5,-4.5 + pos: 30.5,-47.5 parent: 2 - - uid: 211 + - uid: 1266 components: - type: Transform - pos: 13.5,-5.5 + pos: 30.5,-48.5 parent: 2 - - uid: 212 + - uid: 1267 components: - type: Transform - pos: 13.5,-6.5 + pos: 30.5,-49.5 parent: 2 - - uid: 213 + - uid: 1268 components: - type: Transform - pos: 13.5,-7.5 + pos: 30.5,-50.5 parent: 2 - - uid: 214 + - uid: 1269 components: - type: Transform - pos: 13.5,-8.5 + pos: 30.5,-51.5 parent: 2 - - uid: 215 + - uid: 1270 components: - type: Transform - pos: 13.5,-9.5 + pos: 30.5,-52.5 parent: 2 - - uid: 216 + - uid: 1271 components: - type: Transform - pos: 12.5,-9.5 + pos: 30.5,-53.5 parent: 2 - - uid: 217 + - uid: 1272 components: - type: Transform - pos: 11.5,-9.5 + pos: 30.5,-54.5 parent: 2 - - uid: 218 + - uid: 1273 components: - type: Transform - pos: 10.5,-9.5 + pos: 30.5,-55.5 parent: 2 - - uid: 219 + - uid: 1276 components: - type: Transform - pos: 10.5,-10.5 + pos: 30.5,-57.5 parent: 2 - - uid: 220 + - uid: 1277 components: - type: Transform - pos: 8.5,-10.5 + pos: 30.5,-56.5 parent: 2 - - uid: 246 + - uid: 1278 components: - type: Transform - pos: -7.5,1.5 + pos: 12.5,-43.5 parent: 2 - - uid: 250 + - uid: 1279 components: - type: Transform - pos: -6.5,14.5 + pos: 12.5,-44.5 parent: 2 - - uid: 254 + - uid: 1280 components: - type: Transform - pos: -8.5,1.5 + pos: 12.5,-45.5 parent: 2 - - uid: 324 + - uid: 1282 components: - type: Transform - pos: 6.5,14.5 + pos: 11.5,-46.5 parent: 2 - - uid: 343 + - uid: 1283 components: - type: Transform - pos: 0.5,14.5 + pos: 11.5,-47.5 parent: 2 - - uid: 344 + - uid: 1284 components: - type: Transform - pos: -12.5,1.5 + pos: 11.5,-48.5 parent: 2 - - uid: 398 + - uid: 1285 components: - type: Transform - pos: 4.5,20.5 + pos: 11.5,-49.5 parent: 2 - - uid: 430 + - uid: 1292 components: - type: Transform - pos: 6.5,21.5 + pos: 11.5,-50.5 parent: 2 - - uid: 431 + - uid: 1293 components: - type: Transform - pos: 6.5,20.5 + pos: 11.5,-51.5 parent: 2 - - uid: 435 + - uid: 1294 components: - type: Transform - pos: 65.5,24.5 + pos: 11.5,-52.5 parent: 2 - - uid: 462 + - uid: 1295 components: - type: Transform - pos: -14.5,-11.5 + rot: -1.5707963267948966 rad + pos: 12.5,-46.5 parent: 2 - - uid: 470 + - uid: 1296 components: - type: Transform - pos: 5.5,-16.5 + rot: -1.5707963267948966 rad + pos: 12.5,-48.5 parent: 2 - - uid: 481 + - uid: 1297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-17.5 + pos: 11.5,-55.5 parent: 2 - - uid: 485 + - uid: 1299 components: - type: Transform - pos: 15.5,-6.5 + pos: 30.5,-59.5 parent: 2 - - uid: 490 + - uid: 1326 components: - type: Transform - pos: 16.5,-6.5 + pos: 5.5,-33.5 parent: 2 - - uid: 491 + - uid: 1334 components: - type: Transform - pos: 17.5,-6.5 + rot: -1.5707963267948966 rad + pos: -27.5,-2.5 parent: 2 - - uid: 492 + - uid: 1337 components: - type: Transform - pos: 18.5,-6.5 + pos: 2.5,13.5 parent: 2 - - uid: 493 + - uid: 1348 components: - type: Transform - pos: 19.5,-6.5 + pos: 5.5,-34.5 parent: 2 - - uid: 494 + - uid: 1349 components: - type: Transform - pos: 20.5,-6.5 + pos: 5.5,-35.5 parent: 2 - - uid: 495 + - uid: 1350 components: - type: Transform - pos: 21.5,-6.5 + pos: 5.5,-36.5 parent: 2 - - uid: 496 + - uid: 1351 components: - type: Transform - pos: 21.5,-5.5 + pos: 5.5,-37.5 parent: 2 - - uid: 497 + - uid: 1352 components: - type: Transform - pos: 21.5,-4.5 + pos: 4.5,-37.5 parent: 2 - - uid: 498 + - uid: 1353 components: - type: Transform - pos: 21.5,-3.5 + pos: 3.5,-37.5 parent: 2 - - uid: 499 + - uid: 1354 components: - type: Transform - pos: 21.5,-2.5 + pos: 2.5,-37.5 parent: 2 - - uid: 500 + - uid: 1355 components: - type: Transform - pos: 21.5,-1.5 + pos: 1.5,-37.5 parent: 2 - - uid: 501 + - uid: 1356 components: - type: Transform - pos: 20.5,-1.5 + pos: 0.5,-37.5 parent: 2 - - uid: 502 + - uid: 1487 components: - type: Transform - pos: 19.5,-1.5 + pos: 16.5,39.5 parent: 2 - - uid: 503 + - uid: 1576 components: - type: Transform - pos: 18.5,-1.5 + pos: 24.5,-13.5 parent: 2 - - uid: 504 + - uid: 1577 components: - type: Transform - pos: 17.5,-1.5 + pos: 10.5,-2.5 parent: 2 - - uid: 505 + - uid: 1597 components: - type: Transform - pos: 17.5,-2.5 + pos: 40.5,-13.5 parent: 2 - - uid: 506 + - uid: 1599 components: - type: Transform - pos: 13.5,-2.5 + rot: -1.5707963267948966 rad + pos: 12.5,-52.5 parent: 2 - - uid: 509 + - uid: 1638 components: - type: Transform - pos: -7.5,-11.5 + pos: 48.5,-3.5 parent: 2 - - uid: 534 + - uid: 1639 components: - type: Transform - pos: 18.5,-13.5 + pos: 48.5,-4.5 parent: 2 - - uid: 536 + - uid: 1640 components: - type: Transform - pos: 20.5,-13.5 + pos: 48.5,-5.5 parent: 2 - - uid: 537 + - uid: 1641 components: - type: Transform - pos: 21.5,-13.5 + pos: 48.5,-6.5 parent: 2 - - uid: 538 + - uid: 1643 components: - type: Transform - pos: 22.5,-13.5 + pos: 48.5,-8.5 parent: 2 - - uid: 539 + - uid: 1652 components: - type: Transform - pos: 23.5,-13.5 + pos: 48.5,-9.5 parent: 2 - - uid: 541 + - uid: 1673 components: - type: Transform - pos: 17.5,-13.5 + rot: 3.141592653589793 rad + pos: 19.5,-15.5 parent: 2 - - uid: 553 + - uid: 1700 components: - type: Transform - pos: -12.5,14.5 + pos: 45.5,-13.5 parent: 2 - - uid: 573 + - uid: 1701 components: - type: Transform - pos: 16.5,-22.5 + pos: 44.5,-13.5 parent: 2 - - uid: 580 + - uid: 1702 components: - type: Transform - pos: 17.5,-22.5 + pos: 43.5,-13.5 parent: 2 - - uid: 581 + - uid: 1703 components: - type: Transform - pos: 18.5,-22.5 + pos: 42.5,-13.5 parent: 2 - - uid: 612 + - uid: 1704 components: - type: Transform - pos: -15.5,-15.5 + pos: 41.5,-13.5 parent: 2 - - uid: 615 + - uid: 1706 components: - type: Transform - pos: 17.5,-14.5 + pos: 45.5,-17.5 parent: 2 - - uid: 616 + - uid: 1707 components: - type: Transform - pos: 17.5,-15.5 + pos: 44.5,-17.5 parent: 2 - - uid: 618 + - uid: 1708 components: - type: Transform - pos: 14.5,-14.5 + pos: 43.5,-17.5 parent: 2 - - uid: 619 + - uid: 1709 components: - type: Transform - pos: 15.5,-14.5 + pos: 42.5,-17.5 parent: 2 - - uid: 620 + - uid: 1716 components: - type: Transform - pos: 13.5,-14.5 + pos: 41.5,-17.5 parent: 2 - - uid: 621 + - uid: 1720 components: - type: Transform - pos: 12.5,-14.5 + pos: 40.5,-17.5 parent: 2 - - uid: 623 + - uid: 1763 components: - type: Transform - pos: 11.5,-15.5 + pos: 37.5,32.5 parent: 2 - - uid: 624 + - uid: 1828 components: - type: Transform - pos: 11.5,-16.5 + pos: 29.5,-25.5 parent: 2 - - uid: 625 + - uid: 1936 components: - type: Transform - pos: 11.5,-17.5 + pos: -21.5,-21.5 parent: 2 - - uid: 626 + - uid: 1980 components: - type: Transform - pos: 11.5,-18.5 + pos: 58.5,-14.5 parent: 2 - - uid: 627 + - uid: 1981 components: - type: Transform - pos: 11.5,-19.5 + pos: 58.5,-13.5 parent: 2 - - uid: 629 + - uid: 1984 components: - type: Transform - pos: 12.5,-15.5 + pos: 58.5,-12.5 parent: 2 - - uid: 630 + - uid: 1985 components: - type: Transform - pos: 12.5,-16.5 + pos: 57.5,-12.5 parent: 2 - - uid: 631 + - uid: 1986 components: - type: Transform - pos: 12.5,-17.5 + pos: 56.5,-12.5 parent: 2 - - uid: 632 + - uid: 1987 components: - type: Transform - pos: 12.5,-18.5 + pos: 55.5,-12.5 parent: 2 - - uid: 633 + - uid: 1988 components: - type: Transform - pos: 12.5,-19.5 + pos: 54.5,-12.5 parent: 2 - - uid: 634 + - uid: 1989 components: - type: Transform - pos: 12.5,-20.5 + pos: 53.5,-12.5 parent: 2 - - uid: 635 + - uid: 2033 components: - type: Transform - pos: 15.5,-15.5 + rot: 1.5707963267948966 rad + pos: -0.5,-20.5 parent: 2 - - uid: 636 + - uid: 2058 components: - type: Transform - pos: 14.5,-15.5 + rot: -1.5707963267948966 rad + pos: 15.5,-42.5 parent: 2 - - uid: 637 + - uid: 2070 components: - type: Transform - pos: 13.5,-15.5 + rot: 1.5707963267948966 rad + pos: 48.5,-30.5 parent: 2 - - uid: 638 + - uid: 2075 components: - type: Transform - pos: 13.5,-20.5 + rot: 1.5707963267948966 rad + pos: 50.5,-30.5 parent: 2 - - uid: 639 + - uid: 2077 components: - type: Transform - pos: 14.5,-20.5 + pos: 4.5,30.5 parent: 2 - - uid: 640 + - uid: 2088 components: - type: Transform - pos: 15.5,-20.5 + rot: 1.5707963267948966 rad + pos: 47.5,-24.5 parent: 2 - - uid: 641 + - uid: 2102 components: - type: Transform - pos: 16.5,-20.5 + pos: 24.5,28.5 parent: 2 - - uid: 642 + - uid: 2122 components: - type: Transform - pos: 19.5,-20.5 + pos: 10.5,36.5 parent: 2 - - uid: 643 + - uid: 2138 components: - type: Transform - pos: 20.5,-20.5 + rot: 1.5707963267948966 rad + pos: 50.5,-28.5 parent: 2 - - uid: 644 + - uid: 2141 components: - type: Transform - pos: 21.5,-20.5 + rot: 1.5707963267948966 rad + pos: 48.5,-28.5 parent: 2 - - uid: 645 + - uid: 2142 components: - type: Transform - pos: 22.5,-20.5 + rot: 1.5707963267948966 rad + pos: 47.5,-30.5 parent: 2 - - uid: 646 + - uid: 2144 components: - type: Transform - pos: 23.5,-20.5 + rot: 1.5707963267948966 rad + pos: 49.5,-28.5 parent: 2 - - uid: 647 + - uid: 2190 components: - type: Transform - pos: 24.5,-20.5 + pos: 28.5,16.5 parent: 2 - - uid: 648 + - uid: 2191 components: - type: Transform - pos: 13.5,-19.5 + pos: 29.5,16.5 parent: 2 - - uid: 649 + - uid: 2192 components: - type: Transform - pos: 14.5,-19.5 + pos: 30.5,16.5 parent: 2 - - uid: 650 + - uid: 2193 components: - type: Transform - pos: 15.5,-19.5 + pos: 31.5,16.5 parent: 2 - - uid: 651 + - uid: 2194 components: - type: Transform - pos: 16.5,-19.5 + pos: 32.5,16.5 parent: 2 - - uid: 652 + - uid: 2195 components: - type: Transform - pos: 17.5,-19.5 + pos: 33.5,16.5 parent: 2 - - uid: 653 + - uid: 2196 components: - type: Transform - pos: 18.5,-19.5 + pos: 28.5,19.5 parent: 2 - - uid: 654 + - uid: 2197 components: - type: Transform - pos: 19.5,-19.5 + pos: 28.5,22.5 parent: 2 - - uid: 655 + - uid: 2198 components: - type: Transform - pos: 24.5,-19.5 + pos: 28.5,26.5 parent: 2 - - uid: 656 + - uid: 2199 components: - type: Transform - pos: 24.5,-18.5 + pos: 28.5,27.5 parent: 2 - - uid: 657 + - uid: 2200 components: - type: Transform - pos: 24.5,-16.5 + pos: 29.5,27.5 parent: 2 - - uid: 658 + - uid: 2201 components: - type: Transform - pos: 24.5,-15.5 + pos: 30.5,27.5 parent: 2 - - uid: 659 + - uid: 2202 components: - type: Transform - pos: 24.5,-14.5 + pos: 31.5,27.5 parent: 2 - - uid: 680 + - uid: 2203 components: - type: Transform - pos: -17.5,-15.5 + pos: 28.5,28.5 parent: 2 - - uid: 690 + - uid: 2204 components: - type: Transform - pos: -17.5,-11.5 + pos: 36.5,29.5 parent: 2 - - uid: 691 + - uid: 2205 components: - type: Transform - pos: -21.5,-11.5 + pos: 28.5,30.5 parent: 2 - - uid: 693 + - uid: 2206 components: - type: Transform - pos: -9.5,-15.5 + pos: 28.5,31.5 parent: 2 - - uid: 705 + - uid: 2207 components: - type: Transform - pos: -7.5,14.5 + pos: 29.5,31.5 parent: 2 - - uid: 707 + - uid: 2208 components: - type: Transform - pos: 12.5,-22.5 + pos: 30.5,31.5 parent: 2 - - uid: 708 + - uid: 2209 components: - type: Transform - pos: 12.5,-23.5 + pos: 31.5,31.5 parent: 2 - - uid: 709 + - uid: 2211 components: - type: Transform - pos: 12.5,-24.5 + rot: 3.141592653589793 rad + pos: 51.5,29.5 parent: 2 - - uid: 710 + - uid: 2212 components: - type: Transform - pos: 12.5,-25.5 + pos: 60.5,35.5 parent: 2 - - uid: 711 + - uid: 2214 components: - type: Transform - pos: 11.5,-24.5 + pos: 60.5,37.5 parent: 2 - - uid: 712 + - uid: 2215 components: - type: Transform - pos: 10.5,-24.5 + pos: 60.5,38.5 parent: 2 - - uid: 713 + - uid: 2217 components: - type: Transform - pos: 9.5,-24.5 + pos: 60.5,34.5 parent: 2 - - uid: 714 + - uid: 2218 components: - type: Transform - pos: 9.5,-25.5 + rot: 3.141592653589793 rad + pos: 49.5,29.5 parent: 2 - - uid: 715 + - uid: 2219 components: - type: Transform - pos: 8.5,-25.5 + pos: 43.5,32.5 parent: 2 - - uid: 716 + - uid: 2220 components: - type: Transform - pos: 8.5,-26.5 + rot: 3.141592653589793 rad + pos: 50.5,29.5 parent: 2 - - uid: 717 + - uid: 2226 components: - type: Transform - pos: 8.5,-27.5 + rot: 3.141592653589793 rad + pos: 63.5,44.5 parent: 2 - - uid: 718 + - uid: 2228 components: - type: Transform - pos: 8.5,-28.5 + rot: 3.141592653589793 rad + pos: 31.5,32.5 parent: 2 - - uid: 719 + - uid: 2229 components: - type: Transform - pos: 8.5,-29.5 + pos: 40.5,38.5 parent: 2 - - uid: 720 + - uid: 2230 components: - type: Transform - pos: 8.5,-30.5 + rot: 3.141592653589793 rad + pos: 34.5,32.5 parent: 2 - - uid: 721 + - uid: 2232 components: - type: Transform - pos: 8.5,-31.5 + pos: 42.5,37.5 parent: 2 - - uid: 722 + - uid: 2233 components: - type: Transform - pos: 8.5,-32.5 + pos: 42.5,36.5 parent: 2 - - uid: 723 + - uid: 2234 components: - type: Transform - pos: 9.5,-32.5 + pos: 42.5,35.5 parent: 2 - - uid: 724 + - uid: 2235 components: - type: Transform - pos: 10.5,-32.5 + pos: 42.5,34.5 parent: 2 - - uid: 725 + - uid: 2260 components: - type: Transform - pos: 11.5,-32.5 + pos: 35.5,29.5 parent: 2 - - uid: 726 + - uid: 2262 components: - type: Transform - pos: 12.5,-32.5 + pos: 37.5,29.5 parent: 2 - - uid: 727 + - uid: 2267 components: - type: Transform - pos: 13.5,-32.5 + pos: 42.5,29.5 parent: 2 - - uid: 728 + - uid: 2268 components: - type: Transform - pos: 14.5,-32.5 + pos: 43.5,29.5 parent: 2 - - uid: 729 + - uid: 2269 components: - type: Transform - pos: 15.5,-32.5 + pos: 44.5,29.5 parent: 2 - - uid: 730 + - uid: 2272 components: - type: Transform - pos: 16.5,-32.5 + pos: 44.5,32.5 parent: 2 - - uid: 731 + - uid: 2273 components: - type: Transform - pos: 12.5,-28.5 + pos: 44.5,33.5 parent: 2 - - uid: 732 + - uid: 2277 components: - type: Transform - pos: 12.5,-29.5 + pos: 44.5,38.5 parent: 2 - - uid: 733 + - uid: 2278 components: - type: Transform - pos: 13.5,-29.5 + pos: 44.5,37.5 parent: 2 - - uid: 734 + - uid: 2306 components: - type: Transform - pos: 14.5,-29.5 + rot: -1.5707963267948966 rad + pos: 12.5,-57.5 parent: 2 - - uid: 735 + - uid: 2313 components: - type: Transform - pos: 15.5,-29.5 + pos: 40.5,18.5 parent: 2 - - uid: 736 + - uid: 2327 components: - type: Transform - pos: 16.5,-29.5 + pos: 37.5,25.5 parent: 2 - - uid: 737 + - uid: 2328 components: - type: Transform - pos: 16.5,-30.5 + pos: 42.5,28.5 parent: 2 - - uid: 745 + - uid: 2329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-34.5 + pos: 42.5,27.5 parent: 2 - - uid: 753 + - uid: 2330 components: - type: Transform - pos: 14.5,-22.5 + pos: 42.5,26.5 parent: 2 - - uid: 754 + - uid: 2331 components: - type: Transform - pos: 15.5,-22.5 + pos: 42.5,25.5 parent: 2 - - uid: 757 + - uid: 2334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-34.5 + pos: 43.5,26.5 parent: 2 - - uid: 758 + - uid: 2335 components: - type: Transform - pos: 19.5,-22.5 + pos: 44.5,26.5 parent: 2 - - uid: 759 + - uid: 2336 components: - type: Transform - pos: 20.5,-22.5 + pos: 45.5,26.5 parent: 2 - - uid: 760 + - uid: 2337 components: - type: Transform - pos: 21.5,-22.5 + pos: 46.5,26.5 parent: 2 - - uid: 761 + - uid: 2338 components: - type: Transform - pos: 22.5,-22.5 + pos: 46.5,25.5 parent: 2 - - uid: 762 + - uid: 2339 components: - type: Transform - pos: 23.5,-22.5 + pos: 46.5,24.5 parent: 2 - - uid: 765 + - uid: 2340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-32.5 + pos: 46.5,23.5 parent: 2 - - uid: 766 + - uid: 2341 components: - type: Transform - pos: 23.5,-25.5 + pos: 46.5,22.5 parent: 2 - - uid: 767 + - uid: 2342 components: - type: Transform - pos: 24.5,-25.5 + pos: 46.5,21.5 parent: 2 - - uid: 768 + - uid: 2343 components: - type: Transform - pos: 24.5,-26.5 + pos: 45.5,21.5 parent: 2 - - uid: 776 + - uid: 2344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-32.5 + pos: 44.5,21.5 parent: 2 - - uid: 777 + - uid: 2345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-32.5 + pos: 43.5,21.5 parent: 2 - - uid: 785 + - uid: 2346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-32.5 + pos: 42.5,21.5 parent: 2 - - uid: 804 + - uid: 2348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-32.5 + pos: 40.5,21.5 parent: 2 - - uid: 805 + - uid: 2349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-33.5 + pos: 40.5,20.5 parent: 2 - - uid: 823 + - uid: 2350 components: - type: Transform - pos: 28.5,-25.5 + pos: 40.5,19.5 parent: 2 - - uid: 824 + - uid: 2400 components: - type: Transform - pos: 28.5,-26.5 + rot: 1.5707963267948966 rad + pos: 51.5,-27.5 parent: 2 - - uid: 838 + - uid: 2439 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-31.5 + pos: 49.5,-30.5 parent: 2 - - uid: 839 + - uid: 2441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-30.5 + pos: 51.5,-23.5 parent: 2 - - uid: 842 + - uid: 2443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-29.5 + pos: 40.5,17.5 parent: 2 - - uid: 895 + - uid: 2444 components: - type: Transform - pos: -9.5,14.5 + pos: 40.5,16.5 parent: 2 - - uid: 900 + - uid: 2445 components: - type: Transform - pos: -10.5,14.5 + pos: 39.5,16.5 parent: 2 - - uid: 915 + - uid: 2446 components: - type: Transform - pos: 9.5,-33.5 + pos: 38.5,16.5 parent: 2 - - uid: 916 + - uid: 2447 components: - type: Transform - pos: 9.5,-34.5 + pos: 37.5,16.5 parent: 2 - - uid: 917 + - uid: 2448 components: - type: Transform - pos: 9.5,-35.5 + pos: 36.5,16.5 parent: 2 - - uid: 918 + - uid: 2449 components: - type: Transform - pos: 9.5,-36.5 + pos: 35.5,16.5 parent: 2 - - uid: 919 + - uid: 2450 components: - type: Transform - pos: 9.5,-37.5 + pos: 34.5,16.5 parent: 2 - - uid: 920 + - uid: 2485 components: - type: Transform - pos: 14.5,-37.5 + pos: 3.5,14.5 parent: 2 - - uid: 949 + - uid: 2563 components: - type: Transform - pos: 15.5,-37.5 + pos: 29.5,33.5 parent: 2 - - uid: 952 + - uid: 2568 components: - type: Transform - pos: 18.5,-37.5 + pos: 33.5,34.5 parent: 2 - - uid: 953 + - uid: 2569 components: - type: Transform - pos: 15.5,-38.5 + pos: 29.5,34.5 parent: 2 - - uid: 954 + - uid: 2570 components: - type: Transform - pos: 15.5,-39.5 + pos: 29.5,35.5 parent: 2 - - uid: 955 + - uid: 2571 components: - type: Transform - pos: 15.5,-40.5 + pos: 29.5,37.5 parent: 2 - - uid: 956 + - uid: 2572 components: - type: Transform - pos: 24.5,-37.5 + pos: 33.5,35.5 parent: 2 - - uid: 957 + - uid: 2573 components: - type: Transform - pos: 24.5,-40.5 + pos: 33.5,36.5 parent: 2 - - uid: 958 + - uid: 2574 components: - type: Transform - pos: 18.5,-40.5 + pos: 33.5,37.5 parent: 2 - - uid: 1007 + - uid: 2575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-34.5 + pos: 33.5,38.5 parent: 2 - - uid: 1008 + - uid: 2576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-34.5 + pos: 32.5,38.5 parent: 2 - - uid: 1013 + - uid: 2577 components: - type: Transform - pos: -27.5,7.5 + pos: 31.5,38.5 parent: 2 - - uid: 1021 + - uid: 2578 components: - type: Transform - pos: 14.5,-43.5 + pos: 30.5,38.5 parent: 2 - - uid: 1022 + - uid: 2579 components: - type: Transform - pos: 15.5,-43.5 + pos: 29.5,38.5 parent: 2 - - uid: 1023 + - uid: 2580 components: - type: Transform - pos: 15.5,-42.5 + pos: 29.5,39.5 parent: 2 - - uid: 1109 + - uid: 2581 components: - type: Transform - pos: -11.5,14.5 + pos: 29.5,40.5 parent: 2 - - uid: 1218 + - uid: 2582 components: - type: Transform - pos: 37.5,-29.5 + pos: 29.5,41.5 parent: 2 - - uid: 1219 + - uid: 2583 components: - type: Transform - pos: 16.5,-15.5 + pos: 29.5,42.5 parent: 2 - - uid: 1232 + - uid: 2584 components: - type: Transform - pos: -27.5,11.5 + pos: 29.5,43.5 parent: 2 - - uid: 1250 + - uid: 2585 components: - type: Transform - pos: 30.5,-58.5 + pos: 30.5,43.5 parent: 2 - - uid: 1264 + - uid: 2586 components: - type: Transform - pos: 30.5,-46.5 + pos: 31.5,43.5 parent: 2 - - uid: 1265 + - uid: 2587 components: - type: Transform - pos: 30.5,-47.5 + pos: 31.5,44.5 parent: 2 - - uid: 1266 + - uid: 2588 components: - type: Transform - pos: 30.5,-48.5 + pos: 33.5,44.5 parent: 2 - - uid: 1267 + - uid: 2589 components: - type: Transform - pos: 30.5,-49.5 + pos: 34.5,44.5 parent: 2 - - uid: 1268 + - uid: 2590 components: - type: Transform - pos: 30.5,-50.5 + pos: 35.5,44.5 parent: 2 - - uid: 1269 + - uid: 2591 components: - type: Transform - pos: 30.5,-51.5 + pos: 35.5,43.5 parent: 2 - - uid: 1270 + - uid: 2592 components: - type: Transform - pos: 30.5,-52.5 + pos: 35.5,42.5 parent: 2 - - uid: 1271 + - uid: 2593 components: - type: Transform - pos: 30.5,-53.5 + pos: 35.5,41.5 parent: 2 - - uid: 1272 + - uid: 2594 components: - type: Transform - pos: 30.5,-54.5 + pos: 36.5,44.5 parent: 2 - - uid: 1273 + - uid: 2595 components: - type: Transform - pos: 30.5,-55.5 + pos: 37.5,44.5 parent: 2 - - uid: 1274 + - uid: 2596 components: - type: Transform - pos: 11.5,-57.5 + pos: 38.5,44.5 parent: 2 - - uid: 1276 + - uid: 2597 components: - type: Transform - pos: 30.5,-57.5 + pos: 38.5,43.5 parent: 2 - - uid: 1277 + - uid: 2598 components: - type: Transform - pos: 30.5,-56.5 + pos: 38.5,42.5 parent: 2 - - uid: 1278 + - uid: 2599 components: - type: Transform - pos: 12.5,-43.5 + pos: 38.5,41.5 parent: 2 - - uid: 1279 + - uid: 2600 components: - type: Transform - pos: 12.5,-44.5 + pos: 38.5,40.5 parent: 2 - - uid: 1280 + - uid: 2601 components: - type: Transform - pos: 12.5,-45.5 + pos: 38.5,39.5 parent: 2 - - uid: 1281 + - uid: 2602 components: - type: Transform - pos: 11.5,-45.5 + pos: 37.5,39.5 parent: 2 - - uid: 1282 + - uid: 2603 components: - type: Transform - pos: 11.5,-46.5 + pos: 36.5,39.5 parent: 2 - - uid: 1283 + - uid: 2604 components: - type: Transform - pos: 11.5,-47.5 + pos: 35.5,39.5 parent: 2 - - uid: 1284 + - uid: 2605 components: - type: Transform - pos: 11.5,-48.5 + pos: 34.5,39.5 parent: 2 - - uid: 1285 + - uid: 2606 components: - type: Transform - pos: 11.5,-49.5 + pos: 34.5,38.5 parent: 2 - - uid: 1286 + - uid: 2617 components: - type: Transform - pos: 10.5,-47.5 + pos: 2.5,14.5 parent: 2 - - uid: 1287 + - uid: 2626 components: - type: Transform - pos: 10.5,-48.5 + pos: 20.5,43.5 parent: 2 - - uid: 1288 + - uid: 2627 components: - type: Transform - pos: 10.5,-49.5 + pos: 20.5,42.5 parent: 2 - - uid: 1289 + - uid: 2628 components: - type: Transform - pos: 10.5,-50.5 + pos: 19.5,42.5 parent: 2 - - uid: 1290 + - uid: 2629 components: - type: Transform - pos: 10.5,-51.5 + pos: 19.5,43.5 parent: 2 - - uid: 1291 + - uid: 2630 components: - type: Transform - pos: 10.5,-52.5 + pos: 18.5,43.5 parent: 2 - - uid: 1292 + - uid: 2631 components: - type: Transform - pos: 11.5,-50.5 + pos: 17.5,43.5 parent: 2 - - uid: 1293 + - uid: 2632 components: - type: Transform - pos: 11.5,-51.5 + pos: 17.5,42.5 parent: 2 - - uid: 1294 + - uid: 2633 components: - type: Transform - pos: 11.5,-52.5 + pos: 16.5,42.5 parent: 2 - - uid: 1295 + - uid: 2634 components: - type: Transform - pos: 11.5,-54.5 + pos: 16.5,41.5 parent: 2 - - uid: 1296 + - uid: 2635 components: - type: Transform - pos: 11.5,-53.5 + pos: 16.5,40.5 parent: 2 - - uid: 1297 + - uid: 2637 components: - type: Transform - pos: 11.5,-55.5 + pos: 16.5,38.5 parent: 2 - - uid: 1298 + - uid: 2638 components: - type: Transform - pos: 10.5,-55.5 + pos: 17.5,38.5 parent: 2 - - uid: 1299 + - uid: 2639 components: - type: Transform - pos: 30.5,-59.5 + pos: 19.5,38.5 parent: 2 - - uid: 1318 + - uid: 2640 components: - type: Transform - pos: -10.5,-11.5 + pos: 20.5,38.5 parent: 2 - - uid: 1326 + - uid: 2641 components: - type: Transform - pos: 5.5,-33.5 + pos: 20.5,39.5 parent: 2 - - uid: 1333 + - uid: 2642 components: - type: Transform - pos: -7.5,-15.5 + pos: 20.5,40.5 parent: 2 - - uid: 1337 + - uid: 2643 components: - type: Transform - pos: 2.5,13.5 + pos: 20.5,41.5 parent: 2 - - uid: 1348 + - uid: 2644 components: - type: Transform - pos: 5.5,-34.5 + pos: 25.5,38.5 parent: 2 - - uid: 1349 + - uid: 2645 components: - type: Transform - pos: 5.5,-35.5 + pos: 25.5,39.5 parent: 2 - - uid: 1350 + - uid: 2646 components: - type: Transform - pos: 5.5,-36.5 + pos: 25.5,40.5 parent: 2 - - uid: 1351 + - uid: 2647 components: - type: Transform - pos: 5.5,-37.5 + pos: 25.5,42.5 parent: 2 - - uid: 1352 + - uid: 2648 components: - type: Transform - pos: 4.5,-37.5 + pos: 25.5,43.5 parent: 2 - - uid: 1353 + - uid: 2652 components: - type: Transform - pos: 3.5,-37.5 + pos: 12.5,42.5 parent: 2 - - uid: 1354 + - uid: 2653 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 2654 components: - type: Transform - pos: 2.5,-37.5 + pos: 12.5,40.5 parent: 2 - - uid: 1355 + - uid: 2655 components: - type: Transform - pos: 1.5,-37.5 + pos: 12.5,39.5 parent: 2 - - uid: 1356 + - uid: 2656 components: - type: Transform - pos: 0.5,-37.5 + pos: 12.5,38.5 parent: 2 - - uid: 1487 + - uid: 2657 components: - type: Transform - pos: 16.5,39.5 + pos: 12.5,37.5 parent: 2 - - uid: 1545 + - uid: 2658 components: - type: Transform - pos: -8.5,14.5 + pos: 16.5,35.5 parent: 2 - - uid: 1576 + - uid: 2659 components: - type: Transform - pos: 24.5,-13.5 + pos: 15.5,34.5 parent: 2 - - uid: 1577 + - uid: 2660 components: - type: Transform - pos: 10.5,-2.5 + pos: 12.5,35.5 parent: 2 - - uid: 1597 + - uid: 2661 components: - type: Transform - pos: 40.5,-13.5 + pos: 31.5,-22.5 parent: 2 - - uid: 1638 + - uid: 2662 components: - type: Transform - pos: 48.5,-3.5 + pos: 12.5,36.5 parent: 2 - - uid: 1639 + - uid: 2663 components: - type: Transform - pos: 48.5,-4.5 + pos: 13.5,34.5 parent: 2 - - uid: 1640 + - uid: 2664 components: - type: Transform - pos: 48.5,-5.5 + pos: 16.5,37.5 parent: 2 - - uid: 1641 + - uid: 2665 components: - type: Transform - pos: 48.5,-6.5 + pos: 14.5,34.5 parent: 2 - - uid: 1643 + - uid: 2785 components: - type: Transform - pos: 48.5,-8.5 + rot: 1.5707963267948966 rad + pos: 49.5,-24.5 parent: 2 - - uid: 1652 + - uid: 2800 components: - type: Transform - pos: 48.5,-9.5 + pos: 33.5,49.5 parent: 2 - - uid: 1673 + - uid: 2801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-15.5 + pos: 33.5,48.5 parent: 2 - - uid: 1699 + - uid: 2802 components: - type: Transform - pos: 46.5,-13.5 + pos: 33.5,47.5 parent: 2 - - uid: 1700 + - uid: 2803 components: - type: Transform - pos: 45.5,-13.5 + pos: 34.5,47.5 parent: 2 - - uid: 1701 + - uid: 2804 components: - type: Transform - pos: 44.5,-13.5 + pos: 35.5,47.5 parent: 2 - - uid: 1702 + - uid: 2805 components: - type: Transform - pos: 43.5,-13.5 + pos: 36.5,47.5 parent: 2 - - uid: 1703 + - uid: 2810 components: - type: Transform - pos: 42.5,-13.5 + pos: 18.5,46.5 parent: 2 - - uid: 1704 + - uid: 2811 components: - type: Transform - pos: 41.5,-13.5 + pos: 18.5,47.5 parent: 2 - - uid: 1705 + - uid: 2812 components: - type: Transform - pos: 46.5,-17.5 + pos: 19.5,47.5 parent: 2 - - uid: 1706 + - uid: 2813 components: - type: Transform - pos: 45.5,-17.5 + pos: 20.5,47.5 parent: 2 - - uid: 1707 + - uid: 2814 components: - type: Transform - pos: 44.5,-17.5 + pos: 21.5,47.5 parent: 2 - - uid: 1708 + - uid: 2815 components: - type: Transform - pos: 43.5,-17.5 + pos: 21.5,48.5 parent: 2 - - uid: 1709 + - uid: 2816 components: - type: Transform - pos: 42.5,-17.5 + pos: 21.5,49.5 parent: 2 - - uid: 1716 + - uid: 2848 components: - type: Transform - pos: 41.5,-17.5 + pos: 59.5,-12.5 parent: 2 - - uid: 1720 + - uid: 2849 components: - type: Transform - pos: 40.5,-17.5 + pos: 59.5,-11.5 parent: 2 - - uid: 1828 + - uid: 2850 components: - type: Transform - pos: 29.5,-25.5 + pos: 59.5,-10.5 parent: 2 - - uid: 1980 + - uid: 2851 components: - type: Transform - pos: 58.5,-14.5 + pos: 59.5,-9.5 parent: 2 - - uid: 1981 + - uid: 2852 components: - type: Transform - pos: 58.5,-13.5 + pos: 59.5,-8.5 parent: 2 - - uid: 1984 + - uid: 2853 components: - type: Transform - pos: 58.5,-12.5 + pos: 58.5,-8.5 parent: 2 - - uid: 1985 + - uid: 2854 components: - type: Transform - pos: 57.5,-12.5 + pos: 54.5,-8.5 parent: 2 - - uid: 1986 + - uid: 2855 components: - type: Transform - pos: 56.5,-12.5 + pos: 53.5,-8.5 parent: 2 - - uid: 1987 + - uid: 2856 components: - type: Transform - pos: 55.5,-12.5 + pos: 53.5,-9.5 parent: 2 - - uid: 1988 + - uid: 2857 components: - type: Transform - pos: 54.5,-12.5 + pos: 53.5,-10.5 parent: 2 - - uid: 1989 + - uid: 2858 components: - type: Transform - pos: 53.5,-12.5 + pos: 53.5,-11.5 parent: 2 - - uid: 2011 + - uid: 2868 components: - type: Transform - pos: 5.5,29.5 + pos: 64.5,-12.5 parent: 2 - - uid: 2012 + - uid: 2869 components: - type: Transform - pos: 5.5,30.5 + pos: 64.5,-13.5 parent: 2 - - uid: 2013 + - uid: 2870 components: - type: Transform - pos: 5.5,31.5 + pos: 64.5,-14.5 parent: 2 - - uid: 2014 + - uid: 2912 components: - type: Transform - pos: 5.5,32.5 + rot: 1.5707963267948966 rad + pos: 51.5,-24.5 parent: 2 - - uid: 2015 + - uid: 2918 components: - type: Transform - pos: 5.5,33.5 + rot: 1.5707963267948966 rad + pos: 50.5,-24.5 parent: 2 - - uid: 2016 + - uid: 2933 components: - type: Transform - pos: 6.5,33.5 + pos: 68.5,-2.5 parent: 2 - - uid: 2017 + - uid: 2934 components: - type: Transform - pos: 7.5,33.5 + pos: 68.5,-3.5 parent: 2 - - uid: 2018 + - uid: 2935 components: - type: Transform - pos: 8.5,33.5 + pos: 68.5,-4.5 parent: 2 - - uid: 2019 + - uid: 2936 components: - type: Transform - pos: 9.5,33.5 + pos: 68.5,-5.5 parent: 2 - - uid: 2020 + - uid: 2937 components: - type: Transform - pos: 10.5,33.5 + pos: 68.5,-6.5 parent: 2 - - uid: 2024 + - uid: 2951 components: - type: Transform - pos: -22.5,-11.5 + pos: 51.5,-3.5 parent: 2 - - uid: 2033 + - uid: 2952 components: - type: Transform - pos: -14.5,-15.5 + pos: 51.5,-2.5 parent: 2 - - uid: 2043 + - uid: 2953 components: - type: Transform - pos: -16.5,-15.5 + pos: 52.5,-2.5 parent: 2 - - uid: 2070 + - uid: 2955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-30.5 + pos: 49.5,-9.5 parent: 2 - - uid: 2075 + - uid: 2956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-30.5 + pos: 51.5,-9.5 parent: 2 - - uid: 2085 + - uid: 3022 components: - type: Transform - pos: -17.5,14.5 + pos: 43.5,12.5 parent: 2 - - uid: 2088 + - uid: 3023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-24.5 + pos: 43.5,11.5 parent: 2 - - uid: 2102 + - uid: 3024 components: - type: Transform - pos: 24.5,28.5 + pos: 43.5,10.5 parent: 2 - - uid: 2138 + - uid: 3025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-28.5 + pos: 43.5,9.5 parent: 2 - - uid: 2141 + - uid: 3026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-28.5 + pos: 43.5,8.5 parent: 2 - - uid: 2142 + - uid: 3027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-30.5 + pos: 44.5,8.5 parent: 2 - - uid: 2144 + - uid: 3028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-28.5 + pos: 45.5,8.5 parent: 2 - - uid: 2190 + - uid: 3029 components: - type: Transform - pos: 28.5,16.5 + pos: 46.5,8.5 parent: 2 - - uid: 2191 + - uid: 3030 components: - type: Transform - pos: 29.5,16.5 + pos: 47.5,8.5 parent: 2 - - uid: 2192 + - uid: 3031 components: - type: Transform - pos: 30.5,16.5 + pos: 48.5,8.5 parent: 2 - - uid: 2193 + - uid: 3032 components: - type: Transform - pos: 31.5,16.5 + pos: 48.5,7.5 parent: 2 - - uid: 2194 + - uid: 3033 components: - type: Transform - pos: 32.5,16.5 + pos: 49.5,7.5 parent: 2 - - uid: 2195 + - uid: 3034 components: - type: Transform - pos: 33.5,16.5 + pos: 50.5,7.5 parent: 2 - - uid: 2196 + - uid: 3035 components: - type: Transform - pos: 28.5,19.5 + pos: 51.5,7.5 parent: 2 - - uid: 2197 + - uid: 3036 components: - type: Transform - pos: 28.5,22.5 + pos: 52.5,7.5 parent: 2 - - uid: 2198 + - uid: 3037 components: - type: Transform - pos: 28.5,26.5 + pos: 56.5,7.5 parent: 2 - - uid: 2199 + - uid: 3038 components: - type: Transform - pos: 28.5,27.5 + pos: 55.5,7.5 parent: 2 - - uid: 2200 + - uid: 3039 components: - type: Transform - pos: 29.5,27.5 + pos: 54.5,7.5 parent: 2 - - uid: 2201 + - uid: 3047 components: - type: Transform - pos: 30.5,27.5 + pos: 48.5,13.5 parent: 2 - - uid: 2202 + - uid: 3048 components: - type: Transform - pos: 31.5,27.5 + pos: 48.5,12.5 parent: 2 - - uid: 2203 + - uid: 3049 components: - type: Transform - pos: 28.5,28.5 + pos: 48.5,15.5 parent: 2 - - uid: 2204 + - uid: 3050 components: - type: Transform - pos: 28.5,29.5 + pos: 48.5,16.5 parent: 2 - - uid: 2205 + - uid: 3052 components: - type: Transform - pos: 28.5,30.5 + pos: 48.5,20.5 parent: 2 - - uid: 2206 + - uid: 3063 components: - type: Transform - pos: 28.5,31.5 + pos: 40.5,39.5 parent: 2 - - uid: 2207 + - uid: 3064 components: - type: Transform - pos: 29.5,31.5 + pos: 40.5,40.5 parent: 2 - - uid: 2208 + - uid: 3065 components: - type: Transform - pos: 30.5,31.5 + pos: 44.5,39.5 parent: 2 - - uid: 2209 + - uid: 3071 components: - type: Transform - pos: 31.5,31.5 + pos: 39.5,43.5 parent: 2 - - uid: 2210 + - uid: 3072 components: - type: Transform - pos: 32.5,31.5 + pos: 40.5,43.5 parent: 2 - - uid: 2211 + - uid: 3073 components: - type: Transform - pos: 34.5,31.5 + pos: 41.5,43.5 parent: 2 - - uid: 2212 + - uid: 3074 components: - type: Transform - pos: 35.5,31.5 + pos: 42.5,43.5 parent: 2 - - uid: 2213 + - uid: 3075 components: - type: Transform - pos: 35.5,32.5 + pos: 42.5,44.5 parent: 2 - - uid: 2214 + - uid: 3076 components: - type: Transform - pos: 36.5,32.5 + pos: 42.5,45.5 parent: 2 - - uid: 2215 + - uid: 3077 components: - type: Transform - pos: 37.5,32.5 + pos: 42.5,46.5 parent: 2 - - uid: 2216 + - uid: 3078 components: - type: Transform - pos: 38.5,32.5 + pos: 42.5,47.5 parent: 2 - - uid: 2217 + - uid: 3079 components: - type: Transform - pos: 38.5,31.5 + pos: 45.5,45.5 parent: 2 - - uid: 2218 + - uid: 3080 components: - type: Transform - pos: 35.5,33.5 + pos: 45.5,44.5 parent: 2 - - uid: 2219 + - uid: 3081 components: - type: Transform - pos: 35.5,34.5 + pos: 45.5,43.5 parent: 2 - - uid: 2220 + - uid: 3082 components: - type: Transform - pos: 35.5,35.5 + pos: 46.5,43.5 parent: 2 - - uid: 2221 + - uid: 3083 components: - type: Transform - pos: 35.5,36.5 + pos: 46.5,42.5 parent: 2 - - uid: 2222 + - uid: 3084 components: - type: Transform - pos: 36.5,36.5 + pos: 46.5,41.5 parent: 2 - - uid: 2223 + - uid: 3085 components: - type: Transform - pos: 36.5,37.5 + pos: 46.5,40.5 parent: 2 - - uid: 2224 + - uid: 3119 components: - type: Transform - pos: 37.5,37.5 + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 parent: 2 - - uid: 2225 + - uid: 3125 components: - type: Transform - pos: 38.5,37.5 + pos: 50.5,45.5 parent: 2 - - uid: 2226 + - uid: 3133 components: - type: Transform - pos: 39.5,37.5 + rot: 1.5707963267948966 rad + pos: -25.5,-19.5 parent: 2 - - uid: 2227 + - uid: 3135 components: - type: Transform - pos: 40.5,37.5 + rot: 1.5707963267948966 rad + pos: -21.5,-3.5 parent: 2 - - uid: 2228 + - uid: 3142 components: - type: Transform - pos: 40.5,36.5 + rot: 1.5707963267948966 rad + pos: 37.5,28.5 parent: 2 - - uid: 2229 + - uid: 3146 components: - type: Transform - pos: 40.5,38.5 + pos: 47.5,36.5 parent: 2 - - uid: 2230 + - uid: 3149 components: - type: Transform - pos: 41.5,38.5 + pos: 47.5,33.5 parent: 2 - - uid: 2231 + - uid: 3150 components: - type: Transform - pos: 42.5,38.5 + pos: 47.5,32.5 parent: 2 - - uid: 2232 + - uid: 3153 components: - type: Transform - pos: 42.5,37.5 + pos: 47.5,29.5 parent: 2 - - uid: 2233 + - uid: 3155 components: - type: Transform - pos: 42.5,36.5 + pos: 48.5,28.5 parent: 2 - - uid: 2234 + - uid: 3158 components: - type: Transform - pos: 42.5,35.5 + pos: 51.5,28.5 parent: 2 - - uid: 2235 + - uid: 3164 components: - type: Transform - pos: 42.5,34.5 + pos: 40.5,37.5 parent: 2 - - uid: 2260 + - uid: 3169 components: - type: Transform - pos: 35.5,29.5 + pos: 35.5,35.5 parent: 2 - - uid: 2261 + - uid: 3170 components: - type: Transform - pos: 36.5,29.5 + pos: 38.5,37.5 parent: 2 - - uid: 2262 + - uid: 3178 components: - type: Transform - pos: 37.5,29.5 + pos: 52.5,33.5 parent: 2 - - uid: 2263 + - uid: 3179 components: - type: Transform - pos: 38.5,29.5 + pos: 35.5,34.5 parent: 2 - - uid: 2264 + - uid: 3180 components: - type: Transform - pos: 39.5,29.5 + pos: 36.5,35.5 parent: 2 - - uid: 2265 + - uid: 3181 components: - type: Transform - pos: 41.5,29.5 + pos: 38.5,36.5 parent: 2 - - uid: 2266 + - uid: 3182 components: - type: Transform - pos: 40.5,29.5 + rot: -1.5707963267948966 rad + pos: 69.5,-10.5 parent: 2 - - uid: 2267 + - uid: 3194 components: - type: Transform - pos: 42.5,29.5 + pos: 38.5,29.5 parent: 2 - - uid: 2268 + - uid: 3195 components: - type: Transform - pos: 43.5,29.5 + pos: 43.5,28.5 parent: 2 - - uid: 2269 + - uid: 3196 components: - type: Transform - pos: 44.5,29.5 + pos: 43.5,27.5 parent: 2 - - uid: 2270 + - uid: 3198 components: - type: Transform - pos: 44.5,30.5 + pos: 61.5,29.5 parent: 2 - - uid: 2271 + - uid: 3199 components: - type: Transform - pos: 44.5,31.5 + pos: 61.5,28.5 parent: 2 - - uid: 2272 + - uid: 3201 components: - type: Transform - pos: 44.5,32.5 + pos: 65.5,29.5 parent: 2 - - uid: 2273 + - uid: 3203 components: - type: Transform - pos: 44.5,33.5 + rot: -1.5707963267948966 rad + pos: 41.5,37.5 parent: 2 - - uid: 2275 + - uid: 3207 components: - type: Transform - pos: 42.5,30.5 + rot: 3.141592653589793 rad + pos: 32.5,32.5 parent: 2 - - uid: 2276 + - uid: 3210 components: - type: Transform - pos: 43.5,38.5 + rot: -1.5707963267948966 rad + pos: -4.5,-17.5 parent: 2 - - uid: 2277 + - uid: 3236 components: - type: Transform - pos: 44.5,38.5 + rot: -1.5707963267948966 rad + pos: 70.5,-13.5 parent: 2 - - uid: 2278 + - uid: 3256 components: - type: Transform - pos: 44.5,37.5 + rot: 3.141592653589793 rad + pos: 48.5,29.5 parent: 2 - - uid: 2327 + - uid: 3262 components: - type: Transform - pos: 37.5,25.5 + pos: 62.5,29.5 parent: 2 - - uid: 2328 + - uid: 3264 components: - type: Transform - pos: 42.5,28.5 + pos: 62.5,45.5 parent: 2 - - uid: 2329 + - uid: 3266 components: - type: Transform - pos: 42.5,27.5 + pos: 63.5,45.5 parent: 2 - - uid: 2330 + - uid: 3268 components: - type: Transform - pos: 42.5,26.5 + pos: 65.5,45.5 parent: 2 - - uid: 2331 + - uid: 3269 components: - type: Transform - pos: 42.5,25.5 + pos: 65.5,44.5 parent: 2 - - uid: 2334 + - uid: 3270 components: - type: Transform - pos: 43.5,26.5 + pos: 65.5,43.5 parent: 2 - - uid: 2335 + - uid: 3271 components: - type: Transform - pos: 44.5,26.5 + pos: 65.5,30.5 parent: 2 - - uid: 2336 + - uid: 3272 components: - type: Transform - pos: 45.5,26.5 + pos: 65.5,31.5 parent: 2 - - uid: 2337 + - uid: 3273 components: - type: Transform - pos: 46.5,26.5 + pos: 65.5,32.5 parent: 2 - - uid: 2338 + - uid: 3274 components: - type: Transform - pos: 46.5,25.5 + pos: 65.5,33.5 parent: 2 - - uid: 2339 + - uid: 3275 components: - type: Transform - pos: 46.5,24.5 + pos: 65.5,34.5 parent: 2 - - uid: 2340 + - uid: 3279 components: - type: Transform - pos: 46.5,23.5 + pos: 65.5,38.5 parent: 2 - - uid: 2341 + - uid: 3280 components: - type: Transform - pos: 46.5,22.5 + pos: 65.5,39.5 parent: 2 - - uid: 2342 + - uid: 3281 components: - type: Transform - pos: 46.5,21.5 + pos: 65.5,40.5 parent: 2 - - uid: 2343 + - uid: 3282 components: - type: Transform - pos: 45.5,21.5 + pos: 65.5,41.5 parent: 2 - - uid: 2344 + - uid: 3283 components: - type: Transform - pos: 44.5,21.5 + pos: 65.5,42.5 parent: 2 - - uid: 2345 + - uid: 3285 components: - type: Transform - pos: 43.5,21.5 + rot: 1.5707963267948966 rad + pos: 47.5,-22.5 parent: 2 - - uid: 2346 + - uid: 3287 components: - type: Transform - pos: 42.5,21.5 + rot: 1.5707963267948966 rad + pos: 51.5,-26.5 parent: 2 - - uid: 2347 + - uid: 3288 components: - type: Transform - pos: 41.5,21.5 + rot: 1.5707963267948966 rad + pos: 51.5,-28.5 parent: 2 - - uid: 2348 + - uid: 3298 components: - type: Transform - pos: 40.5,21.5 + rot: 1.5707963267948966 rad + pos: 50.5,-26.5 parent: 2 - - uid: 2349 + - uid: 3300 components: - type: Transform - pos: 40.5,20.5 + rot: 1.5707963267948966 rad + pos: 51.5,-25.5 parent: 2 - - uid: 2350 + - uid: 3305 components: - type: Transform - pos: 40.5,19.5 + rot: 1.5707963267948966 rad + pos: 48.5,-24.5 parent: 2 - - uid: 2400 + - uid: 3306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-27.5 + pos: 47.5,-28.5 parent: 2 - - uid: 2439 + - uid: 3313 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-30.5 + pos: 47.5,-26.5 parent: 2 - - uid: 2441 + - uid: 3315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-23.5 + pos: 49.5,49.5 parent: 2 - - uid: 2443 + - uid: 3316 components: - type: Transform - pos: 40.5,17.5 + pos: 63.5,49.5 parent: 2 - - uid: 2444 + - uid: 3318 components: - type: Transform - pos: 40.5,16.5 + rot: -1.5707963267948966 rad + pos: -7.5,-17.5 parent: 2 - - uid: 2445 + - uid: 3352 components: - type: Transform - pos: 39.5,16.5 + pos: 72.5,47.5 parent: 2 - - uid: 2446 + - uid: 3353 components: - type: Transform - pos: 38.5,16.5 + pos: 71.5,47.5 parent: 2 - - uid: 2447 + - uid: 3354 components: - type: Transform - pos: 37.5,16.5 + pos: 69.5,47.5 parent: 2 - - uid: 2448 + - uid: 3355 components: - type: Transform - pos: 36.5,16.5 + pos: 70.5,47.5 parent: 2 - - uid: 2449 + - uid: 3361 components: - type: Transform - pos: 35.5,16.5 + pos: 72.5,41.5 parent: 2 - - uid: 2450 + - uid: 3362 components: - type: Transform - pos: 34.5,16.5 + pos: 71.5,41.5 parent: 2 - - uid: 2479 + - uid: 3363 components: - type: Transform - pos: -0.5,14.5 + pos: 71.5,42.5 parent: 2 - - uid: 2485 + - uid: 3370 components: - type: Transform - pos: 3.5,14.5 + pos: 72.5,43.5 parent: 2 - - uid: 2563 + - uid: 3371 components: - type: Transform - pos: 29.5,33.5 + pos: 71.5,43.5 parent: 2 - - uid: 2564 + - uid: 3372 components: - type: Transform - pos: 30.5,33.5 + pos: 70.5,43.5 parent: 2 - - uid: 2565 + - uid: 3373 components: - type: Transform - pos: 31.5,33.5 + pos: 72.5,35.5 parent: 2 - - uid: 2566 + - uid: 3374 components: - type: Transform - pos: 32.5,33.5 + pos: 71.5,35.5 parent: 2 - - uid: 2567 + - uid: 3375 components: - type: Transform - pos: 33.5,33.5 + pos: 72.5,36.5 parent: 2 - - uid: 2568 + - uid: 3376 components: - type: Transform - pos: 33.5,34.5 + pos: 72.5,38.5 parent: 2 - - uid: 2569 + - uid: 3377 components: - type: Transform - pos: 29.5,34.5 + pos: 72.5,37.5 parent: 2 - - uid: 2570 + - uid: 3378 components: - type: Transform - pos: 29.5,35.5 + pos: 72.5,39.5 parent: 2 - - uid: 2571 + - uid: 3379 components: - type: Transform - pos: 29.5,37.5 + pos: 72.5,40.5 parent: 2 - - uid: 2572 + - uid: 3383 components: - type: Transform - pos: 33.5,35.5 + pos: 70.5,35.5 parent: 2 - - uid: 2573 + - uid: 3384 components: - type: Transform - pos: 33.5,36.5 + pos: 69.5,35.5 parent: 2 - - uid: 2574 + - uid: 3385 components: - type: Transform - pos: 33.5,37.5 + pos: 68.5,35.5 parent: 2 - - uid: 2575 + - uid: 3419 components: - type: Transform - pos: 33.5,38.5 + pos: 68.5,22.5 parent: 2 - - uid: 2576 + - uid: 3420 components: - type: Transform - pos: 32.5,38.5 + pos: 68.5,21.5 parent: 2 - - uid: 2577 + - uid: 3421 components: - type: Transform - pos: 31.5,38.5 + pos: 68.5,20.5 parent: 2 - - uid: 2578 + - uid: 3422 components: - type: Transform - pos: 30.5,38.5 + pos: 68.5,19.5 parent: 2 - - uid: 2579 + - uid: 3423 components: - type: Transform - pos: 29.5,38.5 + pos: 69.5,19.5 parent: 2 - - uid: 2580 + - uid: 3424 components: - type: Transform - pos: 29.5,39.5 + pos: 70.5,19.5 parent: 2 - - uid: 2581 + - uid: 3425 components: - type: Transform - pos: 29.5,40.5 + pos: 71.5,19.5 parent: 2 - - uid: 2582 + - uid: 3426 components: - type: Transform - pos: 29.5,41.5 + pos: 72.5,19.5 parent: 2 - - uid: 2583 + - uid: 3427 components: - type: Transform - pos: 29.5,42.5 + pos: 73.5,19.5 parent: 2 - - uid: 2584 + - uid: 3435 components: - type: Transform - pos: 29.5,43.5 + pos: 72.5,24.5 parent: 2 - - uid: 2585 + - uid: 3436 components: - type: Transform - pos: 30.5,43.5 + pos: 70.5,24.5 parent: 2 - - uid: 2586 + - uid: 3437 components: - type: Transform - pos: 31.5,43.5 + pos: 69.5,24.5 parent: 2 - - uid: 2587 + - uid: 3438 components: - type: Transform - pos: 31.5,44.5 + pos: 68.5,24.5 parent: 2 - - uid: 2588 + - uid: 3439 components: - type: Transform - pos: 33.5,44.5 + pos: 68.5,25.5 parent: 2 - - uid: 2589 + - uid: 3440 components: - type: Transform - pos: 34.5,44.5 + pos: 68.5,26.5 parent: 2 - - uid: 2590 + - uid: 3445 components: - type: Transform - pos: 35.5,44.5 + pos: 70.5,23.5 parent: 2 - - uid: 2591 + - uid: 3449 components: - type: Transform - pos: 35.5,43.5 + pos: 65.5,28.5 parent: 2 - - uid: 2592 + - uid: 3450 components: - type: Transform - pos: 35.5,42.5 + pos: 65.5,27.5 parent: 2 - - uid: 2593 + - uid: 3451 components: - type: Transform - pos: 35.5,41.5 + pos: 65.5,26.5 parent: 2 - - uid: 2594 + - uid: 3452 components: - type: Transform - pos: 36.5,44.5 + pos: 65.5,25.5 parent: 2 - - uid: 2595 + - uid: 3453 components: - type: Transform - pos: 37.5,44.5 + pos: 61.5,27.5 parent: 2 - - uid: 2596 + - uid: 3454 components: - type: Transform - pos: 38.5,44.5 + pos: 61.5,26.5 parent: 2 - - uid: 2597 + - uid: 3456 components: - type: Transform - pos: 38.5,43.5 + rot: 3.141592653589793 rad + pos: 12.5,34.5 parent: 2 - - uid: 2598 + - uid: 3462 components: - type: Transform - pos: 38.5,42.5 + pos: 61.5,22.5 parent: 2 - - uid: 2599 + - uid: 3463 components: - type: Transform - pos: 38.5,41.5 + pos: 61.5,21.5 parent: 2 - - uid: 2600 + - uid: 3464 components: - type: Transform - pos: 38.5,40.5 + pos: 62.5,21.5 parent: 2 - - uid: 2601 + - uid: 3465 components: - type: Transform - pos: 38.5,39.5 + pos: 63.5,21.5 parent: 2 - - uid: 2602 + - uid: 3466 components: - type: Transform - pos: 37.5,39.5 + pos: 64.5,21.5 parent: 2 - - uid: 2603 + - uid: 3467 components: - type: Transform - pos: 36.5,39.5 + pos: 65.5,21.5 parent: 2 - - uid: 2604 + - uid: 3468 components: - type: Transform - pos: 35.5,39.5 + pos: 65.5,22.5 parent: 2 - - uid: 2605 + - uid: 3469 components: - type: Transform - pos: 34.5,39.5 + pos: 65.5,23.5 parent: 2 - - uid: 2606 + - uid: 3470 components: - type: Transform - pos: 34.5,38.5 + pos: 61.5,20.5 parent: 2 - - uid: 2607 + - uid: 3471 components: - type: Transform - pos: -2.5,14.5 + pos: 61.5,19.5 parent: 2 - - uid: 2608 + - uid: 3472 components: - type: Transform - pos: -8.5,-15.5 + pos: 61.5,18.5 parent: 2 - - uid: 2617 + - uid: 3473 components: - type: Transform - pos: 2.5,14.5 + pos: 61.5,17.5 parent: 2 - - uid: 2626 + - uid: 3481 components: - type: Transform - pos: 20.5,43.5 + pos: 50.5,26.5 parent: 2 - - uid: 2627 + - uid: 3482 components: - type: Transform - pos: 20.5,42.5 + pos: 52.5,26.5 parent: 2 - - uid: 2628 + - uid: 3483 components: - type: Transform - pos: 19.5,42.5 + pos: 51.5,22.5 parent: 2 - - uid: 2629 + - uid: 3484 components: - type: Transform - pos: 19.5,43.5 + pos: 52.5,22.5 parent: 2 - - uid: 2630 + - uid: 3488 components: - type: Transform - pos: 18.5,43.5 + pos: 51.5,26.5 parent: 2 - - uid: 2631 + - uid: 3491 components: - type: Transform - pos: 17.5,43.5 + pos: 49.5,22.5 parent: 2 - - uid: 2632 + - uid: 3492 components: - type: Transform - pos: 17.5,42.5 + pos: 50.5,22.5 parent: 2 - - uid: 2633 + - uid: 3494 components: - type: Transform - pos: 16.5,42.5 + pos: 51.5,27.5 parent: 2 - - uid: 2634 + - uid: 3498 components: - type: Transform - pos: 16.5,41.5 + pos: 49.5,26.5 parent: 2 - - uid: 2635 + - uid: 3505 components: - type: Transform - pos: 16.5,40.5 + pos: 48.5,22.5 parent: 2 - - uid: 2637 + - uid: 3506 components: - type: Transform - pos: 16.5,38.5 + pos: 48.5,23.5 parent: 2 - - uid: 2638 + - uid: 3507 components: - type: Transform - pos: 17.5,38.5 + pos: 48.5,24.5 parent: 2 - - uid: 2639 + - uid: 3508 components: - type: Transform - pos: 19.5,38.5 + pos: 48.5,25.5 parent: 2 - - uid: 2640 + - uid: 3509 components: - type: Transform - pos: 20.5,38.5 + pos: 48.5,26.5 parent: 2 - - uid: 2641 + - uid: 3510 components: - type: Transform - pos: 20.5,39.5 + pos: 53.5,26.5 parent: 2 - - uid: 2642 + - uid: 3514 components: - type: Transform - pos: 20.5,40.5 + rot: 1.5707963267948966 rad + pos: 49.5,-26.5 parent: 2 - - uid: 2643 + - uid: 3517 components: - type: Transform - pos: 20.5,41.5 + rot: 1.5707963267948966 rad + pos: 48.5,-26.5 parent: 2 - - uid: 2644 + - uid: 3528 components: - type: Transform - pos: 25.5,38.5 + pos: 61.5,16.5 parent: 2 - - uid: 2645 + - uid: 3536 components: - type: Transform - pos: 25.5,39.5 + pos: 74.5,19.5 parent: 2 - - uid: 2646 + - uid: 3537 components: - type: Transform - pos: 25.5,40.5 + pos: 75.5,19.5 parent: 2 - - uid: 2647 + - uid: 3538 components: - type: Transform - pos: 25.5,42.5 + pos: 75.5,18.5 parent: 2 - - uid: 2648 + - uid: 3539 components: - type: Transform - pos: 25.5,43.5 + pos: 75.5,14.5 parent: 2 - - uid: 2652 + - uid: 3540 components: - type: Transform - pos: 12.5,42.5 + pos: 75.5,13.5 parent: 2 - - uid: 2653 + - uid: 3541 components: - type: Transform - pos: 12.5,41.5 + pos: 76.5,13.5 parent: 2 - - uid: 2654 + - uid: 3542 components: - type: Transform - pos: 12.5,40.5 + pos: 81.5,13.5 parent: 2 - - uid: 2655 + - uid: 3544 components: - type: Transform - pos: 12.5,39.5 + pos: 91.5,-5.5 parent: 2 - - uid: 2656 + - uid: 3545 components: - type: Transform - pos: 12.5,38.5 + pos: 91.5,-4.5 parent: 2 - - uid: 2657 + - uid: 3547 components: - type: Transform - pos: 12.5,37.5 + pos: 91.5,-3.5 parent: 2 - - uid: 2658 + - uid: 3548 components: - type: Transform - pos: 16.5,35.5 + pos: 91.5,-2.5 parent: 2 - - uid: 2659 + - uid: 3549 components: - type: Transform - pos: 15.5,34.5 + pos: 91.5,-1.5 parent: 2 - - uid: 2660 + - uid: 3552 components: - type: Transform - pos: 12.5,35.5 + pos: 88.5,2.5 parent: 2 - - uid: 2661 + - uid: 3554 components: - type: Transform - pos: 31.5,-22.5 + pos: 90.5,-1.5 parent: 2 - - uid: 2662 + - uid: 3555 components: - type: Transform - pos: 12.5,36.5 + pos: 90.5,-0.5 parent: 2 - - uid: 2663 + - uid: 3556 components: - type: Transform - pos: 13.5,34.5 + pos: 88.5,6.5 parent: 2 - - uid: 2664 + - uid: 3557 components: - type: Transform - pos: 16.5,37.5 + pos: 87.5,6.5 parent: 2 - - uid: 2665 + - uid: 3558 components: - type: Transform - pos: 14.5,34.5 + pos: 87.5,2.5 parent: 2 - - uid: 2666 + - uid: 3559 components: - type: Transform - pos: -9.5,1.5 + pos: 86.5,2.5 parent: 2 - - uid: 2737 + - uid: 3560 components: - type: Transform - pos: -4.5,-15.5 + pos: 85.5,2.5 parent: 2 - - uid: 2738 + - uid: 3561 components: - type: Transform - pos: 10.5,35.5 + pos: 85.5,3.5 parent: 2 - - uid: 2739 + - uid: 3562 components: - type: Transform - pos: 10.5,34.5 + pos: 85.5,5.5 parent: 2 - - uid: 2785 + - uid: 3564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-24.5 + pos: 90.5,6.5 parent: 2 - - uid: 2800 + - uid: 3565 components: - type: Transform - pos: 33.5,49.5 + pos: 89.5,6.5 parent: 2 - - uid: 2801 + - uid: 3584 components: - type: Transform - pos: 33.5,48.5 + pos: 86.5,6.5 parent: 2 - - uid: 2802 + - uid: 3587 components: - type: Transform - pos: 33.5,47.5 + pos: 89.5,2.5 parent: 2 - - uid: 2803 + - uid: 3589 components: - type: Transform - pos: 34.5,47.5 + pos: 84.5,13.5 parent: 2 - - uid: 2804 + - uid: 3590 components: - type: Transform - pos: 35.5,47.5 + pos: 85.5,13.5 parent: 2 - - uid: 2805 + - uid: 3591 components: - type: Transform - pos: 36.5,47.5 + pos: 82.5,13.5 parent: 2 - - uid: 2810 + - uid: 3596 components: - type: Transform - pos: 18.5,46.5 + pos: 86.5,7.5 parent: 2 - - uid: 2811 + - uid: 3597 components: - type: Transform - pos: 18.5,47.5 + pos: 90.5,2.5 parent: 2 - - uid: 2812 + - uid: 3599 components: - type: Transform - pos: 19.5,47.5 + pos: 87.5,13.5 parent: 2 - - uid: 2813 + - uid: 3600 components: - type: Transform - pos: 20.5,47.5 + pos: 87.5,12.5 parent: 2 - - uid: 2814 + - uid: 3601 components: - type: Transform - pos: 21.5,47.5 + pos: 87.5,11.5 parent: 2 - - uid: 2815 + - uid: 3602 components: - type: Transform - pos: 21.5,48.5 + pos: 87.5,10.5 parent: 2 - - uid: 2816 + - uid: 3603 components: - type: Transform - pos: 21.5,49.5 + pos: 87.5,9.5 parent: 2 - - uid: 2848 + - uid: 3604 components: - type: Transform - pos: 59.5,-12.5 + pos: 86.5,9.5 parent: 2 - - uid: 2849 + - uid: 3605 components: - type: Transform - pos: 59.5,-11.5 + pos: 86.5,8.5 parent: 2 - - uid: 2850 + - uid: 3607 components: - type: Transform - pos: 59.5,-10.5 + pos: 83.5,13.5 parent: 2 - - uid: 2851 + - uid: 3608 components: - type: Transform - pos: 59.5,-9.5 + pos: 86.5,13.5 parent: 2 - - uid: 2852 + - uid: 3628 components: - type: Transform - pos: 59.5,-8.5 + pos: 82.5,0.5 parent: 2 - - uid: 2853 + - uid: 3629 components: - type: Transform - pos: 58.5,-8.5 + pos: 82.5,-1.5 parent: 2 - - uid: 2854 + - uid: 3630 components: - type: Transform - pos: 54.5,-8.5 + pos: 82.5,-0.5 parent: 2 - - uid: 2855 + - uid: 3631 components: - type: Transform - pos: 53.5,-8.5 + pos: 82.5,-2.5 parent: 2 - - uid: 2856 + - uid: 3632 components: - type: Transform - pos: 53.5,-9.5 + pos: 83.5,-2.5 parent: 2 - - uid: 2857 + - uid: 3633 components: - type: Transform - pos: 53.5,-10.5 + pos: 83.5,-8.5 parent: 2 - - uid: 2858 + - uid: 3634 components: - type: Transform - pos: 53.5,-11.5 + pos: 69.5,12.5 parent: 2 - - uid: 2868 + - uid: 3635 components: - type: Transform - pos: 64.5,-12.5 + pos: 70.5,12.5 parent: 2 - - uid: 2869 + - uid: 3636 components: - type: Transform - pos: 64.5,-13.5 + pos: 71.5,12.5 parent: 2 - - uid: 2870 + - uid: 3637 components: - type: Transform - pos: 64.5,-14.5 + pos: 72.5,12.5 parent: 2 - - uid: 2912 + - uid: 3638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-24.5 + pos: 72.5,13.5 parent: 2 - - uid: 2918 + - uid: 3639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-24.5 + pos: 72.5,14.5 parent: 2 - - uid: 2933 + - uid: 3640 components: - type: Transform - pos: 68.5,-2.5 + pos: 72.5,15.5 parent: 2 - - uid: 2934 + - uid: 3641 components: - type: Transform - pos: 68.5,-3.5 + pos: 72.5,16.5 parent: 2 - - uid: 2935 + - uid: 3642 components: - type: Transform - pos: 68.5,-4.5 + pos: 72.5,17.5 parent: 2 - - uid: 2936 + - uid: 3643 components: - type: Transform - pos: 68.5,-5.5 + pos: 71.5,17.5 parent: 2 - - uid: 2937 + - uid: 3644 components: - type: Transform - pos: 68.5,-6.5 + pos: 70.5,17.5 parent: 2 - - uid: 2951 + - uid: 3645 components: - type: Transform - pos: 51.5,-3.5 + pos: 69.5,17.5 parent: 2 - - uid: 2952 + - uid: 3646 components: - type: Transform - pos: 51.5,-2.5 + pos: 68.5,17.5 parent: 2 - - uid: 2953 + - uid: 3647 components: - type: Transform - pos: 52.5,-2.5 + pos: 68.5,12.5 parent: 2 - - uid: 2955 + - uid: 3648 components: - type: Transform - pos: 49.5,-9.5 + pos: 67.5,12.5 parent: 2 - - uid: 2956 + - uid: 3649 components: - type: Transform - pos: 51.5,-9.5 + pos: 67.5,17.5 parent: 2 - - uid: 3022 + - uid: 3650 components: - type: Transform - pos: 43.5,12.5 + pos: 66.5,17.5 parent: 2 - - uid: 3023 + - uid: 3651 components: - type: Transform - pos: 43.5,11.5 + pos: 65.5,17.5 parent: 2 - - uid: 3024 + - uid: 3655 components: - type: Transform - pos: 43.5,10.5 + pos: 66.5,12.5 parent: 2 - - uid: 3025 + - uid: 3656 components: - type: Transform - pos: 43.5,9.5 + pos: 65.5,12.5 parent: 2 - - uid: 3026 + - uid: 3658 components: - type: Transform - pos: 43.5,8.5 + pos: 63.5,17.5 parent: 2 - - uid: 3027 + - uid: 3659 components: - type: Transform - pos: 44.5,8.5 + pos: 62.5,17.5 parent: 2 - - uid: 3028 + - uid: 3660 components: - type: Transform - pos: 45.5,8.5 + pos: 58.5,7.5 parent: 2 - - uid: 3029 + - uid: 3661 components: - type: Transform - pos: 46.5,8.5 + pos: 59.5,7.5 parent: 2 - - uid: 3030 + - uid: 3662 components: - type: Transform - pos: 47.5,8.5 + pos: 59.5,8.5 parent: 2 - - uid: 3031 + - uid: 3663 components: - type: Transform - pos: 48.5,8.5 + pos: 59.5,9.5 parent: 2 - - uid: 3032 + - uid: 3664 components: - type: Transform - pos: 48.5,7.5 + pos: 59.5,10.5 parent: 2 - - uid: 3033 + - uid: 3665 components: - type: Transform - pos: 49.5,7.5 + pos: 59.5,11.5 parent: 2 - - uid: 3034 + - uid: 3668 components: - type: Transform - pos: 50.5,7.5 + pos: 64.5,11.5 parent: 2 - - uid: 3035 + - uid: 3669 components: - type: Transform - pos: 51.5,7.5 + pos: 64.5,10.5 parent: 2 - - uid: 3036 + - uid: 3670 components: - type: Transform - pos: 52.5,7.5 + pos: 64.5,9.5 parent: 2 - - uid: 3037 + - uid: 3671 components: - type: Transform - pos: 56.5,7.5 + pos: 64.5,8.5 parent: 2 - - uid: 3038 + - uid: 3672 components: - type: Transform - pos: 55.5,7.5 + pos: 64.5,7.5 parent: 2 - - uid: 3039 + - uid: 3673 components: - type: Transform - pos: 54.5,7.5 + pos: 63.5,7.5 parent: 2 - - uid: 3047 + - uid: 3674 components: - type: Transform - pos: 48.5,13.5 + pos: 62.5,7.5 parent: 2 - - uid: 3048 + - uid: 3675 components: - type: Transform - pos: 48.5,12.5 + pos: 61.5,7.5 parent: 2 - - uid: 3049 + - uid: 3676 components: - type: Transform - pos: 48.5,15.5 + pos: 60.5,7.5 parent: 2 - - uid: 3050 + - uid: 3709 components: - type: Transform - pos: 48.5,16.5 + pos: 91.5,-7.5 parent: 2 - - uid: 3052 + - uid: 3710 components: - type: Transform - pos: 48.5,20.5 + pos: 91.5,-8.5 parent: 2 - - uid: 3063 + - uid: 3711 components: - type: Transform - pos: 40.5,39.5 + pos: 91.5,-9.5 parent: 2 - - uid: 3064 + - uid: 3712 components: - type: Transform - pos: 40.5,40.5 + pos: 91.5,-10.5 parent: 2 - - uid: 3065 + - uid: 3713 components: - type: Transform - pos: 43.5,40.5 + pos: 91.5,-11.5 parent: 2 - - uid: 3066 + - uid: 3714 components: - type: Transform - pos: 43.5,39.5 + pos: 90.5,-11.5 parent: 2 - - uid: 3071 + - uid: 3715 components: - type: Transform - pos: 39.5,43.5 + pos: 89.5,-11.5 parent: 2 - - uid: 3072 + - uid: 3716 components: - type: Transform - pos: 40.5,43.5 + pos: 88.5,-11.5 parent: 2 - - uid: 3073 + - uid: 3717 components: - type: Transform - pos: 41.5,43.5 + pos: 88.5,-9.5 parent: 2 - - uid: 3074 + - uid: 3718 components: - type: Transform - pos: 42.5,43.5 + pos: 88.5,-8.5 parent: 2 - - uid: 3075 + - uid: 3719 components: - type: Transform - pos: 42.5,44.5 + pos: 88.5,-7.5 parent: 2 - - uid: 3076 + - uid: 3722 components: - type: Transform - pos: 42.5,45.5 + pos: 83.5,-3.5 parent: 2 - - uid: 3077 + - uid: 3723 components: - type: Transform - pos: 42.5,46.5 + pos: 83.5,-4.5 parent: 2 - - uid: 3078 + - uid: 3724 components: - type: Transform - pos: 42.5,47.5 + pos: 83.5,-7.5 parent: 2 - - uid: 3079 + - uid: 3725 components: - type: Transform - pos: 45.5,45.5 + pos: 83.5,-5.5 parent: 2 - - uid: 3080 + - uid: 3726 components: - type: Transform - pos: 45.5,44.5 + pos: 83.5,-6.5 parent: 2 - - uid: 3081 + - uid: 3727 components: - type: Transform - pos: 45.5,43.5 + pos: 85.5,-6.5 parent: 2 - - uid: 3082 + - uid: 3728 components: - type: Transform - pos: 46.5,43.5 + pos: 84.5,-6.5 parent: 2 - - uid: 3083 + - uid: 3737 components: - type: Transform - pos: 46.5,42.5 + pos: 85.5,-7.5 parent: 2 - - uid: 3084 + - uid: 3738 components: - type: Transform - pos: 46.5,41.5 + pos: 85.5,-8.5 parent: 2 - - uid: 3085 + - uid: 3739 components: - type: Transform - pos: 46.5,40.5 + pos: 85.5,-9.5 parent: 2 - - uid: 3125 + - uid: 3740 components: - type: Transform - pos: 50.5,45.5 + pos: 85.5,-10.5 parent: 2 - - uid: 3146 + - uid: 3741 components: - type: Transform - pos: 47.5,36.5 + pos: 85.5,-11.5 parent: 2 - - uid: 3147 + - uid: 3744 components: - type: Transform - pos: 47.5,34.5 + pos: 81.5,0.5 parent: 2 - - uid: 3148 + - uid: 3745 components: - type: Transform - pos: 47.5,35.5 + pos: 80.5,0.5 parent: 2 - - uid: 3149 + - uid: 3746 components: - type: Transform - pos: 47.5,33.5 + pos: 79.5,0.5 parent: 2 - - uid: 3150 + - uid: 3747 components: - type: Transform - pos: 47.5,32.5 + pos: 79.5,-0.5 parent: 2 - - uid: 3151 + - uid: 3748 components: - type: Transform - pos: 47.5,31.5 + pos: 79.5,-1.5 parent: 2 - - uid: 3152 + - uid: 3749 components: - type: Transform - pos: 47.5,30.5 + pos: 79.5,-2.5 parent: 2 - - uid: 3153 + - uid: 3750 components: - type: Transform - pos: 47.5,29.5 + pos: 78.5,-2.5 parent: 2 - - uid: 3154 + - uid: 3751 components: - type: Transform - pos: 47.5,28.5 + pos: 78.5,-8.5 parent: 2 - - uid: 3155 + - uid: 3752 components: - type: Transform - pos: 48.5,28.5 + pos: 78.5,-9.5 parent: 2 - - uid: 3156 + - uid: 3753 components: - type: Transform - pos: 49.5,28.5 + pos: 77.5,-9.5 parent: 2 - - uid: 3157 + - uid: 3754 components: - type: Transform - pos: 50.5,28.5 + pos: 76.5,-9.5 parent: 2 - - uid: 3158 + - uid: 3755 components: - type: Transform - pos: 51.5,28.5 + pos: 75.5,-9.5 parent: 2 - - uid: 3159 + - uid: 3756 components: - type: Transform - pos: 51.5,29.5 + pos: 75.5,-8.5 parent: 2 - - uid: 3160 + - uid: 3757 components: - type: Transform - pos: 51.5,30.5 + pos: 75.5,-7.5 parent: 2 - - uid: 3161 + - uid: 3758 components: - type: Transform - pos: 51.5,31.5 + pos: 75.5,-6.5 parent: 2 - - uid: 3162 + - uid: 3759 components: - type: Transform - pos: 51.5,32.5 + pos: 75.5,-5.5 parent: 2 - - uid: 3163 + - uid: 3760 components: - type: Transform - pos: 51.5,33.5 + pos: 75.5,-4.5 parent: 2 - - uid: 3164 + - uid: 3761 components: - type: Transform - pos: 51.5,34.5 + pos: 75.5,-3.5 parent: 2 - - uid: 3165 + - uid: 3762 components: - type: Transform - pos: 51.5,35.5 + pos: 75.5,-2.5 parent: 2 - - uid: 3166 + - uid: 3763 components: - type: Transform - pos: 51.5,36.5 + pos: 76.5,-2.5 parent: 2 - - uid: 3167 + - uid: 3764 components: - type: Transform - pos: 51.5,37.5 + pos: 76.5,-1.5 parent: 2 - - uid: 3168 + - uid: 3765 components: - type: Transform - pos: 51.5,38.5 + pos: 76.5,-0.5 parent: 2 - - uid: 3169 + - uid: 3766 components: - type: Transform - pos: 52.5,37.5 + pos: 76.5,0.5 parent: 2 - - uid: 3170 + - uid: 3767 components: - type: Transform - pos: 52.5,38.5 + pos: 78.5,0.5 parent: 2 - - uid: 3171 + - uid: 3784 components: - type: Transform - pos: 52.5,39.5 + pos: 74.5,-7.5 parent: 2 - - uid: 3172 + - uid: 3785 components: - type: Transform - pos: 53.5,39.5 + pos: 73.5,-7.5 parent: 2 - - uid: 3173 + - uid: 3788 components: - type: Transform - pos: 53.5,38.5 + pos: 73.5,-8.5 parent: 2 - - uid: 3174 + - uid: 3789 components: - type: Transform - pos: 54.5,39.5 + pos: 73.5,-9.5 parent: 2 - - uid: 3175 + - uid: 3790 components: - type: Transform - pos: 54.5,40.5 + pos: 73.5,-10.5 parent: 2 - - uid: 3176 + - uid: 3791 components: - type: Transform - pos: 55.5,40.5 + pos: 73.5,-11.5 parent: 2 - - uid: 3177 + - uid: 3792 components: - type: Transform - pos: 55.5,39.5 + pos: 74.5,-11.5 parent: 2 - - uid: 3178 + - uid: 3793 components: - type: Transform - pos: 56.5,39.5 + pos: 75.5,-11.5 parent: 2 - - uid: 3179 + - uid: 3794 components: - type: Transform - pos: 56.5,40.5 + pos: 77.5,-11.5 parent: 2 - - uid: 3180 + - uid: 3795 components: - type: Transform - pos: 57.5,40.5 + pos: 76.5,-11.5 parent: 2 - - uid: 3181 + - uid: 3796 components: - type: Transform - pos: 57.5,39.5 + pos: 78.5,-11.5 parent: 2 - - uid: 3182 + - uid: 3797 components: - type: Transform - pos: 58.5,39.5 + pos: 79.5,-11.5 parent: 2 - - uid: 3183 + - uid: 3798 components: - type: Transform - pos: 58.5,40.5 + pos: 80.5,-11.5 parent: 2 - - uid: 3184 + - uid: 3799 components: - type: Transform - pos: 59.5,39.5 + pos: 81.5,-11.5 parent: 2 - - uid: 3185 + - uid: 3800 components: - type: Transform - pos: 60.5,39.5 + pos: 82.5,-11.5 parent: 2 - - uid: 3186 + - uid: 3801 components: - type: Transform - pos: 60.5,38.5 + pos: 83.5,-11.5 parent: 2 - - uid: 3187 + - uid: 3802 components: - type: Transform - pos: 59.5,38.5 + pos: 84.5,-11.5 parent: 2 - - uid: 3188 + - uid: 3821 components: - type: Transform - pos: 60.5,37.5 + rot: 3.141592653589793 rad + pos: 59.5,31.5 parent: 2 - - uid: 3189 + - uid: 3822 components: - type: Transform - pos: 61.5,38.5 + pos: 50.5,32.5 parent: 2 - - uid: 3190 + - uid: 3829 components: - type: Transform - pos: 61.5,37.5 + pos: 90.5,-12.5 parent: 2 - - uid: 3191 + - uid: 3830 components: - type: Transform - pos: 61.5,35.5 + pos: 90.5,-13.5 parent: 2 - - uid: 3192 + - uid: 3836 components: - type: Transform - pos: 61.5,34.5 + pos: 71.5,-20.5 parent: 2 - - uid: 3193 + - uid: 3837 components: - type: Transform - pos: 61.5,36.5 + pos: 70.5,-20.5 parent: 2 - - uid: 3194 + - uid: 3838 components: - type: Transform - pos: 61.5,33.5 + pos: 69.5,-20.5 parent: 2 - - uid: 3195 + - uid: 3839 components: - type: Transform - pos: 61.5,32.5 + pos: 67.5,-20.5 parent: 2 - - uid: 3196 + - uid: 3840 components: - type: Transform - pos: 61.5,31.5 + pos: 68.5,-20.5 parent: 2 - - uid: 3197 + - uid: 3841 components: - type: Transform - pos: 61.5,30.5 + pos: 65.5,-20.5 parent: 2 - - uid: 3198 + - uid: 3842 components: - type: Transform - pos: 61.5,29.5 + pos: 66.5,-20.5 parent: 2 - - uid: 3199 + - uid: 3844 components: - type: Transform - pos: 61.5,28.5 + pos: 57.5,-20.5 parent: 2 - - uid: 3201 + - uid: 3847 components: - type: Transform - pos: 65.5,29.5 + pos: 72.5,-20.5 parent: 2 - - uid: 3215 + - uid: 3848 components: - type: Transform - pos: 55.5,32.5 + pos: 72.5,-19.5 parent: 2 - - uid: 3216 + - uid: 3849 components: - type: Transform - pos: 54.5,32.5 + pos: 72.5,-18.5 parent: 2 - - uid: 3217 + - uid: 3850 components: - type: Transform - pos: 53.5,32.5 + pos: 72.5,-17.5 parent: 2 - - uid: 3218 + - uid: 3879 components: - type: Transform - pos: 52.5,32.5 + pos: 90.5,-14.5 parent: 2 - - uid: 3219 + - uid: 3880 components: - type: Transform - pos: 60.5,32.5 + pos: 90.5,-15.5 parent: 2 - - uid: 3220 + - uid: 3881 components: - type: Transform - pos: 59.5,32.5 + pos: 90.5,-16.5 parent: 2 - - uid: 3221 + - uid: 3882 components: - type: Transform - pos: 58.5,32.5 + pos: 90.5,-17.5 parent: 2 - - uid: 3222 + - uid: 3883 components: - type: Transform - pos: 57.5,32.5 + pos: 91.5,-17.5 parent: 2 - - uid: 3254 + - uid: 3884 components: - type: Transform - pos: 52.5,28.5 + pos: 91.5,-18.5 parent: 2 - - uid: 3255 + - uid: 3886 components: - type: Transform - pos: 53.5,28.5 + pos: 91.5,-21.5 parent: 2 - - uid: 3256 + - uid: 3887 components: - type: Transform - pos: 54.5,28.5 + pos: 91.5,-22.5 parent: 2 - - uid: 3257 + - uid: 3888 components: - type: Transform - pos: 55.5,28.5 + pos: 90.5,-22.5 parent: 2 - - uid: 3258 + - uid: 3890 components: - type: Transform - pos: 60.5,28.5 + pos: 88.5,-22.5 parent: 2 - - uid: 3259 + - uid: 3891 components: - type: Transform - pos: 59.5,28.5 + pos: 87.5,-22.5 parent: 2 - - uid: 3260 + - uid: 3894 components: - type: Transform - pos: 58.5,28.5 + pos: 93.5,-21.5 parent: 2 - - uid: 3261 + - uid: 3895 components: - type: Transform - pos: 57.5,28.5 + pos: 87.5,-21.5 parent: 2 - - uid: 3262 + - uid: 3896 components: - type: Transform - pos: 62.5,29.5 + pos: 89.5,-22.5 parent: 2 - - uid: 3264 + - uid: 3897 components: - type: Transform - pos: 62.5,45.5 + pos: 87.5,-19.5 parent: 2 - - uid: 3266 + - uid: 3898 components: - type: Transform - pos: 63.5,45.5 + pos: 87.5,-19.5 parent: 2 - - uid: 3267 + - uid: 3899 components: - type: Transform - pos: 64.5,45.5 + pos: 92.5,-18.5 parent: 2 - - uid: 3268 + - uid: 3900 components: - type: Transform - pos: 65.5,45.5 + pos: 87.5,-18.5 parent: 2 - - uid: 3269 + - uid: 3901 components: - type: Transform - pos: 65.5,44.5 + pos: 87.5,-17.5 parent: 2 - - uid: 3270 + - uid: 3989 components: - type: Transform - pos: 65.5,43.5 + pos: 21.5,-59.5 parent: 2 - - uid: 3271 + - uid: 3990 components: - type: Transform - pos: 65.5,30.5 + pos: 20.5,-59.5 parent: 2 - - uid: 3272 + - uid: 3991 components: - type: Transform - pos: 65.5,31.5 + pos: 29.5,-59.5 parent: 2 - - uid: 3273 + - uid: 3994 components: - type: Transform - pos: 65.5,32.5 + pos: 12.5,-59.5 parent: 2 - - uid: 3274 + - uid: 3995 components: - type: Transform - pos: 65.5,33.5 + pos: 22.5,-59.5 parent: 2 - - uid: 3275 + - uid: 3996 components: - type: Transform - pos: 65.5,34.5 + pos: 15.5,-59.5 parent: 2 - - uid: 3276 + - uid: 4044 components: - type: Transform - pos: 65.5,35.5 + pos: 37.5,-27.5 parent: 2 - - uid: 3277 + - uid: 4057 components: - type: Transform - pos: 65.5,36.5 + pos: 49.5,-22.5 parent: 2 - - uid: 3278 + - uid: 4077 components: - type: Transform - pos: 65.5,37.5 + pos: 48.5,-22.5 parent: 2 - - uid: 3279 + - uid: 4078 components: - type: Transform - pos: 65.5,38.5 + pos: 43.5,-36.5 parent: 2 - - uid: 3280 + - uid: 4079 components: - type: Transform - pos: 65.5,39.5 + pos: 45.5,-36.5 parent: 2 - - uid: 3281 + - uid: 4112 components: - type: Transform - pos: 65.5,40.5 + pos: 19.5,-13.5 parent: 2 - - uid: 3282 + - uid: 4127 components: - type: Transform - pos: 65.5,41.5 + rot: 3.141592653589793 rad + pos: 52.5,40.5 parent: 2 - - uid: 3283 + - uid: 4128 components: - type: Transform - pos: 65.5,42.5 + pos: 36.5,32.5 parent: 2 - - uid: 3285 + - uid: 4166 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-22.5 + pos: 50.5,-21.5 parent: 2 - - uid: 3287 + - uid: 4168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-26.5 + pos: 49.5,-21.5 parent: 2 - - uid: 3288 + - uid: 4169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-28.5 + pos: 52.5,-21.5 parent: 2 - - uid: 3298 + - uid: 4170 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-26.5 + pos: 51.5,-21.5 parent: 2 - - uid: 3300 + - uid: 4171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-25.5 + pos: 53.5,-21.5 parent: 2 - - uid: 3305 + - uid: 4172 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-24.5 + pos: 54.5,-21.5 parent: 2 - - uid: 3306 + - uid: 4173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-28.5 + pos: 55.5,-21.5 parent: 2 - - uid: 3313 + - uid: 4174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-26.5 + pos: 55.5,-20.5 parent: 2 - - uid: 3315 + - uid: 4175 components: - type: Transform - pos: 49.5,49.5 + rot: 1.5707963267948966 rad + pos: 50.5,-34.5 parent: 2 - - uid: 3316 + - uid: 4187 components: - type: Transform - pos: 63.5,49.5 + pos: 32.5,-21.5 parent: 2 - - uid: 3318 + - uid: 4229 components: - type: Transform - pos: 55.5,50.5 + pos: 37.5,-33.5 parent: 2 - - uid: 3319 + - uid: 4244 components: - type: Transform - pos: 57.5,50.5 + pos: 30.5,-22.5 parent: 2 - - uid: 3321 + - uid: 4246 components: - type: Transform - pos: 55.5,51.5 + pos: 31.5,-21.5 parent: 2 - - uid: 3322 + - uid: 4254 components: - type: Transform - pos: 57.5,51.5 + pos: 33.5,-29.5 parent: 2 - - uid: 3352 + - uid: 4255 components: - type: Transform - pos: 72.5,47.5 + pos: 33.5,-31.5 parent: 2 - - uid: 3353 + - uid: 4256 components: - type: Transform - pos: 71.5,47.5 + pos: 33.5,-33.5 parent: 2 - - uid: 3354 + - uid: 4279 components: - type: Transform - pos: 69.5,47.5 + pos: 17.5,-20.5 parent: 2 - - uid: 3355 + - uid: 4284 components: - type: Transform - pos: 70.5,47.5 + pos: 50.5,-22.5 parent: 2 - - uid: 3361 + - uid: 4293 components: - type: Transform - pos: 72.5,41.5 + pos: 18.5,-20.5 parent: 2 - - uid: 3362 + - uid: 4295 components: - type: Transform - pos: 71.5,41.5 + pos: 33.5,-27.5 parent: 2 - - uid: 3363 + - uid: 4299 components: - type: Transform - pos: 71.5,42.5 + pos: 50.5,-47.5 parent: 2 - - uid: 3370 + - uid: 4313 components: - type: Transform - pos: 72.5,43.5 + pos: 14.5,-38.5 parent: 2 - - uid: 3371 + - uid: 4329 components: - type: Transform - pos: 71.5,43.5 + pos: 30.5,-45.5 parent: 2 - - uid: 3372 + - uid: 4330 components: - type: Transform - pos: 70.5,43.5 + pos: 29.5,-45.5 parent: 2 - - uid: 3373 + - uid: 4331 components: - type: Transform - pos: 72.5,35.5 + pos: 27.5,-44.5 parent: 2 - - uid: 3374 + - uid: 4333 components: - type: Transform - pos: 71.5,35.5 + pos: 33.5,-37.5 parent: 2 - - uid: 3375 + - uid: 4346 components: - type: Transform - pos: 72.5,36.5 + rot: 3.141592653589793 rad + pos: 59.5,41.5 parent: 2 - - uid: 3376 + - uid: 4347 components: - type: Transform - pos: 72.5,38.5 + pos: 60.5,39.5 parent: 2 - - uid: 3377 + - uid: 4348 components: - type: Transform - pos: 72.5,37.5 + pos: 48.5,36.5 parent: 2 - - uid: 3378 + - uid: 4364 components: - type: Transform - pos: 72.5,39.5 + rot: -1.5707963267948966 rad + pos: 12.5,-53.5 parent: 2 - - uid: 3379 + - uid: 4367 components: - type: Transform - pos: 72.5,40.5 + pos: 59.5,39.5 parent: 2 - - uid: 3383 + - uid: 4368 components: - type: Transform - pos: 70.5,35.5 + pos: 50.5,36.5 parent: 2 - - uid: 3384 + - uid: 4369 components: - type: Transform - pos: 69.5,35.5 + pos: 37.5,-37.5 parent: 2 - - uid: 3385 + - uid: 4373 components: - type: Transform - pos: 68.5,35.5 + pos: 36.5,-37.5 parent: 2 - - uid: 3417 + - uid: 4374 components: - type: Transform - pos: 70.5,22.5 + pos: 33.5,-38.5 parent: 2 - - uid: 3418 + - uid: 4375 components: - type: Transform - pos: 69.5,22.5 + pos: 33.5,-41.5 parent: 2 - - uid: 3419 + - uid: 4382 components: - type: Transform - pos: 68.5,22.5 + pos: 34.5,-37.5 parent: 2 - - uid: 3420 + - uid: 4383 components: - type: Transform - pos: 68.5,21.5 + pos: 33.5,-40.5 parent: 2 - - uid: 3421 + - uid: 4384 components: - type: Transform - pos: 68.5,20.5 + pos: 34.5,-41.5 parent: 2 - - uid: 3422 + - uid: 4386 components: - type: Transform - pos: 68.5,19.5 + pos: 36.5,-41.5 parent: 2 - - uid: 3423 + - uid: 4387 components: - type: Transform - pos: 69.5,19.5 + pos: 37.5,-41.5 parent: 2 - - uid: 3424 + - uid: 4388 components: - type: Transform - pos: 70.5,19.5 + pos: 37.5,-40.5 parent: 2 - - uid: 3425 + - uid: 4389 components: - type: Transform - pos: 71.5,19.5 + pos: 37.5,-38.5 parent: 2 - - uid: 3426 + - uid: 4395 components: - type: Transform - pos: 72.5,19.5 + pos: 27.5,-45.5 parent: 2 - - uid: 3427 + - uid: 4396 components: - type: Transform - pos: 73.5,19.5 + pos: 28.5,-45.5 parent: 2 - - uid: 3428 + - uid: 4397 components: - type: Transform - pos: 73.5,20.5 + pos: 51.5,33.5 parent: 2 - - uid: 3429 + - uid: 4398 components: - type: Transform - pos: 73.5,21.5 + pos: 38.5,32.5 parent: 2 - - uid: 3430 + - uid: 4399 components: - type: Transform - pos: 73.5,22.5 + rot: 3.141592653589793 rad + pos: 47.5,40.5 parent: 2 - - uid: 3431 + - uid: 4417 components: - type: Transform - pos: 72.5,22.5 + pos: 47.5,-36.5 parent: 2 - - uid: 3432 + - uid: 4418 components: - type: Transform - pos: 73.5,23.5 + pos: 41.5,-36.5 parent: 2 - - uid: 3433 + - uid: 4435 components: - type: Transform - pos: 73.5,24.5 + pos: 44.5,-36.5 parent: 2 - - uid: 3434 + - uid: 4436 components: - type: Transform - pos: 72.5,24.5 + pos: 42.5,-36.5 parent: 2 - - uid: 3435 + - uid: 4450 components: - type: Transform - pos: 71.5,24.5 + pos: 33.5,-45.5 parent: 2 - - uid: 3436 + - uid: 4466 components: - type: Transform - pos: 70.5,24.5 + rot: 3.141592653589793 rad + pos: 38.5,-41.5 parent: 2 - - uid: 3437 + - uid: 4468 components: - type: Transform - pos: 69.5,24.5 + rot: 3.141592653589793 rad + pos: 40.5,-41.5 parent: 2 - - uid: 3438 + - uid: 4472 components: - type: Transform - pos: 68.5,24.5 + rot: 3.141592653589793 rad + pos: 42.5,-41.5 parent: 2 - - uid: 3439 + - uid: 4477 components: - type: Transform - pos: 68.5,25.5 + rot: 3.141592653589793 rad + pos: 44.5,-41.5 parent: 2 - - uid: 3440 + - uid: 4481 components: - type: Transform - pos: 68.5,26.5 + rot: 3.141592653589793 rad + pos: 46.5,-41.5 parent: 2 - - uid: 3449 + - uid: 4486 components: - type: Transform - pos: 65.5,28.5 + pos: 47.5,-41.5 parent: 2 - - uid: 3450 + - uid: 4491 components: - type: Transform - pos: 65.5,27.5 + pos: 45.5,-42.5 parent: 2 - - uid: 3451 + - uid: 4567 components: - type: Transform - pos: 65.5,26.5 + pos: 41.5,-37.5 parent: 2 - - uid: 3452 + - uid: 4568 components: - type: Transform - pos: 65.5,25.5 + rot: -1.5707963267948966 rad + pos: 59.5,26.5 parent: 2 - - uid: 3453 + - uid: 4573 components: - type: Transform - pos: 61.5,27.5 + rot: -1.5707963267948966 rad + pos: 60.5,26.5 parent: 2 - - uid: 3454 + - uid: 4633 components: - type: Transform - pos: 61.5,26.5 + rot: -1.5707963267948966 rad + pos: 12.5,-47.5 parent: 2 - - uid: 3462 + - uid: 4634 components: - type: Transform - pos: 61.5,22.5 + rot: -1.5707963267948966 rad + pos: 12.5,-49.5 parent: 2 - - uid: 3463 + - uid: 4743 components: - type: Transform - pos: 61.5,21.5 + pos: -7.5,1.5 parent: 2 - - uid: 3464 + - uid: 4744 components: - type: Transform - pos: 62.5,21.5 + rot: 3.141592653589793 rad + pos: 52.5,32.5 parent: 2 - - uid: 3465 + - uid: 4829 components: - type: Transform - pos: 63.5,21.5 + pos: 6.5,17.5 parent: 2 - - uid: 3466 + - uid: 4885 components: - type: Transform - pos: 64.5,21.5 + pos: 4.5,15.5 parent: 2 - - uid: 3467 + - uid: 5194 components: - type: Transform - pos: 65.5,21.5 + pos: 38.5,33.5 parent: 2 - - uid: 3468 + - uid: 5199 components: - type: Transform - pos: 65.5,22.5 + rot: 3.141592653589793 rad + pos: 59.5,30.5 parent: 2 - - uid: 3469 + - uid: 5291 components: - type: Transform - pos: 65.5,23.5 + pos: -0.5,1.5 parent: 2 - - uid: 3470 + - uid: 5292 components: - type: Transform - pos: 61.5,20.5 + pos: 2.5,1.5 parent: 2 - - uid: 3471 + - uid: 5296 components: - type: Transform - pos: 61.5,19.5 + pos: 4.5,20.5 parent: 2 - - uid: 3472 + - uid: 5300 components: - type: Transform - pos: 61.5,18.5 + pos: 45.5,-41.5 parent: 2 - - uid: 3473 + - uid: 5353 components: - type: Transform - pos: 61.5,17.5 + pos: 2.5,5.5 parent: 2 - - uid: 3481 + - uid: 5354 components: - type: Transform - pos: 50.5,26.5 + pos: 2.5,9.5 parent: 2 - - uid: 3482 + - uid: 5362 components: - type: Transform - pos: 52.5,26.5 + rot: 3.141592653589793 rad + pos: 52.5,41.5 parent: 2 - - uid: 3483 + - uid: 5364 components: - type: Transform - pos: 51.5,22.5 + pos: 46.5,12.5 parent: 2 - - uid: 3484 + - uid: 5477 components: - type: Transform - pos: 52.5,22.5 + pos: 72.5,34.5 parent: 2 - - uid: 3488 + - uid: 5478 components: - type: Transform - pos: 51.5,26.5 + pos: 72.5,30.5 parent: 2 - - uid: 3491 + - uid: 5479 components: - type: Transform - pos: 49.5,22.5 + pos: 72.5,26.5 parent: 2 - - uid: 3492 + - uid: 5480 components: - type: Transform - pos: 50.5,22.5 + pos: 71.5,26.5 parent: 2 - - uid: 3494 + - uid: 5481 components: - type: Transform - pos: 51.5,27.5 + pos: 70.5,26.5 parent: 2 - - uid: 3498 + - uid: 5482 components: - type: Transform - pos: 49.5,26.5 + pos: 69.5,26.5 parent: 2 - - uid: 3505 + - uid: 5498 components: - type: Transform - pos: 48.5,22.5 + pos: 70.5,21.5 parent: 2 - - uid: 3506 + - uid: 5508 components: - type: Transform - pos: 48.5,23.5 + pos: 44.5,40.5 parent: 2 - - uid: 3507 + - uid: 5510 components: - type: Transform - pos: 48.5,24.5 + pos: 74.5,21.5 parent: 2 - - uid: 3508 + - uid: 5677 components: - type: Transform - pos: 48.5,25.5 + rot: 3.141592653589793 rad + pos: 53.5,46.5 parent: 2 - - uid: 3509 + - uid: 5724 components: - type: Transform - pos: 48.5,26.5 + pos: 51.5,-10.5 parent: 2 - - uid: 3510 + - uid: 5725 components: - type: Transform - pos: 53.5,26.5 + pos: 51.5,-11.5 parent: 2 - - uid: 3514 + - uid: 5736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-26.5 + pos: 58.5,35.5 parent: 2 - - uid: 3517 + - uid: 5967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-26.5 + rot: 3.141592653589793 rad + pos: 59.5,46.5 parent: 2 - - uid: 3528 + - uid: 6120 components: - type: Transform - pos: 61.5,16.5 + pos: 12.5,-41.5 parent: 2 - - uid: 3536 + - uid: 6121 components: - type: Transform - pos: 74.5,19.5 + pos: 12.5,-40.5 parent: 2 - - uid: 3537 + - uid: 6122 components: - type: Transform - pos: 75.5,19.5 + pos: 13.5,-40.5 parent: 2 - - uid: 3538 + - uid: 6123 components: - type: Transform - pos: 75.5,18.5 + pos: 14.5,-40.5 parent: 2 - - uid: 3539 + - uid: 6139 components: - type: Transform - pos: 75.5,14.5 + pos: 49.5,32.5 parent: 2 - - uid: 3540 + - uid: 6196 components: - type: Transform - pos: 75.5,13.5 + rot: 3.141592653589793 rad + pos: 60.5,41.5 parent: 2 - - uid: 3541 + - uid: 6209 components: - type: Transform - pos: 76.5,13.5 + pos: 62.5,-20.5 parent: 2 - - uid: 3542 + - uid: 6210 components: - type: Transform - pos: 81.5,13.5 + pos: 64.5,-20.5 parent: 2 - - uid: 3544 + - uid: 6211 components: - type: Transform - pos: 91.5,-5.5 + pos: 60.5,-20.5 parent: 2 - - uid: 3545 + - uid: 6212 components: - type: Transform - pos: 91.5,-4.5 + pos: 56.5,-20.5 parent: 2 - - uid: 3547 + - uid: 6335 components: - type: Transform - pos: 91.5,-3.5 + rot: 3.141592653589793 rad + pos: 30.5,34.5 parent: 2 - - uid: 3548 + - uid: 6782 components: - type: Transform - pos: 91.5,-2.5 + pos: 58.5,-20.5 parent: 2 - - uid: 3549 + - uid: 6783 components: - type: Transform - pos: 91.5,-1.5 + pos: 59.5,-20.5 parent: 2 - - uid: 3552 + - uid: 6784 components: - type: Transform - pos: 88.5,2.5 + pos: 61.5,-20.5 parent: 2 - - uid: 3554 + - uid: 6785 components: - type: Transform - pos: 90.5,-1.5 + pos: 63.5,-20.5 parent: 2 - - uid: 3555 + - uid: 6814 components: - type: Transform - pos: 90.5,-0.5 + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 parent: 2 - - uid: 3556 + - uid: 6815 components: - type: Transform - pos: 88.5,6.5 + rot: -1.5707963267948966 rad + pos: -8.5,-17.5 parent: 2 - - uid: 3557 + - uid: 6822 components: - type: Transform - pos: 87.5,6.5 + pos: -4.5,-13.5 parent: 2 - - uid: 3558 + - uid: 6867 components: - type: Transform - pos: 87.5,2.5 + pos: 4.5,14.5 parent: 2 - - uid: 3559 + - uid: 6868 components: - type: Transform - pos: 86.5,2.5 + pos: 60.5,33.5 parent: 2 - - uid: 3560 + - uid: 6880 components: - type: Transform - pos: 85.5,2.5 + pos: 14.5,-12.5 parent: 2 - - uid: 3561 + - uid: 6881 components: - type: Transform - pos: 85.5,3.5 + pos: 15.5,-12.5 parent: 2 - - uid: 3562 + - uid: 6882 components: - type: Transform - pos: 85.5,5.5 + pos: 17.5,-12.5 parent: 2 - - uid: 3564 + - uid: 6889 components: - type: Transform - pos: 90.5,6.5 + rot: 3.141592653589793 rad + pos: -14.5,1.5 parent: 2 - - uid: 3565 + - uid: 6896 components: - type: Transform - pos: 89.5,6.5 + rot: 3.141592653589793 rad + pos: -21.5,1.5 parent: 2 - - uid: 3584 + - uid: 7251 components: - type: Transform - pos: 86.5,6.5 + pos: -14.5,14.5 parent: 2 - - uid: 3587 + - uid: 7252 components: - type: Transform - pos: 89.5,2.5 + pos: -15.5,14.5 parent: 2 - - uid: 3589 + - uid: 7264 components: - type: Transform - pos: 84.5,13.5 + pos: -3.5,14.5 parent: 2 - - uid: 3590 + - uid: 7346 components: - type: Transform - pos: 85.5,13.5 + pos: 0.5,14.5 parent: 2 - - uid: 3591 + - uid: 7455 components: - type: Transform - pos: 82.5,13.5 + pos: -0.5,14.5 parent: 2 - - uid: 3596 + - uid: 7456 components: - type: Transform - pos: 86.5,7.5 + pos: -12.5,14.5 parent: 2 - - uid: 3597 + - uid: 7461 components: - type: Transform - pos: 90.5,2.5 + pos: 18.5,-44.5 parent: 2 - - uid: 3599 + - uid: 7466 components: - type: Transform - pos: 87.5,13.5 + pos: 24.5,-44.5 parent: 2 - - uid: 3600 + - uid: 7474 components: - type: Transform - pos: 87.5,12.5 + pos: 1.5,14.5 parent: 2 - - uid: 3601 + - uid: 7533 components: - type: Transform - pos: 87.5,11.5 + pos: -17.5,14.5 parent: 2 - - uid: 3602 + - uid: 7550 components: - type: Transform - pos: 87.5,10.5 + pos: -16.5,14.5 parent: 2 - - uid: 3603 + - uid: 7585 components: - type: Transform - pos: 87.5,9.5 + rot: 1.5707963267948966 rad + pos: 5.5,21.5 parent: 2 - - uid: 3604 + - uid: 7598 components: - type: Transform - pos: 86.5,9.5 + rot: -1.5707963267948966 rad + pos: -25.5,-15.5 parent: 2 - - uid: 3605 + - uid: 7605 components: - type: Transform - pos: 86.5,8.5 + rot: -1.5707963267948966 rad + pos: -25.5,-10.5 parent: 2 - - uid: 3607 + - uid: 7613 components: - type: Transform - pos: 83.5,13.5 + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 parent: 2 - - uid: 3608 + - uid: 7665 components: - type: Transform - pos: 86.5,13.5 + pos: -4.5,14.5 parent: 2 - - uid: 3628 + - uid: 7674 components: - type: Transform - pos: 82.5,0.5 + pos: -9.5,14.5 parent: 2 - - uid: 3629 + - uid: 7677 components: - type: Transform - pos: 82.5,-1.5 + pos: -8.5,14.5 parent: 2 - - uid: 3630 + - uid: 7750 components: - type: Transform - pos: 82.5,-0.5 + rot: -1.5707963267948966 rad + pos: -8.5,-8.5 parent: 2 - - uid: 3631 + - uid: 7752 components: - type: Transform - pos: 82.5,-2.5 + rot: 1.5707963267948966 rad + pos: 37.5,27.5 parent: 2 - - uid: 3632 + - uid: 7754 components: - type: Transform - pos: 83.5,-2.5 + pos: 41.5,29.5 parent: 2 - - uid: 3633 + - uid: 7755 components: - type: Transform - pos: 83.5,-8.5 + pos: 35.5,32.5 parent: 2 - - uid: 3634 + - uid: 7756 components: - type: Transform - pos: 69.5,12.5 + rot: 3.141592653589793 rad + pos: 63.5,43.5 parent: 2 - - uid: 3635 + - uid: 7769 components: - type: Transform - pos: 70.5,12.5 + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 parent: 2 - - uid: 3636 + - uid: 7779 components: - type: Transform - pos: 71.5,12.5 + rot: -1.5707963267948966 rad + pos: -19.5,-8.5 parent: 2 - - uid: 3637 + - uid: 7839 components: - type: Transform - pos: 72.5,12.5 + pos: 9.5,20.5 parent: 2 - - uid: 3638 + - uid: 7842 components: - type: Transform - pos: 72.5,13.5 + pos: 4.5,17.5 parent: 2 - - uid: 3639 + - uid: 7843 components: - type: Transform - pos: 72.5,14.5 + rot: -1.5707963267948966 rad + pos: -21.5,-17.5 parent: 2 - - uid: 3640 + - uid: 7875 components: - type: Transform - pos: 72.5,15.5 + pos: 7.5,17.5 parent: 2 - - uid: 3641 + - uid: 7896 components: - type: Transform - pos: 72.5,16.5 + pos: 4.5,34.5 parent: 2 - - uid: 3642 + - uid: 7897 components: - type: Transform - pos: 72.5,17.5 + pos: 3.5,-33.5 parent: 2 - - uid: 3643 + - uid: 7898 components: - type: Transform - pos: 71.5,17.5 + pos: 2.5,-33.5 parent: 2 - - uid: 3644 + - uid: 7899 components: - type: Transform - pos: 70.5,17.5 + pos: 1.5,-33.5 parent: 2 - - uid: 3645 + - uid: 7900 components: - type: Transform - pos: 69.5,17.5 + pos: -0.5,-13.5 parent: 2 - - uid: 3646 + - uid: 7901 components: - type: Transform - pos: 68.5,17.5 + pos: 2.5,-17.5 parent: 2 - - uid: 3647 + - uid: 7902 components: - type: Transform - pos: 68.5,12.5 + pos: -0.5,-14.5 parent: 2 - - uid: 3648 + - uid: 7904 components: - type: Transform - pos: 67.5,12.5 + pos: -0.5,-16.5 parent: 2 - - uid: 3649 + - uid: 7905 components: - type: Transform - pos: 67.5,17.5 + pos: -0.5,-17.5 parent: 2 - - uid: 3650 + - uid: 7906 components: - type: Transform - pos: 66.5,17.5 + pos: 5.5,-17.5 parent: 2 - - uid: 3651 + - uid: 7907 components: - type: Transform - pos: 65.5,17.5 + pos: 6.5,-17.5 parent: 2 - - uid: 3655 + - uid: 7908 components: - type: Transform - pos: 66.5,12.5 + pos: 7.5,-17.5 parent: 2 - - uid: 3656 + - uid: 7909 components: - type: Transform - pos: 65.5,12.5 + pos: 8.5,-17.5 parent: 2 - - uid: 3658 + - uid: 7910 components: - type: Transform - pos: 63.5,17.5 + pos: 8.5,-18.5 parent: 2 - - uid: 3659 + - uid: 7911 components: - type: Transform - pos: 62.5,17.5 + pos: 8.5,-19.5 parent: 2 - - uid: 3660 + - uid: 7912 components: - type: Transform - pos: 58.5,7.5 + pos: 8.5,-20.5 parent: 2 - - uid: 3661 + - uid: 7913 components: - type: Transform - pos: 59.5,7.5 + pos: 8.5,-21.5 parent: 2 - - uid: 3662 + - uid: 7914 components: - type: Transform - pos: 59.5,8.5 + pos: 8.5,-22.5 parent: 2 - - uid: 3663 + - uid: 7915 components: - type: Transform - pos: 59.5,9.5 + pos: 6.5,-28.5 parent: 2 - - uid: 3664 + - uid: 7916 components: - type: Transform - pos: 59.5,10.5 + pos: 6.5,-29.5 parent: 2 - - uid: 3665 + - uid: 7917 components: - type: Transform - pos: 59.5,11.5 + pos: 7.5,-22.5 parent: 2 - - uid: 3668 + - uid: 7919 components: - type: Transform - pos: 64.5,11.5 + pos: 5.5,-22.5 parent: 2 - - uid: 3669 + - uid: 7920 components: - type: Transform - pos: 64.5,10.5 + pos: 4.5,-22.5 parent: 2 - - uid: 3670 + - uid: 7921 components: - type: Transform - pos: 64.5,9.5 + pos: 3.5,-22.5 parent: 2 - - uid: 3671 + - uid: 7922 components: - type: Transform - pos: 64.5,8.5 + pos: 3.5,-23.5 parent: 2 - - uid: 3672 + - uid: 7923 components: - type: Transform - pos: 64.5,7.5 + pos: 3.5,-24.5 parent: 2 - - uid: 3673 + - uid: 7924 components: - type: Transform - pos: 63.5,7.5 + pos: 3.5,-25.5 parent: 2 - - uid: 3674 + - uid: 7926 components: - type: Transform - pos: 62.5,7.5 + pos: 3.5,-26.5 parent: 2 - - uid: 3675 + - uid: 7927 components: - type: Transform - pos: 61.5,7.5 + pos: 3.5,-27.5 parent: 2 - - uid: 3676 + - uid: 7928 components: - type: Transform - pos: 60.5,7.5 + pos: 0.5,-33.5 parent: 2 - - uid: 3709 + - uid: 7929 components: - type: Transform - pos: 91.5,-7.5 + pos: 0.5,-32.5 parent: 2 - - uid: 3710 + - uid: 7930 components: - type: Transform - pos: 91.5,-8.5 + pos: -0.5,-32.5 parent: 2 - - uid: 3711 + - uid: 7931 components: - type: Transform - pos: 91.5,-9.5 + pos: -1.5,-32.5 parent: 2 - - uid: 3712 + - uid: 7932 components: - type: Transform - pos: 91.5,-10.5 + pos: -1.5,-31.5 parent: 2 - - uid: 3713 + - uid: 7933 components: - type: Transform - pos: 91.5,-11.5 + pos: -1.5,-30.5 parent: 2 - - uid: 3714 + - uid: 7934 components: - type: Transform - pos: 90.5,-11.5 + pos: -1.5,-27.5 parent: 2 - - uid: 3715 + - uid: 7935 components: - type: Transform - pos: 89.5,-11.5 + pos: 2.5,-27.5 parent: 2 - - uid: 3716 + - uid: 8044 components: - type: Transform - pos: 88.5,-11.5 + rot: -1.5707963267948966 rad + pos: 12.5,-55.5 parent: 2 - - uid: 3717 + - uid: 8045 components: - type: Transform - pos: 88.5,-9.5 + rot: -1.5707963267948966 rad + pos: 12.5,-58.5 parent: 2 - - uid: 3718 + - uid: 8052 components: - type: Transform - pos: 88.5,-8.5 + rot: 1.5707963267948966 rad + pos: 5.5,29.5 parent: 2 - - uid: 3719 + - uid: 8102 components: - type: Transform - pos: 88.5,-7.5 + pos: 7.5,14.5 parent: 2 - - uid: 3722 + - uid: 8171 components: - type: Transform - pos: 83.5,-3.5 + pos: 10.5,35.5 parent: 2 - - uid: 3723 + - uid: 8223 components: - type: Transform - pos: 83.5,-4.5 + rot: -1.5707963267948966 rad + pos: 12.5,-56.5 parent: 2 - - uid: 3724 + - uid: 8251 components: - type: Transform - pos: 83.5,-7.5 + pos: 52.5,36.5 parent: 2 - - uid: 3725 + - uid: 8255 components: - type: Transform - pos: 83.5,-5.5 + pos: 10.5,34.5 parent: 2 - - uid: 3726 + - uid: 8256 components: - type: Transform - pos: 83.5,-6.5 + pos: -13.5,14.5 parent: 2 - - uid: 3727 + - uid: 8257 components: - type: Transform - pos: 85.5,-6.5 + pos: -5.5,14.5 parent: 2 - - uid: 3728 + - uid: 8304 components: - type: Transform - pos: 84.5,-6.5 + pos: 49.5,36.5 parent: 2 - - uid: 3737 + - uid: 8324 components: - type: Transform - pos: 85.5,-7.5 + pos: 51.5,36.5 parent: 2 - - uid: 3738 + - uid: 8326 components: - type: Transform - pos: 85.5,-8.5 + pos: 52.5,-9.5 parent: 2 - - uid: 3739 + - uid: 8328 components: - type: Transform - pos: 85.5,-9.5 + pos: 44.5,20.5 parent: 2 - - uid: 3740 + - uid: 8329 components: - type: Transform - pos: 85.5,-10.5 + pos: 44.5,19.5 parent: 2 - - uid: 3741 + - uid: 8330 components: - type: Transform - pos: 85.5,-11.5 + pos: 44.5,18.5 parent: 2 - - uid: 3744 + - uid: 8331 components: - type: Transform - pos: 81.5,0.5 + pos: 44.5,17.5 parent: 2 - - uid: 3745 + - uid: 8333 components: - type: Transform - pos: 80.5,0.5 + pos: 44.5,16.5 parent: 2 - - uid: 3746 + - uid: 8396 components: - type: Transform - pos: 79.5,0.5 + rot: 1.5707963267948966 rad + pos: 37.5,26.5 parent: 2 - - uid: 3747 + - uid: 8405 components: - type: Transform - pos: 79.5,-0.5 + pos: 58.5,39.5 parent: 2 - - uid: 3748 + - uid: 8411 components: - type: Transform - pos: 79.5,-1.5 + rot: 3.141592653589793 rad + pos: 60.5,40.5 parent: 2 - - uid: 3749 + - uid: 8436 components: - type: Transform - pos: 79.5,-2.5 + rot: 3.141592653589793 rad + pos: 53.5,41.5 parent: 2 - - uid: 3750 + - uid: 8447 components: - type: Transform - pos: 78.5,-2.5 + rot: -1.5707963267948966 rad + pos: 3.5,22.5 parent: 2 - - uid: 3751 + - uid: 8674 components: - type: Transform - pos: 78.5,-8.5 + pos: 52.5,37.5 parent: 2 - - uid: 3752 + - uid: 8677 components: - type: Transform - pos: 78.5,-9.5 + rot: 3.141592653589793 rad + pos: 53.5,31.5 parent: 2 - - uid: 3753 + - uid: 8700 components: - type: Transform - pos: 77.5,-9.5 + pos: 42.5,33.5 parent: 2 - - uid: 3754 + - uid: 8701 components: - type: Transform - pos: 76.5,-9.5 + pos: 42.5,32.5 parent: 2 - - uid: 3755 + - uid: 8720 components: - type: Transform - pos: 75.5,-9.5 + pos: 93.5,-18.5 parent: 2 - - uid: 3756 + - uid: 8723 components: - type: Transform - pos: 75.5,-8.5 + pos: 94.5,-18.5 parent: 2 - - uid: 3757 + - uid: 8724 components: - type: Transform - pos: 75.5,-7.5 + pos: 94.5,-21.5 parent: 2 - - uid: 3758 + - uid: 8726 components: - type: Transform - pos: 75.5,-6.5 + pos: 92.5,-21.5 parent: 2 - - uid: 3759 + - uid: 8758 components: - type: Transform - pos: 75.5,-5.5 + pos: 104.5,-10.5 parent: 2 - - uid: 3760 + - uid: 8760 components: - type: Transform - pos: 75.5,-4.5 + pos: 99.5,-18.5 parent: 2 - - uid: 3761 + - uid: 8761 components: - type: Transform - pos: 75.5,-3.5 + pos: 99.5,-21.5 parent: 2 - - uid: 3762 + - uid: 8762 components: - type: Transform - pos: 75.5,-2.5 + pos: 100.5,-18.5 parent: 2 - - uid: 3763 + - uid: 8763 components: - type: Transform - pos: 76.5,-2.5 + pos: 101.5,-18.5 parent: 2 - - uid: 3764 + - uid: 8764 components: - type: Transform - pos: 76.5,-1.5 + pos: 100.5,-21.5 parent: 2 - - uid: 3765 + - uid: 8765 components: - type: Transform - pos: 76.5,-0.5 + pos: 101.5,-21.5 parent: 2 - - uid: 3766 + - uid: 8768 components: - type: Transform - pos: 76.5,0.5 + pos: 101.5,-17.5 parent: 2 - - uid: 3767 + - uid: 8769 components: - type: Transform - pos: 78.5,0.5 + pos: 101.5,-16.5 parent: 2 - - uid: 3784 + - uid: 8770 components: - type: Transform - pos: 74.5,-7.5 + pos: 101.5,-15.5 parent: 2 - - uid: 3785 + - uid: 8771 components: - type: Transform - pos: 73.5,-7.5 + pos: 101.5,-14.5 parent: 2 - - uid: 3788 + - uid: 8772 components: - type: Transform - pos: 73.5,-8.5 + pos: 101.5,-13.5 parent: 2 - - uid: 3789 + - uid: 8773 components: - type: Transform - pos: 73.5,-9.5 + pos: 101.5,-12.5 parent: 2 - - uid: 3790 + - uid: 8774 components: - type: Transform - pos: 73.5,-10.5 + pos: 101.5,-11.5 parent: 2 - - uid: 3791 + - uid: 8778 components: - type: Transform - pos: 73.5,-11.5 + pos: 104.5,-9.5 parent: 2 - - uid: 3792 + - uid: 8780 components: - type: Transform - pos: 74.5,-11.5 + pos: 104.5,-11.5 parent: 2 - - uid: 3793 + - uid: 8781 components: - type: Transform - pos: 75.5,-11.5 + pos: 103.5,-11.5 parent: 2 - - uid: 3794 + - uid: 8782 components: - type: Transform - pos: 77.5,-11.5 + pos: 102.5,-11.5 parent: 2 - - uid: 3795 + - uid: 8792 components: - type: Transform - pos: 76.5,-11.5 + pos: 102.5,-21.5 parent: 2 - - uid: 3796 + - uid: 8793 components: - type: Transform - pos: 78.5,-11.5 + pos: 103.5,-21.5 parent: 2 - - uid: 3797 + - uid: 8794 components: - type: Transform - pos: 79.5,-11.5 + pos: 104.5,-21.5 parent: 2 - - uid: 3798 + - uid: 8811 components: - type: Transform - pos: 80.5,-11.5 + pos: 108.5,-25.5 parent: 2 - - uid: 3799 + - uid: 8812 components: - type: Transform - pos: 81.5,-11.5 + pos: 108.5,-24.5 parent: 2 - - uid: 3800 + - uid: 8813 components: - type: Transform - pos: 82.5,-11.5 + pos: 108.5,-23.5 parent: 2 - - uid: 3801 + - uid: 8814 components: - type: Transform - pos: 83.5,-11.5 + pos: 108.5,-22.5 parent: 2 - - uid: 3802 + - uid: 8815 components: - type: Transform - pos: 84.5,-11.5 + pos: 108.5,-21.5 parent: 2 - - uid: 3829 + - uid: 8816 components: - type: Transform - pos: 90.5,-12.5 + pos: 108.5,-20.5 parent: 2 - - uid: 3830 + - uid: 8865 components: - type: Transform - pos: 90.5,-13.5 + pos: 108.5,-10.5 parent: 2 - - uid: 3836 + - uid: 8866 components: - type: Transform - pos: 71.5,-20.5 + pos: 108.5,-9.5 parent: 2 - - uid: 3837 + - uid: 8867 components: - type: Transform - pos: 70.5,-20.5 + pos: 108.5,-11.5 parent: 2 - - uid: 3838 + - uid: 8868 components: - type: Transform - pos: 69.5,-20.5 + pos: 108.5,-12.5 parent: 2 - - uid: 3839 + - uid: 8869 components: - type: Transform - pos: 67.5,-20.5 + pos: 108.5,-13.5 parent: 2 - - uid: 3840 + - uid: 8870 components: - type: Transform - pos: 68.5,-20.5 + pos: 108.5,-14.5 parent: 2 - - uid: 3841 + - uid: 8875 components: - type: Transform - pos: 65.5,-20.5 + pos: 109.5,-20.5 parent: 2 - - uid: 3842 + - uid: 8876 components: - type: Transform - pos: 66.5,-20.5 + pos: 110.5,-20.5 parent: 2 - - uid: 3844 + - uid: 8877 components: - type: Transform - pos: 57.5,-20.5 + pos: 113.5,-20.5 parent: 2 - - uid: 3847 + - uid: 8878 components: - type: Transform - pos: 72.5,-20.5 + pos: 116.5,-20.5 parent: 2 - - uid: 3848 + - uid: 8885 components: - type: Transform - pos: 72.5,-19.5 + pos: 109.5,-14.5 parent: 2 - - uid: 3849 + - uid: 8935 components: - type: Transform - pos: 72.5,-18.5 + pos: 110.5,-14.5 parent: 2 - - uid: 3850 + - uid: 8936 components: - type: Transform - pos: 72.5,-17.5 + pos: 113.5,-14.5 parent: 2 - - uid: 3879 + - uid: 8937 components: - type: Transform - pos: 90.5,-14.5 + pos: 116.5,-14.5 parent: 2 - - uid: 3880 + - uid: 8955 components: - type: Transform - pos: 90.5,-15.5 + pos: 116.5,-17.5 parent: 2 - - uid: 3881 + - uid: 9175 components: - type: Transform - pos: 90.5,-16.5 + rot: 3.141592653589793 rad + pos: 69.5,-14.5 parent: 2 - - uid: 3882 + - uid: 9217 components: - type: Transform - pos: 90.5,-17.5 + pos: 39.5,-13.5 parent: 2 - - uid: 3883 + - uid: 9218 components: - type: Transform - pos: 91.5,-17.5 + pos: 39.5,-14.5 parent: 2 - - uid: 3884 + - uid: 9219 components: - type: Transform - pos: 91.5,-18.5 + pos: 39.5,-15.5 parent: 2 - - uid: 3886 + - uid: 9220 components: - type: Transform - pos: 91.5,-21.5 + pos: 39.5,-17.5 parent: 2 - - uid: 3887 + - uid: 9348 components: - type: Transform - pos: 91.5,-22.5 + rot: 3.141592653589793 rad + pos: 31.5,34.5 parent: 2 - - uid: 3888 + - uid: 9455 components: - type: Transform - pos: 90.5,-22.5 + rot: 3.141592653589793 rad + pos: 32.5,34.5 parent: 2 - - uid: 3890 + - uid: 9726 components: - type: Transform - pos: 88.5,-22.5 + pos: 58.5,38.5 parent: 2 - - uid: 3891 + - uid: 9860 components: - type: Transform - pos: 87.5,-22.5 + pos: 58.5,33.5 parent: 2 - - uid: 3894 + - uid: 10085 components: - type: Transform - pos: 93.5,-21.5 + pos: 58.5,34.5 parent: 2 - - uid: 3895 + - uid: 10089 components: - type: Transform - pos: 87.5,-21.5 + rot: 3.141592653589793 rad + pos: 39.5,-20.5 parent: 2 - - uid: 3896 + - uid: 10090 components: - type: Transform - pos: 89.5,-22.5 + rot: 3.141592653589793 rad + pos: 38.5,-20.5 parent: 2 - - uid: 3897 + - uid: 10091 components: - type: Transform - pos: 87.5,-19.5 + rot: 3.141592653589793 rad + pos: 37.5,-20.5 parent: 2 - - uid: 3898 + - uid: 10092 components: - type: Transform - pos: 87.5,-19.5 + pos: -4.5,-3.5 parent: 2 - - uid: 3899 + - uid: 10093 components: - type: Transform - pos: 92.5,-18.5 + pos: -4.5,-5.5 parent: 2 - - uid: 3900 + - uid: 10094 components: - type: Transform - pos: 87.5,-18.5 + pos: -4.5,-6.5 parent: 2 - - uid: 3901 + - uid: 10095 components: - type: Transform - pos: 87.5,-17.5 + pos: 3.5,-7.5 parent: 2 - - uid: 3972 + - uid: 10096 components: - type: Transform - pos: 11.5,-58.5 + pos: 4.5,-7.5 parent: 2 - - uid: 3989 + - uid: 10097 components: - type: Transform - pos: 21.5,-59.5 + pos: 6.5,-7.5 parent: 2 - - uid: 3990 + - uid: 10098 components: - type: Transform - pos: 20.5,-59.5 + pos: 6.5,-10.5 parent: 2 - - uid: 3991 + - uid: 10099 components: - type: Transform - pos: 29.5,-59.5 + pos: 5.5,-10.5 parent: 2 - - uid: 3992 + - uid: 10100 components: - type: Transform - pos: 11.5,-56.5 + pos: 4.5,-10.5 parent: 2 - - uid: 3993 + - uid: 10101 components: - type: Transform - pos: 11.5,-59.5 + pos: 3.5,-10.5 parent: 2 - - uid: 3994 + - uid: 10102 components: - type: Transform - pos: 12.5,-59.5 + pos: 3.5,-8.5 parent: 2 - - uid: 3995 + - uid: 10104 components: - type: Transform - pos: 22.5,-59.5 + pos: -4.5,-2.5 parent: 2 - - uid: 3996 + - uid: 10105 components: - type: Transform - pos: 15.5,-59.5 + pos: 5.5,-7.5 parent: 2 - - uid: 4044 + - uid: 10106 components: - type: Transform - pos: 37.5,-27.5 + pos: -0.5,-6.5 parent: 2 - - uid: 4057 + - uid: 10107 components: - type: Transform - pos: 49.5,-22.5 + pos: 0.5,-2.5 parent: 2 - - uid: 4077 + - uid: 10108 components: - type: Transform - pos: 48.5,-22.5 + pos: 0.5,-5.5 parent: 2 - - uid: 4078 + - uid: 10109 components: - type: Transform - pos: 43.5,-36.5 + pos: 0.5,-6.5 parent: 2 - - uid: 4079 + - uid: 10110 components: - type: Transform - pos: 45.5,-36.5 + pos: -3.5,-6.5 parent: 2 - - uid: 4112 + - uid: 10111 components: - type: Transform - pos: 19.5,-13.5 + pos: 0.5,-3.5 parent: 2 - - uid: 4139 + - uid: 10112 components: - type: Transform - pos: -27.5,10.5 + pos: -2.5,-6.5 parent: 2 - - uid: 4166 + - uid: 10113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-21.5 + pos: -1.5,-6.5 parent: 2 - - uid: 4168 + - uid: 10140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-21.5 + rot: 3.141592653589793 rad + pos: 4.5,-21.5 parent: 2 - - uid: 4169 + - uid: 10219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-21.5 + rot: 3.141592653589793 rad + pos: 41.5,-20.5 parent: 2 - - uid: 4170 + - uid: 10220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 + rot: 3.141592653589793 rad + pos: 49.5,-20.5 parent: 2 - - uid: 4171 + - uid: 10221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-21.5 + rot: 3.141592653589793 rad + pos: 48.5,-20.5 parent: 2 - - uid: 4172 + - uid: 10222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-21.5 + rot: 3.141592653589793 rad + pos: 47.5,-20.5 parent: 2 - - uid: 4173 + - uid: 10223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-21.5 + rot: 3.141592653589793 rad + pos: 46.5,-20.5 parent: 2 - - uid: 4174 + - uid: 10224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-20.5 + rot: 3.141592653589793 rad + pos: 45.5,-20.5 parent: 2 - - uid: 4175 + - uid: 10225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-34.5 + rot: 3.141592653589793 rad + pos: 44.5,-20.5 parent: 2 - - uid: 4187 + - uid: 10226 components: - type: Transform - pos: 32.5,-21.5 + rot: 3.141592653589793 rad + pos: 43.5,-20.5 parent: 2 - - uid: 4229 + - uid: 10227 components: - type: Transform - pos: 37.5,-33.5 + rot: 3.141592653589793 rad + pos: 42.5,-20.5 parent: 2 - - uid: 4244 + - uid: 10319 components: - type: Transform - pos: 30.5,-22.5 + pos: 58.5,37.5 parent: 2 - - uid: 4246 + - uid: 10320 components: - type: Transform - pos: 31.5,-21.5 + rot: 3.141592653589793 rad + pos: 53.5,30.5 parent: 2 - - uid: 4254 + - uid: 10745 components: - type: Transform - pos: 33.5,-29.5 + pos: 85.5,-19.5 parent: 2 - - uid: 4255 + - uid: 10746 components: - type: Transform - pos: 33.5,-31.5 + pos: 86.5,-19.5 parent: 2 - - uid: 4256 + - uid: 10747 components: - type: Transform - pos: 33.5,-33.5 + pos: 84.5,-19.5 parent: 2 - - uid: 4279 + - uid: 10748 components: - type: Transform - pos: 17.5,-20.5 + pos: 84.5,-21.5 parent: 2 - - uid: 4284 + - uid: 10749 components: - type: Transform - pos: 50.5,-22.5 + pos: 85.5,-21.5 parent: 2 - - uid: 4293 + - uid: 10750 components: - type: Transform - pos: 18.5,-20.5 + pos: 86.5,-21.5 parent: 2 - - uid: 4295 + - uid: 10842 components: - type: Transform - pos: 33.5,-27.5 + pos: 37.5,35.5 parent: 2 - - uid: 4299 + - uid: 10843 components: - type: Transform - pos: 50.5,-47.5 + pos: 38.5,35.5 parent: 2 - - uid: 4329 + - uid: 10844 components: - type: Transform - pos: 30.5,-45.5 + pos: 38.5,34.5 parent: 2 - - uid: 4330 + - uid: 10845 components: - type: Transform - pos: 29.5,-45.5 + pos: 59.5,33.5 parent: 2 - - uid: 4331 + - uid: 10878 components: - type: Transform - pos: 27.5,-44.5 + pos: 26.5,-59.5 parent: 2 - - uid: 4332 + - uid: 10967 components: - type: Transform - pos: 27.5,-43.5 + rot: -1.5707963267948966 rad + pos: 24.5,-43.5 parent: 2 - - uid: 4333 + - uid: 10987 components: - type: Transform - pos: 33.5,-37.5 + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 parent: 2 - - uid: 4369 + - uid: 10990 components: - type: Transform - pos: 37.5,-37.5 + rot: 1.5707963267948966 rad + pos: 11.5,-56.5 parent: 2 - - uid: 4373 + - uid: 10998 components: - type: Transform - pos: 36.5,-37.5 + rot: -1.5707963267948966 rad + pos: 18.5,-43.5 parent: 2 - - uid: 4374 + - uid: 11005 components: - type: Transform - pos: 33.5,-38.5 + rot: -1.5707963267948966 rad + pos: 12.5,-50.5 parent: 2 - - uid: 4375 + - uid: 11006 components: - type: Transform - pos: 33.5,-41.5 + rot: 1.5707963267948966 rad + pos: 11.5,-54.5 parent: 2 - - uid: 4382 + - uid: 11280 components: - type: Transform - pos: 34.5,-37.5 + rot: 3.141592653589793 rad + pos: 52.5,31.5 parent: 2 - - uid: 4383 + - uid: 11398 components: - type: Transform - pos: 33.5,-40.5 + pos: 87.5,5.5 parent: 2 - - uid: 4384 + - uid: 11400 components: - type: Transform - pos: 34.5,-41.5 + pos: 87.5,3.5 parent: 2 - - uid: 4386 + - uid: 11613 components: - type: Transform - pos: 36.5,-41.5 + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 parent: 2 - - uid: 4387 + - uid: 11676 components: - type: Transform - pos: 37.5,-41.5 + rot: -1.5707963267948966 rad + pos: 8.5,37.5 parent: 2 - - uid: 4388 + - uid: 11691 components: - type: Transform - pos: 37.5,-40.5 + pos: 7.5,16.5 parent: 2 - - uid: 4389 + - uid: 11693 components: - type: Transform - pos: 37.5,-38.5 + pos: 7.5,15.5 parent: 2 - - uid: 4395 + - uid: 11733 components: - type: Transform - pos: 27.5,-45.5 + rot: 1.5707963267948966 rad + pos: 37.5,20.5 parent: 2 - - uid: 4396 + - uid: 11734 components: - type: Transform - pos: 28.5,-45.5 + rot: 1.5707963267948966 rad + pos: 39.5,20.5 parent: 2 - - uid: 4417 + - uid: 11769 components: - type: Transform - pos: 47.5,-36.5 + pos: 37.5,-21.5 parent: 2 - - uid: 4418 + - uid: 11770 components: - type: Transform - pos: 41.5,-36.5 + pos: 36.5,-21.5 parent: 2 - - uid: 4435 + - uid: 11771 components: - type: Transform - pos: 44.5,-36.5 + pos: 35.5,-21.5 parent: 2 - - uid: 4436 + - uid: 11772 components: - type: Transform - pos: 42.5,-36.5 + pos: 34.5,-21.5 parent: 2 - - uid: 4450 + - uid: 11773 components: - type: Transform - pos: 33.5,-45.5 + pos: 33.5,-21.5 parent: 2 - - uid: 4466 + - uid: 11778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-41.5 + pos: 29.5,-22.5 parent: 2 - - uid: 4468 + - uid: 11792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-41.5 + pos: 104.5,-24.5 parent: 2 - - uid: 4472 + - uid: 11793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-41.5 + pos: 104.5,-23.5 parent: 2 - - uid: 4477 + - uid: 11794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-41.5 + pos: 104.5,-22.5 parent: 2 - - uid: 4481 + - uid: 11795 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-41.5 + pos: 104.5,-25.5 parent: 2 - - uid: 4486 + - uid: 11819 components: - type: Transform - pos: 47.5,-41.5 + rot: -1.5707963267948966 rad + pos: 3.5,39.5 parent: 2 - - uid: 4491 + - uid: 11820 components: - type: Transform - pos: 45.5,-42.5 + rot: 1.5707963267948966 rad + pos: 11.5,-53.5 parent: 2 - - uid: 4567 + - uid: 12102 components: - type: Transform - pos: 41.5,-37.5 + rot: 3.141592653589793 rad + pos: 54.5,42.5 parent: 2 - - uid: 4743 + - uid: 12142 components: - type: Transform - pos: 44.5,27.5 + rot: 3.141592653589793 rad + pos: 58.5,42.5 parent: 2 - - uid: 4745 + - uid: 12143 components: - type: Transform - pos: -27.5,13.5 + rot: 3.141592653589793 rad + pos: 59.5,42.5 parent: 2 - - uid: 4885 + - uid: 12228 components: - type: Transform - pos: 13.5,35.5 + pos: 70.5,22.5 parent: 2 - - uid: 5287 + - uid: 12424 components: - type: Transform - pos: 6.5,18.5 + rot: -1.5707963267948966 rad + pos: 7.5,39.5 parent: 2 - - uid: 5288 + - uid: 12432 components: - type: Transform - pos: 4.5,18.5 + rot: 3.141592653589793 rad + pos: 58.5,49.5 parent: 2 - - uid: 5291 + - uid: 12433 components: - type: Transform - pos: -0.5,1.5 + rot: 3.141592653589793 rad + pos: 58.5,51.5 parent: 2 - - uid: 5292 + - uid: 12434 components: - type: Transform - pos: 2.5,1.5 + rot: 3.141592653589793 rad + pos: 58.5,50.5 parent: 2 - - uid: 5298 + - uid: 12435 components: - type: Transform - pos: -13.5,1.5 + rot: 3.141592653589793 rad + pos: 54.5,50.5 parent: 2 - - uid: 5300 + - uid: 12436 components: - type: Transform - pos: 45.5,-41.5 + rot: 3.141592653589793 rad + pos: 54.5,49.5 parent: 2 - - uid: 5352 + - uid: 12438 components: - type: Transform - pos: -14.5,1.5 + rot: 3.141592653589793 rad + pos: 59.5,47.5 parent: 2 - - uid: 5353 + - uid: 12440 components: - type: Transform - pos: 2.5,5.5 + rot: 3.141592653589793 rad + pos: 53.5,47.5 parent: 2 - - uid: 5354 + - uid: 12446 components: - type: Transform - pos: 2.5,9.5 + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 parent: 2 - - uid: 5364 + - uid: 12520 components: - type: Transform - pos: 46.5,12.5 + rot: -1.5707963267948966 rad + pos: 5.5,30.5 parent: 2 - - uid: 5477 + - uid: 12521 components: - type: Transform - pos: 72.5,34.5 + pos: 27.5,-41.5 parent: 2 - - uid: 5478 + - uid: 12664 components: - type: Transform - pos: 72.5,30.5 + rot: -1.5707963267948966 rad + pos: 3.5,28.5 parent: 2 - - uid: 5479 + - uid: 12669 components: - type: Transform - pos: 72.5,26.5 + rot: 3.141592653589793 rad + pos: 56.5,46.5 parent: 2 - - uid: 5480 + - uid: 12775 components: - type: Transform - pos: 71.5,26.5 + rot: 1.5707963267948966 rad + pos: 20.5,-60.5 parent: 2 - - uid: 5481 + - uid: 12888 components: - type: Transform - pos: 70.5,26.5 + pos: 50.5,-49.5 parent: 2 - - uid: 5482 + - uid: 12889 components: - type: Transform - pos: 69.5,26.5 + pos: 49.5,-49.5 parent: 2 - - uid: 5724 + - uid: 12892 components: - type: Transform - pos: 51.5,-10.5 + pos: 46.5,-49.5 parent: 2 - - uid: 5725 + - uid: 12893 components: - type: Transform - pos: 51.5,-11.5 + pos: 45.5,-49.5 parent: 2 - - uid: 6120 + - uid: 12894 components: - type: Transform - pos: 12.5,-41.5 + pos: 45.5,-43.5 parent: 2 - - uid: 6121 + - uid: 12895 components: - type: Transform - pos: 12.5,-40.5 + pos: 46.5,-43.5 parent: 2 - - uid: 6122 + - uid: 12896 components: - type: Transform - pos: 13.5,-40.5 + pos: 47.5,-43.5 parent: 2 - - uid: 6123 + - uid: 12897 components: - type: Transform - pos: 14.5,-40.5 + pos: 48.5,-43.5 parent: 2 - - uid: 6196 + - uid: 12898 components: - type: Transform - pos: 69.5,-12.5 + pos: 49.5,-43.5 parent: 2 - - uid: 6197 + - uid: 12899 components: - type: Transform - pos: 70.5,-12.5 + pos: 50.5,-43.5 parent: 2 - - uid: 6209 + - uid: 12905 components: - type: Transform - pos: 62.5,-20.5 + pos: 50.5,-48.5 parent: 2 - - uid: 6210 + - uid: 12907 components: - type: Transform - pos: 64.5,-20.5 + pos: 50.5,-46.5 parent: 2 - - uid: 6211 + - uid: 12908 components: - type: Transform - pos: 60.5,-20.5 + pos: 50.5,-45.5 parent: 2 - - uid: 6212 + - uid: 12909 components: - type: Transform - pos: 56.5,-20.5 + pos: 50.5,-44.5 parent: 2 - - uid: 6782 + - uid: 12920 components: - type: Transform - pos: 58.5,-20.5 + pos: 44.5,-49.5 parent: 2 - - uid: 6783 + - uid: 12921 components: - type: Transform - pos: 59.5,-20.5 + pos: 40.5,-49.5 parent: 2 - - uid: 6784 + - uid: 12922 components: - type: Transform - pos: 61.5,-20.5 + pos: 39.5,-49.5 parent: 2 - - uid: 6785 + - uid: 12923 components: - type: Transform - pos: 63.5,-20.5 + pos: 38.5,-49.5 parent: 2 - - uid: 6816 + - uid: 12924 components: - type: Transform - pos: -22.5,-15.5 + pos: 37.5,-49.5 parent: 2 - - uid: 6822 + - uid: 12925 components: - type: Transform - pos: -4.5,-13.5 + pos: 36.5,-49.5 parent: 2 - - uid: 6838 + - uid: 12926 components: - type: Transform - pos: -10.5,-15.5 + pos: 35.5,-49.5 parent: 2 - - uid: 6860 + - uid: 12927 components: - type: Transform - pos: -15.5,14.5 + pos: 34.5,-49.5 parent: 2 - - uid: 6867 + - uid: 12928 components: - type: Transform - pos: 4.5,14.5 + pos: 33.5,-49.5 parent: 2 - - uid: 6880 + - uid: 12929 components: - type: Transform - pos: 14.5,-12.5 + pos: 33.5,-48.5 parent: 2 - - uid: 6881 + - uid: 12930 components: - type: Transform - pos: 15.5,-12.5 + pos: 33.5,-46.5 parent: 2 - - uid: 6882 + - uid: 12933 components: - type: Transform - pos: 17.5,-12.5 + pos: 31.5,-49.5 parent: 2 - - uid: 6887 + - uid: 12941 components: - type: Transform - pos: -7.5,-7.5 + pos: -20.5,1.5 parent: 2 - - uid: 6895 + - uid: 13113 components: - type: Transform - pos: -21.5,-15.5 + pos: -24.5,1.5 parent: 2 - - uid: 6902 + - uid: 13117 components: - type: Transform - pos: 10.5,32.5 + rot: 1.5707963267948966 rad + pos: 36.5,20.5 parent: 2 - - uid: 6903 + - uid: 13184 components: - type: Transform - pos: 10.5,31.5 + pos: 8.5,14.5 parent: 2 - - uid: 6904 + - uid: 13185 components: - type: Transform - pos: 10.5,30.5 + pos: 9.5,14.5 parent: 2 - - uid: 6905 + - uid: 13186 components: - type: Transform - pos: 10.5,29.5 + pos: 9.5,17.5 parent: 2 - - uid: 6906 + - uid: 13188 components: - type: Transform - pos: 12.5,32.5 + pos: 10.5,14.5 parent: 2 - - uid: 6907 + - uid: 13190 components: - type: Transform - pos: 13.5,32.5 + pos: 27.5,-37.5 parent: 2 - - uid: 6908 + - uid: 13249 components: - type: Transform - pos: 11.5,32.5 + rot: -1.5707963267948966 rad + pos: -26.5,-10.5 parent: 2 - - uid: 6909 + - uid: 13250 components: - type: Transform - pos: 14.5,32.5 + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 parent: 2 - - uid: 6910 + - uid: 13259 components: - type: Transform - pos: 14.5,31.5 + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 parent: 2 - - uid: 6911 + - uid: 13263 components: - type: Transform - pos: 14.5,29.5 + pos: -17.5,-21.5 parent: 2 - - uid: 6912 + - uid: 13264 components: - type: Transform - pos: 14.5,30.5 + rot: 1.5707963267948966 rad + pos: -21.5,-2.5 parent: 2 - - uid: 7466 + - uid: 13265 components: - type: Transform - pos: -3.5,14.5 + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 parent: 2 - - uid: 7471 + - uid: 13266 components: - type: Transform - pos: -1.5,14.5 + pos: -18.5,-21.5 parent: 2 - - uid: 7474 + - uid: 13273 components: - type: Transform - pos: 1.5,14.5 + pos: -20.5,-23.5 parent: 2 - - uid: 7533 + - uid: 13274 components: - type: Transform - pos: -4.5,14.5 + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 parent: 2 - - uid: 7550 + - uid: 13275 components: - type: Transform - pos: -5.5,14.5 + pos: 2.5,-18.5 parent: 2 - - uid: 7551 + - uid: 13281 components: - type: Transform - pos: -6.5,1.5 + rot: 3.141592653589793 rad + pos: 54.5,51.5 parent: 2 - - uid: 7559 + - uid: 13289 components: - type: Transform - pos: -11.5,1.5 + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 parent: 2 - - uid: 7587 + - uid: 13303 components: - type: Transform - pos: -14.5,14.5 + rot: -1.5707963267948966 rad + pos: -25.5,-18.5 parent: 2 - - uid: 7669 + - uid: 13307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,0.5 + rot: -1.5707963267948966 rad + pos: -27.5,-23.5 parent: 2 - - uid: 7712 + - uid: 13308 components: - type: Transform - pos: -16.5,14.5 + rot: -1.5707963267948966 rad + pos: -26.5,-19.5 parent: 2 - - uid: 7763 + - uid: 13309 components: - type: Transform - pos: -13.5,14.5 + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 parent: 2 - - uid: 7840 + - uid: 13310 components: - type: Transform - pos: -18.5,14.5 + rot: -1.5707963267948966 rad + pos: -26.5,-23.5 parent: 2 - - uid: 7897 + - uid: 13311 components: - type: Transform - pos: 3.5,-33.5 + rot: -1.5707963267948966 rad + pos: -25.5,-23.5 parent: 2 - - uid: 7898 + - uid: 13315 components: - type: Transform - pos: 2.5,-33.5 + rot: -1.5707963267948966 rad + pos: -21.5,-23.5 parent: 2 - - uid: 7899 + - uid: 13316 components: - type: Transform - pos: 1.5,-33.5 + pos: -24.5,-23.5 parent: 2 - - uid: 7900 + - uid: 13317 components: - type: Transform - pos: -0.5,-13.5 + rot: -1.5707963267948966 rad + pos: -21.5,-20.5 parent: 2 - - uid: 7901 + - uid: 13322 components: - type: Transform - pos: 2.5,-17.5 + rot: -1.5707963267948966 rad + pos: -9.5,-8.5 parent: 2 - - uid: 7902 + - uid: 13332 components: - type: Transform - pos: -0.5,-14.5 + pos: -1.5,-20.5 parent: 2 - - uid: 7903 + - uid: 13335 components: - type: Transform - pos: -0.5,-15.5 + pos: -19.5,-21.5 parent: 2 - - uid: 7904 + - uid: 13336 components: - type: Transform - pos: -0.5,-16.5 + pos: -3.5,-20.5 parent: 2 - - uid: 7905 + - uid: 13339 components: - type: Transform - pos: -0.5,-17.5 + pos: -20.5,-21.5 parent: 2 - - uid: 7906 + - uid: 13342 components: - type: Transform - pos: 5.5,-17.5 + pos: -8.5,-21.5 parent: 2 - - uid: 7907 + - uid: 13444 components: - type: Transform - pos: 6.5,-17.5 + pos: 51.5,-22.5 parent: 2 - - uid: 7908 + - uid: 13451 components: - type: Transform - pos: 7.5,-17.5 + pos: 52.5,-22.5 parent: 2 - - uid: 7909 + - uid: 13454 components: - type: Transform - pos: 8.5,-17.5 + pos: 52.5,-24.5 parent: 2 - - uid: 7910 + - uid: 13455 components: - type: Transform - pos: 8.5,-18.5 + pos: 52.5,-25.5 parent: 2 - - uid: 7911 + - uid: 13456 components: - type: Transform - pos: 8.5,-19.5 + pos: 52.5,-23.5 parent: 2 - - uid: 7912 + - uid: 13457 components: - type: Transform - pos: 8.5,-20.5 + pos: 52.5,-26.5 parent: 2 - - uid: 7913 + - uid: 13458 components: - type: Transform - pos: 8.5,-21.5 + pos: 52.5,-27.5 parent: 2 - - uid: 7914 + - uid: 13459 components: - type: Transform - pos: 8.5,-22.5 + pos: 52.5,-28.5 parent: 2 - - uid: 7915 + - uid: 13460 components: - type: Transform - pos: 6.5,-28.5 + pos: 52.5,-29.5 parent: 2 - - uid: 7916 + - uid: 13461 components: - type: Transform - pos: 6.5,-29.5 + pos: 52.5,-30.5 parent: 2 - - uid: 7917 + - uid: 13462 components: - type: Transform - pos: 7.5,-22.5 + pos: 52.5,-31.5 parent: 2 - - uid: 7919 + - uid: 13463 components: - type: Transform - pos: 5.5,-22.5 + pos: 52.5,-32.5 parent: 2 - - uid: 7920 + - uid: 13464 components: - type: Transform - pos: 4.5,-22.5 + pos: 52.5,-33.5 parent: 2 - - uid: 7921 + - uid: 13465 components: - type: Transform - pos: 3.5,-22.5 + pos: 52.5,-34.5 parent: 2 - - uid: 7922 + - uid: 13487 components: - type: Transform - pos: 3.5,-23.5 + pos: -4.5,-20.5 parent: 2 - - uid: 7923 + - uid: 13493 components: - type: Transform - pos: 3.5,-24.5 + pos: 10.5,18.5 parent: 2 - - uid: 7924 + - uid: 13561 components: - type: Transform - pos: 3.5,-25.5 + rot: -1.5707963267948966 rad + pos: 70.5,-11.5 parent: 2 - - uid: 7926 + - uid: 13562 components: - type: Transform - pos: 3.5,-26.5 + rot: -1.5707963267948966 rad + pos: 70.5,-10.5 parent: 2 - - uid: 7927 + - uid: 13563 components: - type: Transform - pos: 3.5,-27.5 + rot: -1.5707963267948966 rad + pos: 70.5,-14.5 parent: 2 - - uid: 7928 + - uid: 13565 components: - type: Transform - pos: 0.5,-33.5 + pos: 51.5,32.5 parent: 2 - - uid: 7929 + - uid: 13566 components: - type: Transform - pos: 0.5,-32.5 + rot: 3.141592653589793 rad + pos: 60.5,31.5 parent: 2 - - uid: 7930 + - uid: 13573 components: - type: Transform - pos: -0.5,-32.5 + rot: 3.141592653589793 rad + pos: 54.5,30.5 parent: 2 - - uid: 7931 + - uid: 13574 components: - type: Transform - pos: -1.5,-32.5 + rot: 3.141592653589793 rad + pos: 58.5,30.5 parent: 2 - - uid: 7932 + - uid: 13614 components: - type: Transform - pos: -1.5,-31.5 + pos: 10.5,17.5 parent: 2 - - uid: 7933 + - uid: 13635 components: - type: Transform - pos: -1.5,-30.5 + pos: 73.5,21.5 parent: 2 - - uid: 7934 + - uid: 13638 components: - type: Transform - pos: -1.5,-27.5 + pos: 75.5,21.5 parent: 2 - - uid: 7935 + - uid: 13643 components: - type: Transform - pos: 2.5,-27.5 + pos: 8.5,17.5 parent: 2 - - uid: 8326 + - uid: 13682 components: - type: Transform - pos: 52.5,-9.5 + pos: 10.5,20.5 parent: 2 - - uid: 8328 + - uid: 13685 components: - type: Transform - pos: 44.5,20.5 + pos: 28.5,-37.5 parent: 2 - - uid: 8329 + - uid: 13686 components: - type: Transform - pos: 44.5,19.5 + pos: 29.5,-37.5 parent: 2 - - uid: 8330 + - uid: 13687 components: - type: Transform - pos: 44.5,18.5 + pos: 30.5,-37.5 parent: 2 - - uid: 8331 + - uid: 13694 components: - type: Transform - pos: 44.5,17.5 + pos: 25.5,-37.5 parent: 2 - - uid: 8333 + - uid: 13695 components: - type: Transform - pos: 44.5,16.5 + pos: 26.5,-37.5 parent: 2 - - uid: 8720 + - uid: 13696 components: - type: Transform - pos: 93.5,-18.5 + pos: 27.5,-38.5 parent: 2 - - uid: 8723 + - uid: 13697 components: - type: Transform - pos: 94.5,-18.5 + pos: 27.5,-39.5 parent: 2 - - uid: 8724 + - uid: 13698 components: - type: Transform - pos: 94.5,-21.5 + pos: 27.5,-40.5 parent: 2 - - uid: 8726 + - uid: 13699 components: - type: Transform - pos: 92.5,-21.5 + pos: 27.5,-43.5 parent: 2 - - uid: 8758 + - uid: 13700 components: - type: Transform - pos: 104.5,-10.5 + pos: 27.5,-42.5 parent: 2 - - uid: 8760 + - uid: 13704 components: - type: Transform - pos: 99.5,-18.5 + pos: 10.5,15.5 parent: 2 - - uid: 8761 + - uid: 13709 components: - type: Transform - pos: 99.5,-21.5 + rot: 3.141592653589793 rad + pos: 4.5,-19.5 parent: 2 - - uid: 8762 + - uid: 13710 components: - type: Transform - pos: 100.5,-18.5 + rot: 3.141592653589793 rad + pos: 4.5,-18.5 parent: 2 - - uid: 8763 + - uid: 13767 components: - type: Transform - pos: 101.5,-18.5 + pos: -10.5,-21.5 parent: 2 - - uid: 8764 + - uid: 13768 components: - type: Transform - pos: 100.5,-21.5 + pos: -11.5,-21.5 parent: 2 - - uid: 8765 + - uid: 13770 components: - type: Transform - pos: 101.5,-21.5 + pos: -16.5,-23.5 parent: 2 - - uid: 8768 + - uid: 13771 components: - type: Transform - pos: 101.5,-17.5 + pos: -16.5,-24.5 parent: 2 - - uid: 8769 + - uid: 13772 components: - type: Transform - pos: 101.5,-16.5 + pos: -16.5,-25.5 parent: 2 - - uid: 8770 + - uid: 13773 components: - type: Transform - pos: 101.5,-15.5 + pos: -12.5,-25.5 parent: 2 - - uid: 8771 + - uid: 13774 components: - type: Transform - pos: 101.5,-14.5 + pos: -12.5,-24.5 parent: 2 - - uid: 8772 + - uid: 13775 components: - type: Transform - pos: 101.5,-13.5 + pos: -12.5,-23.5 parent: 2 - - uid: 8773 + - uid: 13776 components: - type: Transform - pos: 101.5,-12.5 + pos: -15.5,-25.5 parent: 2 - - uid: 8774 + - uid: 13777 components: - type: Transform - pos: 101.5,-11.5 + pos: -15.5,-23.5 parent: 2 - - uid: 8778 + - uid: 13778 components: - type: Transform - pos: 104.5,-9.5 + pos: -13.5,-23.5 parent: 2 - - uid: 8780 + - uid: 13779 components: - type: Transform - pos: 104.5,-11.5 + pos: -13.5,-25.5 parent: 2 - - uid: 8781 + - uid: 13781 components: - type: Transform - pos: 103.5,-11.5 + rot: 1.5707963267948966 rad + pos: 22.5,-60.5 parent: 2 - - uid: 8782 + - uid: 13783 components: - type: Transform - pos: 102.5,-11.5 + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 parent: 2 - - uid: 8792 + - uid: 13785 components: - type: Transform - pos: 102.5,-21.5 + rot: 1.5707963267948966 rad + pos: -6.5,-20.5 parent: 2 - - uid: 8793 + - uid: 13791 components: - type: Transform - pos: 103.5,-21.5 + rot: 1.5707963267948966 rad + pos: -0.5,-19.5 parent: 2 - - uid: 8794 + - uid: 13828 components: - type: Transform - pos: 104.5,-21.5 + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 parent: 2 - - uid: 8811 + - uid: 13830 components: - type: Transform - pos: 108.5,-25.5 + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 parent: 2 - - uid: 8812 + - uid: 13831 components: - type: Transform - pos: 108.5,-24.5 + rot: 1.5707963267948966 rad + pos: 2.5,-22.5 parent: 2 - - uid: 8813 + - uid: 13832 components: - type: Transform - pos: 108.5,-23.5 + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 parent: 2 - - uid: 8814 + - uid: 13833 components: - type: Transform - pos: 108.5,-22.5 + rot: 1.5707963267948966 rad + pos: 0.5,-22.5 parent: 2 - - uid: 8815 + - uid: 13834 components: - type: Transform - pos: 108.5,-21.5 + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 parent: 2 - - uid: 8816 + - uid: 13835 components: - type: Transform - pos: 108.5,-20.5 + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 parent: 2 - - uid: 8865 + - uid: 13836 components: - type: Transform - pos: 108.5,-10.5 + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 parent: 2 - - uid: 8866 + - uid: 13837 components: - type: Transform - pos: 108.5,-9.5 + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 parent: 2 - - uid: 8867 + - uid: 13838 components: - type: Transform - pos: 108.5,-11.5 + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 parent: 2 - - uid: 8868 + - uid: 13839 components: - type: Transform - pos: 108.5,-12.5 + rot: 1.5707963267948966 rad + pos: -4.5,-23.5 parent: 2 - - uid: 8869 + - uid: 13842 components: - type: Transform - pos: 108.5,-13.5 + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 parent: 2 - - uid: 8870 + - uid: 13843 components: - type: Transform - pos: 108.5,-14.5 + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 parent: 2 - - uid: 8875 + - uid: 13844 components: - type: Transform - pos: 109.5,-20.5 + rot: 1.5707963267948966 rad + pos: -6.5,-24.5 parent: 2 - - uid: 8876 + - uid: 13845 components: - type: Transform - pos: 110.5,-20.5 + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 parent: 2 - - uid: 8877 + - uid: 13846 components: - type: Transform - pos: 113.5,-20.5 + rot: 1.5707963267948966 rad + pos: -7.5,-24.5 parent: 2 - - uid: 8878 + - uid: 13847 components: - type: Transform - pos: 116.5,-20.5 + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 parent: 2 - - uid: 8885 + - uid: 13848 components: - type: Transform - pos: 109.5,-14.5 + rot: 1.5707963267948966 rad + pos: -12.5,-21.5 parent: 2 - - uid: 8935 + - uid: 13849 components: - type: Transform - pos: 110.5,-14.5 + rot: 1.5707963267948966 rad + pos: -11.5,-24.5 parent: 2 - - uid: 8936 + - uid: 13873 components: - type: Transform - pos: 113.5,-14.5 + rot: 1.5707963267948966 rad + pos: -21.5,5.5 parent: 2 - - uid: 8937 + - uid: 13909 components: - type: Transform - pos: 116.5,-14.5 + rot: 1.5707963267948966 rad + pos: -21.5,6.5 parent: 2 - - uid: 8955 + - uid: 13910 components: - type: Transform - pos: 116.5,-17.5 + rot: 1.5707963267948966 rad + pos: -21.5,2.5 parent: 2 - - uid: 9217 + - uid: 13911 components: - type: Transform - pos: 39.5,-13.5 + rot: 1.5707963267948966 rad + pos: -21.5,-24.5 parent: 2 - - uid: 9218 + - uid: 13912 components: - type: Transform - pos: 39.5,-14.5 + rot: 1.5707963267948966 rad + pos: -21.5,7.5 parent: 2 - - uid: 9219 + - uid: 13913 components: - type: Transform - pos: 39.5,-15.5 + rot: 1.5707963267948966 rad + pos: -21.5,8.5 parent: 2 - - uid: 9220 + - uid: 13914 components: - type: Transform - pos: 39.5,-17.5 + rot: 1.5707963267948966 rad + pos: -21.5,9.5 parent: 2 - - uid: 10089 + - uid: 13916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-20.5 + rot: 1.5707963267948966 rad + pos: -20.5,14.5 parent: 2 - - uid: 10090 + - uid: 13917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-20.5 + rot: 1.5707963267948966 rad + pos: -21.5,14.5 parent: 2 - - uid: 10091 + - uid: 13918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-20.5 + rot: 1.5707963267948966 rad + pos: -21.5,13.5 parent: 2 - - uid: 10092 + - uid: 13919 components: - type: Transform - pos: -4.5,-3.5 + rot: 1.5707963267948966 rad + pos: -21.5,10.5 parent: 2 - - uid: 10093 + - uid: 14132 components: - type: Transform - pos: -4.5,-5.5 + pos: 71.5,24.5 parent: 2 - - uid: 10094 + - uid: 14169 components: - type: Transform - pos: -4.5,-6.5 + rot: 1.5707963267948966 rad + pos: 78.5,28.5 parent: 2 - - uid: 10095 + - uid: 14173 components: - type: Transform - pos: 3.5,-7.5 + rot: 1.5707963267948966 rad + pos: 78.5,34.5 parent: 2 - - uid: 10096 + - uid: 14174 components: - type: Transform - pos: 4.5,-7.5 + rot: 1.5707963267948966 rad + pos: 80.5,28.5 parent: 2 - - uid: 10097 + - uid: 14175 components: - type: Transform - pos: 6.5,-7.5 + pos: 84.5,26.5 parent: 2 - - uid: 10098 + - uid: 14187 components: - type: Transform - pos: 6.5,-10.5 + pos: 80.5,27.5 parent: 2 - - uid: 10099 + - uid: 14188 components: - type: Transform - pos: 5.5,-10.5 + pos: 80.5,26.5 parent: 2 - - uid: 10100 + - uid: 14198 components: - type: Transform - pos: 4.5,-10.5 + pos: 87.5,26.5 parent: 2 - - uid: 10101 + - uid: 14202 components: - type: Transform - pos: 3.5,-10.5 + rot: 1.5707963267948966 rad + pos: 78.5,33.5 parent: 2 - - uid: 10102 + - uid: 14209 components: - type: Transform - pos: 3.5,-8.5 + pos: 83.5,34.5 parent: 2 - - uid: 10104 + - uid: 14211 components: - type: Transform - pos: -4.5,-2.5 + rot: 1.5707963267948966 rad + pos: 80.5,32.5 parent: 2 - - uid: 10105 + - uid: 14212 components: - type: Transform - pos: 5.5,-7.5 + pos: 87.5,28.5 parent: 2 - - uid: 10106 + - uid: 14213 components: - type: Transform - pos: -0.5,-6.5 + rot: 1.5707963267948966 rad + pos: 82.5,32.5 parent: 2 - - uid: 10107 + - uid: 14214 components: - type: Transform - pos: 0.5,-2.5 + pos: 83.5,31.5 parent: 2 - - uid: 10108 + - uid: 14215 components: - type: Transform - pos: 0.5,-5.5 + pos: 83.5,33.5 parent: 2 - - uid: 10109 + - uid: 14218 components: - type: Transform - pos: 0.5,-6.5 + pos: 87.5,31.5 parent: 2 - - uid: 10110 + - uid: 14219 components: - type: Transform - pos: -3.5,-6.5 + pos: 87.5,32.5 parent: 2 - - uid: 10111 + - uid: 14220 components: - type: Transform - pos: 0.5,-3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-60.5 parent: 2 - - uid: 10112 + - uid: 14223 components: - type: Transform - pos: -2.5,-6.5 + pos: 83.5,28.5 parent: 2 - - uid: 10113 + - uid: 14226 components: - type: Transform - pos: -1.5,-6.5 + pos: 83.5,27.5 parent: 2 - - uid: 10140 + - uid: 14227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-21.5 + pos: 83.5,29.5 parent: 2 - - uid: 10219 + - uid: 14228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-20.5 + pos: 82.5,26.5 parent: 2 - - uid: 10220 + - uid: 14229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-20.5 + pos: 85.5,27.5 parent: 2 - - uid: 10221 + - uid: 14233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-20.5 + pos: 82.5,28.5 parent: 2 - - uid: 10222 + - uid: 14234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-20.5 + pos: 85.5,33.5 parent: 2 - - uid: 10223 + - uid: 14236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-20.5 + rot: 1.5707963267948966 rad + pos: 81.5,35.5 parent: 2 - - uid: 10224 + - uid: 14237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-20.5 + rot: 1.5707963267948966 rad + pos: 78.5,35.5 parent: 2 - - uid: 10225 + - uid: 14239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-20.5 + pos: 86.5,33.5 parent: 2 - - uid: 10226 + - uid: 14244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-20.5 + pos: 83.5,32.5 parent: 2 - - uid: 10227 + - uid: 14246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-20.5 + pos: 87.5,29.5 parent: 2 - - uid: 10745 + - uid: 14248 components: - type: Transform - pos: 85.5,-19.5 + pos: 84.5,33.5 parent: 2 - - uid: 10746 + - uid: 14251 components: - type: Transform - pos: 86.5,-19.5 + pos: 84.5,27.5 parent: 2 - - uid: 10747 + - uid: 14252 components: - type: Transform - pos: 84.5,-19.5 + pos: 86.5,27.5 parent: 2 - - uid: 10748 + - uid: 14261 components: - type: Transform - pos: 84.5,-21.5 + pos: 87.5,27.5 parent: 2 - - uid: 10749 + - uid: 14262 components: - type: Transform - pos: 85.5,-21.5 + pos: 88.5,27.5 parent: 2 - - uid: 10750 + - uid: 14264 components: - type: Transform - pos: 86.5,-21.5 + pos: 83.5,26.5 parent: 2 - - uid: 10878 + - uid: 14266 components: - type: Transform - pos: 26.5,-59.5 + pos: 84.5,34.5 parent: 2 - - uid: 11398 + - uid: 14267 components: - type: Transform - pos: 87.5,5.5 + pos: 88.5,26.5 parent: 2 - - uid: 11400 + - uid: 14268 components: - type: Transform - pos: 87.5,3.5 + pos: 87.5,33.5 parent: 2 - - uid: 11769 + - uid: 14269 components: - type: Transform - pos: 37.5,-21.5 + pos: 87.5,34.5 parent: 2 - - uid: 11770 + - uid: 14270 components: - type: Transform - pos: 36.5,-21.5 + pos: 88.5,34.5 parent: 2 - - uid: 11771 + - uid: 14271 components: - type: Transform - pos: 35.5,-21.5 + pos: 88.5,33.5 parent: 2 - - uid: 11772 + - uid: 14287 components: - type: Transform - pos: 34.5,-21.5 + pos: 85.5,34.5 parent: 2 - - uid: 11773 + - uid: 14288 components: - type: Transform - pos: 33.5,-21.5 + pos: 86.5,34.5 parent: 2 - - uid: 11778 + - uid: 14289 components: - type: Transform - pos: 29.5,-22.5 + pos: 83.5,35.5 parent: 2 - - uid: 11792 + - uid: 14290 components: - type: Transform - pos: 104.5,-24.5 + pos: 84.5,35.5 parent: 2 - - uid: 11793 + - uid: 14291 components: - type: Transform - pos: 104.5,-23.5 + pos: 85.5,26.5 parent: 2 - - uid: 11794 + - uid: 14292 components: - type: Transform - pos: 104.5,-22.5 + pos: 86.5,26.5 parent: 2 - - uid: 11795 + - uid: 14293 components: - type: Transform - pos: 104.5,-25.5 + pos: 83.5,25.5 parent: 2 - - uid: 12835 + - uid: 14294 components: - type: Transform - pos: -23.5,-11.5 + pos: 84.5,25.5 parent: 2 - - uid: 12847 + - uid: 14295 components: - type: Transform - pos: -24.5,-11.5 + pos: 87.5,25.5 parent: 2 - - uid: 12848 + - uid: 14296 components: - type: Transform - pos: -25.5,-11.5 + pos: 88.5,25.5 parent: 2 - - uid: 12888 + - uid: 14297 components: - type: Transform - pos: 50.5,-49.5 + pos: 87.5,35.5 parent: 2 - - uid: 12889 + - uid: 14298 components: - type: Transform - pos: 49.5,-49.5 + pos: 88.5,35.5 parent: 2 - - uid: 12892 + - uid: 14303 components: - type: Transform - pos: 46.5,-49.5 + pos: 89.5,27.5 parent: 2 - - uid: 12893 + - uid: 14304 components: - type: Transform - pos: 45.5,-49.5 + pos: 89.5,26.5 parent: 2 - - uid: 12894 + - uid: 14305 components: - type: Transform - pos: 45.5,-43.5 + pos: 90.5,26.5 parent: 2 - - uid: 12895 + - uid: 14306 components: - type: Transform - pos: 46.5,-43.5 + pos: 91.5,26.5 parent: 2 - - uid: 12896 + - uid: 14307 components: - type: Transform - pos: 47.5,-43.5 + pos: 91.5,27.5 parent: 2 - - uid: 12897 + - uid: 14308 components: - type: Transform - pos: 48.5,-43.5 + pos: 90.5,27.5 parent: 2 - - uid: 12898 + - uid: 14311 components: - type: Transform - pos: 49.5,-43.5 + pos: 91.5,25.5 parent: 2 - - uid: 12899 + - uid: 14312 components: - type: Transform - pos: 50.5,-43.5 + pos: 89.5,33.5 parent: 2 - - uid: 12905 + - uid: 14313 components: - type: Transform - pos: 50.5,-48.5 + pos: 89.5,34.5 parent: 2 - - uid: 12907 + - uid: 14314 components: - type: Transform - pos: 50.5,-46.5 + pos: 90.5,34.5 parent: 2 - - uid: 12908 + - uid: 14315 components: - type: Transform - pos: 50.5,-45.5 + pos: 90.5,33.5 parent: 2 - - uid: 12909 + - uid: 14316 components: - type: Transform - pos: 50.5,-44.5 + pos: 91.5,33.5 parent: 2 - - uid: 12910 + - uid: 14317 components: - type: Transform - pos: -27.5,4.5 + pos: 91.5,34.5 parent: 2 - - uid: 12920 + - uid: 14318 components: - type: Transform - pos: 44.5,-49.5 + pos: 91.5,35.5 parent: 2 - - uid: 12921 + - uid: 14321 components: - type: Transform - pos: 40.5,-49.5 + rot: 3.141592653589793 rad + pos: 95.5,25.5 parent: 2 - - uid: 12922 + - uid: 14322 components: - type: Transform - pos: 39.5,-49.5 + pos: 92.5,26.5 parent: 2 - - uid: 12923 + - uid: 14323 components: - type: Transform - pos: 38.5,-49.5 + pos: 92.5,25.5 parent: 2 - - uid: 12924 + - uid: 14324 components: - type: Transform - pos: 37.5,-49.5 + pos: 93.5,26.5 parent: 2 - - uid: 12925 + - uid: 14325 components: - type: Transform - pos: 36.5,-49.5 + rot: 3.141592653589793 rad + pos: 94.5,25.5 parent: 2 - - uid: 12926 + - uid: 14340 components: - type: Transform - pos: 35.5,-49.5 + rot: 1.5707963267948966 rad + pos: 80.5,35.5 parent: 2 - - uid: 12927 + - uid: 14341 components: - type: Transform - pos: 34.5,-49.5 + rot: 1.5707963267948966 rad + pos: 79.5,35.5 parent: 2 - - uid: 12928 + - uid: 14342 components: - type: Transform - pos: 33.5,-49.5 + rot: 1.5707963267948966 rad + pos: 78.5,32.5 parent: 2 - - uid: 12929 + - uid: 14343 components: - type: Transform - pos: 33.5,-48.5 + rot: 1.5707963267948966 rad + pos: 79.5,32.5 parent: 2 - - uid: 12930 + - uid: 14347 components: - type: Transform - pos: 33.5,-46.5 + rot: 3.141592653589793 rad + pos: 96.5,25.5 parent: 2 - - uid: 12933 + - uid: 14348 components: - type: Transform - pos: 31.5,-49.5 + rot: 3.141592653589793 rad + pos: 92.5,34.5 parent: 2 - - uid: 12935 + - uid: 14349 components: - type: Transform - pos: -27.5,-11.5 + rot: 3.141592653589793 rad + pos: 92.5,35.5 parent: 2 - - uid: 12936 + - uid: 14350 components: - type: Transform - pos: -15.5,1.5 + rot: 3.141592653589793 rad + pos: 94.5,34.5 parent: 2 - - uid: 12937 + - uid: 14351 components: - type: Transform - pos: -16.5,1.5 + rot: 3.141592653589793 rad + pos: 93.5,34.5 parent: 2 - - uid: 12938 + - uid: 14352 components: - type: Transform - pos: -17.5,1.5 + rot: 3.141592653589793 rad + pos: 95.5,26.5 parent: 2 - - uid: 12939 + - uid: 14353 components: - type: Transform - pos: -18.5,1.5 + rot: 3.141592653589793 rad + pos: 96.5,26.5 parent: 2 - - uid: 12940 + - uid: 14354 components: - type: Transform - pos: -19.5,1.5 + rot: 3.141592653589793 rad + pos: 93.5,25.5 parent: 2 - - uid: 12941 + - uid: 14355 components: - type: Transform - pos: -20.5,1.5 + rot: 3.141592653589793 rad + pos: 94.5,26.5 parent: 2 - - uid: 13079 + - uid: 14356 components: - type: Transform - pos: -21.5,1.5 + rot: 1.5707963267948966 rad + pos: 88.5,32.5 parent: 2 - - uid: 13112 + - uid: 14359 components: - type: Transform - pos: -23.5,1.5 + rot: 1.5707963267948966 rad + pos: 88.5,28.5 parent: 2 - - uid: 13113 + - uid: 14366 components: - type: Transform - pos: -24.5,1.5 + pos: 94.5,29.5 parent: 2 - - uid: 13121 + - uid: 14480 components: - type: Transform - pos: -22.5,1.5 + rot: 3.141592653589793 rad + pos: 97.5,25.5 parent: 2 - - uid: 13143 + - uid: 14481 components: - type: Transform - pos: -25.5,1.5 + rot: 3.141592653589793 rad + pos: 97.5,26.5 parent: 2 - - uid: 13144 + - uid: 14482 components: - type: Transform - pos: -26.5,1.5 + rot: 3.141592653589793 rad + pos: 97.5,27.5 parent: 2 - - uid: 13145 + - uid: 14483 components: - type: Transform - pos: -27.5,1.5 + rot: 3.141592653589793 rad + pos: 97.5,28.5 parent: 2 - - uid: 13249 + - uid: 14484 components: - type: Transform - pos: -19.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,29.5 parent: 2 - - uid: 13250 + - uid: 14485 components: - type: Transform - pos: -20.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,30.5 parent: 2 - - uid: 13251 + - uid: 14486 components: - type: Transform - pos: -21.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,31.5 parent: 2 - - uid: 13252 + - uid: 14487 components: - type: Transform - pos: -22.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,32.5 parent: 2 - - uid: 13253 + - uid: 14488 components: - type: Transform - pos: -23.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,33.5 parent: 2 - - uid: 13254 + - uid: 14489 components: - type: Transform - pos: -24.5,14.5 + rot: 3.141592653589793 rad + pos: 97.5,34.5 parent: 2 - - uid: 13255 + - uid: 14490 components: - type: Transform - pos: -25.5,14.5 + rot: 3.141592653589793 rad + pos: 96.5,34.5 parent: 2 - - uid: 13256 + - uid: 14491 components: - type: Transform - pos: -26.5,14.5 + rot: 3.141592653589793 rad + pos: 95.5,34.5 parent: 2 - - uid: 13257 + - uid: 14492 components: - type: Transform - pos: -27.5,14.5 + rot: 3.141592653589793 rad + pos: 93.5,35.5 parent: 2 - - uid: 13277 + - uid: 14493 components: - type: Transform - pos: -16.5,-22.5 + rot: 3.141592653589793 rad + pos: 94.5,35.5 parent: 2 - - uid: 13278 + - uid: 14494 components: - type: Transform - pos: -17.5,-22.5 + rot: 3.141592653589793 rad + pos: 95.5,35.5 parent: 2 - - uid: 13279 + - uid: 14495 components: - type: Transform - pos: -18.5,-22.5 + rot: 3.141592653589793 rad + pos: 96.5,35.5 parent: 2 - - uid: 13280 + - uid: 14496 components: - type: Transform - pos: -19.5,-22.5 + rot: 3.141592653589793 rad + pos: 97.5,35.5 parent: 2 - - uid: 13281 + - uid: 14497 components: - type: Transform - pos: -20.5,-22.5 + rot: 3.141592653589793 rad + pos: 98.5,34.5 parent: 2 - - uid: 13282 + - uid: 14498 components: - type: Transform - pos: -21.5,-22.5 + rot: 3.141592653589793 rad + pos: 98.5,33.5 parent: 2 - - uid: 13283 + - uid: 14499 components: - type: Transform - pos: -22.5,-22.5 + rot: 3.141592653589793 rad + pos: 98.5,32.5 parent: 2 - - uid: 13284 + - uid: 14500 components: - type: Transform - pos: -15.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,31.5 parent: 2 - - uid: 13285 + - uid: 14501 components: - type: Transform - pos: -14.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,30.5 parent: 2 - - uid: 13286 + - uid: 14502 components: - type: Transform - pos: -13.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,29.5 parent: 2 - - uid: 13287 + - uid: 14503 components: - type: Transform - pos: -12.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,28.5 parent: 2 - - uid: 13288 + - uid: 14504 components: - type: Transform - pos: -11.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,27.5 parent: 2 - - uid: 13289 + - uid: 14505 components: - type: Transform - pos: -10.5,-21.5 + rot: 3.141592653589793 rad + pos: 98.5,26.5 parent: 2 - - uid: 13290 + - uid: 14507 components: - type: Transform - pos: -9.5,-21.5 + pos: 99.5,27.5 parent: 2 - - uid: 13291 + - uid: 14509 components: - type: Transform - pos: -23.5,-21.5 + pos: 99.5,29.5 parent: 2 - - uid: 13292 + - uid: 14510 components: - type: Transform - pos: -29.5,-16.5 + pos: 99.5,30.5 parent: 2 - - uid: 13293 + - uid: 14511 components: - type: Transform - pos: -29.5,-15.5 + rot: -1.5707963267948966 rad + pos: 99.5,31.5 parent: 2 - - uid: 13294 + - uid: 14513 components: - type: Transform - pos: -29.5,-14.5 + pos: 99.5,33.5 parent: 2 - - uid: 13295 + - uid: 14519 components: - type: Transform - pos: -29.5,-13.5 + pos: 94.5,31.5 parent: 2 - - uid: 13296 + - uid: 14745 components: - type: Transform - pos: -29.5,-12.5 + rot: 3.141592653589793 rad + pos: 68.5,-12.5 parent: 2 - - uid: 13297 + - uid: 14746 components: - type: Transform - pos: -29.5,-11.5 + rot: 3.141592653589793 rad + pos: 68.5,-13.5 parent: 2 - - uid: 13298 + - uid: 14748 components: - type: Transform - pos: -29.5,-10.5 + rot: 3.141592653589793 rad + pos: 68.5,-14.5 parent: 2 - - uid: 13299 + - uid: 14773 components: - type: Transform - pos: -24.5,-21.5 + rot: 3.141592653589793 rad + pos: 68.5,-10.5 parent: 2 - - uid: 13300 + - uid: 14774 components: - type: Transform - pos: -25.5,-21.5 + rot: 3.141592653589793 rad + pos: 68.5,-11.5 parent: 2 - - uid: 13301 + - uid: 14776 components: - type: Transform - pos: -26.5,-21.5 + pos: 4.5,41.5 parent: 2 - - uid: 13302 + - uid: 14809 components: - type: Transform - pos: -27.5,-21.5 + pos: 92.5,24.5 parent: 2 - - uid: 13304 + - uid: 14810 components: - type: Transform - pos: -27.5,-9.5 + pos: 93.5,24.5 parent: 2 - - uid: 13305 + - uid: 14811 components: - type: Transform - pos: -27.5,-8.5 + pos: 94.5,24.5 parent: 2 - - uid: 13306 + - uid: 14812 components: - type: Transform - pos: -27.5,-7.5 + pos: 95.5,24.5 parent: 2 - - uid: 13307 + - uid: 14813 components: - type: Transform - pos: -27.5,-6.5 + pos: 96.5,24.5 parent: 2 - - uid: 13308 + - uid: 14814 components: - type: Transform - pos: -27.5,-5.5 + pos: 92.5,36.5 parent: 2 - - uid: 13310 + - uid: 14815 components: - type: Transform - pos: -27.5,-3.5 + pos: 93.5,36.5 parent: 2 - - uid: 13311 + - uid: 14816 components: - type: Transform - pos: -27.5,-2.5 + pos: 94.5,36.5 parent: 2 - - uid: 13312 + - uid: 14817 components: - type: Transform - pos: -27.5,3.5 + pos: 95.5,36.5 parent: 2 - - uid: 13314 + - uid: 14818 components: - type: Transform - pos: -27.5,-0.5 + pos: 96.5,36.5 parent: 2 - - uid: 13444 + - uid: 14823 components: - type: Transform - pos: 51.5,-22.5 + pos: 50.5,38.5 parent: 2 - - uid: 13451 + - uid: 14828 components: - type: Transform - pos: 52.5,-22.5 + pos: 50.5,43.5 parent: 2 - - uid: 13454 + - uid: 14835 components: - type: Transform - pos: 52.5,-24.5 + pos: 52.5,44.5 parent: 2 - - uid: 13455 + - uid: 14837 components: - type: Transform - pos: 52.5,-25.5 + pos: 62.5,41.5 parent: 2 - - uid: 13456 + - uid: 14838 components: - type: Transform - pos: 52.5,-23.5 + pos: 62.5,31.5 parent: 2 - - uid: 13457 + - uid: 14848 components: - type: Transform - pos: 52.5,-26.5 + pos: 60.5,44.5 parent: 2 - - uid: 13458 + - uid: 14920 components: - type: Transform - pos: 52.5,-27.5 + rot: 1.5707963267948966 rad + pos: 3.5,36.5 parent: 2 - - uid: 13459 + - uid: 14921 components: - type: Transform - pos: 52.5,-28.5 + rot: 1.5707963267948966 rad + pos: 3.5,35.5 parent: 2 - - uid: 13460 + - uid: 14922 components: - type: Transform - pos: 52.5,-29.5 + rot: 1.5707963267948966 rad + pos: 3.5,34.5 parent: 2 - - uid: 13461 + - uid: 14925 components: - type: Transform - pos: 52.5,-30.5 + rot: 3.141592653589793 rad + pos: 51.5,-12.5 parent: 2 - - uid: 13462 + - uid: 14965 components: - type: Transform - pos: 52.5,-31.5 + pos: 7.5,40.5 parent: 2 - - uid: 13463 + - uid: 14968 components: - type: Transform - pos: 52.5,-32.5 + rot: -1.5707963267948966 rad + pos: 3.5,41.5 parent: 2 - - uid: 13464 + - uid: 14969 components: - type: Transform - pos: 52.5,-33.5 + pos: 8.5,39.5 parent: 2 - - uid: 13465 + - uid: 14973 components: - type: Transform - pos: 52.5,-34.5 + rot: -1.5707963267948966 rad + pos: 6.5,41.5 parent: 2 - - uid: 13487 + - uid: 15084 components: - type: Transform - pos: -27.5,5.5 + rot: -1.5707963267948966 rad + pos: 12.5,-54.5 parent: 2 - - uid: 13708 +- proto: WallReinforcedRust + entities: + - uid: 14967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-20.5 + rot: -1.5707963267948966 rad + pos: 7.5,41.5 parent: 2 - - uid: 13709 + - uid: 14971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 + rot: -1.5707963267948966 rad + pos: 3.5,40.5 parent: 2 - - uid: 13710 + - uid: 14975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-18.5 + rot: -1.5707963267948966 rad + pos: 8.5,38.5 parent: 2 - proto: WallSolid entities: + - uid: 51 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 - uid: 109 components: - type: Transform @@ -81279,11 +90507,6 @@ entities: - type: Transform pos: 69.5,-6.5 parent: 2 - - uid: 237 - components: - - type: Transform - pos: 7.5,14.5 - parent: 2 - uid: 238 components: - type: Transform @@ -81399,25 +90622,10 @@ entities: - type: Transform pos: 7.5,11.5 parent: 2 - - uid: 448 - components: - - type: Transform - pos: 8.5,14.5 - parent: 2 - - uid: 449 - components: - - type: Transform - pos: 9.5,14.5 - parent: 2 - - uid: 450 - components: - - type: Transform - pos: 10.5,14.5 - parent: 2 - - uid: 451 + - uid: 433 components: - type: Transform - pos: 11.5,14.5 + pos: 10.5,32.5 parent: 2 - uid: 452 components: @@ -81624,6 +90832,16 @@ entities: - type: Transform pos: 43.5,-11.5 parent: 2 + - uid: 691 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 - uid: 696 components: - type: Transform @@ -81719,11 +90937,6 @@ entities: - type: Transform pos: 30.5,-29.5 parent: 2 - - uid: 1041 - components: - - type: Transform - pos: 27.5,-37.5 - parent: 2 - uid: 1049 components: - type: Transform @@ -81734,36 +90947,6 @@ entities: - type: Transform pos: 13.5,16.5 parent: 2 - - uid: 1053 - components: - - type: Transform - pos: 10.5,18.5 - parent: 2 - - uid: 1054 - components: - - type: Transform - pos: 10.5,17.5 - parent: 2 - - uid: 1055 - components: - - type: Transform - pos: 10.5,16.5 - parent: 2 - - uid: 1056 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - - uid: 1057 - components: - - type: Transform - pos: 12.5,20.5 - parent: 2 - - uid: 1058 - components: - - type: Transform - pos: 11.5,20.5 - parent: 2 - uid: 1059 components: - type: Transform @@ -82204,20 +91387,10 @@ entities: - type: Transform pos: 33.5,12.5 parent: 2 - - uid: 1208 - components: - - type: Transform - pos: 28.5,-37.5 - parent: 2 - - uid: 1209 - components: - - type: Transform - pos: 29.5,-37.5 - parent: 2 - - uid: 1210 + - uid: 1211 components: - type: Transform - pos: 30.5,-37.5 + pos: 16.5,25.5 parent: 2 - uid: 1482 components: @@ -82554,11 +91727,6 @@ entities: - type: Transform pos: 50.5,-15.5 parent: 2 - - uid: 1957 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 2 - uid: 1958 components: - type: Transform @@ -82649,50 +91817,60 @@ entities: - type: Transform pos: 21.5,19.5 parent: 2 - - uid: 2025 + - uid: 2018 components: - type: Transform - pos: 6.5,29.5 + pos: 14.5,32.5 parent: 2 - - uid: 2026 + - uid: 2034 components: - type: Transform - pos: 7.5,29.5 + pos: 14.5,27.5 parent: 2 - - uid: 2034 + - uid: 2047 components: - type: Transform - pos: 14.5,27.5 + pos: 15.5,26.5 parent: 2 - - uid: 2044 + - uid: 2048 components: - type: Transform - pos: 16.5,23.5 + pos: 16.5,26.5 parent: 2 - - uid: 2045 + - uid: 2049 components: - type: Transform - pos: 16.5,24.5 + pos: 14.5,26.5 parent: 2 - - uid: 2046 + - uid: 2076 components: - type: Transform - pos: 16.5,25.5 + pos: 11.5,32.5 parent: 2 - - uid: 2047 + - uid: 2082 components: - type: Transform - pos: 15.5,26.5 + pos: 14.5,31.5 parent: 2 - - uid: 2048 + - uid: 2083 components: - type: Transform - pos: 16.5,26.5 + pos: 14.5,30.5 parent: 2 - - uid: 2049 + - uid: 2084 components: - type: Transform - pos: 14.5,26.5 + pos: 10.5,31.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 10.5,29.5 parent: 2 - uid: 2093 components: @@ -82869,16 +92047,6 @@ entities: - type: Transform pos: 31.5,19.5 parent: 2 - - uid: 2360 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - - uid: 2361 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - uid: 2496 components: - type: Transform @@ -83049,21 +92217,6 @@ entities: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 2874 - components: - - type: Transform - pos: 68.5,-12.5 - parent: 2 - - uid: 2875 - components: - - type: Transform - pos: 68.5,-13.5 - parent: 2 - - uid: 2876 - components: - - type: Transform - pos: 68.5,-14.5 - parent: 2 - uid: 2877 components: - type: Transform @@ -83194,16 +92347,6 @@ entities: - type: Transform pos: 64.5,-11.5 parent: 2 - - uid: 2949 - components: - - type: Transform - pos: 68.5,-10.5 - parent: 2 - - uid: 2950 - components: - - type: Transform - pos: 68.5,-11.5 - parent: 2 - uid: 2958 components: - type: Transform @@ -83469,36 +92612,6 @@ entities: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 3203 - components: - - type: Transform - pos: 56.5,36.5 - parent: 2 - - uid: 3204 - components: - - type: Transform - pos: 56.5,37.5 - parent: 2 - - uid: 3205 - components: - - type: Transform - pos: 57.5,37.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: 55.5,37.5 - parent: 2 - - uid: 3207 - components: - - type: Transform - pos: 55.5,35.5 - parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 57.5,35.5 - parent: 2 - uid: 3356 components: - type: Transform @@ -83589,6 +92702,12 @@ entities: - type: Transform pos: 68.5,34.5 parent: 2 + - uid: 3461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 2 - uid: 3523 components: - type: Transform @@ -83974,16 +93093,6 @@ entities: - type: Transform pos: 72.5,-11.5 parent: 2 - - uid: 3821 - components: - - type: Transform - pos: 70.5,-14.5 - parent: 2 - - uid: 3822 - components: - - type: Transform - pos: 69.5,-14.5 - parent: 2 - uid: 3823 components: - type: Transform @@ -84075,51 +93184,6 @@ entities: - type: Transform pos: 28.5,-20.5 parent: 2 - - uid: 4312 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - - uid: 4313 - components: - - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 4319 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 4320 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 2 - - uid: 4321 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 2 - - uid: 4322 - components: - - type: Transform - pos: 27.5,-39.5 - parent: 2 - - uid: 4323 - components: - - type: Transform - pos: 27.5,-40.5 - parent: 2 - - uid: 4324 - components: - - type: Transform - pos: 27.5,-41.5 - parent: 2 - - uid: 4326 - components: - - type: Transform - pos: 27.5,-42.5 - parent: 2 - uid: 5057 components: - type: Transform @@ -84156,6 +93220,12 @@ entities: - type: Transform pos: 32.5,-11.5 parent: 2 + - uid: 5421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 - uid: 5441 components: - type: Transform @@ -84286,10 +93356,10 @@ entities: - type: Transform pos: 75.5,5.5 parent: 2 - - uid: 7896 + - uid: 8169 components: - type: Transform - pos: 10.5,15.5 + pos: 13.5,32.5 parent: 2 - uid: 8805 components: @@ -84406,6 +93476,39 @@ entities: - type: Transform pos: 76.5,8.5 parent: 2 + - uid: 13189 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 14725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-13.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-17.5 + parent: 2 + - uid: 14769 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 15006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-14.5 + parent: 2 - proto: WallSolidRust entities: - uid: 7884 @@ -84539,29 +93642,27 @@ entities: - 0 - 0 - 0 -- proto: WardrobePrison +- proto: WardrobePrisonFilled entities: - - uid: 2308 + - uid: 8686 components: - type: Transform - pos: 41.5,33.5 + pos: 29.5,21.5 parent: 2 -- proto: WardrobePrisonFilled - entities: - - uid: 2325 + - uid: 8687 components: - type: Transform - pos: 36.5,31.5 + pos: 29.5,17.5 parent: 2 - - uid: 8686 + - uid: 13591 components: - type: Transform - pos: 29.5,21.5 + pos: 58.5,31.5 parent: 2 - - uid: 8687 + - uid: 13592 components: - type: Transform - pos: 29.5,17.5 + pos: 58.5,41.5 parent: 2 - proto: WardrobeVirologyFilled entities: @@ -84656,11 +93757,6 @@ entities: parent: 2 - proto: WaterTankFull entities: - - uid: 201 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 2 - uid: 606 components: - type: Transform @@ -84671,11 +93767,6 @@ entities: - type: Transform pos: 18.5,26.5 parent: 2 - - uid: 5532 - components: - - type: Transform - pos: 65.5,18.5 - parent: 2 - uid: 5715 components: - type: Transform @@ -84686,6 +93777,11 @@ entities: - type: Transform pos: 29.5,-17.5 parent: 2 + - uid: 8830 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 - uid: 10790 components: - type: Transform @@ -84701,6 +93797,16 @@ entities: - type: Transform pos: 46.5,-19.5 parent: 2 + - uid: 13608 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 - proto: WaterTankHighCapacity entities: - uid: 4277 @@ -84722,20 +93828,15 @@ entities: parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 622 - components: - - type: Transform - pos: 41.5,24.5 - parent: 2 - uid: 2050 components: - type: Transform pos: 34.5,41.5 parent: 2 - - uid: 5062 + - uid: 3235 components: - type: Transform - pos: 36.5,20.5 + pos: 36.5,26.5 parent: 2 - uid: 7979 components: @@ -84743,6 +93844,16 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 + - uid: 8537 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 - uid: 11146 components: - type: Transform @@ -84779,17 +93890,22 @@ entities: parent: 2 - type: Physics canCollide: False + - uid: 14564 + components: + - type: Transform + pos: 90.5,28.5 + parent: 2 - proto: WeaponDisabler entities: - - uid: 10135 + - uid: 2287 components: - type: Transform - pos: 41.567085,22.308064 + pos: 36.50164,27.085938 parent: 2 - - uid: 10136 + - uid: 10139 components: - type: Transform - pos: 41.567085,22.558064 + pos: 36.48081,27.346535 parent: 2 - proto: WeaponSubMachineGunWt550 entities: @@ -84798,6 +93914,43 @@ entities: - type: Transform pos: 45.454727,23.618372 parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 14238 + components: + - type: Transform + pos: 86.5,32.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 84.5,32.5 + parent: 2 + - uid: 14263 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 14367 + components: + - type: Transform + pos: 92.5,33.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + pos: 96.5,33.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + pos: 96.5,27.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + pos: 92.5,27.5 + parent: 2 - proto: WeedSpray entities: - uid: 4061 @@ -84807,6 +93960,11 @@ entities: parent: 2 - proto: WelderIndustrial entities: + - uid: 7886 + components: + - type: Transform + pos: 16.569122,-42.41484 + parent: 2 - uid: 12300 components: - type: Transform @@ -84814,11 +93972,6 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 200 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 2 - uid: 800 components: - type: Transform @@ -84829,6 +93982,11 @@ entities: - type: Transform pos: 17.5,26.5 parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 - uid: 5391 components: - type: Transform @@ -84849,21 +94007,31 @@ entities: - type: Transform pos: 30.5,-17.5 parent: 2 - - uid: 10789 + - uid: 9899 components: - type: Transform - pos: 56.5,-17.5 + pos: 72.5,-7.5 parent: 2 - - uid: 10840 + - uid: 10789 components: - type: Transform - pos: 45.5,42.5 + pos: 56.5,-17.5 parent: 2 - uid: 12406 components: - type: Transform pos: 47.5,-19.5 parent: 2 + - uid: 13659 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 - proto: WetFloorSign entities: - uid: 12306 @@ -84902,12 +94070,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 - - uid: 2318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,35.5 - parent: 2 - uid: 2528 components: - type: Transform @@ -84934,6 +94096,13 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-9.5 parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 7250 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 - proto: WindoorChapelLocked entities: - uid: 9730 @@ -84970,6 +94139,16 @@ entities: parent: 2 - proto: WindoorSecure entities: + - uid: 1318 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 - uid: 5266 components: - type: Transform @@ -84997,40 +94176,36 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,31.5 parent: 2 - - uid: 7942 + - uid: 8950 components: - type: Transform - pos: -19.5,-12.5 + rot: -1.5707963267948966 rad + pos: 113.5,-19.5 parent: 2 - - uid: 7943 + - uid: 10121 components: - type: Transform - pos: -12.5,-12.5 + pos: 80.5,-2.5 parent: 2 - - uid: 8950 + - uid: 13596 components: - type: Transform rot: -1.5707963267948966 rad - pos: 113.5,-19.5 + pos: 58.5,40.5 parent: 2 - - uid: 10121 + - uid: 13597 components: - type: Transform - pos: 80.5,-2.5 + rot: -1.5707963267948966 rad + pos: 58.5,32.5 parent: 2 - proto: WindoorSecureArmoryLocked entities: - - uid: 7679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 - parent: 2 - - uid: 7752 + - uid: 13091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,21.5 + rot: -1.5707963267948966 rad + pos: 36.5,18.5 parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: @@ -85048,23 +94223,12 @@ entities: parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 4556 - components: - - type: Transform - pos: 9.5,20.5 - parent: 2 - uid: 10119 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,22.5 parent: 2 - - uid: 12840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,20.5 - parent: 2 - proto: WindoorSecureChemistryLocked entities: - uid: 5139 @@ -85097,40 +94261,49 @@ entities: - type: Transform pos: 14.5,38.5 parent: 2 - - uid: 13599 + - uid: 14210 components: - type: Transform - pos: 56.5,34.5 + rot: 3.141592653589793 rad + pos: 85.5,31.5 parent: 2 - - uid: 13600 + - uid: 14273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,36.5 + pos: 84.5,29.5 parent: 2 - - uid: 13601 + - uid: 14274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,36.5 + pos: 85.5,29.5 parent: 2 - - uid: 13654 + - uid: 14275 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 14362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,30.5 + pos: 90.5,30.5 parent: 2 - - uid: 13655 + - uid: 14524 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,31.5 + pos: 95.5,30.5 parent: 2 - - uid: 13761 + - uid: 14651 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 14658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,29.5 + pos: 72.5,20.5 parent: 2 - proto: WindoorSecureEngineeringLocked entities: @@ -85173,6 +94346,32 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,3.5 parent: 2 + - uid: 12159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,1.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,1.5 + parent: 2 + - uid: 14991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,1.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 14738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,29.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - uid: 3513 @@ -85223,24 +94422,12 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,25.5 parent: 2 - - uid: 2428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - uid: 2429 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,25.5 parent: 2 - - uid: 2471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - uid: 7738 components: - type: Transform @@ -85258,6 +94445,12 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 + - uid: 12661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 - proto: Window entities: - uid: 142 @@ -85331,16 +94524,6 @@ entities: - type: Transform pos: 28.5,-17.5 parent: 2 - - uid: 2086 - components: - - type: Transform - pos: 7.5,20.5 - parent: 2 - - uid: 2090 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - uid: 2184 components: - type: Transform @@ -85421,10 +94604,15 @@ entities: - type: Transform pos: 66.5,-18.5 parent: 2 - - uid: 5004 + - uid: 4321 components: - type: Transform - pos: 43.5,1.5 + pos: 7.5,29.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + pos: 6.5,29.5 parent: 2 - uid: 5005 components: @@ -85451,11 +94639,28 @@ entities: - type: Transform pos: 58.5,-3.5 parent: 2 + - uid: 7238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 2 - uid: 9064 components: - type: Transform pos: 67.5,-18.5 parent: 2 + - uid: 9243 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 2 - uid: 10802 components: - type: Transform @@ -85504,18 +94709,6 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 6791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-13.5 - parent: 2 - - uid: 6792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 2 - uid: 7776 components: - type: Transform @@ -85550,26 +94743,6 @@ entities: - type: Transform pos: 58.5,12.5 parent: 2 - - uid: 10844 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 10845 - components: - - type: Transform - pos: 46.5,32.5 - parent: 2 - - uid: 11860 - components: - - type: Transform - pos: 40.5,35.5 - parent: 2 - - uid: 12373 - components: - - type: Transform - pos: 41.5,35.5 - parent: 2 - uid: 12999 components: - type: Transform @@ -85657,24 +94830,6 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 77 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 2 - - uid: 78 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 2 - - uid: 81 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 2 - uid: 135 components: - type: Transform @@ -85687,12 +94842,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-15.5 parent: 2 - - uid: 358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 2 - uid: 673 components: - type: Transform @@ -85744,12 +94893,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 - - uid: 2463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,19.5 - parent: 2 - uid: 2733 components: - type: Transform @@ -85768,244 +94911,103 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-30.5 parent: 2 - - uid: 4346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,34.5 - parent: 2 - - uid: 4347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,35.5 - parent: 2 - - uid: 4348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,36.5 - parent: 2 - - uid: 4349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,38.5 - parent: 2 - - uid: 4351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,39.5 - parent: 2 - - uid: 4360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,40.5 - parent: 2 - - uid: 4361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,39.5 - parent: 2 - - uid: 4362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,40.5 - parent: 2 - - uid: 4363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,40.5 - parent: 2 - - uid: 4364 + - uid: 4555 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,41.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,41.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,41.5 - parent: 2 - - uid: 4367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,41.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,41.5 - parent: 2 - - uid: 4397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,41.5 - parent: 2 - - uid: 4398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,41.5 - parent: 2 - - uid: 4399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,41.5 - parent: 2 - - uid: 4400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,41.5 - parent: 2 - - uid: 4401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,40.5 - parent: 2 - - uid: 4402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,40.5 - parent: 2 - - uid: 4403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,40.5 - parent: 2 - - uid: 4404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,39.5 + pos: 10.5,-38.5 parent: 2 - - uid: 4405 + - uid: 5034 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,36.5 + pos: 25.5,48.5 parent: 2 - - uid: 4406 + - uid: 5808 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,39.5 + pos: 2.5,-30.5 parent: 2 - - uid: 4408 + - uid: 5864 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,38.5 + pos: 2.5,-32.5 parent: 2 - - uid: 4409 + - uid: 5866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,37.5 + rot: 3.141592653589793 rad + pos: 22.5,-15.5 parent: 2 - - uid: 4410 + - uid: 5867 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,35.5 + pos: 2.5,-31.5 parent: 2 - - uid: 4411 + - uid: 5868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,33.5 + rot: 3.141592653589793 rad + pos: 2.5,-29.5 parent: 2 - - uid: 4412 + - uid: 5869 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,32.5 - parent: 2 - - uid: 4413 - components: - - type: Transform - pos: 50.5,32.5 + pos: 2.5,-29.5 parent: 2 - - uid: 4414 + - uid: 6198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,34.5 + pos: 28.5,25.5 parent: 2 - - uid: 4555 + - uid: 6327 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-38.5 + pos: 31.5,28.5 parent: 2 - - uid: 5034 + - uid: 6328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,48.5 + rot: 1.5707963267948966 rad + pos: 31.5,30.5 parent: 2 - - uid: 5808 + - uid: 6329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-30.5 + pos: 31.5,25.5 parent: 2 - - uid: 5864 + - uid: 6330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-32.5 + rot: 1.5707963267948966 rad + pos: 31.5,26.5 parent: 2 - - uid: 5866 + - uid: 6331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-15.5 + pos: 29.5,25.5 parent: 2 - - uid: 5867 + - uid: 6332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-31.5 + pos: 30.5,25.5 parent: 2 - - uid: 5868 + - uid: 6832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-29.5 + rot: 1.5707963267948966 rad + pos: -5.5,0.5 parent: 2 - - uid: 5869 + - uid: 6884 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-29.5 - parent: 2 - - uid: 6832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 + pos: -9.5,0.5 parent: 2 - uid: 7762 components: @@ -86197,55 +95199,93 @@ entities: rot: 3.141592653589793 rad pos: 29.5,5.5 parent: 2 + - uid: 12766 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,41.5 + parent: 2 - uid: 13595 components: - type: Transform - pos: 55.5,34.5 + rot: -1.5707963267948966 rad + pos: 58.5,31.5 parent: 2 - - uid: 13596 + - uid: 14199 components: - type: Transform - pos: 57.5,34.5 + rot: 1.5707963267948966 rad + pos: 77.5,29.5 parent: 2 - - uid: 13597 + - uid: 14200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,30.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,31.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,27.5 + parent: 2 + - uid: 14235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,34.5 + pos: 86.5,32.5 parent: 2 - - uid: 13598 + - uid: 14249 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,34.5 + pos: 84.5,32.5 parent: 2 - - uid: 13627 + - uid: 14357 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,33.5 + pos: 90.5,32.5 parent: 2 - - uid: 13628 + - uid: 14358 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,32.5 + pos: 90.5,31.5 parent: 2 - - uid: 13629 + - uid: 14360 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,37.5 + pos: 90.5,28.5 parent: 2 - - uid: 13630 + - uid: 14361 components: - type: Transform - pos: 62.5,32.5 + rot: 1.5707963267948966 rad + pos: 90.5,29.5 parent: 2 - - uid: 13652 + - uid: 14571 components: - type: Transform - pos: 52.5,30.5 + pos: 82.5,36.5 parent: 2 - proto: Wirecutter entities: diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index 8384e006df7bb6..e59aad9da3fa13 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -60,6 +60,9 @@ reagents: - ReagentId: UncookedAnimalProteins Quantity: 5 + - type: Item + size: Small + heldPrefix: lungs - type: entity id: OrganAnimalStomach @@ -86,6 +89,9 @@ groups: - id: Food - id: Drink + - type: Item + size: Small + heldPrefix: stomach - type: entity id: OrganMouseStomach @@ -97,6 +103,9 @@ solutions: stomach: maxVol: 30 + - type: Item + size: Small + heldPrefix: stomach - type: entity id: OrganAnimalLiver @@ -113,6 +122,9 @@ groups: - id: Alcohol rateModifier: 0.1 + - type: Item + size: Small + heldPrefix: liver - type: entity id: OrganAnimalHeart @@ -130,6 +142,9 @@ - id: Medicine - id: Poison - id: Narcotic + - type: Item + size: Small + heldPrefix: heart - type: entity id: OrganAnimalKidneys @@ -146,3 +161,6 @@ maxReagents: 5 metabolizerTypes: [ Animal ] removeEmpty: true + - type: Item + size: Small + heldPrefix: kidneys diff --git a/Resources/Prototypes/Body/Organs/arachnid.yml b/Resources/Prototypes/Body/Organs/arachnid.yml index 29ca393d1379c8..c7542ae11189a5 100644 --- a/Resources/Prototypes/Body/Organs/arachnid.yml +++ b/Resources/Prototypes/Body/Organs/arachnid.yml @@ -34,6 +34,9 @@ - type: Sprite sprite: Mobs/Species/Arachnid/organs.rsi state: stomach + - type: Item + size: Small + heldPrefix: stomach - type: Stomach updateInterval: 1.5 - type: SolutionContainerManager @@ -91,6 +94,9 @@ components: - type: Sprite state: heart-on + - type: Item + size: Small + heldPrefix: heart - type: Metabolizer updateInterval: 1.5 maxReagents: 2 @@ -107,6 +113,9 @@ description: "Pairing suggestion: chianti and fava beans." categories: [ HideSpawnMenu ] components: + - type: Item + size: Small + heldPrefix: liver - type: Sprite state: liver - type: Metabolizer # The liver metabolizes certain chemicals only, like alcohol. @@ -129,6 +138,9 @@ - state: kidney-l - state: kidney-r # The kidneys just remove anything that doesn't currently have any metabolisms, as a stopgap. + - type: Item + size: Small + heldPrefix: kidneys - type: Metabolizer updateInterval: 1.5 maxReagents: 5 @@ -145,6 +157,9 @@ layers: - state: eyeball-l - state: eyeball-r + - type: Item + size: Small + heldPrefix: eyeballs - type: entity id: OrganArachnidTongue diff --git a/Resources/Prototypes/Body/Organs/diona.yml b/Resources/Prototypes/Body/Organs/diona.yml index e248355df2c04a..bf865a07fd9e1b 100644 --- a/Resources/Prototypes/Body/Organs/diona.yml +++ b/Resources/Prototypes/Body/Organs/diona.yml @@ -29,8 +29,11 @@ id: OrganDionaBrain parent: [BaseDionaOrgan, OrganHumanBrain] name: brain - description: "The source of incredible, unending intelligence. Honk." + description: "The central hub of a diona's pseudo-neurological activity, its root-like tendrils search for its former body." components: + - type: Item + size: Small + heldPrefix: brain - type: Sprite state: brain - type: SolutionContainerManager @@ -64,7 +67,7 @@ id: OrganDionaStomach parent: BaseDionaOrgan name: stomach - description: "Gross. This is hard to stomach." + description: "The diona's equivalent of a stomach, it reeks of asparagus and vinegar." components: - type: Sprite state: stomach @@ -90,18 +93,21 @@ - id: Narcotic - id: Alcohol rateModifier: 0.1 + - type: Item + size: Small + heldPrefix: stomach - type: entity id: OrganDionaLungs parent: BaseDionaOrgan name: lungs - description: "Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier." + description: "A spongy mess of slimy, leaf-like structures. Capable of breathing both carbon dioxide and oxygen." components: - type: Sprite - sprite: Mobs/Species/Human/organs.rsi - layers: - - state: lung-l - - state: lung-r + state: lungs + - type: Item + size: Small + heldPrefix: lungs - type: Lung - type: Metabolizer removeEmpty: true diff --git a/Resources/Prototypes/Body/Organs/human.yml b/Resources/Prototypes/Body/Organs/human.yml index c67f4f6cd16bcd..cb1492b8a6a152 100644 --- a/Resources/Prototypes/Body/Organs/human.yml +++ b/Resources/Prototypes/Body/Organs/human.yml @@ -71,6 +71,9 @@ entries: Burger: Brain Taco: Brain + - type: Item + size: Small + heldPrefix: brain - type: entity id: OrganHumanEyes @@ -82,6 +85,9 @@ layers: - state: eyeball-l - state: eyeball-r + - type: Item + size: Small + heldPrefix: eyeballs - type: entity id: OrganHumanTongue @@ -122,6 +128,9 @@ layers: - state: lung-l - state: lung-r + - type: Item + size: Small + heldPrefix: lungs - type: Lung - type: Metabolizer removeEmpty: true @@ -164,6 +173,9 @@ - id: Medicine - id: Poison - id: Narcotic + - type: Item + size: Small + heldPrefix: heart - type: entity id: OrganHumanStomach @@ -173,6 +185,9 @@ components: - type: Sprite state: stomach + - type: Item + size: Small + heldPrefix: stomach - type: SolutionContainerManager solutions: stomach: @@ -202,6 +217,9 @@ components: - type: Sprite state: liver + - type: Item + size: Small + heldPrefix: liver - type: Metabolizer # The liver metabolizes certain chemicals only, like alcohol. maxReagents: 1 metabolizerTypes: [Human] @@ -219,6 +237,9 @@ layers: - state: kidney-l - state: kidney-r + - type: Item + size: Small + heldPrefix: kidneys # The kidneys just remove anything that doesn't currently have any metabolisms, as a stopgap. - type: Metabolizer maxReagents: 5 diff --git a/Resources/Prototypes/Body/Organs/slime.yml b/Resources/Prototypes/Body/Organs/slime.yml index 3da76c5d4aacc4..ca22d25423c82c 100644 --- a/Resources/Prototypes/Body/Organs/slime.yml +++ b/Resources/Prototypes/Body/Organs/slime.yml @@ -33,6 +33,9 @@ reagents: - ReagentId: Slime Quantity: 10 + - type: Item + size: Small + heldPrefix: brain - type: entity @@ -70,3 +73,6 @@ reagents: - ReagentId: UncookedAnimalProteins Quantity: 5 + - type: Item + size: Small + heldPrefix: lungs diff --git a/Resources/Prototypes/Body/Organs/vox.yml b/Resources/Prototypes/Body/Organs/vox.yml index 1b4d12116f86f0..70e07832712021 100644 --- a/Resources/Prototypes/Body/Organs/vox.yml +++ b/Resources/Prototypes/Body/Organs/vox.yml @@ -1,9 +1,15 @@ - type: entity id: OrganVoxLungs parent: OrganHumanLungs + description: "The blue, anaerobic lungs of a vox, they intake nitrogen to breathe. Any form of gaseous oxygen is lethally toxic if breathed in." suffix: "vox" components: + - type: Sprite + sprite: Mobs/Species/Vox/organs.rsi - type: Metabolizer metabolizerTypes: [ Vox ] - type: Lung alert: LowNitrogen + - type: Item + size: Small + heldPrefix: lungs diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 82660f8f13abb7..1cc97c2401fc01 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -261,6 +261,7 @@ id: LockerFillResearchDirectorNoHardsuit table: !type:AllSelector children: + - id: Intellicard - id: BoxEncryptionKeyScience - id: CircuitImprinterMachineCircuitboard - id: ClothingBeltUtilityFilled diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml index fce18024a7efe3..188aaf7641afef 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml @@ -8,4 +8,5 @@ id: TankDispenserEngineeringInventory startingInventory: PlasmaTankFilled: 10 + NitrogenTankFilled: 10 OxygenTankFilled: 10 diff --git a/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml b/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml index 9314de97914612..46edd7bafefa4f 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml @@ -130,6 +130,12 @@ prefix: fat-extractor-fact- count: 6 +- type: localizedDataset + id: FirebotAd + values: + prefix: advertisement-firebot- + count: 4 + - type: localizedDataset id: GoodCleanFunAds values: diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index a91aab53c804d2..748a65b761a28f 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -887,7 +887,7 @@ discountDownTo: Telecrystal: 2 cost: - Telecrystal: 4 + Telecrystal: 3 categories: - UplinkDisruption diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 22ea8ed6ba606c..254eaf37c80f5c 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -312,3 +312,14 @@ - WhitelistChameleon - type: StaticPrice price: 1 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHairflower + name: hairflower + description: A beautiful hairflower that can be inserted between locks of hair. + components: + - type: Sprite + sprite: Clothing/Head/Misc/hairflower.rsi + - type: Clothing + sprite: Clothing/Head/Misc/hairflower.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml new file mode 100644 index 00000000000000..d3f7dc480cab74 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml @@ -0,0 +1,764 @@ +- type: entity + id: BaseTowel + name: base towel + abstract: true + description: If you want to survive out here, you gotta know where your towel is. + parent: [ UnsensoredClothingUniformBase, ClothingHeadBase, ClothingBeltBase ] + components: + - type: Sprite + sprite: Clothing/Multiple/towel.rsi + - type: Clothing + sprite: Clothing/Multiple/towel.rsi + slots: + - BELT + - INNERCLOTHING + - HEAD + femaleMask: UniformTop + equipSound: + unequipSound: + - type: Spillable + solution: absorbed + - type: Absorbent + pickupAmount: 15 + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Fiber + Quantity: 30 + absorbed: + maxVol: 30 + - type: Fiber + fiberColor: fibers-white + - type: DnaSubstanceTrace + - type: Item + size: Small + +- type: entity + id: TowelColorWhite + name: white towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#EAE8E8" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#EAE8E8" + right: + - state: inhand-right + color: "#EAE8E8" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#EAE8E8" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#EAE8E8" + belt: + - state: equipped-BELT + color: "#EAE8E8" + - type: Fiber + fiberColor: fibers-white + +- type: entity + id: TowelColorPurple + name: purple towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#9C0DE1" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9C0DE1" + right: + - state: inhand-right + color: "#9C0DE1" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#9C0DE1" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#9C0DE1" + belt: + - state: equipped-BELT + color: "#9C0DE1" + - type: Fiber + fiberColor: fibers-purple + +- type: entity + id: TowelColorRed + name: red towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#940000" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#940000" + right: + - state: inhand-right + color: "#940000" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#940000" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#940000" + belt: + - state: equipped-BELT + color: "#940000" + - type: Fiber + fiberColor: fibers-red + +- type: entity + id: TowelColorBlue + name: blue towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#0089EF" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#0089EF" + right: + - state: inhand-right + color: "#0089EF" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#0089EF" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#0089EF" + belt: + - state: equipped-BELT + color: "#0089EF" + - type: Fiber + fiberColor: fibers-blue + +- type: entity + id: TowelColorDarkBlue + name: dark blue towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#3285ba" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3285ba" + right: + - state: inhand-right + color: "#3285ba" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#3285ba" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3285ba" + belt: + - state: equipped-BELT + color: "#3285ba" + - type: Fiber + fiberColor: fibers-blue + +- type: entity + id: TowelColorLightBlue + name: light blue towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#58abcc" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#58abcc" + right: + - state: inhand-right + color: "#58abcc" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#58abcc" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#58abcc" + belt: + - state: equipped-BELT + color: "#58abcc" + - type: Fiber + fiberColor: fibers-blue + +- type: entity + id: TowelColorTeal + name: teal towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#3CB57C" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3CB57C" + right: + - state: inhand-right + color: "#3CB57C" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#3CB57C" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3CB57C" + belt: + - state: equipped-BELT + color: "#3CB57C" + - type: Fiber + fiberColor: fibers-teal + +- type: entity + id: TowelColorBrown + name: brown towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#723A02" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#723A02" + right: + - state: inhand-right + color: "#723A02" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#723A02" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#723A02" + belt: + - state: equipped-BELT + color: "#723A02" + - type: Fiber + fiberColor: fibers-brown + +- type: entity + id: TowelColorLightBrown + name: light brown towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#c59431" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#c59431" + right: + - state: inhand-right + color: "#c59431" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#c59431" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#c59431" + belt: + - state: equipped-BELT + color: "#c59431" + - type: Fiber + fiberColor: fibers-brown + +- type: entity + id: TowelColorGray + name: gray towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#999999" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#999999" + right: + - state: inhand-right + color: "#999999" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#999999" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#999999" + belt: + - state: equipped-BELT + color: "#999999" + - type: Fiber + fiberColor: fibers-grey + +- type: entity + id: TowelColorGreen + name: green towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#5ABF2F" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#5ABF2F" + right: + - state: inhand-right + color: "#5ABF2F" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#5ABF2F" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#5ABF2F" + belt: + - state: equipped-BELT + color: "#5ABF2F" + - type: Fiber + fiberColor: fibers-green + +- type: entity + id: TowelColorDarkGreen + name: dark green towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#79CC26" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#79CC26" + right: + - state: inhand-right + color: "#79CC26" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#79CC26" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#79CC26" + belt: + - state: equipped-BELT + color: "#79CC26" + - type: Fiber + fiberColor: fibers-green + +- type: entity + id: TowelColorGold + name: gold towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#F7C430" + - state: iconstripe + color: "#535353" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#F7C430" + right: + - state: inhand-right + color: "#F7C430" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#F7C430" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#F7C430" + belt: + - state: equipped-BELT + color: "#F7C430" + - type: Fiber + fiberColor: fibers-gold + +- type: entity + id: TowelColorOrange + name: orange towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#EF8100" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#EF8100" + right: + - state: inhand-right + color: "#EF8100" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#EF8100" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#EF8100" + belt: + - state: equipped-BELT + color: "#EF8100" + - type: Fiber + fiberColor: fibers-orange + +- type: entity + id: TowelColorBlack + name: black towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#535353" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#535353" + right: + - state: inhand-right + color: "#535353" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#535353" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#535353" + belt: + - state: equipped-BELT + color: "#535353" + - type: Fiber + fiberColor: fibers-black + +- type: entity + id: TowelColorPink + name: pink towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#ffa69b" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffa69b" + right: + - state: inhand-right + color: "#ffa69b" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffa69b" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffa69b" + belt: + - state: equipped-BELT + color: "#ffa69b" + - type: Fiber + fiberColor: fibers-pink + +- type: entity + id: TowelColorYellow + name: yellow towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#ffe14d" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffe14d" + right: + - state: inhand-right + color: "#ffe14d" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#ffe14d" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffe14d" + belt: + - state: equipped-BELT + color: "#ffe14d" + - type: Fiber + fiberColor: fibers-yellow + +- type: entity + id: TowelColorMaroon + name: maroon towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#cc295f" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#cc295f" + right: + - state: inhand-right + color: "#cc295f" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#cc295f" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#cc295f" + belt: + - state: equipped-BELT + color: "#cc295f" + - type: Fiber + fiberColor: fibers-maroon + +- type: entity + id: TowelColorSilver + name: silver towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#d0d0d0" + - state: iconstripe + color: "#F7C430" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#d0d0d0" + right: + - state: inhand-right + color: "#d0d0d0" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#d0d0d0" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#d0d0d0" + belt: + - state: equipped-BELT + color: "#d0d0d0" + - type: Fiber + fiberColor: fibers-silver + +- type: entity + id: TowelColorMime + name: silent towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#EAE8E8" + - state: iconstripe + color: "#535353" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#EAE8E8" + right: + - state: inhand-right + color: "#EAE8E8" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#EAE8E8" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#EAE8E8" + belt: + - state: equipped-BELT + color: "#EAE8E8" + - type: Fiber + fiberColor: fibers-white + +- type: entity + id: TowelColorNT + name: NanoTrasen brand towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#004787" + - state: iconstripe + color: "#EAE8E8" + - state: NTmono + color: "#EAE8E8" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#004787" + right: + - state: inhand-right + color: "#004787" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#004787" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#004787" + belt: + - state: equipped-BELT + color: "#004787" + - type: Fiber + fiberColor: fibers-regal-blue + +- type: entity + id: TowelColorCentcom + name: centcom towel + parent: BaseTowel + components: + - type: Sprite + layers: + - state: icon + color: "#29722e" + - state: iconstripe + color: "#F7C430" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#29722e" + right: + - state: inhand-right + color: "#29722e" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#29722e" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#29722e" + belt: + - state: equipped-BELT + color: "#29722e" + - type: Fiber + fiberColor: fibers-green + +- type: entity + id: TowelColorSyndicate + name: syndicate towel + parent: [ BaseTowel, BaseSyndicateContraband ] + components: + - type: Sprite + layers: + - state: icon + color: "#535353" + - state: iconstripe + color: "#940000" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#535353" + right: + - state: inhand-right + color: "#535353" + - type: Clothing + clothingVisuals: + head: + - state: equipped-HELMET + color: "#535353" + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#535353" + belt: + - state: equipped-BELT + color: "#535353" + - type: Fiber + fiberColor: fibers-black + \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index c90e0c98f5b2b0..a58c2a3fdd4f85 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -187,6 +187,9 @@ name: power-cell-slot-component-slot-name-default startingItem: PowerCellSmall disableEject: true + whitelist: + tags: + - PowerCell - type: entity parent: ClothingOuterBase diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index fbaeba60470430..4223f2217ea40e 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -204,6 +204,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepSpurs + params: + variation: 0.09 - type: entity parent: ClothingShoesBootsCowboyBrown diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index ea4c9d9c7cdd78..61dda89d13720f 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -47,8 +47,6 @@ collection: FootstepDuck params: variation: 0.07 - - type: WaddleWhenWorn - tumbleIntensity: 10 # smaller than clown shoes - type: Construction graph: ClothingShoeSlippersDuck node: shoes diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index bd37135e98d7d1..87a0c06c4a0b55 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -15,7 +15,6 @@ parent: [ClothingShoesBaseButcherable, ClothingSlotBase] id: ClothingShoesClownBase components: - - type: WaddleWhenWorn - type: ItemSlots slots: item: @@ -41,6 +40,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepClown + params: + variation: 0.17 # for H.O.N.K. construction - type: Tag tags: @@ -60,6 +61,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepSlip + params: + variation: 0.10 - type: Construction graph: BananaClownShoes node: shoes @@ -80,6 +83,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepClown + params: + variation: 0.17 - type: PointLight enabled: true radius: 3 @@ -216,6 +221,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepJester + params: + variation: 0.07 - type: entity parent: ClothingShoesClown @@ -275,3 +282,5 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepSkates + params: + variation: 0.08 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 3f735cf98ba8ee..6a22da58eb952c 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -289,6 +289,7 @@ - id: ResearchDisk5000 - id: PetCarrier - id: DrinkMopwataBottleRandom + - id: SpectralLocator - id: LidSalami weight: 0.05 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml index 4dcc97ad3164b6..fdfe759e0a0f49 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml @@ -150,4 +150,10 @@ - PosterLegitPeriodicTable - PosterLegitRenault - PosterLegitNTTGC + - PosterLegitSafetyMothDelam + - PosterLegitSafetyMothEpi + - PosterLegitSafetyMothPiping + - PosterLegitSafetyMothMeth + - PosterLegitSafetyMothHardhat + - PosterLegitSafetyMothSSD chance: 1 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index d4f2ecd30aef20..e2dd9ac3f30566 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1407,8 +1407,7 @@ components: # make the player a traitor once its taken - type: AutoTraitor - giveUplink: false - giveObjectives: false + profile: TraitorReinforcement - type: entity id: MobMonkeySyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink @@ -1432,11 +1431,14 @@ - type: Speech speechSounds: Lizard speechVerb: Reptilian + allowedEmotes: ['Thump'] - type: Vocal sounds: Male: MaleReptilian Female: FemaleReptilian Unsexed: MaleReptilian + - type: BodyEmotes + soundsId: ReptilianBodyEmotes - type: TypingIndicator proto: lizard - type: InteractionPopup @@ -1566,8 +1568,7 @@ components: # make the player a traitor once its taken - type: AutoTraitor - giveUplink: false - giveObjectives: false + profile: TraitorReinforcement - type: entity id: MobKoboldSyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 71336d9e63ae5f..5adb8914457d22 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -777,6 +777,7 @@ name: ghost-role-information-smile-name description: ghost-role-information-smile-description rules: ghost-role-information-nonantagonist-rules + raffle: null - type: Grammar attributes: proper: true diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index cf964822f1fa28..888011a5b5f838 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -8,6 +8,7 @@ components: - type: Input context: "ghost" + - type: Spectral - type: MovementSpeedModifier baseWalkSpeed: 6 baseSprintSpeed: 6 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 612e49baec0cd7..5883790b6658a0 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -120,8 +120,6 @@ - type: Construction graph: FireBot node: bot - - type: SentienceTarget - flavorKind: station-event-random-sentience-flavor-mechanical - type: HTN rootTask: task: FirebotCompound @@ -148,12 +146,14 @@ vaporSpread: 90 sprayVelocity: 3.0 - type: UseDelay - delay: 4 + delay: 2 - type: InteractionPopup interactSuccessString: petting-success-firebot interactFailureString: petting-failure-firebot interactSuccessSound: path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: Advertise + pack: FirebotAd - type: entity parent: MobSiliconBase @@ -166,6 +166,8 @@ maxInterval: 12 sound: collection: BikeHorn + params: + variation: 0.125 - type: Sprite sprite: Mobs/Silicon/Bots/honkbot.rsi state: honkbot @@ -210,6 +212,8 @@ interactFailureString: petting-failure-honkbot interactSuccessSound: path: /Audio/Items/bikehorn.ogg + params: + variation: 0.125 - type: entity parent: MobHonkBot @@ -220,6 +224,8 @@ - type: SpamEmitSound sound: collection: CluwneHorn + params: + variation: 0.125 - type: Sprite state: jonkbot - type: Construction @@ -235,6 +241,8 @@ - type: InteractionPopup interactSuccessSound: path: /Audio/Items/brokenbikehorn.ogg + params: + variation: 0.125 - type: Vocal sounds: Unsexed: Cluwne diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index af75c62836251c..1c3862e99a32ef 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -1,5 +1,5 @@ - type: entity - parent: [MobObserver, InventoryBase] + parent: [MobObserverBase, InventoryBase] id: AdminObserver name: admin observer categories: [ HideSpawnMenu ] @@ -12,6 +12,7 @@ - CanPilot - BypassInteractionRangeChecks - BypassDropChecks + - NoConsoleSound - type: Input context: "aghost" - type: Ghost @@ -96,7 +97,7 @@ - type: entity id: ActionAGhostShowSolar name: Solar Control Interface - description: View a solar control interface. + description: View a Solar Control Interface. components: - type: InstantAction icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } @@ -108,7 +109,7 @@ - type: entity id: ActionAGhostShowCommunications name: Communications Interface - description: View a communications interface. + description: View a Communications Interface. components: - type: InstantAction icon: { sprite: Interface/Actions/actions_ai.rsi, state: comms_console } @@ -120,7 +121,7 @@ - type: entity id: ActionAGhostShowRadar name: Mass Scanner Interface - description: View a mass scanner interface. + description: View a Mass Scanner Interface. components: - type: InstantAction icon: { sprite: Interface/Actions/actions_ai.rsi, state: mass_scanner } @@ -132,7 +133,7 @@ - type: entity id: ActionAGhostShowCargo name: Cargo Ordering Interface - description: View a cargo ordering interface. + description: View a Cargo Ordering Interface. components: - type: InstantAction icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } @@ -144,7 +145,7 @@ - type: entity id: ActionAGhostShowCrewMonitoring name: Crew Monitoring Interface - description: View a crew monitoring interface. + description: View a Crew Monitoring Interface. components: - type: InstantAction icon: { sprite: Interface/Actions/actions_ai.rsi, state: crew_monitor } @@ -156,7 +157,7 @@ - type: entity id: ActionAGhostShowStationRecords name: Station Records Interface - description: View a station records Interface. + description: View a Station Records Interface. components: - type: InstantAction icon: { sprite: Interface/Actions/actions_ai.rsi, state: station_records } diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 4a7a48a0d5e962..7fc8bf7d6c99c0 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -31,8 +31,7 @@ components: # make the player a traitor once its taken - type: AutoTraitor - giveUplink: false - giveObjectives: false + profile: TraitorReinforcement - type: entity parent: MobHumanSyndicateAgent diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index c02629c4d6fd81..397061defe8105 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -28,11 +28,13 @@ layer: - GhostImpassable +# shared parent between aghosts, replay spectators and normal observers - type: entity parent: - Incorporeal - BaseMob - id: MobObserver + id: MobObserverBase + abstract: true name: observer description: Boo! categories: [ HideSpawnMenu ] @@ -61,6 +63,13 @@ tags: - BypassInteractionRangeChecks +# proto for player ghosts specifically +- type: entity + parent: MobObserverBase + id: MobObserver + components: + - type: Spectral + - type: entity id: ActionGhostBoo name: Boo! diff --git a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml index ffbc46e94c3380..8a01de40809c11 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml @@ -1,5 +1,5 @@ - type: entity - parent: MobObserver + parent: MobObserverBase id: ReplayObserver categories: [ HideSpawnMenu ] save: false diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 15878a4017d00c..9f7e206c249ef0 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -71,6 +71,26 @@ title: comms-console-announcement-title-station-ai color: "#2ed2fd" +- type: entity + id: AiHeldIntellicard + description: Components added / removed from an entity that gets inserted into an Intellicard. + categories: [ HideSpawnMenu ] + components: + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - type: ActiveRadio + channels: + - Binary + - Common + - type: ActionGrant + actions: + - ActionAIViewLaws + - type: UserInterface + interfaces: + enum.SiliconLawsUiKey.Key: + type: SiliconLawBoundUserInterface # Ai - type: entity @@ -82,7 +102,8 @@ - type: StationAiHolder slot: name: station-ai-mind-slot - locked: true + locked: false + disableEject: true whitelist: tags: - StationAi @@ -239,6 +260,7 @@ state: std_mod - type: SiliconLawProvider laws: AntimovLawset + lawUploadSound: /Audio/Ambience/Antag/silicon_lawboard_antimov.ogg - type: entity id: NutimovCircuitBoard @@ -255,13 +277,16 @@ # Items - type: entity id: Intellicard - name: Intellicard + name: intellicard description: A storage device for AIs. parent: - BaseItem - AiHolder suffix: Empty components: + - type: ContainerComp + proto: AiHeldIntellicard + container: station_ai_mind_slot - type: Sprite sprite: Objects/Devices/ai_card.rsi layers: @@ -360,7 +385,6 @@ enum.SiliconLawsUiKey.Key: type: SiliconLawBoundUserInterface - type: ComplexInteraction - - type: DoorRemote - type: Actions - type: Access groups: @@ -373,6 +397,7 @@ tags: - HideContextMenu - StationAi + - NoConsoleSound # Hologram projection that the AI's eye tracks. - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index c023dc1c252430..f172f631c1def3 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -30,6 +30,7 @@ - type: Speech speechSounds: Lizard speechVerb: Reptilian + allowedEmotes: ['Thump'] - type: TypingIndicator proto: lizard - type: Vocal @@ -37,6 +38,8 @@ Male: MaleReptilian Female: FemaleReptilian Unsexed: MaleReptilian + - type: BodyEmotes + soundsId: ReptilianBodyEmotes - type: Damageable damageContainer: Biological damageModifierSet: Scale diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml index 448ef0868d6326..0b574cdd72088f 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml @@ -135,6 +135,10 @@ Quantity: 5 - ReagentId: Vitamin Quantity: 5 + - type: Tag + tags: + - Cake + - Vegetable - type: entity name: slice of carrot cake @@ -155,6 +159,11 @@ Quantity: 1 - ReagentId: Vitamin Quantity: 1 + - type: Tag + tags: + - Cake + - Vegetable + - Slice # Tastes like sweetness, cake, carrot. @@ -168,7 +177,10 @@ state: brain - type: SliceableFood slice: FoodCakeBrainSlice - + - type: Tag + tags: + - Cake + - Meat - type: entity name: slice of brain cake @@ -178,6 +190,11 @@ components: - type: Sprite state: brain-slice + - type: Tag + tags: + - Cake + - Meat + - Slice # Tastes like sweetness, cake, brains. - type: entity @@ -429,6 +446,10 @@ state: slime - type: SliceableFood slice: FoodCakeSlimeSlice + - type: Tag + tags: + - Cake + - Meat - type: entity name: slice of slime cake @@ -438,6 +459,11 @@ components: - type: Sprite state: slime-slice + - type: Tag + tags: + - Cake + - Meat + - Slice # Tastes like sweetness, cake, slime. - type: entity @@ -498,6 +524,10 @@ state: christmas - type: SliceableFood slice: FoodCakeChristmasSlice + - type: Tag + tags: + - Cake + - Fruit - type: entity name: slice of christmas cake @@ -506,6 +536,11 @@ components: - type: Sprite state: christmas-slice + - type: Tag + tags: + - Cake + - Fruit + - Slice # Tastes like sweetness, cake, christmas. - type: entity @@ -634,7 +669,7 @@ Quantity: 20 - ReagentId: Vitamin Quantity: 5 - - ReagentId: Omnizine #This is a really rare cake with healing stuff and we don't have any of its chems yet + - ReagentId: PolypyryliumOligomers Quantity: 15 - type: entity @@ -654,7 +689,7 @@ Quantity: 4 - ReagentId: Vitamin Quantity: 1 - - ReagentId: Omnizine + - ReagentId: PolypyryliumOligomers Quantity: 3 # Tastes like sweetness, cake, jam. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index c9ac4833431579..b86a4201e8b797 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -23,7 +23,7 @@ - ReagentId: Vitamin Quantity: 5 - type: Food #All pies here made with a pie tin; unless you're some kind of savage, you're probably not destroying this when you eat or slice the pie! - trash: + trash: - FoodPlateTin - type: SliceableFood count: 4 @@ -317,6 +317,43 @@ - Slice # Tastes like pie, meat. +- type: entity + name: pumpkin pie + parent: FoodPieBase + id: FoodPiePumpkin + description: Someone should turn this into a latte! + components: + - type: FlavorProfile + flavors: + - sweet + - pumpkin + - type: Sprite + layers: + - state: tin + - state: pumpkin + - type: SliceableFood + slice: FoodPiePumpkinSlice + - type: Tag + tags: + - Pie + +- type: entity + name: slice of pumpkin pie + parent: FoodPieSliceBase + id: FoodPiePumpkinSlice + components: + - type: FlavorProfile + flavors: + - sweet + - pumpkin + - type: Sprite + layers: + - state: pumpkin-slice + - type: Tag + tags: + - Pie + - Slice + - type: entity name: xeno pie parent: FoodPieBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index 000f21db3f4095..612f7da0472bfa 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -525,6 +525,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: snake - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml index 1240fa3d8fe68c..861caddd06445a 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml @@ -64,6 +64,8 @@ orGroup: GiftPool - id: PlushieLizard #Weh! orGroup: GiftPool + - id: PlushieRainbowLizard + orGroup: GiftPool - id: PlushieNar orGroup: GiftPool - id: PlushieCarp diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml index a6eaa128d60e08..7ad65e52b24df1 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml @@ -54,6 +54,7 @@ instrumentList: "Aah": {52: 0} "Ooh": {53: 0} + "Kweh": {4: 1} - type: Sprite sprite: Objects/Fun/Instruments/microphone.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index ff662c2186aacf..b4af7f010e0d24 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -69,6 +69,10 @@ Searching: { state: pai-searching-overlay } On: { state: pai-on-overlay } - type: StationMap + - type: ChangeVoiceInContainer + whitelist: + components: + - SecretStash - type: entity parent: [ PersonalAI, BaseSyndicateContraband] diff --git a/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml b/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml new file mode 100644 index 00000000000000..930b9c4926d1da --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml @@ -0,0 +1,58 @@ +- type: entity + id: SpectralLocatorUnpowered + parent: BaseItem + name: spectral locator + description: Appears to be a modified anomaly locator. Seems very old. + suffix: Unpowered + components: + - type: Sprite + sprite: Objects/Fun/spectrallocator.rsi + layers: + - state: icon + - state: screen + shader: unshaded + visible: false + map: ["enum.ToggleVisuals.Layer"] + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: { visible: true } + False: { visible: false } + - type: ItemToggle + - type: ProximityBeeper + - type: ProximityDetector + range: 12 + criteria: + components: + - Spectral # reacts to AI eye, intentional + - type: Beeper + isMuted: true + minBeepInterval: 0.25 + maxBeepInterval: 0.5 + beepSound: + path: "/Audio/Items/locator_beep.ogg" + params: + maxDistance: 1 + volume: -8 + +- type: entity + id: SpectralLocator + parent: [ SpectralLocatorUnpowered, PowerCellSlotSmallItem ] + suffix: Powered + components: + - type: PowerCellDraw + drawRate: 1 + useRate: 0 + - type: ToggleCellDraw + +- type: entity + id: SpectralLocatorEmpty + parent: SpectralLocator + suffix: Empty + components: + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index ffb1611a71d187..4993614964459d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -52,6 +52,24 @@ reagents: - ReagentId: Fiber Quantity: 10 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - type: Speech + speechVerb: Default # for pais (In the secret stash) + - type: SecretStash + secretStashName: secret-stash-plushie + blacklist: + components: + - SecretStash # Prevents being able to insert plushies inside each other (infinite plush)! + - NukeDisk # Could confuse the nukies if they don't know that plushies have a stash. + tags: + - QuantumSpinInverter # It will cause issues with the grinder... + - FakeNukeDisk # So you can't tell if the nuke disk is real or fake depending on if it can be inserted or not. + - type: ToolOpenable + openToolQualityNeeded: Slicing + closeToolQualityNeeded: Slicing # Should probably be stitching or something if that gets added + name: secret-stash-plushie - type: entity parent: BasePlushie @@ -323,6 +341,25 @@ equippedPrefix: lizard slots: - HEAD + - type: Speech + speechVerb: Reptilian # for pais (In the secret stash) + +- type: entity + parent: PlushieLizard + id: PlushieRainbowLizard #Weh but gay + description: An adorable stuffed toy that resembles a lizardperson of every color. You just might trip while staring at it... + name: rainbow lizard plushie + components: + - type: PointLight + radius: 1.5 + energy: 2 + - type: RgbLightController + layers: [ 0 ] + - type: Clothing + clothingVisuals: + head: + - state: lizard-equipped-HELMET + shader: unshaded - type: entity parent: PlushieLizard diff --git a/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml b/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml index 90e975b93efa17..e1fc3fa5b6f647 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml @@ -35,3 +35,6 @@ state: icon - type: StaticPrice price: 1 # it's worth even less than normal items. Perfection. + - type: Tag + tags: + - FakeNukeDisk diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index b306da64421202..b0c586fc7537eb 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -97,7 +97,7 @@ name: pocket fire extinguisher parent: FireExtinguisher id: FireExtinguisherMini - description: A light and compact fibreglass-framed model fire extinguisher. It holds less water then its bigger brother. + description: A light and compact fibreglass-framed model fire extinguisher. It holds less water than its bigger brother. components: - type: Sprite sprite: Objects/Misc/fire_extinguisher_mini.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index a08afa127e05e4..ccb83b6aaa373c 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -443,7 +443,7 @@ - state: default - state: idvisitor - type: IdCard - jobTitle: Visitor + jobTitle: job-title-visitor jobIcon: JobIconVisitor - type: PresetIdCard job: Visitor @@ -741,7 +741,7 @@ - state: default - state: idcluwne - type: IdCard - jobTitle: Cluwne + jobTitle: job-title-cluwne - type: Unremoveable - type: entity @@ -801,7 +801,7 @@ - type: Item heldPrefix: green - type: IdCard - jobTitle: Universal + jobTitle: job-title-universal jobIcon: JobIconAdmin - type: Access groups: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 1fbde27e71b0e1..4c4e44c28cd29e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -167,6 +167,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepClown + params: + variation: 0.17 - type: Mech baseState: honker openState: honker-open diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml index 9b6da25eb7d273..5b0c97dc837321 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml @@ -68,6 +68,10 @@ components: - type: Sharp butcherDelayModifier: 1.5 # Butchering with a scalpel, regardless of the type, will take 50% longer + - type: Tool + qualities: + - Slicing + speedModifier: 0.66 # pretend the sixes go on forever :) - type: Utensil types: - Knife diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index 17775b7e250aeb..0ac1171c5d7ae4 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -10,6 +10,8 @@ - type: Sprite sprite: Objects/Specific/Robotics/borgmodule.rsi - type: BorgModule + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: no-action } - type: StaticPrice price: 100 - type: Tag @@ -35,7 +37,7 @@ description: Select this module, enabling you to use the tools it provides. components: - type: InstantAction - itemIconStyle: BigItem + itemIconStyle: BigAction useDelay: 0.5 event: !type:BorgModuleActionSelectedEvent @@ -119,6 +121,8 @@ - CableHVStackLingering10 - Wirecutter - trayScanner + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: wire-module } - type: entity id: BorgModuleFireExtinguisher @@ -132,6 +136,8 @@ - type: ItemBorgModule items: - FireExtinguisher + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: extinguisher-module } - type: entity id: BorgModuleGPS @@ -147,6 +153,8 @@ - HandheldGPSBasic - HandHeldMassScannerBorg - HandheldStationMapUnpowered + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: gps-module } - type: entity id: BorgModuleRadiationDetection @@ -160,6 +168,8 @@ - type: ItemBorgModule items: - GeigerCounter + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: geiger-module } - type: entity id: BorgModuleTool @@ -178,6 +188,8 @@ - Wirecutter - Multitool - WelderIndustrial + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: tool-module } # cargo modules - type: entity @@ -192,6 +204,8 @@ - type: ItemBorgModule items: - AppraisalTool + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: appraisal-module } - type: entity id: BorgModuleMining @@ -210,6 +224,8 @@ - OreBag - Crowbar - RadioHandheld + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: mining-module } - type: entity id: BorgModuleGrapplingGun @@ -224,6 +240,8 @@ items: - WeaponGrapplingGun - HandheldGPSBasic + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: grappling-module } # engineering modules - type: entity @@ -244,6 +262,8 @@ - RemoteSignaller - GasAnalyzer - GeigerCounter + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-tools-module } - type: entity id: BorgModuleConstruction @@ -260,6 +280,8 @@ - SheetGlassLingering0 - PartRodMetalLingering0 - FloorTileItemSteelLingering0 + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: construction-module } - type: entity id: BorgModuleRCD @@ -273,6 +295,8 @@ - type: ItemBorgModule items: - RCDRecharging + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: rcd-module } # janitorial modules (this gets its own unique things because janis are epic) - type: entity @@ -289,6 +313,8 @@ - LightReplacer - Crowbar - Screwdriver + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: light-replacer-module } - type: entity id: BorgModuleCleaning @@ -304,6 +330,8 @@ - MopItem - Bucket - TrashBag + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: cleaning-module } - type: entity id: BorgModuleAdvancedCleaning @@ -321,6 +349,8 @@ - SprayBottleSpaceCleaner - Dropper - TrashBag + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-cleaning-module } # medical modules - type: entity @@ -336,6 +366,8 @@ items: - HandheldHealthAnalyzerUnpowered - ClothingNeckStethoscope + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: diagnosis-module } - type: entity id: BorgModuleTreatment @@ -354,6 +386,8 @@ - Gauze10Lingering - Bloodpack10Lingering - Syringe + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: treatment-module } - type: entity id: BorgModuleDefibrillator @@ -367,6 +401,8 @@ - type: ItemBorgModule items: - DefibrillatorOneHandedUnpowered + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: defib-module } - type: entity id: BorgModuleAdvancedTreatment @@ -384,6 +420,8 @@ - Beaker - BorgDropper - BorgHypo + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-diagnosis-module } # science modules # todo: if science ever gets their own custom robot, add more "sci" modules. @@ -399,6 +437,8 @@ - type: ItemBorgModule items: - NodeScanner + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: node-scanner-module } - type: entity id: BorgModuleAnomaly @@ -416,6 +456,8 @@ - AnomalyLocatorWideUnpowered - RemoteSignaller - Multitool + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: anomaly-module } # service modules - type: entity @@ -435,6 +477,8 @@ - Lighter - DrinkShaker - BorgDropper + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: service-module } - type: entity id: BorgModuleMusique @@ -450,6 +494,8 @@ - SynthesizerInstrument - ElectricGuitarInstrument - SaxophoneInstrument + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: musical-module } - type: entity id: BorgModuleGardening @@ -466,6 +512,8 @@ - HydroponicsToolSpade - HydroponicsToolClippers - Bucket + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: gardening-module } - type: entity id: BorgModuleHarvesting @@ -481,6 +529,8 @@ - HydroponicsToolScythe - HydroponicsToolHatchet - PlantBag + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: harvesting-module } - type: entity id: BorgModuleClowning @@ -496,6 +546,8 @@ - BikeHorn - ClownRecorder - BikeHornInstrument + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: clowning-module } #syndicate modules - type: entity @@ -511,6 +563,8 @@ items: - WeaponPistolEchis - EnergyDaggerLoud + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-weapon-module } - type: entity id: BorgModuleOperative @@ -527,6 +581,8 @@ - Crowbar - Emag - PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-operative-module } - type: entity id: BorgModuleEsword @@ -542,6 +598,8 @@ items: - CyborgEnergySwordDouble - PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-esword-module } - type: entity id: BorgModuleL6C @@ -557,6 +615,8 @@ items: - WeaponLightMachineGunL6C - PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-l6c-module } - type: entity id: BorgModuleMartyr @@ -571,3 +631,5 @@ - type: ItemBorgModule items: - SelfDestructSeq + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-martyr-module } diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml index 5155e70cca4442..33eabbb60b52d5 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml @@ -49,6 +49,10 @@ guides: - Cyborgs - Robotics + - type: ChangeVoiceInContainer + whitelist: + components: + - SecretStash - type: entity parent: MMI @@ -127,3 +131,7 @@ guides: - Cyborgs - Robotics + - type: ChangeVoiceInContainer + whitelist: + components: + - SecretStash diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 0f74b4afaf96ed..3f2ac403ac91b6 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -386,6 +386,66 @@ - Syringe - Trash +- type: entity + name: mini syringe + parent: Syringe + description: A regular syringe, reshaped to fit inside of a gun. + id: MiniSyringe + components: + - type: Sprite + sprite: Objects/Specific/Chemistry/syringe.rsi + layers: + - state: minisyringe1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - state: syringeproj + - type: SolutionContainerVisuals + maxFillLevels: 3 + fillBaseName: minisyringe + inHandsMaxFillLevels: 3 + inHandsFillBaseName: -fill- + - type: EmbeddableProjectile + offset: "-0.1,0" + minimumSpeed: 3 + removalTime: 0.25 + embedOnThrow: false + - type: SolutionInjectWhileEmbedded + transferAmount: 1 + solution: injector + updateInterval: 2 + - type: SolutionInjectOnEmbed + transferAmount: 2 + solution: injector + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.2 + density: 5 + mask: + - ItemMask + restitution: 0.3 + friction: 0.2 + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.3,0.1,0.3" + hard: false + mask: + - Impassable + - BulletImpassable + - type: Projectile + deleteOnCollide: false + onlyCollideWhenShot: true + damage: + types: + Piercing: 5 + - type: Tag + tags: + - Syringe + - Trash + - SyringeGunAmmo + - type: entity parent: BaseSyringe id: PrefilledSyringe diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml index 28157ef3450407..8fe03f3c6e15cc 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -41,7 +41,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml index 98ad35b70d22d0..3af2b7affbbb5e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -41,7 +41,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: mag10 - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -61,7 +61,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml index d5fb4360a82258..bcd56c1d64a863 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -41,7 +41,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml index 018d812e3f51f5..6ccf0a1e2a28a0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml @@ -19,7 +19,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml index fbd2044690600c..e081d574d7a875 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/pistol.yml @@ -20,7 +20,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 3 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml index 7a5f5d27ca6906..98e063e297fdaf 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml @@ -19,7 +19,7 @@ sprite: Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi - type: MagazineVisuals magState: mag - steps: 2 + steps: 4 zeroVisible: false - type: Appearance @@ -40,7 +40,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: magb - steps: 2 + steps: 4 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 92c952671f2610..e7fef78f809afa 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -647,7 +647,7 @@ - type: Clothing sprite: Objects/Weapons/Guns/Revolvers/chimp.rsi - type: Gun - projectileSpeed: 4 + projectileSpeed: 10 fireRate: 1.5 soundGunshot: path: /Audio/Weapons/Guns/Gunshots/taser2.ogg diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml index 1d18c2b050096a..63a7acd2576e86 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml @@ -103,6 +103,43 @@ containers: storagebase: !type:Container ents: [] + +- type: entity + name: syringe gun + parent: BaseStorageItem + id: LauncherSyringe + description: Load full of poisoned syringes for optimal fun. + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Cannons/syringe_gun.rsi + layers: + - state: syringe_gun + - type: Storage + maxItemSize: Normal + grid: + - 0,0,2,0 + whitelist: + tags: + - SyringeGunAmmo + - type: Gun + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/syringe_gun.ogg + soundEmpty: + path: /Audio/Weapons/Guns/Empty/empty.ogg + clumsyProof: true + - type: ContainerAmmoProvider + container: storagebase + - type: Item + size: Normal + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] # shoots bullets instead of throwing them, no other changes - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index a279c56378f28b..8f253097abc3cd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -106,6 +106,22 @@ components: - type: Sprite sprite: Objects/Weapons/Grenades/syndgrenade.rsi + - type: ExplosionResistance + damageCoefficient: 0.1 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:TimerStartBehavior + - trigger: + !type:DamageTrigger + damage: 45 + behaviors: + - !type:TriggerBehavior + - !type:DoActsBehavior + acts: ["Destruction"] - type: OnUseTimerTrigger delay: 5 - type: ExplodeOnTrigger diff --git a/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml b/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml index 1d5069c7da8cf1..fc7fe23bb87c90 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml @@ -49,7 +49,7 @@ spawn: MaterialCloth1: min: 1 - max: 2 + max: 1 - type: WallMount arc: 360 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index bbff3cb43ec1b7..a4cb78e67b7448 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -115,6 +115,7 @@ color: Red enabled: false castShadows: false + - type: NavMapDoor - type: entity id: Firelock diff --git a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml index 97c845a7862440..9e6d6580b31694 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml @@ -25,6 +25,8 @@ offset: "0.0,0.3" sprite: Structures/Furniture/potted_plants.rsi noRot: true + - type: Speech + speechVerb: Plant # for pais (In the secret stash) - type: SecretStash tryInsertItemSound: /Audio/Effects/plant_rustle.ogg tryRemoveItemSound: /Audio/Effects/plant_rustle.ogg diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml index ee330b1f790d6e..d7f0297101a8b7 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml @@ -72,6 +72,59 @@ rewardMinAmount: 0 rewardMaxAmount: 0 possibleRewards: + - Basketball + - BalloonNT + - BalloonCorgi + - BoxDonkSoftBox + - BoxCartridgeCap + - BeachBall + - CandyBucket + - CrayonBox + - ClothingHeadHatCowboyRed + - FoamCrossbow + - FoamBlade + - FoamCutlass + - Football + - GlowstickBase #green + - GlowstickBlue + - GlowstickYellow + - GlowstickPurple + - GlowstickRed + - HarmonicaInstrument + - OcarinaInstrument + - RecorderInstrument + - GunpetInstrument + - BirdToyInstrument + - MysteryFigureBox + - PlushieHampter + - PlushieLizard + - PlushieRainbowLizard + - PlushieAtmosian + - PlushieSpaceLizard + - PlushieNuke + - PlushieCarp + - PlushieMagicarp + - PlushieHolocarp + - PlushieRainbowCarp + - PlushieRatvar + - PlushieNar + - PlushieSnake + - PlushieArachind + - PlushieMoth + - PlushieHampter + - PlushiePenguin + - PlushieHuman + - PlushieRouny + - PlushieBee + - PlushieSlime + - PlushieGhost + - PlushieDiona + - PlushieSharkBlue + - PlushieVox + - PlushieXeno + - PlasticBanana + - RevolverCapGun + - SnapPopBox - ToyMouse - ToyAi - ToyNuke @@ -91,44 +144,12 @@ - ToySeraph - ToyDurand - ToySkeleton - - FoamCrossbow - - RevolverCapGun - - PlushieHampter - - PlushieLizard - - PlushieAtmosian - - PlushieSpaceLizard - - PlushieNuke - - PlushieCarp - - PlushieMagicarp - - PlushieHolocarp - - PlushieRainbowCarp - - PlushieRatvar - - PlushieNar - - PlushieSnake - - PlushieArachind - - Basketball - - Football - - PlushieRouny - - PlushieBee - - PlushieSlime - - BalloonNT - - BalloonCorgi - ToySword - - CrayonBox - - BoxDonkSoftBox - - BoxCartridgeCap - - HarmonicaInstrument - - OcarinaInstrument - - RecorderInstrument - - GunpetInstrument - - BirdToyInstrument - - PlushieXeno - - BeachBall - - PlushieMoth - - PlushieHampter - - PlushiePenguin - - PlushieHuman - - ClothingHeadHatCowboyRed + - ToyAmongPequeno + - ToyRubberDuck + - ToyHammer + - WeaponWaterPistol + - WhoopieCushion - Whistle - type: WiresPanel - type: Wires diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index 9baca8b4b6b2bf..d79348bfa6128e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -60,6 +60,11 @@ collection: Keyboard params: volume: -1 + variation: 0.10 + pitch: 1.10 # low pitch keyboard sounds feel kinda weird + blacklist: + tags: + - NoConsoleSound - type: ContainerContainer containers: board: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index 4d4eff1f70294f..1761f176da7926 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -184,7 +184,7 @@ guides: - APE - type: Gun - projectileSpeed: 4 + projectileSpeed: 10 fireRate: 10 #just has to be fast enough to keep up with upgrades showExamineText: false selectedMode: SemiAuto diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index 070e19cdbe5967..402c408ed844ae 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml @@ -34,6 +34,7 @@ interfaces: enum.FaxUiKey.Key: type: FaxBoundUi + - type: StationAiWhitelist - type: ApcPowerReceiver powerLoad: 250 - type: Faxecute diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 846441cb395d8e..a8e4d0f43e0128 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -199,11 +199,9 @@ - WetFloorSign - ClothingHeadHatCone - FreezerElectronics - - Flare - type: EmagLatheRecipes emagStaticRecipes: - BoxLethalshot - - BoxShotgunFlare - BoxShotgunSlug - CombatKnife - MagazineBoxLightRifle @@ -733,7 +731,6 @@ runningState: icon staticRecipes: - BoxLethalshot - - BoxShotgunFlare - BoxShotgunPractice - BoxShotgunSlug - ClothingEyesHudSecurity @@ -856,7 +853,6 @@ runningState: icon staticRecipes: - BoxLethalshot - - BoxShotgunFlare - BoxShotgunSlug - BoxShellTranquilizer - MagazineBoxLightRifle @@ -1176,8 +1172,6 @@ - type: Machine board: BiogeneratorMachineCircuitboard - type: MaterialStorage - insertOnInteract: false - canEjectStoredMaterials: false - type: ProduceMaterialExtractor - type: ItemSlots slots: diff --git a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml index 39ab6a3276b9e2..72d6b28efa0253 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml @@ -86,7 +86,7 @@ - type: GenericVisualizer visuals: enum.ConveyorVisuals.State: - enum.RecyclerVisualLayers.Main: + enum.ConveyorState.Off: Forward: { state: grinder-b1 } Reverse: { state: grinder-b1 } Off: { state: grinder-b0 } diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index 7c0537dec6e763..abf6931c5ee13f 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -91,7 +91,6 @@ type: ApcBoundUserInterface - type: ActivatableUI inHandsOnly: false - singleUser: true key: enum.ApcUiKey.Key - type: Construction graph: APC diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml index 93124b377d5ab9..e9b976403c3dea 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml @@ -1060,6 +1060,16 @@ - type: Sprite state: poster51_legit +- type: entity + parent: PosterBase + id: PosterLegitSafetyMothSSD + name: "Safety Moth - Space Sleep Disorder" + description: "This informational poster uses Safety Moth™ to tell the viewer about Space Sleep Disorder (SSD), a condition where the person stops reacting to things. \"Treat SSD crew with care! They might wake up at any time!\"" + components: + - type: Sprite + state: poster52_legit + + #maps - type: entity diff --git a/Resources/Prototypes/Entities/Structures/hydro_tray.yml b/Resources/Prototypes/Entities/Structures/hydro_tray.yml index 7224c154f9a74f..b1cbcc8b863070 100644 --- a/Resources/Prototypes/Entities/Structures/hydro_tray.yml +++ b/Resources/Prototypes/Entities/Structures/hydro_tray.yml @@ -67,6 +67,11 @@ False: { visible: false } - type: PlantHolder drawWarnings: true + wateringSound: + path: /Audio/Effects/Fluids/slosh.ogg + params: + volume: -6 + variation: 0.20 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/categories.yml b/Resources/Prototypes/Entities/categories.yml index bc4dd104def761..dffc6b6aaf98b4 100644 --- a/Resources/Prototypes/Entities/categories.yml +++ b/Resources/Prototypes/Entities/categories.yml @@ -11,4 +11,14 @@ - type: entityCategory id: Objectives name: entity-category-name-objectives - hideSpawnMenu: true \ No newline at end of file + hideSpawnMenu: true + +- type: entityCategory + id: Roles + name: entity-category-name-roles + hideSpawnMenu: true + +# markers, atmos fixing, etc +- type: entityCategory + id: Mapping + name: entity-category-name-mapping diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index dc44915f53da54..e5e1192fc686ae 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -176,9 +176,8 @@ min: 1 max: 1 pickPlayer: false - mindComponents: - - type: DragonRole - prototype: Dragon + mindRoles: + - MindRoleDragon - type: entity parent: BaseGameRule @@ -226,9 +225,8 @@ nameSegments: - names_ninja_title - names_ninja - mindComponents: - - type: NinjaRole - prototype: SpaceNinja + mindRoles: + - MindRoleNinja - type: entity parent: BaseGameRule @@ -439,9 +437,8 @@ - type: ZombifyOnDeath - type: IncurableZombie - type: InitialInfected - mindComponents: - - type: InitialInfectedRole - prototype: InitialInfected + mindRoles: + - MindRoleInitialInfected - type: entity parent: BaseNukeopsRule @@ -466,7 +463,6 @@ startingGear: SyndicateLoneOperativeGearFull roleLoadout: - RoleSurvivalNukie - components: - type: NukeOperative - type: RandomMetadata @@ -476,9 +472,8 @@ - type: NpcFactionMember factions: - Syndicate - mindComponents: - - type: NukeopsRole - prototype: Nukeops + mindRoles: + - MindRoleNukeops - type: entity parent: BaseTraitorRule @@ -505,9 +500,8 @@ blacklist: components: - AntagImmune - mindComponents: - - type: TraitorRole - prototype: TraitorSleeper + mindRoles: + - MindRoleTraitorSleeper - type: entity id: MassHallucinations diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml index 7446995f2629ea..6cc53a3d100d37 100644 --- a/Resources/Prototypes/GameRules/midround.yml +++ b/Resources/Prototypes/GameRules/midround.yml @@ -26,8 +26,7 @@ startingGear: ThiefGear components: - type: Pacified - mindComponents: - - type: ThiefRole - prototype: Thief + mindRoles: + - MindRoleThief briefing: sound: "/Audio/Misc/thief_greeting.ogg" diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index caf2ca7945c49d..cec5c9ee093174 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -114,9 +114,8 @@ - type: NpcFactionMember factions: - Syndicate - mindComponents: - - type: NukeopsRole - prototype: NukeopsCommander + mindRoles: + - MindRoleNukeopsCommander - prefRoles: [ NukeopsMedic ] fallbackRoles: [ Nukeops, NukeopsCommander ] spawnerPrototype: SpawnPointNukeopsMedic @@ -132,9 +131,8 @@ - type: NpcFactionMember factions: - Syndicate - mindComponents: - - type: NukeopsRole - prototype: NukeopsMedic + mindRoles: + - MindRoleNukeopsMedic - prefRoles: [ Nukeops ] fallbackRoles: [ NukeopsCommander, NukeopsMedic ] spawnerPrototype: SpawnPointNukeopsOperative @@ -152,9 +150,8 @@ - type: NpcFactionMember factions: - Syndicate - mindComponents: - - type: NukeopsRole - prototype: Nukeops + mindRoles: + - MindRoleNukeops - type: entity abstract: true @@ -189,9 +186,17 @@ components: - AntagImmune lateJoinAdditional: true - mindComponents: - - type: TraitorRole - prototype: Traitor + mindRoles: + - MindRoleTraitor + +- type: entity + id: TraitorReinforcement + parent: Traitor + components: + - type: TraitorRule + giveUplink: false + giveCodewords: false # It would actually give them a different set of codewords than the regular traitors, anyway + giveBriefing: false - type: entity id: Revolutionary @@ -213,9 +218,8 @@ components: - type: Revolutionary - type: HeadRevolutionary - mindComponents: - - type: RevolutionaryRole - prototype: HeadRev + mindRoles: + - MindRoleHeadRevolutionary - type: entity id: Sandbox @@ -257,9 +261,8 @@ - type: ZombifyOnDeath - type: IncurableZombie - type: InitialInfected - mindComponents: - - type: InitialInfectedRole - prototype: InitialInfected + mindRoles: + - MindRoleInitialInfected # event schedulers diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml b/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml index b7dae89fda90a3..1ff3f1533ebc15 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml @@ -41,4 +41,4 @@ - !type:GroupLoadoutEffect proto: JensenTimer equipment: - eyes: ClothingEyesGlassesJensen + eyes: ClothingEyesGlassesJensen \ No newline at end of file diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml index ea70828ce4a24d..78b5f0bc9ea179 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -8,6 +8,19 @@ department: Command time: 3600 # 1 hour +# Flowers +- type: loadout + id: FlowerWreath + storage: + back: + - ClothingHeadHatFlowerWreath + +- type: loadout + id: Hairflower + storage: + back: + - ClothingHeadHatHairflower + # Plushies - type: loadout id: PlushieLizard @@ -142,3 +155,193 @@ storage: back: - ClothingNeckGoldAutismPin + +# Towels +- type: loadout + id: TowelColorWhite + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:OverallPlaytimeRequirement + time: 36000 # 10hr + storage: + back: + - TowelColorWhite + +- type: loadout + id: TowelColorSilver + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:OverallPlaytimeRequirement + time: 1800000 # 500hr + storage: + back: + - TowelColorSilver + +- type: loadout + id: TowelColorGold + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:OverallPlaytimeRequirement + time: 3600000 # 1000hr + storage: + back: + - TowelColorGold + +- type: loadout + id: TowelColorLightBrown + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Cargo + time: 360000 # 100hr + storage: + back: + - TowelColorLightBrown + +- type: loadout + id: TowelColorGreen + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Civilian + time: 360000 # 100hr + storage: + back: + - TowelColorGreen + +- type: loadout + id: TowelColorDarkBlue + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Command + time: 360000 # 100hr + storage: + back: + - TowelColorDarkBlue + +- type: loadout + id: TowelColorOrange + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Engineering + time: 360000 # 100hr + storage: + back: + - TowelColorOrange + +- type: loadout + id: TowelColorLightBlue + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Medical + time: 360000 # 100hr + storage: + back: + - TowelColorLightBlue + +- type: loadout + id: TowelColorPurple + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Science + time: 360000 # 100hr + storage: + back: + - TowelColorPurple + +- type: loadout + id: TowelColorRed + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Security + time: 360000 # 100hr + storage: + back: + - TowelColorRed + +- type: loadout + id: TowelColorGray + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobPassenger + time: 360000 # 100hr + storage: + back: + - TowelColorGray + +- type: loadout + id: TowelColorBlack + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobChaplain + time: 360000 # 100hr + storage: + back: + - TowelColorBlack + +- type: loadout + id: TowelColorDarkGreen + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobLibrarian + time: 360000 # 100hr + storage: + back: + - TowelColorDarkGreen + +- type: loadout + id: TowelColorMaroon + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobLawyer + time: 360000 # 100hr + storage: + back: + - TowelColorMaroon + +- type: loadout + id: TowelColorYellow + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobClown + time: 360000 # 100hr + storage: + back: + - TowelColorYellow + +- type: loadout + id: TowelColorMime + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobMime + time: 360000 # 100hr + storage: + back: + - TowelColorMime \ No newline at end of file diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 1483fc3c11ffb2..13c675000edeb7 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -5,6 +5,8 @@ minLimit: 0 maxLimit: 3 loadouts: + - FlowerWreath + - Hairflower - PlushieLizard - PlushieSpaceLizard - Lighter @@ -26,6 +28,23 @@ - ClothingNeckTransPin - ClothingNeckAutismPin - ClothingNeckGoldAutismPin + - TowelColorBlack + - TowelColorDarkBlue + - TowelColorDarkGreen + - TowelColorGold + - TowelColorGray + - TowelColorGreen + - TowelColorLightBlue + - TowelColorLightBrown + - TowelColorMaroon + - TowelColorMime + - TowelColorOrange + - TowelColorPurple + - TowelColorRed + - TowelColorSilver + - TowelColorLightBlue + - TowelColorWhite + - TowelColorYellow - type: loadoutGroup id: Glasses diff --git a/Resources/Prototypes/NPCs/firebot.yml b/Resources/Prototypes/NPCs/firebot.yml index acea6498bdbd8e..2da9da50d25c0f 100644 --- a/Resources/Prototypes/NPCs/firebot.yml +++ b/Resources/Prototypes/NPCs/firebot.yml @@ -29,6 +29,18 @@ pathfindKey: TargetPathfind rangeKey: InteractRange + - !type:HTNPrimitiveTask + operator: !type:SetFloatOperator + targetKey: WaitTime + amount: 1 + + - !type:HTNPrimitiveTask + operator: !type:WaitOperator + key: WaitTime + preconditions: + - !type:KeyExistsPrecondition + key: WaitTime + - !type:HTNPrimitiveTask preconditions: - !type:TargetInRangePrecondition diff --git a/Resources/Prototypes/Objectives/dragon.yml b/Resources/Prototypes/Objectives/dragon.yml index bbdac8faa1a9a0..9d81c62ab3f43b 100644 --- a/Resources/Prototypes/Objectives/dragon.yml +++ b/Resources/Prototypes/Objectives/dragon.yml @@ -9,7 +9,7 @@ issuer: objective-issuer-dragon - type: RoleRequirement roles: - components: + mindRoles: - DragonRole - type: entity diff --git a/Resources/Prototypes/Objectives/ninja.yml b/Resources/Prototypes/Objectives/ninja.yml index 4d0cf6c17c83b0..28b624519c49f6 100644 --- a/Resources/Prototypes/Objectives/ninja.yml +++ b/Resources/Prototypes/Objectives/ninja.yml @@ -9,7 +9,7 @@ issuer: objective-issuer-spiderclan - type: RoleRequirement roles: - components: + mindRoles: - NinjaRole - type: entity diff --git a/Resources/Prototypes/Objectives/thief.yml b/Resources/Prototypes/Objectives/thief.yml index 2dbb2cc33956b7..c36b5f31921267 100644 --- a/Resources/Prototypes/Objectives/thief.yml +++ b/Resources/Prototypes/Objectives/thief.yml @@ -7,7 +7,7 @@ issuer: objective-issuer-thief - type: RoleRequirement roles: - components: + mindRoles: - ThiefRole - type: entity diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index a156061a9aeb87..b6f31449c02890 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -7,7 +7,7 @@ issuer: objective-issuer-syndicate - type: RoleRequirement roles: - components: + mindRoles: - TraitorRole - type: entity diff --git a/Resources/Prototypes/Reagents/narcotics.yml b/Resources/Prototypes/Reagents/narcotics.yml index 8e73eb139556ec..3f2daa98c9d7e2 100644 --- a/Resources/Prototypes/Reagents/narcotics.yml +++ b/Resources/Prototypes/Reagents/narcotics.yml @@ -321,6 +321,9 @@ - !type:GenericStatusEffect key: Muted component: Muted + type: Add + time: 10 + refresh: false - type: reagent id: NorepinephricAcid diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 8dc25c1c7251dd..fa2b6573915d8b 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -1062,6 +1062,16 @@ FoodMeat: 3 FoodPlateTin: 1 +- type: microwaveMealRecipe + id: RecipePumpkinPie + name: pumpkin pie recipe + result: FoodPiePumpkin + time: 15 + solids: + FoodDoughPie: 1 + FoodPumpkin: 1 + FoodPlateTin: 1 + #- type: microwaveMealRecipe # id: RecipePlumpPie # name: plump pie recipe @@ -1978,4 +1988,4 @@ solids: FoodCroissantRaw: 1 FoodButterSlice: 1 - ShardGlass: 1 \ No newline at end of file + ShardGlass: 1 diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 9bbd07848a82ab..2353099df56467 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -768,6 +768,20 @@ products: NuclearCola: 5 +- type: reaction + id: NuclearColaBreakdown + source: true + requiredMixerCategories: + - Centrifuge + reactants: + NuclearCola: + amount: 10 # assuming we loose all o2 released as gas in the centrifugal process + products: + Ipecac: 2 + Water: 2 + Sugar: 2 + Uranium: 1 + - type: reaction id: Patron requiredMixerCategories: diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index 515e2f8425a7ce..ee1c2c59498485 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -18,6 +18,7 @@ weight: 10 startingGear: QuartermasterGear icon: "JobIconQuarterMaster" + requireAdminNotify: true supervisors: job-supervisors-captain canBeAntag: false access: @@ -25,6 +26,7 @@ - Salvage - Quartermaster - Maintenance + - External - Command - Brig - Cryogenics diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml index d865d57cab3cee..61f0ea1d321e4b 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml @@ -16,7 +16,7 @@ shoes: ClothingShoesBootsLaceup id: LibrarianPDA ears: ClothingHeadsetService - pocket1: d10Dice + pocket1: d20Dice pocket2: HandLabeler # for making named bestsellers storage: back: diff --git a/Resources/Prototypes/Roles/Jobs/Science/borg.yml b/Resources/Prototypes/Roles/Jobs/Science/borg.yml index e35270d57dc9cf..4cbede17ca2dc9 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/borg.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/borg.yml @@ -7,7 +7,7 @@ requirements: - !type:RoleTimeRequirement role: JobBorg - time: 18000 # 5 hrs + time: 54000 # 15 hrs canBeAntag: false icon: JobIconStationAi supervisors: job-supervisors-rd @@ -21,7 +21,7 @@ playTimeTracker: JobBorg requirements: - !type:OverallPlaytimeRequirement - time: 216000 # 60 hrs + time: 144000 # 40 hrs canBeAntag: false icon: JobIconBorg supervisors: job-supervisors-rd diff --git a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml new file mode 100644 index 00000000000000..926ce512b4141b --- /dev/null +++ b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml @@ -0,0 +1,182 @@ +- type: entity + id: BaseMindRole + name: Mind Role + description: Mind Role entity + abstract: true + components: + - type: MindRole + +- type: entity + parent: BaseMindRole + id: BaseMindRoleAntag + abstract: true + components: + - type: MindRole + antag: true + +#Observer +- type: entity + parent: BaseMindRole + id: MindRoleObserver + name: Observer Role + components: + - type: ObserverRole + +#Ghostrole Marker +- type: entity + parent: BaseMindRole + id: MindRoleGhostMarker + name: Ghost Role + components: + - type: GhostRoleMarkerRole + +# The Job MindRole holds the mob's Job prototype +- type: entity + parent: BaseMindRole + id: MindRoleJob + name: Job Role +# description: + # MindRoleComponent.JobPrototype is filled by SharedJobSystem + +# Subverted Silicon +- type: entity + parent: BaseMindRoleAntag + id: MindRoleSubvertedSilicon + name: Subverted Silicon Role + description: + components: + - type: SubvertedSiliconRole + - type: MindRole + antagPrototype: SubvertedSilicon + +# Dragon +- type: entity + parent: BaseMindRoleAntag + id: MindRoleDragon + name: Dragon Role +# description: + components: + - type: MindRole + antagPrototype: Dragon + exclusiveAntag: true + - type: DragonRole + - type: RoleBriefing + briefing: dragon-role-briefing + +# Ninja +- type: entity + parent: BaseMindRoleAntag + id: MindRoleNinja + name: Space Ninja Role +# description: mind-role-ninja-description + components: + - type: MindRole + antagPrototype: SpaceNinja + exclusiveAntag: true + - type: NinjaRole + +# Nukies +- type: entity + parent: BaseMindRoleAntag + id: MindRoleNukeops + name: Nukeops Operative Role +# description: mind-role-nukeops-description + components: + - type: MindRole + exclusiveAntag: true + antagPrototype: Nukeops + - type: NukeopsRole + +- type: entity + parent: MindRoleNukeops + id: MindRoleNukeopsMedic + name: Nukeops Medic Role +# description: mind-role-nukeops-medic-description + components: + - type: MindRole + antagPrototype: NukeopsMedic + +- type: entity + parent: MindRoleNukeops + id: MindRoleNukeopsCommander + name: Nukeops Commander Role +# description: mind-role-nukeops-commander-description + components: + - type: MindRole + antagPrototype: NukeopsCommander + +# Revolutionaries +- type: entity + parent: BaseMindRoleAntag + id: MindRoleHeadRevolutionary + name: Head Revolutionary Role +# description: mind-role-head-revolutionary-description + components: + - type: MindRole + antagPrototype: HeadRev + exclusiveAntag: true + - type: RevolutionaryRole + +- type: entity + parent: MindRoleHeadRevolutionary + id: MindRoleRevolutionary + name: Revolutionary Role +# description: mind-role-revolutionary-description + components: + - type: MindRole + antagPrototype: Rev + +# Thief +- type: entity + parent: BaseMindRoleAntag + id: MindRoleThief + name: Thief Role +# description: mind-role-thief-description + components: + - type: MindRole + antagPrototype: Thief + - type: ThiefRole + +# Traitors +- type: entity + parent: BaseMindRoleAntag + id: MindRoleTraitor + name: Traitor Role +# description: mind-role-traitor-description + components: + - type: MindRole + antagPrototype: Traitor + exclusiveAntag: true + - type: TraitorRole + +- type: entity + parent: MindRoleTraitor + id: MindRoleTraitorSleeper + name: Sleeper Agent Role +# description: mind-role-traitor-sleeper-description + components: + - type: MindRole + antagPrototype: TraitorSleeper + +# Zombie Squad +- type: entity + parent: BaseMindRoleAntag + id: MindRoleInitialInfected + name: Initial Infected Role +# description: mind-role-initial-infected-description + components: + - type: MindRole + antagPrototype: InitialInfected + exclusiveAntag: true + - type: InitialInfectedRole + +- type: entity + parent: BaseMindRoleAntag + id: MindRoleZombie + name: Zombie Role +# description: mind-role-zombie-description + components: + - type: MindRole + antagPrototype: Zombie + exclusiveAntag: true + - type: ZombieRole diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 8e1f50df395018..5eda800244f76f 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -424,6 +424,22 @@ path: /Audio/Voice/Diona/diona_salute.ogg params: volume: -5 + +- type: emoteSounds + id: ReptilianBodyEmotes + sounds: + Thump: + path: /Audio/Voice/Reptilian/reptilian_tailthump.ogg + params: + variation: 0.125 + Clap: + collection: Claps + Snap: + collection: Snaps + params: + volume: -6 + Salute: + collection: Salutes # mobs - type: emoteSounds diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index c39bf1f37919de..6cd5bcacba4477 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -242,6 +242,31 @@ - snapping fingers - snapped fingers +- type: emote + id: Thump + name: chat-emote-name-thump + category: Hands + available: false + icon: Interface/Emotes/tailslap.png + whitelist: + components: + - Hands + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-thump"] + chatTriggers: + - thump + - thumps + - thumping + - thumped + - thump tail + - thumps tail + - thumps their tail + - thumps her tail + - thumps his tail + - thumps its tail + - type: emote id: Salute name: chat-emote-name-salute diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 86ade97d4ea57c..8962da5790ceb7 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -987,12 +987,18 @@ - type: Tag id: NoBlockAnchoring +- type: Tag + id: NoConsoleSound + - type: Tag id: NozzleBackTank - type: Tag id: Nugget # for chicken nuggets +- type: Tag + id: FakeNukeDisk + - type: Tag id: NukeOpsUplink @@ -1177,7 +1183,7 @@ - type: Tag id: SecureWindoor -- type: Tag +- type: Tag id: SecurityHelmet - type: Tag @@ -1294,6 +1300,9 @@ - type: Tag id: Syringe +- type: Tag + id: SyringeGunAmmo + - type: Tag id: Spellbook diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml b/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml index 3e48200e88ed14..1c7e74f4442279 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml @@ -18,12 +18,17 @@ By pressing [color=yellow][bold][keybind="OpenCharacterMenu"][/bold][/color], you'll see your personal uplink code. [bold]Setting your PDA's ringtone as this code will open the uplink.[/bold] Pressing [color=yellow][bold][keybind="OpenCharacterMenu"][/bold][/color] also lets you view your objectives and the codewords. + If you do not have a PDA when you are activated, an [color=cyan]uplink implant[/color] is provided [bold]for the full [color=red]TC[/color] price of the implant.[/bold] + It can be accessed from your hotbar. + - [bold]Make sure to close your uplink to prevent anyone else from seeing it.[/bold] You don't want [color=#cb0000]Security[/color] to get their hands on this premium selection of contraband! + [bold]Make sure to close your PDA uplink to prevent anyone else from seeing it.[/bold] You don't want [color=#cb0000]Security[/color] to get their hands on this premium selection of contraband! + + Implanted uplinks are not normally accessible to other people, so they do not have any security measures. They can, however, be removed from you with an empty implanter. diff --git a/Resources/Textures/Clothing/Head/Hats/warden.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/warden.rsi/equipped-HELMET.png index 10dab5101f7adf..70d2f5adc404ac 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/warden.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/warden.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json index 7bd2e3e22a7918..e953fa53d57d67 100644 --- a/Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, texture edited by TeaMaki (On github TeaMakiNL)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png new file mode 100644 index 00000000000000..d1a436b83793c3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/icon.png b/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/icon.png new file mode 100644 index 00000000000000..cd68c5efcba17b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/meta.json b/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/meta.json new file mode 100644 index 00000000000000..a3ec217bca50ef --- /dev/null +++ b/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "icon sprited by Just_Art, equipped-HELMET sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/NTmono.png b/Resources/Textures/Clothing/Multiple/towel.rsi/NTmono.png new file mode 100644 index 00000000000000..e293a0e7e9e23e Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/NTmono.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-BELT.png b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-BELT.png new file mode 100644 index 00000000000000..6ccb1f26ae0a03 Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-HELMET.png new file mode 100644 index 00000000000000..769f67b9a0ccf9 Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000000..6105c8aba12f30 Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/icon.png b/Resources/Textures/Clothing/Multiple/towel.rsi/icon.png new file mode 100644 index 00000000000000..c5c73e1060da3f Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/iconstripe.png b/Resources/Textures/Clothing/Multiple/towel.rsi/iconstripe.png new file mode 100644 index 00000000000000..334d3f3531e97b Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/iconstripe.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-left.png b/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-left.png new file mode 100644 index 00000000000000..4c8b4428ae6d16 Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-right.png b/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-right.png new file mode 100644 index 00000000000000..7ef955ba5f843e Binary files /dev/null and b/Resources/Textures/Clothing/Multiple/towel.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Multiple/towel.rsi/meta.json b/Resources/Textures/Clothing/Multiple/towel.rsi/meta.json new file mode 100644 index 00000000000000..95acda0af39828 --- /dev/null +++ b/Resources/Textures/Clothing/Multiple/towel.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Baystation12 at commit https://github.com/Baystation12/Baystation12/commit/c5dc6953e6e1fde87c2ded60038144f1d21fbd48", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "iconstripe" + }, + { + "name": "NTmono" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png index c0258cf1991f43..a7646e15118c5c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png index 3263c54ec99048..63a2b78ddf014d 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png index 5f662e0280b006..5b18b310eef5ff 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png index 94d9ed8605bf2a..be8f306df13f65 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png index 560879a0f2689c..d45365583136c3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json index bbcef071e2ea56..41d39d9bf4f533 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github), modified by KingFroozy (github) for ss14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png index 4cb7704e2c9829..54312098fb533f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png index 93477d07f5c8bd..b7877ab176cd3c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png index 06c845ef84ed0d..59f190fb9922ea 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png index bdbd3ea4881c78..ff454fb5dba7a9 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png index 7822bf686cf108..bb33c2d6c11154 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json index 425a857f0255ff..d0a3b5db803cce 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Borrowed from QM turtleneck at https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi and modified by KingFroozy (github) for space station 14", + "copyright": "Modified from https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpskirt/qmturtleskirt.rsi by KingFroozy (github) for space station 14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png index e0881f66bbaf69..b5cda54ed20ff5 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png index e9165f29cc2ac8..e935d8977de2a1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png index e2c37a0c2caeaf..e8703104a66716 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png index 94d9ed8605bf2a..be8f306df13f65 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png index 560879a0f2689c..d45365583136c3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json index 1d012747b8f317..425e6eaae249ac 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github), modified by KingFroozy (github) for ss14", "size": { "x": 32, "y": 32 @@ -10,17 +10,10 @@ { "name": "icon" }, - { - "name": "s" - }, { "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "s-equipped-INNERCLOTHING", - "directions": 4 - }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png deleted file mode 100644 index 213562cf9716a1..00000000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png deleted file mode 100644 index 7282eb27f639df..00000000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png index 7c9e3cfc92321c..05cbff092dde76 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png index 171598455fcd58..876758ad1c3604 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png index 50def373e334a1..6db1c12d989df4 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png index bdbd3ea4881c78..ff454fb5dba7a9 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png index 7822bf686cf108..bb33c2d6c11154 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json index f61c82ce0e6ad4..b70dde70e4a920 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Borrowed from QM turtleneck at https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi and modified by KingFroozy (github) for space station 14", + "copyright": "Modified from https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi by KingFroozy (github) for space station 14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-cleaning-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-cleaning-module.png new file mode 100644 index 00000000000000..f608aaa0bc8bd9 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-cleaning-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-diagnosis-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-diagnosis-module.png new file mode 100644 index 00000000000000..df4d53633be116 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-diagnosis-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-tools-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-tools-module.png new file mode 100644 index 00000000000000..47d0a45033a29e Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/adv-tools-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/anomaly-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/anomaly-module.png new file mode 100644 index 00000000000000..2270e2e86f1ab4 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/anomaly-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/appraisal-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/appraisal-module.png new file mode 100644 index 00000000000000..9f327af06300d3 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/appraisal-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/cleaning-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/cleaning-module.png new file mode 100644 index 00000000000000..8caf592553c017 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/cleaning-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/clowning-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/clowning-module.png new file mode 100644 index 00000000000000..bb6c4412062af5 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/clowning-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/construction-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/construction-module.png new file mode 100644 index 00000000000000..c77c02f207d2b2 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/construction-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/defib-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/defib-module.png new file mode 100644 index 00000000000000..4d22bb55d7919e Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/defib-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/diagnosis-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/diagnosis-module.png new file mode 100644 index 00000000000000..80686c3ce4d90b Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/diagnosis-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/extinguisher-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/extinguisher-module.png new file mode 100644 index 00000000000000..b74cd09fda5cc9 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/extinguisher-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/gardening-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/gardening-module.png new file mode 100644 index 00000000000000..d400ba2b999d14 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/gardening-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/geiger-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/geiger-module.png new file mode 100644 index 00000000000000..d962befeace3e9 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/geiger-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/gps-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/gps-module.png new file mode 100644 index 00000000000000..67af612968a783 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/gps-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/grappling-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/grappling-module.png new file mode 100644 index 00000000000000..68209e0adaf9b4 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/grappling-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/harvesting-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/harvesting-module.png new file mode 100644 index 00000000000000..24e1c57f5ef560 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/harvesting-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/light-replacer-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/light-replacer-module.png new file mode 100644 index 00000000000000..7f70d15f248332 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/light-replacer-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json index f63bacd07a964b..dc8a6fcf9c6e69 100644 --- a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json +++ b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json @@ -9,6 +9,99 @@ "states": [ { "name": "state-laws" + }, + { + "name": "no-action" + }, + { + "name":"tool-module" + }, + { + "name":"wire-module" + }, + { + "name":"gps-module" + }, + { + "name":"extinguisher-module" + }, + { + "name":"geiger-module" + }, + { + "name":"rcd-module" + }, + { + "name":"adv-tools-module" + }, + { + "name":"construction-module" + }, + { + "name":"appraisal-module" + }, + { + "name":"grappling-module" + }, + { + "name":"mining-module" + }, + { + "name":"light-replacer-module" + }, + { + "name":"cleaning-module" + }, + { + "name":"adv-cleaning-module" + }, + { + "name":"diagnosis-module" + }, + { + "name":"treatment-module" + }, + { + "name":"adv-diagnosis-module" + }, + { + "name":"defib-module" + }, + { + "name":"node-scanner-module" + }, + { + "name":"anomaly-module" + }, + { + "name":"service-module" + }, + { + "name":"musical-module" + }, + { + "name":"gardening-module" + }, + { + "name":"harvesting-module" + }, + { + "name":"clowning-module" + }, + { + "name":"syndicate-weapon-module" + }, + { + "name":"syndicate-operative-module" + }, + { + "name":"syndicate-esword-module" + }, + { + "name":"syndicate-l6c-module" + }, + { + "name":"syndicate-martyr-module" } ] } diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/mining-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/mining-module.png new file mode 100644 index 00000000000000..bfef5bfd04d506 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/mining-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/musical-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/musical-module.png new file mode 100644 index 00000000000000..c611269ddfe3b7 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/musical-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/no-action.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/no-action.png new file mode 100644 index 00000000000000..4196b8b9f4ecb4 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/no-action.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/node-scanner-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/node-scanner-module.png new file mode 100644 index 00000000000000..4fa2554eadfae0 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/node-scanner-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/rcd-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/rcd-module.png new file mode 100644 index 00000000000000..388c0c6e8fb25f Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/rcd-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/service-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/service-module.png new file mode 100644 index 00000000000000..1c114ef314ed41 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/service-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png new file mode 100644 index 00000000000000..201149cf18e82a Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-l6c-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-l6c-module.png new file mode 100644 index 00000000000000..c06ce963580a01 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-l6c-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-martyr-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-martyr-module.png new file mode 100644 index 00000000000000..771bb75f10debc Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-martyr-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-operative-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-operative-module.png new file mode 100644 index 00000000000000..19642942f9d326 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-operative-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-weapon-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-weapon-module.png new file mode 100644 index 00000000000000..cd1f115e8bbbde Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-weapon-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/tool-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/tool-module.png new file mode 100644 index 00000000000000..c4658049760426 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/tool-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/treatment-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/treatment-module.png new file mode 100644 index 00000000000000..988b3de761c1b4 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/treatment-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/wire-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/wire-module.png new file mode 100644 index 00000000000000..00361aa00fa63d Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/wire-module.png differ diff --git a/Resources/Textures/Interface/Emotes/attributions.yml b/Resources/Textures/Interface/Emotes/attributions.yml index 4cb2faa076e794..55cb19a9d7cf53 100644 --- a/Resources/Textures/Interface/Emotes/attributions.yml +++ b/Resources/Textures/Interface/Emotes/attributions.yml @@ -120,3 +120,8 @@ license: "CC-BY-SA-3.0" copyright: "Created by Sarahon" source: "https://github.com/Sarahon" + +- files: ["tailslap.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by Sarahon" + source: "https://github.com/Sarahon" diff --git a/Resources/Textures/Interface/Emotes/tailslap.png b/Resources/Textures/Interface/Emotes/tailslap.png new file mode 100644 index 00000000000000..75405a67bab223 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/tailslap.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-left.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-left.png new file mode 100644 index 00000000000000..a623e75a285d8b Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-right.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-right.png new file mode 100644 index 00000000000000..45649b9261812b Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/eyeballs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-left.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-left.png new file mode 100644 index 00000000000000..56698f87e29562 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-right.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-right.png new file mode 100644 index 00000000000000..c7fb39939984bc Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/heart-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/meta.json index 6141fd5de86ec6..62d1f04bf0cbf0 100644 --- a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by PixelTheKermit (github) for SS14", + "copyright": "Made by PixelTheKermit (github) for SS14, inhands by mubururu_ (github)", "size": { "x": 32, "y": 32 @@ -14,7 +14,23 @@ "name": "eyeball-r" }, { - "name": "tongue" + "name": "eyeballs-inhand-left", + "directions": 4 + }, + { + "name": "eyeballs-inhand-right", + "directions": 4 + }, + { + "name": "tongue" + }, + { + "name": "heart-inhand-left", + "directions": 4 + }, + { + "name": "heart-inhand-right", + "directions": 4 }, { "name": "heart-on", @@ -42,6 +58,14 @@ { "name": "stomach" }, + { + "name": "stomach-inhand-left", + "directions": 4 + }, + { + "name": "stomach-inhand-right", + "directions": 4 + }, { "name": "web-gland" } diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-left.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-left.png new file mode 100644 index 00000000000000..a346078b4a8b75 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-right.png b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-right.png new file mode 100644 index 00000000000000..001203bdc380b6 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Arachnid/organs.rsi/stomach-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-left.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-left.png new file mode 100644 index 00000000000000..43e0cd40340397 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-right.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-right.png new file mode 100644 index 00000000000000..df6dded7441277 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/brain-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-left.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-left.png new file mode 100644 index 00000000000000..5d31e96a37aca2 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-right.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-right.png new file mode 100644 index 00000000000000..4830b1e0a6806c Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs.png new file mode 100644 index 00000000000000..77b61c344f77ab Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/lungs.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Diona/organs.rsi/meta.json index 1c1697efc71705..de4f8f8dc39e39 100644 --- a/Resources/Textures/Mobs/Species/Diona/organs.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Diona/organs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/commit/38051f45d3b26bd31f6e292239f43adb36ff01fe", + "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/commit/38051f45d3b26bd31f6e292239f43adb36ff01fe lungs and inhands by mubururu_ (github)", "size": { "x": 32, "y": 32 @@ -10,6 +10,14 @@ { "name": "brain" }, + { + "name": "brain-inhand-left", + "directions": 4 + }, + { + "name": "brain-inhand-right", + "directions": 4 + }, { "name": "ears" }, @@ -19,8 +27,27 @@ { "name": "eyeball-r" }, + { + "name": "lungs" + }, + { + "name": "lungs-inhand-left", + "directions": 4 + }, + { + "name": "lungs-inhand-right", + "directions": 4 + }, { "name": "stomach" + }, + { + "name": "stomach-inhand-left", + "directions": 4 + }, + { + "name": "stomach-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-left.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-left.png new file mode 100644 index 00000000000000..e8d5a7c86c438f Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-right.png b/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-right.png new file mode 100644 index 00000000000000..257c0af83a37a8 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Diona/organs.rsi/stomach-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-left.png index cf6e4684e9c4c9..b4d4d86dd56279 100644 Binary files a/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-left.png and b/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-right.png index 978d4f3c5f14d3..2360c07898b86a 100644 Binary files a/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-right.png and b/Resources/Textures/Mobs/Species/Human/organs.rsi/brain-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-left.png new file mode 100644 index 00000000000000..d0187579a309c3 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-right.png new file mode 100644 index 00000000000000..4dfafd118d094e Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/eyeballs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-left.png new file mode 100644 index 00000000000000..1d73edaf033b05 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-right.png new file mode 100644 index 00000000000000..3f7ace9b485791 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/heart-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-left.png new file mode 100644 index 00000000000000..f8d889b5defdd1 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-right.png new file mode 100644 index 00000000000000..9b2e3131504dce Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/kidneys-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-left.png new file mode 100644 index 00000000000000..d63f9e1ef43763 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-right.png new file mode 100644 index 00000000000000..69ce8ffd77efe8 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/liver-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-left.png new file mode 100644 index 00000000000000..62b30a5ad5c060 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-right.png new file mode 100644 index 00000000000000..1a5e3a70582f10 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/lungs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Human/organs.rsi/meta.json index 354132ea1104ef..a9112535f82acb 100644 --- a/Resources/Textures/Mobs/Species/Human/organs.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Human/organs.rsi/meta.json @@ -1,80 +1,128 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and cev-eris at https://github.com/tgstation/tgstation/commit/c4b7f3c41b6742aca260fe60cc358a778ba9b8c8 and https://github.com/discordia-space/CEV-Eris/commit/476e374cea95ff5e8b1603c48342bf700e2cd7af", + "copyright": "Taken from tgstation and cev-eris at https://github.com/tgstation/tgstation/commit/c4b7f3c41b6742aca260fe60cc358a778ba9b8c8 and https://github.com/discordia-space/CEV-Eris/commit/476e374cea95ff5e8b1603c48342bf700e2cd7af, inhands by mubururu_ (github)", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "appendix" - }, - { - "name": "appendix-inflamed" - }, - { - "name": "brain" - }, - { - "name": "brain-inhand-left", - "directions": 4 - }, - { - "name": "brain-inhand-right", - "directions": 4 - }, - { - "name": "ears" - }, - { - "name": "eyeball-l" - }, - { - "name": "eyeball-r" - }, - { - "name": "heart-off" - }, - { - "name": "heart-on", - "delays": [ - [ - 0.6, - 0.1, - 0.1 - ] - ] - }, - { - "name": "kidney-l" - }, - { - "name": "kidney-r" - }, - { - "name": "liver" - }, - { - "name": "lung-l" - }, - { - "name": "lung-r" - }, - { - "name": "stomach" - }, - { - "name": "tongue" - }, - { - "name": "muscle" - }, - { - "name": "nerve" - }, - { - "name": "vessel" - } - ] + "states": [ + { + "name": "appendix" + }, + { + "name": "appendix-inflamed" + }, + { + "name": "brain" + }, + { + "name": "brain-inhand-left", + "directions": 4 + }, + { + "name": "brain-inhand-right", + "directions": 4 + }, + { + "name": "ears" + }, + { + "name": "eyeballs-inhand-left", + "directions": 4 + }, + { + "name": "eyeballs-inhand-right", + "directions": 4 + }, + { + "name": "eyeball-l" + }, + { + "name": "eyeball-r" + }, + { + "name": "heart-inhand-left", + "directions": 4 + }, + { + "name": "heart-inhand-right", + "directions": 4 + }, + { + "name": "heart-off" + }, + { + "name": "heart-on", + "delays": [ + [ + 0.6, + 0.1, + 0.1 + ] + ] + }, + { + "name": "kidneys-inhand-left", + "directions": 4 + }, + { + "name": "kidneys-inhand-right", + "directions": 4 + }, + { + "name": "kidney-l" + }, + { + "name": "kidney-r" + }, + { + "name": "liver" + }, + { + "name": "liver-inhand-left", + "directions": 4 + }, + { + "name": "liver-inhand-right", + "directions": 4 + }, + { + "name": "lungs-inhand-left", + "directions": 4 + }, + { + "name": "lungs-inhand-right", + "directions": 4 + }, + { + "name": "lung-l" + }, + { + "name": "lung-r" + }, + { + "name": "stomach" + }, + { + "name": "stomach-inhand-left", + "directions": 4 + }, + { + "name": "stomach-inhand-right", + "directions": 4 + }, + { + "name": "tongue" + }, + { + "name": "muscle" + }, + { + "name": "nerve" + }, + { + "name": "vessel" + } + ] } diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-left.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-left.png new file mode 100644 index 00000000000000..a346078b4a8b75 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-right.png b/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-right.png new file mode 100644 index 00000000000000..001203bdc380b6 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/organs.rsi/stomach-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-left.png b/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-left.png index a536818eee96f7..c0c260afced206 100644 Binary files a/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-left.png and b/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-right.png b/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-right.png index c7e0adca9a15c5..50f22d7a3f26f2 100644 Binary files a/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-right.png and b/Resources/Textures/Mobs/Species/Slime/organs.rsi/brain-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-left.png b/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-left.png new file mode 100644 index 00000000000000..0354025ce91f83 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-right.png b/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-right.png new file mode 100644 index 00000000000000..a3c6ba485ed83a Binary files /dev/null and b/Resources/Textures/Mobs/Species/Slime/organs.rsi/lungs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Slime/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Slime/organs.rsi/meta.json index cacfcdc40bbea8..451ab138dfa9f2 100644 --- a/Resources/Textures/Mobs/Species/Slime/organs.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Slime/organs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by Nimfar11 (Github) for Space Station 14", + "copyright": "Sprited by Nimfar11 (Github) for Space Station 14, inhands by mubururu_ (github)", "size": { "x": 32, "y": 32 @@ -15,8 +15,16 @@ "directions": 4 }, { - "name": "brain-inhand-right", - "directions": 4 + "name": "brain-inhand-right", + "directions": 4 + }, + { + "name": "lungs-inhand-left", + "directions": 4 + }, + { + "name": "lungs-inhand-right", + "directions": 4 }, { "name": "lung-l-slime" diff --git a/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-l.png b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-l.png new file mode 100644 index 00000000000000..5ae28e9594565f Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-l.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-r.png b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-r.png new file mode 100644 index 00000000000000..8110a03b4737fa Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lung-r.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-left.png b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-left.png new file mode 100644 index 00000000000000..4b9489e8384d08 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-left.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-right.png b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-right.png new file mode 100644 index 00000000000000..b1fd54694e9336 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/organs.rsi/lungs-inhand-right.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/organs.rsi/meta.json b/Resources/Textures/Mobs/Species/Vox/organs.rsi/meta.json new file mode 100644 index 00000000000000..1d7b44d6edb7a1 --- /dev/null +++ b/Resources/Textures/Mobs/Species/Vox/organs.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by mubururu_ (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "lungs-inhand-left", + "directions": 4 + }, + { + "name": "lungs-inhand-right", + "directions": 4 + }, + { + "name": "lung-l" + }, + { + "name": "lung-r" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json index ced8d583736c3a..644424690dbd52 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, mime tart slice and banana cream pie slice from rosysyntax under under CC BY-SA 4.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, the pumpkin and pumpkin slice are made by ss14nekow (Mute Maid), the mime tart slice and banana cream pie slice are made by rosysyntax.", "size": { "x": 32, "y": 32 @@ -95,6 +95,12 @@ { "name": "plump" }, + { + "name": "pumpkin" + }, + { + "name": "pumpkin-slice" + }, { "name": "tin" }, diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin-slice.png b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin-slice.png new file mode 100644 index 00000000000000..e462de6b654c31 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin-slice.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin.png b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin.png new file mode 100644 index 00000000000000..f2f18879448f8e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin.png differ diff --git a/Resources/Textures/Objects/Devices/ai_card.rsi/base.png b/Resources/Textures/Objects/Devices/ai_card.rsi/base.png index 244183c078c3d5..535f5a48e99f6b 100644 Binary files a/Resources/Textures/Objects/Devices/ai_card.rsi/base.png and b/Resources/Textures/Objects/Devices/ai_card.rsi/base.png differ diff --git a/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png b/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png index 7e61f368de294a..a62b9263d52ce1 100644 Binary files a/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png and b/Resources/Textures/Objects/Devices/ai_card.rsi/empty.png differ diff --git a/Resources/Textures/Objects/Devices/ai_card.rsi/full.png b/Resources/Textures/Objects/Devices/ai_card.rsi/full.png index 59131c8c0aafc5..69a1825d91db90 100644 Binary files a/Resources/Textures/Objects/Devices/ai_card.rsi/full.png and b/Resources/Textures/Objects/Devices/ai_card.rsi/full.png differ diff --git a/Resources/Textures/Objects/Fun/spectrallocator.rsi/icon.png b/Resources/Textures/Objects/Fun/spectrallocator.rsi/icon.png new file mode 100644 index 00000000000000..b18dfd1c29475a Binary files /dev/null and b/Resources/Textures/Objects/Fun/spectrallocator.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-left.png new file mode 100644 index 00000000000000..cb25c6e3cf2ade Binary files /dev/null and b/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-right.png new file mode 100644 index 00000000000000..7c34512cb66680 Binary files /dev/null and b/Resources/Textures/Objects/Fun/spectrallocator.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/spectrallocator.rsi/meta.json b/Resources/Textures/Objects/Fun/spectrallocator.rsi/meta.json new file mode 100644 index 00000000000000..1556cd4eb9f5a6 --- /dev/null +++ b/Resources/Textures/Objects/Fun/spectrallocator.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Originally created by EmoGarbage404 (github) for Space Station 14, modified by Ilya246 (github) for Space Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "screen", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Fun/spectrallocator.rsi/screen.png b/Resources/Textures/Objects/Fun/spectrallocator.rsi/screen.png new file mode 100644 index 00000000000000..eb4ab6bbbecce4 Binary files /dev/null and b/Resources/Textures/Objects/Fun/spectrallocator.rsi/screen.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json index 1495eccd7a64bd..0c29f3e3fb1221 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/meta.json @@ -57,6 +57,15 @@ { "name": "syringe2" }, + { + "name": "minisyringe1" + }, + { + "name": "minisyringe2" + }, + { + "name": "minisyringe3" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe1.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe1.png new file mode 100644 index 00000000000000..66c49a744cdf0d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe1.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe2.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe2.png new file mode 100644 index 00000000000000..6f5d5663546964 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe2.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe3.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe3.png new file mode 100644 index 00000000000000..71d3bad044a03e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/minisyringe3.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png index 7819a48c6615c1..5faf746ae3aaad 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png and b/Resources/Textures/Objects/Specific/Chemistry/syringe.rsi/syringeproj.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png index 877a76785e862f..e80c4fa942b009 100644 Binary files a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-left.png new file mode 100644 index 00000000000000..19d43a58d253de Binary files /dev/null and b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-right.png new file mode 100644 index 00000000000000..99d7bc37309b13 Binary files /dev/null and b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json index 07cec4822e92a2..3a6e8e9d8e9dc9 100644 --- a/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/appraisal-tool.rsi/meta.json @@ -1,18 +1,26 @@ { - "copyright" : "Taken from https://github.com/tgstation/tgstation/blob/master/icons/obj/device.dmi state export_scanner at commit 7544e865d0771d9bd917461e9da16d301fe40fc3.", + "copyright" : "Taken from https://github.com/tgstation/tgstation/blob/master/icons/obj/device.dmi state export_scanner at commit 7544e865d0771d9bd917461e9da16d301fe40fc3. In-hand sprites made by obscenelytinyshark for use in SS14.", "license" : "CC-BY-SA-3.0", "size" : { "x" : 32, "y" : 32 }, - "states" : [ - { - "name" : "icon" - }, - { - "name": "equipped-BELT", - "directions": 4 - } - ], + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ], "version" : 1 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png index 1784e7f62362b2..6a141b7efb1fa6 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-2.png new file mode 100644 index 00000000000000..2414fe500b9c2b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-3.png new file mode 100644 index 00000000000000..1784e7f62362b2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png index 3ff1180051b7aa..d68f85845e5ab3 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-2.png new file mode 100644 index 00000000000000..50ea7c47ff3dde Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-3.png new file mode 100644 index 00000000000000..94a2272c800485 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json index a72e24594e3e37..b2728ab02bb91d 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/anti_materiel.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/983ad377d25729357b7ff8025f8014bd2f6ae9f7/icons/obj/ammo.dmi , base and mag-1 by Alekshhh", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/983ad377d25729357b7ff8025f8014bd2f6ae9f7/icons/obj/ammo.dmi, base and mag-1 by Alekshhh", "size": { "x": 32, "y": 32 @@ -16,8 +16,20 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" + }, + { + "name": "magb-2" + }, + { + "name": "magb-3" } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png index edcbdbd3851ab7..c9f029f32a3f3b 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-2.png new file mode 100644 index 00000000000000..84725cfd32184f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-3.png new file mode 100644 index 00000000000000..532baa546b3c5b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png index da73a5f853b4fa..8b49392b77de26 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-2.png new file mode 100644 index 00000000000000..80e504f560e713 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-3.png new file mode 100644 index 00000000000000..0c582b01d5784b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/mag10-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png index 6a77161ab26952..39e05c721147d7 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-2.png new file mode 100644 index 00000000000000..8fd938dce0bef4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-3.png new file mode 100644 index 00000000000000..6a77161ab26952 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json index 878138f73faf14..958aeb6f48e1e8 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/caseless_rifle.rsi/meta.json @@ -19,12 +19,30 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" }, + { + "name": "magb-2" + }, + { + "name": "magb-3" + }, { "name": "mag10-1" }, + { + "name": "mag10-2" + }, + { + "name": "mag10-3" + }, { "name": "practice" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png index a6feb95c36c213..36c872a426860a 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-2.png new file mode 100644 index 00000000000000..025bec650e0086 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-3.png new file mode 100644 index 00000000000000..31c1c6b5c7629e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png index 7fbc8f50acfb69..39e05c721147d7 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-2.png new file mode 100644 index 00000000000000..8fd938dce0bef4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-3.png new file mode 100644 index 00000000000000..6a77161ab26952 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json index 22eef0aaf3a159..ff9704e4fc783e 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.rsi/meta.json @@ -16,9 +16,21 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" }, + { + "name": "magb-2" + }, + { + "name": "magb-3" + }, { "name": "incendiary" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png index a36a9226170709..8b7d23dc6c4dc8 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-2.png new file mode 100644 index 00000000000000..6d2b4034e1f168 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-3.png new file mode 100644 index 00000000000000..7d2bcd29ec220b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json index 67af0dcd27bae4..bb09b47a524b72 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/magnum.rsi/meta.json @@ -16,6 +16,12 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "cap" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png index f32f6862662f7d..43d1f0f5f71c53 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-2.png new file mode 100644 index 00000000000000..5d6d61f5dbfb5b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json index 6237fcbe6fe711..dd1e88cffcb0cf 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/pistol.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, { "name": "incendiarydisplay" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png index 0c642312083785..4d7eb62cbf22ac 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-2.png new file mode 100644 index 00000000000000..24cf3a37fb93b0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-3.png new file mode 100644 index 00000000000000..68bb5da7bed97a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/mag-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png index a3d15b76e6954d..39e05c721147d7 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-2.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-2.png new file mode 100644 index 00000000000000..8fd938dce0bef4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-3.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-3.png new file mode 100644 index 00000000000000..6a77161ab26952 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/magb-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json index 18e89881dd9cf2..5c5b4eaef3801f 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/rifle.rsi/meta.json @@ -16,9 +16,21 @@ { "name": "mag-1" }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, { "name": "magb-1" }, + { + "name": "magb-2" + }, + { + "name": "magb-3" + }, { "name": "incendiary" }, diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-left.png new file mode 100644 index 00000000000000..b59a4d52682c1a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-right.png new file mode 100644 index 00000000000000..6a8268d27e3bb3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/meta.json new file mode 100644 index 00000000000000..dae584eb812669 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation13 at https://github.com/vgstation-coders/vgstation13 at f91dfe2e0dba1b7a8b9a0fa18251340920979a62, held sprite by ScarKy0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "syringe_gun" + }, + { + "name": "inhand-left", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/syringe_gun.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/syringe_gun.png new file mode 100644 index 00000000000000..972714d1c71f2f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/syringe_gun.png differ diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json index 34d277c984a24b..933f56495496ff 100644 --- a/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from at commit https://github.com/tgstation/tgstation/commit/f01de25493e2bd2706ef9b0303cb0d7b5e3e471b. poster52_contraband, poster53_contraband and poster54_contraband taken from https://github.com/vgstation-coders/vgstation13/blob/435ed5f2a7926e91cc31abac3a0d47d7e9ad7ed4/icons/obj/posters.dmi. originmap, poster55_contraband, poster56_contraband, poster57_contraband and poster39_legit by discord brainfood#7460, poster63_contraband by discord foboscheshir_", + "copyright": "Taken from at commit https://github.com/tgstation/tgstation/commit/f01de25493e2bd2706ef9b0303cb0d7b5e3e471b. poster52_contraband, poster53_contraband and poster54_contraband taken from https://github.com/vgstation-coders/vgstation13/blob/435ed5f2a7926e91cc31abac3a0d47d7e9ad7ed4/icons/obj/posters.dmi. originmap, poster55_contraband, poster56_contraband, poster57_contraband and poster39_legit by discord brainfood#7460, poster63_contraband by discord foboscheshir_, poster52_legit by SlamBamActionman", "size": { "x": 32, "y": 32 @@ -381,6 +381,9 @@ { "name": "poster51_legit" }, + { + "name": "poster52_legit" + }, { "name": "random_legit" }, diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/poster52_legit.png b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster52_legit.png new file mode 100644 index 00000000000000..91954d0edc1dbe Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster52_legit.png differ diff --git a/Resources/clientCommandPerms.yml b/Resources/clientCommandPerms.yml index 11418621fc28f2..2e613a0fce497a 100644 --- a/Resources/clientCommandPerms.yml +++ b/Resources/clientCommandPerms.yml @@ -20,7 +20,6 @@ - net_watchent - devwindow - fill - - dumpentities - ">" - gcf - gc @@ -73,6 +72,7 @@ - detachent - localdelete - fullstatereset + - dumpentities - Flags: MAPPING Commands: diff --git a/RobustToolbox b/RobustToolbox index 1c3ea968e4ab66..32bca7cfd417ed 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 1c3ea968e4ab66d57ffe014f6ee207e4d0d2c403 +Subproject commit 32bca7cfd417edcad9a60c2b1703eba8675f56af